/*
Theme Name: Aurex Theme
Theme URI: https://wakkomacaco.wixstudio.com/aurex
Description: Custom WordPress theme designed for Aurex Peptide Labs. Recreates the Wix Studio layout, fully integrated with WooCommerce, premium visual design, responsive grids, custom product modal popups, and optimized for SEO.
Version: 3.1.0
Author: Antigravity
Author URI: https://github.com/google-deepmind
Text Domain: aurex-theme
Requires at least: 5.6
Tested up to: 6.4
Requires PHP: 7.4
*/

/* --------------------------------------------------
   1. BRAND FONTS (EXACT DECLARATIONS FROM WIX CDN)
-------------------------------------------------- */
@font-face {
    font-family: 'Hanson';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url("https://static.wixstatic.com/ufonts/6c546f_7983e0273f094372a8ca824c7c28d422/woff2/file.woff2") format("woff2"),
         url("https://static.wixstatic.com/ufonts/6c546f_7983e0273f094372a8ca824c7c28d422/woff/file.woff") format("woff"),
         url("https://static.wixstatic.com/ufonts/6c546f_7983e0273f094372a8ca824c7c28d422/ttf/file.ttf") format("truetype");
}

@font-face {
    font-family: 'Avenir Light';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("https://static.wixstatic.com/ufonts/18188a_2ff4f0dbbb0140dabbc8e17d2542216f/woff2/file.woff2") format("woff2"),
         url("https://static.wixstatic.com/ufonts/18188a_2ff4f0dbbb0140dabbc8e17d2542216f/woff/file.woff") format("woff");
}

@font-face {
    font-family: 'Avenir Medium';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("https://static.wixstatic.com/ufonts/fe15d3_40c38577189842fea91cd2f48704b5e1/woff2/file.woff2") format("woff2"),
         url("https://static.wixstatic.com/ufonts/fe15d3_40c38577189842fea91cd2f48704b5e1/woff/file.woff") format("woff");
}

/* --------------------------------------------------
   2. VARIABLES & DESIGN SYSTEM (CYBER-DARK CONTRAST)
-------------------------------------------------- */
:root {
    /* Brand Colors (Aggressive Dark Contrast) */
    --accent: #FF5C00;
    --accent-rgb: 255, 92, 0;
    --accent-glow: rgba(255, 92, 0, 0.4);
    --accent-hover: #ff781f;
    
    --bg-dark: #070707;
    --bg-light: #0f0f0f;
    --bg-card: #151515;
    --bg-card-hover: #1e1e1e;
    
    --text-primary: #FFFFFF;
    --text-muted: #A8A6A5;
    --text-light: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 92, 0, 0.25);
    
    /* Layout Tokens */
    --font-heading: 'Hanson', sans-serif;
    --font-body: 'Avenir Light', sans-serif;
    --font-bold: 'Avenir Medium', sans-serif;
    
    --max-width: 1400px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows & Glows */
    --glow-sm: 0 4px 15px rgba(255, 92, 0, 0.15);
    --glow-md: 0 10px 30px rgba(255, 92, 0, 0.25);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------
   3. GLOBAL RESET & BASE STYLING
-------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Managed by Lenis */
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Layout Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* --------------------------------------------------
   4. CYBER UTILITIES & ANIMATIONS
-------------------------------------------------- */
.text-accent {
    color: var(--accent) !important;
    text-shadow: 0 0 10px rgba(255, 92, 0, 0.3);
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.text-stroke-accent {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    text-shadow: 0 0 8px rgba(255, 92, 0, 0.2);
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(21, 21, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF;
    font-family: var(--font-bold);
    font-size: 14px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 50px;
    border: 1px solid var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--glow-sm);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 120%; height: 0;
    padding-bottom: 120%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--glow-md);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    font-family: var(--font-bold);
    font-size: 13px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* --------------------------------------------------
   5. HEADER & NAVIGATION
-------------------------------------------------- */
.site-header {
    background-color: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 92, 0, 0.1));
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-navigation a {
    font-family: var(--font-bold);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.main-navigation a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-header-cta {
    font-family: var(--font-bold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(255, 92, 0, 0.15);
    transition: all var(--transition-fast);
}

.btn-header-cta:hover {
    color: #FFFFFF;
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--glow-sm);
}

.cart-trigger-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #FFFFFF;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.cart-trigger-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
}

/* --------------------------------------------------
   6. HERO SECTION
-------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(7, 7, 7, 0.9) 100%),
                linear-gradient(180deg, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    text-align: center;
    padding: 0 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5.2vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    color: var(--accent);
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    margin-bottom: 44px;
    text-shadow: 0 0 10px rgba(255, 92, 0, 0.3);
}

/* --------------------------------------------------
   7. ABOUT SECTION (NOSOTROS)
-------------------------------------------------- */
.about-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background-color: var(--bg-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.about-header {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(255, 92, 0, 0.2);
}

.about-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --------------------------------------------------
   8. INFO SECTION (DYNAMIC SCIENCE GRID FOR PÉPTIDOS)
-------------------------------------------------- */
.info-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-left {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-left h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}

.info-left p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Scientific dynamic grid layout */
.peptides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.peptide-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
    position: relative;
    overflow: hidden;
}

.peptide-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-normal);
}

.peptide-card:hover::before {
    transform: scaleY(1);
}

.peptide-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
    background: rgba(255, 92, 0, 0.02);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 92, 0, 0.1), var(--shadow-dark);
}

.peptide-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.peptide-card-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.12);
    line-height: 1;
    transition: all var(--transition-normal);
}

.peptide-card:hover .peptide-card-num {
    -webkit-text-stroke-color: var(--accent);
    text-shadow: 0 0 15px rgba(255, 92, 0, 0.3);
}

.peptide-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    transition: all var(--transition-normal);
}

.peptide-card:hover .peptide-card-icon {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: var(--glow-sm);
    transform: rotate(360deg);
}

.peptide-card-title {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: #FFFFFF;
    margin-bottom: 12px;
}

.peptide-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------
   9. EXOTIC PRODUCTS SECTION (FULL-BLEED CARDS)
-------------------------------------------------- */
.products-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Lab Grid Background Pattern */
.products-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 92, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 92, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.8rem);
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 80px);
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.swiper-products-container {
    position: relative;
    width: 100%;
    padding: 20px 0 80px 0;
    z-index: 2;
}

.swiper {
    width: 100%;
    overflow: visible !important;
}

/* Swiper Pre-initialization Layout (Prevents Layout Shift / CLS) */
.swiper-products:not(.swiper-initialized) .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    padding-bottom: 20px;
}

.swiper-products:not(.swiper-initialized) .swiper-slide {
    width: 380px !important;
    flex-shrink: 0 !important;
}

@media (max-width: 992px) {
    .swiper-products:not(.swiper-initialized) .swiper-slide {
        width: 85vw !important;
    }
}

/* Product Card Design (Full-Bleed Bitonal) */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dark);
    transition: all var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.product-img-wrapper {
    background-color: #0F0F0F;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    width: 100% !important;
    height: 380px !important;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-fast);
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 0.04) 100%);
    pointer-events: none;
}

.product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    transition: transform var(--transition-spring);
}

.product-info {
    padding: 24px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    position: relative;
    flex-grow: 1;
    min-height: 290px !important;
    box-sizing: border-box;
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    transition: color var(--transition-fast);
}

.product-card-tag {
    font-family: var(--font-bold);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 10px;
}

.badge-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    font-size: 17px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    margin: 0 auto;
}

.product-feature-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0 !important;
    padding: 0 !important;
}

.product-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0 !important;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.product-card-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
}

.btn-card-view {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-spring);
    font-size: 16px;
    border: none;
    box-shadow: var(--glow-sm);
    cursor: pointer;
}

.btn-card-view:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1) rotate(-15deg);
    box-shadow: var(--glow-md);
}

/* Card Hover Actions */
.product-card:hover {
    border-color: rgba(255, 92, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 92, 0, 0.12), var(--shadow-dark);
    transform: translateY(-8px);
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-card:hover .product-card-title {
    color: var(--accent);
}

.product-card:hover .badge-circle {
    background-color: rgba(255, 92, 0, 0.15);
    color: var(--accent);
    border-color: rgba(255, 92, 0, 0.3);
    transform: scale(1.05);
}

/* Swiper navigation buttons styled custom */
.swiper-button-prev,
.swiper-button-next {
    color: #FFFFFF !important;
    background: rgba(21, 21, 21, 0.8);
    border: 1px solid var(--border-color);
    width: 54px !important;
    height: 54px !important;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--accent) !important;
    border-color: var(--accent);
    background: #000;
    box-shadow: var(--glow-sm);
}

.swiper-pagination-bullet {
    background: #444444 !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    box-shadow: 0 0 8px var(--accent);
    width: 28px !important;
    border-radius: 5px !important;
    transition: all var(--transition-fast);
}

/* --------------------------------------------------
   10. HIGH-CONVERSION POPUP DETAIL MODAL (RESPONSIVE)
-------------------------------------------------- */
.product-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.product-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-container {
    position: relative;
    background: var(--bg-card);
    width: 95%;
    max-width: 1100px;
    height: auto;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    z-index: 2100;
    transform: scale(0.95);
    transition: transform var(--transition-normal);
    border: 1px solid var(--border-color);
}

.product-modal.is-active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(8, 8, 8, 0.8);
    border: 1px solid var(--border-color);
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    line-height: 1;
    z-index: 2200;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(255, 92, 0, 0.15);
    color: var(--accent);
    border-color: var(--accent);
}

/* Left panel full-bleed image container */
.modal-image-panel {
    background: #EFEFEF;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 45%;
    flex-shrink: 0;
}

.modal-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    padding: 0 !important;
}

/* Floating Trust Badges over the full-bleed image */
.modal-trust-badges {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badge-item {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.trust-badge-item i {
    color: var(--accent);
    font-size: 13px;
}

/* Scrollable Content Panel */
.modal-content-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    overflow-y: auto; /* Scroll panel internally */
    width: 55%;
    height: auto !important;
    max-height: 80vh !important;
}

.modal-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 4px;
    color: #FFFFFF;
    line-height: 1.1;
}

.modal-subtitle {
    font-size: 11px;
    font-family: var(--font-heading);
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 0px;
}

.modal-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Dynamic Dose Selector Widget */
.modal-dose-selector {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.dose-selector-title {
    font-size: 11px;
    font-family: var(--font-heading);
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.dose-options-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dose-option {
    display: none;
}

.dose-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dose-label-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.dose-text-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dose-title-text {
    font-family: var(--font-body);
}

.dose-radio-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #555;
    display: inline-block;
    position: relative;
    transition: all var(--transition-fast);
}

.dose-option:checked + .dose-label .dose-radio-circle {
    border-color: var(--accent);
}

.dose-option:checked + .dose-label .dose-radio-circle::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.dose-label:hover {
    border-color: rgba(255, 92, 0, 0.3);
    background: rgba(255, 92, 0, 0.02);
}

.dose-option:checked + .dose-label {
    border-color: var(--accent);
    background: rgba(255, 92, 0, 0.08);
}

.dose-badge-discount {
    background: var(--accent);
    color: #FFFFFF;
    font-size: 8px;
    font-family: var(--font-heading);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.dose-label-right {
    font-family: var(--font-bold);
    color: #FFFFFF;
    font-size: 13px;
}

/* Tabs for details */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 18px;
}

.modal-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.modal-tab-btn.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.modal-tab-content {
    display: none;
}

.modal-tab-content.is-active {
    display: block;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.modal-benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.modal-benefits-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 13px;
}

.modal-benefits-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

.modal-usage {
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.01);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

/* Action CTA Row */
.modal-action-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    gap: 16px;
}

.modal-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.modal-price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.modal-price span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
}

.modal-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.modal-cta-buttons .btn-primary,
.modal-cta-buttons .btn-whatsapp-cta {
    padding: 14px 20px !important;
    font-size: 12px !important;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp-cta {
    background-color: #25d366;
    border: 1px solid #25d366;
    color: #FFFFFF;
    font-family: var(--font-bold);
    font-size: 12px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-whatsapp-cta:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Safe payments labels */
.modal-secure-payment-logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
    opacity: 0.5;
}

.modal-secure-payment-logos span {
    font-size: 10px;
    color: var(--text-muted);
}

.modal-secure-payment-logos i {
    font-size: 16px;
}

/* --------------------------------------------------
   11. INTERACTIVE SLIDE-OUT CART DRAWER
-------------------------------------------------- */
.cart-drawer {
    position: fixed;
    top: 0; right: 0; width: 100%; max-width: 460px;
    height: 100%;
    background: #0d0d0d;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
    z-index: 4000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    border-left: 1px solid var(--border-color);
}

.cart-drawer.is-active {
    transform: translateX(0);
}

.cart-drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 3900;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.cart-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer-header {
    background: #121212;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.cart-drawer-close:hover {
    color: var(--accent);
}

.cart-drawer-body {
    padding: 32px;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-shipping-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--text-light);
}

.shipping-progress-track {
    background: rgba(255, 255, 255, 0.05);
    height: 4px;
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.shipping-progress-fill {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    height: 100%;
    width: 0%;
    transition: width var(--transition-normal);
}

.cart-items-list {
    list-style: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #F8F6F4;
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.cart-item-title {
    font-family: var(--font-bold);
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

/* Quantity controls inside cart item */
.cart-qty-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    width: 80px;
    margin-top: 8px;
}

.cart-qty-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
}

.cart-qty-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent);
}

.cart-qty-val {
    width: 32px;
    text-align: center;
    font-size: 12px;
    border: none;
    background: none;
    color: #FFFFFF;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: #ef4444;
}

.cart-drawer-footer {
    padding: 32px;
    border-top: 1px solid var(--border-color);
    background: #111111;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-bold);
    font-size: 16px;
    color: #FFFFFF;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 0;
}

/* Floating Toast Notification */
.cart-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #151515;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 10px rgba(255,92,0,0.15);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    z-index: 5000;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 380px;
}

.cart-toast.is-active {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 92, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cart-toast-body {
    flex-grow: 1;
}

.cart-toast-title {
    font-weight: 700;
    font-size: 13px;
    color: #FFFFFF;
}

.cart-toast-msg {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
}

/* --------------------------------------------------
   12. FAQ ACORDEON SECTION (SEO STRATEGY)
-------------------------------------------------- */
.faq-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 50px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 92, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    padding: 24px 30px;
    font-family: var(--font-bold);
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question i {
    color: var(--accent);
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open {
    border-color: rgba(255, 92, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* --------------------------------------------------
   13. TESTIMONIALS SECTION (DARK & AGGRESSIVE)
-------------------------------------------------- */
.testimonials-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background-color: #040404;
    color: #FFFFFF;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.testimonials-section .section-title {
    color: #FFFFFF;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-normal);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px 80px;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 20px;
    }
}

.testimonial-quote {
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-family: var(--font-body);
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 3rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 10;
}

.carousel-nav-btn:hover {
    color: var(--accent);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333333;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.is-active {
    background: var(--accent);
    transform: scale(1.3);
}

/* --------------------------------------------------
   14. CONTACT SECTION
-------------------------------------------------- */
.contact-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.contact-info-panel h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 92, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 44px;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .contact-form-panel {
        padding: 24px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-bold);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background-color: #0b0b0b;
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 92, 0, 0.15);
}

textarea.form-control {
    resize: vertical;
}

/* --------------------------------------------------
   15. WOMPI CHECKOUT SIMULATOR (DARK & CONSTRAINED)
-------------------------------------------------- */
.checkout-widget {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.checkout-widget.is-active {
    display: flex;
}

.checkout-container {
    position: relative;
    background: var(--bg-card);
    width: 95%;
    max-width: 550px;
    height: 90vh; /* Constrain height to viewport */
    max-height: 750px;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
    border: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 5100;
    display: flex;
    flex-direction: column;
}

.checkout-header {
    background: #121212;
    border-bottom: 1px solid var(--border-color);
    color: #FFFFFF;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.checkout-body {
    padding: 24px;
    overflow-y: auto; /* Scroll internally */
    flex-grow: 1;
    background: var(--bg-card);
}

.checkout-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkout-payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.payment-radio {
    display: none;
}

.payment-label {
    display: block;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-bold);
    font-size: 12px;
    transition: all var(--transition-fast);
}

.payment-radio:checked + .payment-label {
    border-color: var(--accent);
    background: rgba(255, 92, 0, 0.08);
    color: var(--accent);
}

.receipt-box {
    background: #0f0f0f;
    border: 1.5px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    font-family: monospace;
    font-size: 12px;
    margin-top: 16px;
    color: var(--text-light);
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* --------------------------------------------------
   16. FOOTER & COPYRIGHT
-------------------------------------------------- */
.site-footer {
    background-color: #040404;
    border-top: 1px solid var(--border-color);
    padding: 100px 0 40px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 11px;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-subscribe-text {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.footer-subscribe-form {
    display: flex;
    margin-top: 16px;
}

.footer-subscribe-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-subscribe-form .btn-primary {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0 24px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --------------------------------------------------
   17. RESPONSIVE QUERIES
-------------------------------------------------- */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .peptides-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Mobile/Tablet Modal Layout Optimizations - Full screen sheet */
    .product-modal.is-active {
        display: block !important;
        overflow-y: scroll !important; /* Force scrollbar container to enable native touch scroll on all mobile browsers */
        -webkit-overflow-scrolling: touch !important;
    }

    .modal-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100vw !important;
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
        border-radius: 0 !important;
        border: none !important;
        transform: none !important;
        overflow: visible !important;
    }

    .product-modal.is-active .modal-container {
        transform: none !important;
    }

    .modal-close-btn {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: rgba(7, 7, 7, 0.9) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        z-index: 2200 !important;
    }

    .modal-image-panel {
        width: 100% !important;
        height: 320px !important;
        flex-shrink: 0 !important;
        background-color: #F8F6F4 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
    }

    .modal-image-panel img {
        object-fit: cover !important;
        object-position: center center !important;
        padding: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .modal-trust-badges {
        display: none !important;
    }

    .modal-content-panel {
        width: 100% !important;
        max-height: none !important;
        padding: 24px !important;
        padding-bottom: 80px !important; /* Reduced padding-bottom since we use margin-bottom on child */
        height: auto !important;
        overflow-y: visible !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px !important;
    }

    .modal-content-panel > div:first-child {
        margin-bottom: 80px !important; /* Reduced scroll spacing above the sticky buy bar */
    }

    .modal-title {
        font-size: 1.5rem !important;
        line-height: 1.1;
    }

    .modal-description {
        font-size: 13px !important;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .modal-dose-selector {
        padding: 16px !important;
        margin-top: 10px !important;
        margin-bottom: 16px !important;
    }

    .dose-selector-title {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }

    .dose-label {
        padding: 10px 14px !important;
    }

    .dose-label-left {
        font-size: 13px !important;
        gap: 8px !important;
    }

    .dose-text-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .dose-badge-discount {
        margin-left: 0 !important;
    }

    .dose-label-right {
        font-size: 13px !important;
    }

    .modal-tabs {
        margin-bottom: 12px !important;
    }

    .modal-tab-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .modal-benefits-list {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .modal-benefits-list li {
        font-size: 13px !important;
    }

    .modal-usage {
        padding: 12px !important;
    }

    .modal-usage span {
        font-size: 13px !important;
    }

    /* Sticky Bottom Bar layout for mobile CRO */
    .modal-content-panel > div:last-child {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #111111 !important;
        border-top: 1px solid var(--border-color) !important;
        padding: 16px 20px !important;
        z-index: 2200 !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }

    .modal-action-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 0 !important;
        border-top: none !important;
    }

    .modal-price-box {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .modal-price-label {
        font-size: 10px !important;
        text-transform: uppercase !important;
        color: var(--text-muted) !important;
        margin-bottom: 0 !important;
        display: inline-block !important;
    }

    .modal-price span {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        color: #FFFFFF !important;
    }

    .modal-cta-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        width: 100% !important;
        justify-content: space-between !important;
    }

    .btn-whatsapp-cta {
        width: 46px !important;
        height: 46px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        background-color: #25d366 !important;
        color: #FFFFFF !important;
    }

    .btn-whatsapp-cta .btn-text {
        display: none !important;
    }

    .btn-whatsapp-cta i {
        font-size: 20px !important;
        margin: 0 !important;
    }

    .modal-content-panel .btn-primary {
        flex-grow: 1 !important;
        max-width: none !important;
        width: auto !important;
        padding: 0 24px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        height: 46px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 30px !important;
        box-shadow: 0 0 15px rgba(255, 92, 0, 0.45) !important;
        border: 1px solid var(--accent) !important;
    }

    .modal-content-panel .btn-primary i {
        font-size: 14px !important;
        margin-right: 8px !important;
    }

    .modal-secure-payment-logos {
        justify-content: center !important;
        margin-top: 4px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 768px) {
    /* Section paddings reduction to remove empty black spaces */
    .about-section,
    .info-section,
    .products-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 50px 0 !important;
    }

    /* Mobile typography scaling to prevent overflow & crowding */
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 16px !important;
        line-height: 1.1 !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 28px !important;
        letter-spacing: 0.15em !important;
    }

    .peptide-card {
        padding: 24px !important;
    }

    .peptides-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Mobile Header Layout */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .main-navigation {
        order: 3;
    }
    
    .header-right {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
    }
    
    .btn-header-cta {
        display: none !important;
    }
    
    .main-navigation ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation ul.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px; left: 0; width: 100%;
        background-color: #070707;
        padding: 30px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
    }
    
    /* Styled Swiper Navigation Arrows on Mobile to indicate swipe/drag */
    .swiper-button-prev,
    .swiper-button-next {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        background: linear-gradient(135deg, rgba(255, 92, 0, 0.95), rgba(200, 60, 0, 0.95)) !important;
        border: 2px solid #FFFFFF !important;
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        border-radius: 50% !important;
        z-index: 20 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        box-shadow: 0 4px 15px rgba(255, 92, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.8) !important;
        opacity: 0.95 !important;
    }
    
    .swiper-button-prev {
        left: 6px !important;
    }
    
    .swiper-button-next {
        right: 6px !important;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px !important;
        font-weight: 900 !important;
        color: #FFFFFF !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
    }



    /* Mobile Footer Centering */
    .site-footer {
        text-align: center !important;
        padding: 60px 0 40px 0 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
    }

    .footer-logo img {
        margin: 0 auto 20px auto !important;
    }

    .footer-col ul {
        align-items: center !important;
    }

    .footer-subscribe-form {
        justify-content: center !important;
        max-width: 320px;
        margin: 16px auto 0 auto !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
        padding-top: 30px !important;
    }
}

/* ==========================================================================
   18. PEPTIDE CALCULATOR STYLES
   ========================================================================== */
.calc-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.calc-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.calc-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.calc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 960px;
    margin: 0 auto 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.calc-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.calc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.calc-chip {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.calc-chip:hover {
    border-color: var(--accent);
    color: #FFFFFF;
    background: rgba(255, 92, 0, 0.05);
}

.calc-chip.active {
    background: linear-gradient(135deg, #ff5c00, #ff8400);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 92, 0, 0.35);
}

.calc-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.calc-custom input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.88rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.calc-custom input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.15);
}

.calc-custom input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.78rem;
}

.calc-unit {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.calc-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 0 36px;
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.calc-result-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.calc-result-box:hover {
    border-color: rgba(255, 92, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 92, 0, 0.1);
}

.calc-result-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.calc-result-unit {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
}

.calc-syringe-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.syringe-svg {
    flex-shrink: 0;
}

.syringe-info {
    text-align: left;
}

.syringe-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
}

.syringe-fill-text {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.syringe-fill-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.syringe-warning {
    display: none;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.78rem;
    font-weight: 600;
}

.syringe-warning.visible {
    display: block;
}

.calc-formula {
    margin-top: 36px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.calc-formula h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.calc-formula-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.calc-formula-item {
    text-align: center;
}

.calc-formula-item .formula-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.calc-formula-item .formula-expr {
    font-size: 0.82rem;
    color: #FFFFFF;
    font-weight: 600;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2500;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    font-size: 32px;
    cursor: pointer;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* White Header Logo Filter */
.logo img, .footer-logo img {
    filter: brightness(0) invert(1) !important;
}

/* Modal guide & calculator links */
.modal-guide-link, .modal-calculator-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 92, 0, 0.05);
    border: 1px solid rgba(255, 92, 0, 0.25);
    border-radius: 20px;
    color: var(--accent) !important;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
}

.modal-guide-link:hover, .modal-calculator-btn:hover {
    background: rgba(255, 92, 0, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
}

/* Responsive additions */
@media (max-width: 992px) {
    .calc-card {
        padding: 24px 16px;
        margin-bottom: 40px;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .calc-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .calc-syringe-section {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }
    
    .syringe-info {
        text-align: center;
    }
    
    .calc-formula-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .calc-hero h1 {
        font-size: 2rem;
    }
    
    .floating-whatsapp-btn {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .calc-results {
        grid-template-columns: 1fr;
    }
}

/* Hide floating WhatsApp button when the product modal is active */
.product-modal.is-active ~ .floating-whatsapp-btn {
    display: none !important;
}

/* Responsive heading size for calculator cta banner */
.calc-cta-banner h3 {
    word-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 768px) {
    .calc-cta-banner h3 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .calc-hero h1 {
        font-size: 1.6rem !important;
    }
}

/* ==========================================================================
   WOOCOMMERCE CHECKOUT STYLING (PREMIUM DARK UX)
   ========================================================================== */

/* Overwrite page container width for checkout/cart */
.checkout-page-wrapper {
    max-width: 1200px !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 92, 0, 0.15) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6) !important;
    padding: 40px 30px !important;
}

@media (max-width: 768px) {
    .checkout-page-wrapper {
        padding: 20px 15px !important;
    }
}

/* Alert/Info Notice Boxes (Login/Coupon toggle) */
.woocommerce-info, 
.woocommerce-error, 
.woocommerce-message {
    background: rgba(255, 92, 0, 0.05) !important;
    border: 1px solid rgba(255, 92, 0, 0.25) !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    position: relative !important;
}

.woocommerce-info::before {
    color: var(--accent) !important;
}

.woocommerce-info a {
    color: var(--accent) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.woocommerce-info a:hover {
    text-decoration: underline !important;
}

/* Coupon Inline Form */
form.checkout_coupon,
form.login {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
}

form.checkout_coupon .form-row {
    margin-bottom: 0 !important;
}

/* Desktop Two-Column Flexbox Layout for Checkout Form */
@media (min-width: 993px) {
    form.woocommerce-checkout {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 40px !important;
        align-items: start !important;
        width: 100% !important;
    }
    
    #customer_details {
        flex: 1.15 !important;
        width: auto !important;
        margin: 0 !important;
        float: none !important;
    }
    
    .woocommerce-checkout-review-order-wrapper {
        flex: 0.85 !important;
        width: auto !important;
        margin: 0 !important;
        float: none !important;
        position: sticky !important;
        top: 120px !important;
    }
}

/* Stack customer details columns vertically to keep a clean 2-column feel */
#customer_details .col-1,
#customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    margin: 0 0 30px 0 !important;
}

/* Header Typography inside Form */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading,
.woocommerce-additional-fields h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

/* Form Fields Styling */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Force full width on critical fields */
#billing_first_name_field,
#billing_last_name_field,
#shipping_first_name_field,
#shipping_last_name_field {
    grid-column: span 1;
}

.form-row {
    grid-column: span 2;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 15px !important;
    width: 100% !important;
}

@media (max-width: 576px) {
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
    #billing_first_name_field,
    #billing_last_name_field,
    #shipping_first_name_field,
    #shipping_last_name_field {
        grid-column: span 2;
    }
}

/* Inputs, Textareas, and Selects */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.15) !important;
    background: rgba(255, 92, 0, 0.01) !important;
}

.woocommerce form .form-row label {
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: var(--text-muted) !important;
    margin-bottom: 8px !important;
}

.woocommerce form .form-row label .required {
    color: var(--accent) !important;
    text-decoration: none !important;
}

/* Styled Select2 dropdown elements (WooCommerce selects) */
span.select2-container--default span.select2-selection--single {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    height: 48px !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
}

span.select2-container--default span.select2-selection--single span.select2-selection__rendered {
    color: #FFFFFF !important;
    padding-left: 16px !important;
    font-size: 14px !important;
}

span.select2-container--default span.select2-selection--single span.select2-selection__arrow {
    height: 48px !important;
    right: 12px !important;
}

span.select2-container--default span.select2-selection--single span.select2-selection__arrow b {
    border-color: var(--text-muted) transparent transparent transparent !important;
}

/* Dropdown Options */
span.select2-dropdown {
    background-color: #0d0d0d !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8) !important;
    color: #FFFFFF !important;
    z-index: 9999 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    color: #FFFFFF !important;
    padding: 8px 12px !important;
}

.select2-container--default .select2-results__option[aria-selected=true], 
.select2-container--default .select2-results__option[data-selected=true] {
    background-color: rgba(255, 92, 0, 0.1) !important;
    color: var(--accent) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], 
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--accent) !important;
    color: #FFFFFF !important;
}

/* Table Order Review Styling */
table.shop_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.01) !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}

table.shop_table th {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    color: var(--text-muted) !important;
    background: rgba(255, 255, 255, 0.01) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 16px 20px !important;
}

table.shop_table td {
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
}

table.shop_table tr.cart_item td.product-name {
    font-weight: 600 !important;
}

table.shop_table tr.cart_item td.product-total span {
    font-weight: 700 !important;
    color: var(--accent) !important;
}

table.shop_table tr.order-total th,
table.shop_table tr.order-total td {
    background: rgba(255, 92, 0, 0.02) !important;
    border-bottom: none !important;
}

table.shop_table tr.order-total td span {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
}

/* Payment Widget Styling */
#payment {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 25px !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
    list-style: none !important;
    padding-left: 0 !important;
}

#payment ul.payment_methods li {
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

#payment ul.payment_methods li label {
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-left: 10px !important;
    cursor: pointer !important;
}

#payment div.payment_box {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    color: var(--text-muted) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

/* WooCommerce Place Order button */
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
#place_order {
    background: linear-gradient(135deg, #ff5c00, #ff8400) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 16px 30px !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(255, 92, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    margin-top: 15px !important;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
#place_order:hover {
    background: linear-gradient(135deg, #ff6c1a, #ff941a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.5) !important;
    color: #FFFFFF !important;
}

/* Checkbox and radio custom alignment */
.woocommerce form .form-row input[type="checkbox"],
.woocommerce form .form-row input[type="radio"] {
    accent-color: var(--accent) !important;
    width: auto !important;
    display: inline-block !important;
    margin-right: 8px !important;
}

.woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    color: var(--text-muted) !important;
    font-size: 13px !important;
}

/* Fix spacing on different address checkbox */
#ship-to-different-address {
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
}

#ship-to-different-address label {
    margin-bottom: 0 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #FFFFFF !important;
}

/* ==========================================================================
   WOOCOMMERCE CART PAGE STYLING (PREMIUM DARK UX)
   ========================================================================== */
.woocommerce-cart-form {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 40px !important;
}

table.cart {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: none !important;
}

table.cart th {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    color: var(--text-muted) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 16px 20px !important;
}

table.cart td {
    padding: 20px !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    vertical-align: middle !important;
}

table.cart td.product-remove a {
    color: #ef4444 !important;
    font-size: 20px !important;
    text-decoration: none !important;
}

table.cart td.product-thumbnail img {
    border-radius: 6px !important;
    border: 1px solid var(--border-color) !important;
    padding: 4px !important;
    background: #000 !important;
}

table.cart td.product-name a {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

table.cart td.product-name a:hover {
    color: var(--accent) !important;
}

table.cart td.product-price span,
table.cart td.product-subtotal span {
    font-weight: 700 !important;
}

table.cart td.product-subtotal span {
    color: var(--accent) !important;
}

/* Quantity Input in Cart */
table.cart td.product-quantity .quantity input {
    width: 60px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    color: #FFFFFF !important;
    text-align: center !important;
    font-weight: 700 !important;
}

/* Cart Page - Coupon Section */
.woocommerce-cart table.cart td.actions .coupon {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    float: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-cart table.cart td.actions .coupon label {
    display: none !important;
}

.woocommerce-cart table.cart td.actions .coupon input#coupon_code {
    width: 180px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.woocommerce-cart table.cart td.actions .coupon button[name="apply_coupon"] {
    height: 48px !important;
    padding: 0 24px !important;
    background: linear-gradient(135deg, #ff5c00, #ff8400) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

/* Cart Page - Update Cart Button */
.woocommerce-cart table.cart td.actions button[name="update_cart"] {
    height: 48px !important;
    background: rgba(255, 92, 0, 0.1) !important;
    border: 1px solid rgba(255, 92, 0, 0.3) !important;
    border-radius: 8px !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 0 30px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    float: right !important;
}

.woocommerce-cart table.cart td.actions button[name="update_cart"]:hover {
    background: rgba(255, 92, 0, 0.2) !important;
    border-color: var(--accent) !important;
}

/* Cart Totals Box */
.cart-collaterals {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .cart-collaterals {
        grid-template-columns: 1fr;
    }
}

.cart-collaterals .cart_totals {
    grid-column: 2;
    width: 100% !important;
    float: none !important;
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 30px !important;
}

@media (max-width: 768px) {
    .cart-collaterals .cart_totals {
        grid-column: 1;
    }
}

.cart-collaterals .cart_totals h2 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.cart-collaterals .cart_totals table {
    width: 100% !important;
    margin-bottom: 25px !important;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: #FFFFFF !important;
}

.cart-collaterals .cart_totals table td.product-subtotal span {
    font-weight: 700 !important;
}

.cart-collaterals .cart_totals table tr.order-total th,
.cart-collaterals .cart_totals table tr.order-total td {
    border-bottom: none !important;
}

.cart-collaterals .cart_totals table tr.order-total td span {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--accent) !important;
}

.cart-collaterals .wc-proceed-to-checkout a.checkout-button {
    background: linear-gradient(135deg, #ff5c00, #ff8400) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 16px 30px !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(255, 92, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
}

.cart-collaterals .wc-proceed-to-checkout a.checkout-button:hover {
    background: linear-gradient(135deg, #ff6c1a, #ff941a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.5) !important;
}

/* ==========================================================================
   WOOCOMMERCE THANK YOU PAGE STYLING (PREMIUM DARK UX)
   ========================================================================== */
.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    font-family: 'Outfit', sans-serif !important;
}

.woocommerce-order-received ul.woocommerce-thankyou-order-details {
    list-style: none !important;
    padding-left: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 40px !important;
}

@media (max-width: 768px) {
    .woocommerce-order-received ul.woocommerce-thankyou-order-details {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-order-received ul.woocommerce-thankyou-order-details {
        grid-template-columns: 1fr !important;
    }
}

.woocommerce-order-received ul.woocommerce-thankyou-order-details li {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--text-muted) !important;
    border-right: 1px solid var(--border-color) !important;
    padding-right: 10px !important;
}

.woocommerce-order-received ul.woocommerce-thankyou-order-details li:last-child {
    border-right: none !important;
}

@media (max-width: 768px) {
    .woocommerce-order-received ul.woocommerce-thankyou-order-details li {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }
    .woocommerce-order-received ul.woocommerce-thankyou-order-details li:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

.woocommerce-order-received ul.woocommerce-thankyou-order-details li strong {
    display: block !important;
    font-size: 15px !important;
    color: #FFFFFF !important;
    margin-top: 5px !important;
    text-transform: none !important;
    font-family: 'Outfit', sans-serif !important;
}

.woocommerce-order-received h2.woocommerce-order-details__title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 12px !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}

.woocommerce-order-received section.woocommerce-order-details,
.woocommerce-order-received section.woocommerce-customer-details {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
}

/* ==========================================================================
   4.2. COMBOS & PROTOCOLOS EXCLUSIVOS SECTION (v4.5.1)
   ========================================================================== */
.combos-section {
    background: #080808;
    padding: 100px 0 90px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.combos-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.combos-header {
    text-align: center;
    margin-bottom: 50px;
}

.combos-subtitle {
    color: var(--text-muted);
    max-width: 720px;
    margin: 14px auto 0 auto;
    font-size: 15px;
    line-height: 1.65;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.swiper-combos-container {
    position: relative;
    width: 100%;
    padding: 10px 0 80px 0;
    z-index: 2;
}

.swiper-combos {
    width: 100%;
    overflow: visible !important;
}

/* Swiper Combos Pre-initialization Layout (Prevents Layout Shift) */
.swiper-combos:not(.swiper-initialized) .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    flex-wrap: nowrap !important;
    gap: 28px;
    padding-bottom: 20px;
}

.swiper-combos:not(.swiper-initialized) .swiper-slide {
    width: 380px !important;
    flex-shrink: 0 !important;
}

@media (max-width: 992px) {
    .swiper-combos:not(.swiper-initialized) .swiper-slide {
        width: 85vw !important;
    }
}

.swiper-combos .swiper-slide {
    display: flex;
    height: auto;
}

.combo-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.combo-card:hover {
    border-color: rgba(255, 92, 0, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 92, 0, 0.15);
}

.combo-img-wrapper {
    position: relative;
    width: 100%;
    background: #000000;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.combo-card:hover .combo-img-wrapper img {
    transform: scale(1.025);
}

.combo-card-badge-savings,
.combo-badge-savings {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #FF5C00, #D94400);
    color: #FFFFFF;
    font-family: 'Hanson', sans-serif;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(255, 92, 0, 0.5);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.combo-card-info {
    padding: 20px 22px;
    background: #111111;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-grow: 1;
}

.combo-card-top-info {
    display: flex;
    flex-direction: column;
}

.combo-pill-category {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Hanson', sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 92, 0, 0.08);
    border: 1px solid rgba(255, 92, 0, 0.2);
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.combo-card-title {
    font-family: 'Hanson', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.combo-card-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
    margin: 0;
    line-height: 1.45;
}

.combo-card-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.combo-card-old-price {
    display: block;
    font-size: 11px;
    color: #71717A;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 2px;
}

.combo-card-current-price {
    display: block;
    font-family: 'Hanson', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.combo-card-hint {
    font-size: 11px;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin-top: 2px;
}

.combo-card-hint i {
    color: var(--accent);
}

/* Modal Combo overrides */
.product-modal.is-combo-active .modal-image-panel {
    background: #080808 !important;
}

.product-modal.is-combo-active .modal-image-panel img {
    object-fit: contain !important;
    background: #080808 !important;
    padding: 10px !important;
}

.product-modal.is-combo-active .modal-trust-badges {
    display: none !important;
}

@media (max-width: 992px) {
    .product-modal.is-combo-active .modal-image-panel {
        height: 460px !important;
        background: #080808 !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .product-modal.is-combo-active .modal-image-panel img {
        height: 100% !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }
}

@media (min-width: 993px) {
    .product-modal.is-combo-active .modal-image-panel {
        background: #080808 !important;
        padding: 15px !important;
    }
    .product-modal.is-combo-active .modal-image-panel img {
        height: 100% !important;
        width: 100% !important;
        object-fit: contain !important;
    }
}

@media (max-width: 768px) {
    .combos-section {
        padding: 60px 0 50px 0;
    }
    .combos-header {
        margin-bottom: 35px;
    }
    .combo-card-info {
        padding: 18px;
    }
    .combo-card-title {
        font-size: 17px;
    }
    .combo-card-current-price {
        font-size: 19px;
    }
}
