:root {
            --color-orange: #FF8C00;
            --color-black: #000000;
            --color-white: #FFFFFF;
            --color-gray-light: #F5F5F5;
            --color-gray-dark: #333333;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-digital: 'Orbitron', sans-serif;
            --transition: all 0.3s ease;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-white);
            color: var(--color-black);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        /* Utilities */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-fluid {
            width: 100%;
            padding: 0 20px;
            max-width: none;
        }

        .text-orange {
            color: var(--color-orange);
        }

        .text-black {
            color: var(--color-black);
        }

        .bg-black {
            background-color: var(--color-black);
            color: var(--color-white);
        }

        .bg-orange {
            background-color: var(--color-orange);
            color: var(--color-black);
        }

        /* Sticky Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--color-white);
            padding: 15px 0;
            border-bottom: 2px solid var(--color-black);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .header-center {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .brand-text {
            font-family: var(--font-display);
            font-size: 2.2rem;
            color: var(--color-black);
            text-decoration: none;
            line-height: 0.85;
            text-align: left;
            display: inline-block;
        }

        .header-logo {
            height: 80px;
            width: auto;
        }

        .header-right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex: 1;
        }

        .dealer-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            line-height: 1.2;
        }

        .dealer-name {
            font-family: var(--font-body);
            font-weight: 800;
            font-size: 1rem;
            color: var(--color-black);
        }

        .dealer-loc {
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--color-black);
        }

        .mobile-phone-cta {
            display: none;
        }

        @media (max-width: 900px) {
            .dealer-info {
                display: none !important;
            }

            .header-center {
                display: none !important;
            }

            .brand-text {
                font-size: 1.8rem;
            }

            .header-left {
                gap: 10px;
                flex: unset;
            }

            .header-right {
                flex: unset;
            }

            .mobile-phone-cta {
                display: inline-flex !important;
                align-items: center;
                justify-content: center;
                padding: 10px 15px;
                font-size: 1.2rem;
                font-weight: 800;
                width: auto;
                background-color: var(--color-orange) !important;
                color: var(--color-black) !important;
                border-radius: 8px;
                line-height: 1.2;
                text-align: center;
                text-decoration: none;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                margin-left: auto;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .header-inner {
                padding: 10px 15px;
                gap: 10px;
            }
        }


        .header-cta .btn-pill,
        .header-nav .btn-pill {
            background-color: var(--color-orange);
            color: var(--color-black);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }

        .header-cta .btn-pill:hover,
        .header-nav .btn-pill:hover {
            transform: scale(1.05);
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-nav a:not(.btn-pill) {
            color: var(--color-white);
            font-weight: 600;
            transition: color 0.3s;
        }

        .header-nav a:not(.btn-pill):hover {
            color: var(--color-orange);
        }

        /* Countdown Banner */
        .countdown-banner {
            background-color: #111;
            color: var(--color-white);
            text-align: center;
            padding: 15px;
            font-family: var(--font-digital);
            border-bottom: 1px solid var(--color-gray-dark);
            font-size: 1.5rem;
            letter-spacing: 1px;
        }

        #countdown {
            color: var(--color-orange);
            font-size: 2rem;
            font-weight: 700;
            margin-left: 10px;
            display: inline-block;
            white-space: nowrap;
            text-align: left;
            font-variant-numeric: tabular-nums;
        }

        #countdown .digit {
            display: inline-block;
            width: 2.4ch;
            text-align: right;
        }

        @media (max-width: 768px) {
            .countdown-banner {
                font-size: 1rem;
                padding: 10px;
            }

            #countdown {
                font-size: 1.4rem;
                display: block;
                margin-top: 5px;
                text-align: center;
                width: auto;
            }
        }

        .countdown-timer span {
            color: var(--color-orange);
            font-size: 1.2rem;
            margin: 0 5px;
        }

        /* Promo Banner */
        .promo-banner {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            color: var(--color-white);
            padding: 20px 20px;
            font-family: var(--font-body);
            border-bottom: 3px solid var(--color-orange);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 25px;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .promo-content {
            flex: 0 1 auto;
            min-width: 300px;
            text-align: center;
        }

        .promo-title {
            font-family: var(--font-display);
            font-size: 2.8rem;
            letter-spacing: 2px;
            margin-bottom: 8px;
            line-height: 1;
            text-transform: uppercase;
            color: var(--color-orange);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        }

        .promo-details {
            font-size: 1.25rem;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.5px;
        }

        .promo-coupon-wrap {
            flex: 0 0 auto;
        }

        .promo-coupon {
            display: inline-block;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            color: #000;
            border: 2px dashed var(--color-orange);
            padding: 10px 20px;
            border-radius: 8px;
            position: relative;
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
            text-align: center;
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }

        .promo-coupon:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .coupon-label {
            font-size: 0.85rem;
            font-weight: 800;
            color: #444;
            display: block;
            margin-bottom: 3px;
            text-transform: uppercase;
        }

        .coupon-code {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--color-orange);
            letter-spacing: 3px;
            text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
        }


        @media (max-width: 768px) {
            .promo-banner {
                flex-direction: column;
                padding: 15px 10px;
                gap: 15px;
            }

            .promo-content {
                text-align: center;
            }

            .promo-title {
                font-size: 1.8rem;
            }

            .promo-details {
                font-size: 0.9rem;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            min-height: 400px;
            background: #000;
        }

        .hero-img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }



        .hero-desktop {
            display: block;
            width: 100%;
            height: auto;
        }

        .hero-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-desktop {
                display: none;
            }

            .hero-mobile {
                display: block;
                width: 100%;
                height: auto;
            }
        }

        /* Brand Explainer */
        .brand-explainer {
            padding: 60px 0;
            text-align: center;
            background-color: var(--color-gray-light);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .brand-explainer p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
        }

        /* Prescription Grid */
        .rx-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 60px 0;
        }

        .rx-card {
            background: var(--color-white);
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .rx-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .rx-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--color-black);
            color: var(--color-white);
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: 700;
            z-index: 10;
        }

        .rx-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: contain;
            background: #f9f9f9;
        }

        .rx-content {
            padding: 20px;
            text-align: center;
        }

        .rx-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            height: 3em;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rx-price {
            font-size: 2.5rem;
            font-weight: 900;
            color: #c94e00;
            line-height: 1;
            margin-bottom: 5px;
            letter-spacing: -1px;
        }

        .rx-price sup {
            font-size: 1.2rem;
            top: -0.5em;
        }

        .rx-terms {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }

        .btn-rx {
            display: inline-block;
            background: var(--color-black);
            color: var(--color-white);
            padding: 12px 25px;
            font-family: var(--font-display);
            font-size: 1.2rem;
            border-radius: 4px;
            width: 100%;
            transition: background 0.3s;
        }

        .btn-rx:hover {
            background: var(--color-orange);
            color: var(--color-black);
        }

        /* Nav Story Section */
        .nav-story {
            padding: 60px 0;
            background-color: var(--color-black);
            color: var(--color-white);
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .doctor-img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            object-position: top center;
            border-radius: 50%;
            border: 3px solid var(--color-orange);
            margin: 0 auto 20px auto;
        }

        /* Phone Strip */
        .phone-strip {
            background: var(--color-black);
            color: var(--color-white);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #333;
        }

        .phone-strip h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .btn-phone-big {
            font-size: 2rem;
            padding: 15px 40px;
            background: var(--color-orange);
            color: var(--color-black);
            font-weight: 800;
            border-radius: 8px;
            display: inline-block;
            white-space: nowrap;
        }

        @media (max-width: 600px) {
            .btn-phone-big {
                font-size: 1.5rem;
                padding: 12px 20px;
            }
        }

        /* Footer */
        footer {
            background: #111;
            color: #888;
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-phone {
            color: var(--color-orange);
            font-weight: 700;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            color: white;
            padding: 20px;
            z-index: 9999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }

        .cookie-banner.visible {
            transform: translateY(0);
        }

        .cookie-actions button {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            margin-left: 10px;
        }

        .btn-accept {
            background: var(--color-orange);
            color: black;
        }

        .btn-reject {
            background: #333;
            color: white;
        }

        /* Detail Page Specifics */
        .detail-hero {
            position: relative;
            background: #f0f0f0;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 30px 0;
        }

        .spec-item {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 6px;
            text-align: center;
        }

        .spec-label {
            display: block;
            font-size: 0.8rem;
            color: #666;
            text-transform: uppercase;
        }

        .spec-value {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-black);
        }

        .detail-layout {
            display: block;
            width: 100%;
            margin-top: 40px;
        }

        .lead-form-container {
            background: var(--color-white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 100px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }

        .btn-submit {
            width: 100%;
            background: var(--color-orange);
            color: var(--color-black);
            padding: 15px;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 20px;
            border-radius: 4px;
            text-align: center;
        }

        .accordion {
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-top: 30px;
        }

        .accordion-header {
            padding: 15px;
            background: #f5f5f5;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
        }

        .accordion-content {
            padding: 15px;
            display: none;
            font-size: 0.9rem;
            color: #555;
            border-top: 1px solid #ddd;
        }

        .accordion-content.active {
            display: block;
        }

        /* Vintage Parallax Section */
        .vintage-parallax {
            background-image: url('../images/swinging-lady-toronto.jpg');
            min-height: 500px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vintage-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .vintage-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--color-white);
            padding: 20px;
        }

        .vintage-title {
            font-family: var(--font-display);
            font-size: 5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            line-height: 1;
        }

        .vintage-subtitle {
            font-family: var(--font-body);
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
            color: var(--color-orange);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .vintage-parallax {
                background-attachment: scroll;
                min-height: 300px;
            }

            .vintage-title {
                font-size: 3rem;
            }
        }