.elementor-6 .elementor-element.elementor-element-57a2a83{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6 .elementor-element.elementor-element-57a2a83.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-6 .elementor-element.elementor-element-57a2a83{--width:126.436%;}}/* Start custom CSS *//* --- 1. CORE VARIABLES (THEMING ENGINE) --- */
        :root {
            /* DARK MODE (DEFAULT) */
            --bg-void: #050505;       /* Deepest Black */
            --bg-panel: #121212;      /* Off-Black for cards */
            --text-main: #E0E0E0;     /* Silver/White */
            --text-muted: #A0A0A0;    /* Grey */
            --card-border: rgba(255,255,255,0.05);
            
            /* SHARED COLORS */
            --gold: #D4AF37;          /* Luxury Accent */
            --wine: #800020;          /* Brand Color */
            --cyan: #00F3FF;          /* Tech/Alert Accent */
        }

        /* LIGHT MODE VARIABLES */
        body.light-mode {
            --bg-void: #F4F4F4;       /* Soft Luxury Grey/White */
            --bg-panel: #FFFFFF;      /* Pure White for cards */
            --text-main: #222222;     /* Charcoal Black */
            --text-muted: #555555;    /* Mid Grey */
            --card-border: rgba(0,0,0,0.05);
        }

        /* RESET */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-void);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
            min-height: 100vh;
        }

        /* --- 2. THEME TOGGLE SWITCH --- */
       .theme-switch {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            background: var(--bg-panel);
            border: 1px solid var(--gold);
            color: var(--gold);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }
       .theme-switch:hover { transform: scale(1.1); }

        /* --- 3. TYPOGRAPHY --- */
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--text-main);
            margin-top: 0;
        }

        h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; color: var(--gold); }
        h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-main); }
        p { margin-bottom: 1.5rem; color: var(--text-muted); }

      .gold-text { color: var(--gold); }
      .cyan-text { color: var(--cyan); }
      .center-text { text-align: center; }
        
      .container {
            max-width: 800px; 
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* --- 4. SECTIONS --- */
        section {
            padding: 60px 0;
            border-bottom: 1px solid var(--card-border);
        }

        /* HERO SECTION */
      .hero {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 60px;
        }

      .hero h2.headline {
            font-size: 3rem;
            color: var(--text-main);
            text-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

      .intimate-copy {
            border-left: 2px solid var(--gold);
            padding-left: 15px;
            margin-bottom: 2rem;
            text-align: left;
            max-width: 600px;
        }

      .hero-right-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 600px; /* Mobile max width */
      }

      .hero-image-container {
            width: 100%;
            /* max-width is handled in .hero-right-column for mobile */
            margin: 2rem 0;
            border-radius: 12px;
            /* Adaptive Glow */
            box-shadow: 0 0 60px -20px rgba(212, 175, 55, 0.3);
            border: 1px solid var(--card-border);
            overflow: hidden;
            background-color: white; /* Always white inside to show product */
        }
        
        /* Light Mode specific shadow for hero image */
        body.light-mode.hero-image-container {
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }

      .hero-image-container img {
            width: 100%;
            display: block;
            animation: slowZoom 10s infinite alternate;
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        /* BUTTONS */
      .btn {
            display: inline-block;
            padding: 15px 40px;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

      .btn-wine {
            background-color: var(--wine);
            color: white;
            border: 1px solid var(--wine);
            box-shadow: 0 0 20px rgba(128, 0, 32, 0.4);
        }
      .btn-wine:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(128, 0, 32, 0.6); }

      .btn-accent {
            background: linear-gradient(45deg, #008000, #006400);
            color: white;
            width: 100%;
            font-size: 1.3rem;
            box-shadow: 0 0 20px rgba(0, 128, 0, 0.4);
            border: none;
            animation: pulseGreen 2s infinite;
        }

        @keyframes pulseGreen {
            0% { box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(0, 128, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 128, 0, 0); }
        }

        /* VIDEO SECTION (GLOWING BORDER) */
       .video-container {

    position: relative;

    padding-bottom: 56.25%; /* Standard 16:9 */

    height: 0;

    overflow: hidden;

    max-width: 100%;

    background: #000;

    border-radius: 12px;

    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);

}



.video-container-vertical {

    padding-bottom: 177.77%; /* 9:16 aspect ratio */

}



.video-container iframe {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

}


        /* FEATURES (ADAPTIVE CARDS) */
      .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

      .feature-item {
            background: var(--bg-panel);
            border: 1px solid var(--card-border);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
      .feature-item:hover { transform: translateY(-5px); border-color: var(--gold); }

      .feature-item img {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            width: 100%;
            height: auto;
            /* Add shadow in light mode */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* GIFT SECTION */
      .gift-section-layout {
            background: var(--bg-panel);
            border: 1px solid var(--gold);
            padding: 20px;
            border-radius: 12px;
            margin-top: 2rem;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
      .gift-badge {
            position: absolute;
            top: 0; right: 0;
            background: var(--gold);
            color: black;
            font-weight: bold;
            padding: 5px 15px;
            font-size: 0.8rem;
            border-bottom-left-radius: 10px;
        }

        /* TESTIMONIALS */
      .testimonial-container { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
            gap: 20px; 
            margin-top: 30px;
        }
      .testimonial-card { 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--card-border);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
      .testimonial-card img { width: 100%; display: block; }

        /* OFFER STACK */
      .offer-stack-box {
            background: var(--bg-panel);
            border: 1px solid var(--gold);
            border-radius: 15px;
            padding: 30px;
            margin: 40px auto;
            max-width: 600px;
            text-align: left;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

      .offer-stack { list-style: none; padding: 0; margin: 20px 0; }
      .offer-stack li { 
            margin-bottom: 12px; 
            font-size: 1.1rem; 
            border-bottom: 1px dashed var(--text-muted);
            padding-bottom: 8px;
            color: var(--text-main);
        }

      .price-display { text-align: center; margin: 20px 0; }
      .strikethrough { text-decoration: line-through; color: var(--text-muted); font-size: 1.2rem; }
      .price-final { font-size: 3.5rem; color: var(--gold); font-weight: 900; line-height: 1; }

        /* WARNING BOX */
      .warning-box {
            border: 2px solid var(--cyan);
            background: rgba(0, 243, 255, 0.05);
            padding: 25px;
            margin: 30px auto;
            border-radius: 8px;
            text-align: center;
            color: var(--cyan);
            font-weight: 600;
            max-width: 650px;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }
        /* In Light Mode, make warning box background white to pop */
        body.light-mode.warning-box {
            background: #f0fbff;
            color: #007bb5;
            border-color: #007bb5;
        }

        /* FORM SECTION (EVEREST OVERRIDE) */
      .form-area {
            background: var(--bg-panel);
            padding: 30px 20px;
            border-radius: 12px;
            border-top: 4px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Force Form Colors based on Theme */
      .everest-form label { color: var(--text-main)!important; }
      .everest-form input,.everest-form select,.everest-form textarea {
            background: var(--bg-void)!important;
            border: 1px solid var(--text-muted)!important;
            color: var(--text-main)!important;
        }

        /* SALES NOTIFICATIONS */
        #sales-notification-container {
            position: fixed; bottom: 20px; left: 20px; z-index: 9999;
        }
      .sales-notification {
            width: 300px;
            padding: 15px;
            background-color: var(--bg-panel);
            border-left: 4px solid #00c853;
            border-radius: 4px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            color: var(--text-main);
            font-size: 13px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
      .sales-notification.show { opacity: 1; transform: translateY(0); }
      .sales-notification strong { color: #00c853; }
      .sales-notification-time { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px;}

        /* STICKY TIMER */
      .sticky-timer {
            position: fixed; bottom: 0; left: 0; width: 100%;
            background: var(--wine);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: bold;
            z-index: 1000;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
        }

        /* RESPONSIVE */
        @media (min-width: 768px) {
          .hero { flex-direction: row; text-align: left; gap: 40px; }
          .hero h2 { font-size: 3.5rem; }
          .hero-text { max-width: 50%; }
          
          /* Hero Right Column Adjustments for Desktop */
          .hero-right-column { 
            max-width: 45%; 
            align-items: center; 
          }
          
          /* Reduced Image Size on Desktop */
          .hero-image-container { 
            margin: 0 0 2rem 0; 
            max-width: 400px; /* Force reduced size on desktop */
          }
          
          /* Testimonial Side-by-Side */
          .testimonial-container {
            grid-template-columns: repeat(3, 1fr); /* Forces 3 columns side by side */
          }
        }/* End custom CSS */