@import url('theme.css');

/* ============================================================
   THEME: Extenze
   Source: https://www.buyextenze.com/
   Extracted: 2026-04-19
   Theme type: Premium (dark hero, light sections)
   Niche: Male Enhancement / Health
   ============================================================ */

/* ── LAYER 1: COLOR TOKENS ─────────────────────────────── */
:root {
  --primary:        #0056b3 ; /* CTA button bg - professional blue */
  --primary-dark:   #004494 ; /* CTA button hover */
  --primary-light:  #e7f1ff ; /* badge/tag backgrounds */
  --secondary:      #f8f9fa ; /* section label pill bg */
  --bg:             #ffffff ; /* page background */
  --bg-alt:         #f8fafc ; /* alternating section bg */
  --dark:           #0a192f ; /* H1/H2 color - deep navy */
  --text:           #1e293b ; /* body text */
  --text-muted:     #64748b ; /* captions/subtitles */
  --cta-bg:         #0056b3 ; /* CTA fill */
  --cta-text:       #ffffff ; /* text on CTA */
  --alert-bg:       #0a192f ; /* top bar bg */
  --alert-text:     #ffffff ; /* top bar text */
  --trust-bg:       #f8fafc ; /* trust section bg */
  --border:         #e2e8f0 ; /* card/divider borders */
  --star:           #f59e0b ; /* star ratings */
}

/* ── LAYER 2: TYPOGRAPHY TOKENS ────────────────────────── */
:root {
  --font-heading:   'Poppins', sans-serif ;
  --font-body:      'Poppins', sans-serif ;
  --fw-heading:     700 ;
  --fw-subheading:  600 ;
  --fw-body:        400 ;
  --lh-heading:     1.15 ;
  --lh-body:        1.7 ;
  --fs-h1:          clamp(2rem, 4.5vw, 3.2rem) ;
  --fs-h2:          clamp(1.6rem, 3vw, 2.4rem) ;
}

/* ── LAYER 3: HERO BACKGROUND ───────────────────────────── */
#hero {
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, rgba(0,86,179,0.15) 0%, rgba(0,86,179,0.04) 100%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* ── LAYER 4: COMPONENT OVERRIDES ───────────────────────── */

.alert-badge i {
  color: #60a5fa; /* light blue for icons */
}

#header {
  background: var(--dark);
}

.hero-badge {
  background: rgba(0,86,179,0.2);
  border: 1px solid rgba(0,86,179,0.5);
  color: #60a5fa;
}

.hero-text h1 .highlight {
  color: #60a5fa;
}

.hero-tagline i,
.hero-guarantee i {
  color: #60a5fa;
}

.btn-primary,
.hero-cta,
.cta-button {
  background: var(--cta-bg);
  color: var(--cta-text);
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,86,179,0.35);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,86,179,0.4);
}

.section-label {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
}

.feature-card,
.benefit-card,
.review-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,86,179,0.1);
  border-color: rgba(0,86,179,0.2);
}

.feature-icon-wrap {
  background: var(--primary-light);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap i {
  color: var(--primary);
  font-size: 1.5rem;
}

.trust-icon {
  background: var(--primary-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i {
  color: var(--primary);
}

#social-proof {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
}

.stat-divider {
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 50px;
}

.faq-question {
  font-size: 1.15rem !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin: 0 !important;
  transition: color 0.2s ease !important;
}

.faq-question:hover {
  color: var(--primary) !important;
}

.faq-answer {
  display: none;
  padding-top: 15px !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
}

.faq-item.open .faq-answer {
  display: block !important;
}

.icon-state {
  font-size: 1rem !important;
  color: var(--primary) !important;
  transition: transform 0.3s ease !important;
}

.faq-item.open .icon-state {
  transform: rotate(45deg) !important; /* Turns Plus into an X or just indicates open */
  color: var(--dark) !important;
}

.urgency-badge {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #e53e3e;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-top: 20px;
}

#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 16px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #333;
}

.modal-body h2 {
  color: var(--dark);
  margin-bottom: 20px;
}

.modal-body p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Reviews Marquee Animation */
.reviews-marquee-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px 0;
}

.reviews-marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.reviews-marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 400px;
  flex-shrink: 0;
  margin: 0 20px;
}

@media (max-width: 600px) {
  .review-card {
    width: 300px;
    margin: 0 10px;
  }
}

/* ============================================================
   LANGUAGE SELECTOR & GOOGLE TRANSLATE 
   ============================================================ */

/* Hide Google Translate UI */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon,
.goog-te-header,
.goog-te-banner {
    display: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none !important;
}

.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Custom Language Selector Refinement */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: transparent !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    color: var(--dark) !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: rgba(0,0,0,0.02) !important;
    border-color: rgba(0,0,0,0.2) !important;
}

.lang-btn i {
    color: var(--primary) !important;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 170px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-option:hover {
    background: var(--primary-light);
    color: var(--primary);
}

@media (max-width: 900px) {
    .nav-actions {
        display: flex !important;
    }
    .lang-selector {
        margin-right: 0;
    }
}

/* ============================================================
   MOBILE RESPONSIVENESS FIXES
   ============================================================ */

/* ============================================================
   MOBILE RESPONSIVENESS & LAYOUT REFINEMENT
   ============================================================ */

@media (max-width: 900px) {
    /* Header & Navigation */
    #header { background: #ffffff !important; padding: 0 !important; }
    .nav-inner { padding: 12px 16px !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important; }
    .brand-logo-text { color: var(--dark) !important; font-size: 1.2rem !important; }
    .lang-btn { padding: 5px 10px !important; font-size: 0.75rem !important; gap: 5px !important; }

    /* Hero Section */
    .hero-inner { flex-direction: column !important; padding: 30px 15px !important; text-align: center !important; }
    .hero-text { width: 100% !important; margin-bottom: 30px; }
    .hero-img-col { width: 100% !important; order: -1; margin-bottom: 20px; }
    .hero-product-img { max-width: 180px !important; }
    .hero-h1 { font-size: 1.8rem !important; line-height: 1.2 !important; }

    /* ─── STACKED MOBILE LAYOUT (TITLE -> PHOTO -> TEXT) ─── */
    .benefits-flex-container, .features-flex-container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0 !important;
    }

    .mobile-section-header { order: 1 !important; display: block !important; margin-bottom: 20px !important; width: 100% !important; }
    .benefits-img-col, .features-img-col { order: 2 !important; display: block !important; margin-bottom: 30px !important; width: 100% !important; }
    .benefits-text-col, .features-text-col { order: 3 !important; display: block !important; width: 100% !important; }

    .desktop-only-header, .desktop-title { display: none !important; }

    .section-img {
        max-width: 65% !important; /* 30-35% size reduction */
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
        border-radius: 15px !important;
    }

    .section-body { text-align: center !important; font-size: 0.95rem !important; }

    /* List Aligment */
    .features-list-alt {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        display: inline-grid !important;
        margin: 0 auto 30px !important;
        width: auto !important;
    }

    .benefit-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        font-weight: 600 !important;
        color: var(--dark) !important;
    }

    /* Trust Section */
    .trust-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 30px 20px !important; }
    .trust-badge { flex-direction: column !important; text-align: center !important; gap: 10px !important; }
    .trust-icon { margin: 0 auto !important; }
}

/* ─── DESKTOP LAYOUT (FOTO > TEXTO = LADO A LADO) ─── */
@media (min-width: 901px) {
    .benefits-flex-container, 
    .features-flex-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important; /* Vertical Centering */
        gap: 60px !important;
    }

    /* Column Sizing */
    .benefits-text-col, .features-text-col {
        flex: 1 !important;
        max-width: 550px !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
    }

    .benefits-img-col, .features-img-col {
        flex: 1 !important;
        max-width: 500px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Layout Zig-Zag */
    #features .features-flex-container {
        flex-direction: row-reverse !important;
    }

    /* Title Spacing */
    .desktop-title { 
        display: block !important; 
        font-size: 2.2rem !important; 
        font-weight: 800 !important; 
        margin-bottom: 15px !important; 
        line-height: 1.1 !important;
        color: var(--dark); 
    }

    /* Component Visibility */
    .mobile-section-header { display: none !important; }
    .desktop-only-header { display: block !important; }

    /* Image Styling */
    .section-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 24px !important;
        box-shadow: 0 40px 80px rgba(0,0,0,0.12) !important;
    }
    
    .section-body {
        text-align: left !important;
        margin-bottom: 25px !important;
        font-size: 1rem !important;
    }

    /* List Item Spacing */
    .features-list-alt {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr !important; }
    .hero-h1 { font-size: 1.6rem !important; }
}



