/*
Theme Name: The Chilling Drone
Theme URI: https://thechillingdrone.com
Author: The Chilling Drone
Author URI: https://thechillingdrone.com
Description: Tema profesional para The Chilling Drone - Producción Audiovisual Profesional
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-chilling-drone
Tags: dark, one-page, business, photography, videography
*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(232, 167, 64, 0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.2em;
            font-weight: bold;
            color: #E8A740;
            letter-spacing: 3px;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 0.95em;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #E8A740;
        }

        .btn-contact {
            background: #E8A740;
            color: #0a0a0a;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 167, 64, 0.3);
        }

        /* Hero Section — estilos gestionados en page-chilling-drone.php */

        .btn-primary {
            background: #E8A740;
            color: #0a0a0a;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(232, 167, 64, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 16px 40px;
            border: 2px solid #E8A740;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(232, 167, 64, 0.1);
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            color: #E8A740;
            font-size: 0.9em;
            letter-spacing: 3px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-title {
            font-size: 3em;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-description {
            color: #b0b0b0;
            font-size: 1.1em;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .card {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(232, 167, 64, 0.2);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #E8A740, #FFD700);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .card:hover {
            border-color: #E8A740;
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(232, 167, 64, 0.2);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #E8A740;
            color: #0a0a0a;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .card-title {
            font-size: 1.8em;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .card-subtitle {
            color: #b0b0b0;
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .card-price {
            font-size: 2.5em;
            font-weight: bold;
            color: #E8A740;
            margin-bottom: 30px;
        }

        .card-features {
            list-style: none;
            margin-bottom: 35px;
        }

        .card-features li {
            padding: 12px 0;
            color: #d0d0d0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-features li::before {
            content: '✦';
            color: #E8A740;
            font-size: 0.9em;
        }

        .card-button {
            width: 100%;
            padding: 14px;
            border: 2px solid #E8A740;
            background: transparent;
            color: #E8A740;
            border-radius: 8px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-button:hover {
            background: #E8A740;
            color: #0a0a0a;
            transform: translateY(-2px);
        }

        .card.popular .card-button {
            background: #E8A740;
            color: #0a0a0a;
        }

        .card.popular .card-button:hover {
            background: #FFD700;
        }

        /* Edición Section */
        .edicion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .edicion-card {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(232, 167, 64, 0.15);
            border-radius: 12px;
            padding: 35px;
            transition: all 0.3s;
        }

        .edicion-card:hover {
            border-color: #E8A740;
            transform: translateY(-5px);
        }

        .edicion-card h3 {
            font-size: 1.5em;
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .edicion-card p {
            color: #b0b0b0;
            font-size: 0.95em;
            margin-bottom: 20px;
        }

        .edicion-card .price-range {
            color: #E8A740;
            font-size: 1.4em;
            font-weight: bold;
        }

        /* Extras Section */
        .extras-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .extra-item {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(232, 167, 64, 0.2);
            border-radius: 10px;
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .extra-item:hover {
            border-color: #E8A740;
            transform: translateX(5px);
        }

        .extra-item span:first-child {
            font-weight: 600;
        }

        .extra-item span:last-child {
            color: #E8A740;
            font-weight: bold;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(232, 167, 64, 0.1), rgba(255, 215, 0, 0.05));
            border: 2px solid rgba(232, 167, 64, 0.3);
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            margin: 100px 40px;
        }

        .cta-title {
            font-size: 3.5em;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .cta-title .highlight {
            color: #E8A740;
        }

        .cta-description {
            font-size: 1.2em;
            color: #b0b0b0;
            margin-bottom: 40px;
        }

        /* Footer */
        footer {
            background: rgba(15, 15, 15, 0.95);
            padding: 40px;
            text-align: center;
            border-top: 1px solid rgba(232, 167, 64, 0.2);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-size: 1.1em;
            font-weight: bold;
            color: #E8A740;
            letter-spacing: 3px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social a {
            color: #b0b0b0;
            font-size: 1.3em;
            transition: color 0.3s;
        }

        .footer-social a:hover {
            color: #E8A740;
        }

        .footer-copyright {
            color: #777;
            font-size: 0.9em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3em;
            }

            .section-title {
                font-size: 2em;
            }

            .cta-title {
                font-size: 2.5em;
            }

            .nav-links {
                display: none;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            nav {
                padding: 0 20px;
            }

            section {
                padding: 60px 20px;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
/* ── Footer SVG Icons ── */
#tcd-footer {
    background: rgba(12, 12, 12, 0.98);
    padding: 36px 40px;
    border-top: 1px solid rgba(232, 167, 64, 0.15);
}

#tcd-footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

#tcd-footer .footer-logo {
    font-size: 0.9em;
    font-weight: 700;
    color: #E8A740;
    letter-spacing: 3px;
}

#tcd-footer .footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

#tcd-footer .footer-social a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

#tcd-footer .footer-social a:hover {
    color: #E8A740;
    transform: translateY(-3px);
}

#tcd-footer .footer-social a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

#tcd-footer .footer-copyright {
    color: #555;
    font-size: 0.82em;
    font-weight: 400;
}

@media (max-width: 640px) {
    #tcd-footer {
        padding: 30px 18px;
    }
    #tcd-footer .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
}
a.edicion-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.edicion-card:hover {
    opacity: 0.85;
}
.btn-account {
    color: #f0a500 !important;
    display: inline-flex !important;
    align-items: center;
    margin-left: 8px;
    vertical-align: middle;
    transition: opacity 0.2s;
}

.btn-account svg {
    display: block !important;
    width: 22px;
    height: 22px;
    stroke: #f0a500 !important;
}

.btn-account:hover {
    opacity: 0.75;
}
/* Mi Cuenta */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce form {
    background-color: #111;
    color: #ffffff;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    color: #f0a500;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    transition: opacity 0.2s;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    opacity: 0.75;
}

.woocommerce form .input-text {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
}

.woocommerce form label {
    color: #cccccc;
}

.woocommerce form .button,
.woocommerce button.button {
    background-color: #f0a500 !important;
    color: #000 !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: opacity 0.2s;
}

.woocommerce form .button:hover {
    opacity: 0.85 !important;
}

.woocommerce-page {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.woocommerce a.lost_password {
    color: #f0a500;
    font-size: 0.85rem;
}
/* Imágenes responsivas — solo en contenido editorial y productos, no globalmente */
.entry-content img,
.wp-block img,
.woocommerce-product-gallery img,
.tcd-col-left img,
.cards-grid img,
section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.woocommerce div.product div.images,
.woocommerce div.product div.images img,
.woocommerce-product-gallery,
.woocommerce-product-gallery__image img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .woocommerce div.product div.images {
        margin-bottom: 20px !important;
    }
    
    .woocommerce-page {
        padding: 40px 0 !important;
    }
}
/* ── Producto WooCommerce: imagen a ancho completo en móvil ── */
@media (max-width: 768px) {
    .woocommerce div.product div.images,
    .woocommerce-product-gallery,
    .woocommerce-product-gallery__wrapper {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        max-width: 100vw !important;
    }

    .woocommerce div.product div.images img,
    .woocommerce-product-gallery__image img {
        width: 100% !important;
        height: auto !important;
    }

    .woocommerce-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 768px) {
    .tcd-wrapper {
        flex-direction: column !important;
    }

    .tcd-col-left {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .tcd-col-left img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}