/* ==========================================================================
   DESIGN SYSTEM - AMAIA BELEZA (DEPILADORA 3 EM 1)
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Luxury Dark Mode */
    --primary: #e8a2a5;               /* Rose Gold */
    --primary-light: #ffd4d6;
    --primary-dark: #d48a8d;
    --primary-gradient: linear-gradient(135deg, #ffd4d6 0%, #e8a2a5 100%);
    --gold-gradient: linear-gradient(135deg, #ffe1c6 0%, #d49f6b 100%);
    
    --accent: #10b981;                /* Bright conversion mint green */
    --accent-hover: #059669;
    --accent-light: rgba(16, 185, 129, 0.12);
    
    /* Semantic Dark Theme Swaps */
    --dark: #ffffff;                  /* Titles and primary text now white */
    --dark-muted: #b8acb1;            /* Subtitles and secondary text now light rose-gray */
    --light: #0b0809;                 /* Deep obsidian background */
    --cream: #171113;                 /* Darker grey-rose for alternating sections */
    --white: #1e1719;                 /* Card and modal backgrounds (solid/glass) */
    
    /* Neutral gray adaptions */
    --gray-100: #1b1416;
    --gray-200: #261e20;
    --gray-300: #382c2e;              /* Dark borders */
    --gray-600: #a3979b;
    --gray-900: #ffffff;
    
    --warning: #f59e0b;
    --success: #10b981;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.95);
    --shadow-accent: 0 0 25px rgba(232, 162, 165, 0.35); /* Glowing rose-gold halo */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(135deg, #b87b7d 0%, #e8a2a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 178, 122, 0.45);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 178, 122, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 178, 122, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 178, 122, 0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & NAVBAR
   ========================================================================== */

.announcement-bar {
    background-color: #a3b18a; /* Moss Green from original page */
    color: var(--dark);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 100;
    position: relative;
}

.navbar {
    background-color: rgba(11, 8, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 162, 165, 0.15);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    background: radial-gradient(circle at 80% 20%, rgba(232, 162, 165, 0.08) 0%, var(--light) 100%);
    padding: 60px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(232, 162, 165, 0.15);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(232, 162, 165, 0.3);
}

@media (max-width: 992px) {
    .hero-badge {
        align-self: center;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--dark-muted);
}

.hero-bullets {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-bullets {
        align-items: center;
    }
}

.hero-bullet-icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark-muted);
}

@media (max-width: 992px) {
    .hero-rating {
        justify-content: center;
    }
}

.stars {
    color: var(--warning);
    display: flex;
    gap: 2px;
}

/* Carousel / Image Area */
.hero-media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    max-width: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    border: 4px solid var(--white);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--dark);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* Trust Elements under Hero Media */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    width: 100%;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-muted);
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.section-title-wrapper {
    margin-bottom: 50px;
}

.section-pre {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
}

.features {
    background-color: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(232, 162, 165, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 162, 165, 0.25);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(232, 162, 165, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   COMPARISON TABLE SECTION
   ========================================================================== */

.comparison-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 162, 165, 0.15);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

@media (max-width: 576px) {
    .comparison-table th, .comparison-table td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    background-color: var(--cream);
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.comparison-table td .status-y {
    color: var(--success);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-table td .status-n {
    color: var(--warning);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works {
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(232, 162, 165, 0.3);
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

.step-card p {
    color: var(--dark-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   KITS / OFFER SECTION
   ========================================================================== */

.offers {
    background-color: var(--cream);
}

/* Interactive Configurator Area */
.configurator-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 950px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 55px;
    border: 1px solid rgba(232, 162, 165, 0.15);
}

@media (max-width: 850px) {
    .configurator-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }
}

.configurator-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-preview-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    position: relative;
}

.product-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.offer-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff4757;
    color: #ffffff; /* High contrast white text on red badge */
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 10;
}

/* Option Cards (Kits) */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.option-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.option-item:hover {
    border-color: var(--primary);
    background-color: rgba(232, 162, 165, 0.02);
}

.option-item.selected {
    border-color: var(--primary);
    background-color: rgba(232, 162, 165, 0.06);
}

.option-badge-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.option-badge-best {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.option-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.option-item.selected .option-check {
    border-color: var(--primary);
    background-color: var(--primary);
}

.option-check::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.option-item.selected .option-check::after {
    opacity: 1;
}

.option-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.option-sub {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

.option-pricing {
    text-align: right;
}

.option-old-price {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.option-new-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

.option-installment {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

/* Color Selector */
.color-selector-wrapper {
    margin-bottom: 25px;
}

.color-selector-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.color-dots {
    display: flex;
    gap: 15px;
}

.color-dot-wrapper {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.color-dot-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid var(--white);
    outline: 2px solid var(--gray-300);
    transition: var(--transition);
}

.color-dot-wrapper:hover .color-dot-circle {
    outline-color: var(--primary-light);
}

.color-dot-wrapper.active .color-dot-circle {
    outline-color: var(--primary);
}

.color-dot-wrapper span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-muted);
}

/* Custom Color Dot Palette */
.color-pink { background-color: #ffd2d5; }
.color-lilac { background-color: #e2d2ff; }
.color-random { background: linear-gradient(135deg, #ffd2d5 0%, #e2d2ff 100%); }

/* Summary Area */
.summary-area {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px dashed var(--gray-300);
    font-weight: 700;
    font-size: 1.05rem;
}

.checkout-btn {
    width: 100%;
}

.checkout-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.checkout-trust-badges img {
    height: 24px;
    opacity: 0.8;
}

/* ==========================================================================
   REVIEWS & SOCIAL PROOF
   ========================================================================== */

.reviews {
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background-color: var(--cream);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

.review-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.review-info span {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.review-text {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

.review-product-image {
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    margin-top: 5px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq {
    background-color: var(--cream);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(232, 162, 165, 0.08);
}

.faq-item:hover {
    border-color: rgba(232, 162, 165, 0.25);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    user-select: none;
}

@media (max-width: 576px) {
    .faq-header {
        padding: 16px 20px;
        font-size: 1rem;
    }
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--dark-muted);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: rgba(232, 162, 165, 0.15);
    color: var(--primary-dark);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 28px 22px;
    color: var(--dark-muted);
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .faq-content {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   GUARANTEE BAR
   ========================================================================== */

.guarantee-section {
    background: var(--cream);
    padding: 60px 0;
    border-top: 1px solid rgba(232, 162, 165, 0.15);
    border-bottom: 1px solid rgba(232, 162, 165, 0.15);
}

.guarantee-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .guarantee-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--primary-dark);
    line-height: 1;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.guarantee-content p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: #080607; /* Fixed deep black background for footer */
    color: #a1a1aa;
    padding: 60px 0 30px;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    color: #ffffff; /* Fixed white for footer brand */
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
}

.footer-logo .logo-dot {
    background-color: var(--primary-light);
}

.footer-about p {
    line-height: 1.5;
}

.footer-links-col h4 {
    color: #ffffff; /* Fixed white for column headers */
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: #ffffff; /* Fixed white hover */
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #27272a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom p {
    color: #71717a;
}

.footer-payments {
    display: flex;
    gap: 10px;
}

.footer-payments i {
    font-size: 1.6rem;
    color: #52525b;
}

/* ==========================================================================
   INTERACTIVE SIMULATED MODAL FOR CHECKOUT
   ========================================================================== */

.modal-checkout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 21, 21, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto; /* Enable scrolling on overlay */
    padding: 20px 10px; /* Breathing room for mobile scrolling */
}

.modal-checkout.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    padding: 25px 20px; /* Reduced padding */
    position: relative;
    margin: auto; /* Support auto-centering and scroll overflow */
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-checkout.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark);
}

.modal-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-align: center;
}

.modal-desc {
    color: var(--dark-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.flex-1 { flex: 1; }
.form-group.flex-2 { flex: 2; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-muted);
}

.form-input {
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    background-color: var(--gray-100);
    transition: var(--transition);
    width: 100%;
}

.form-input:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 162, 165, 0.15);
}

.form-row {
    display: flex;
    gap: 15px;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

.modal-checkout-summary {
    background-color: var(--cream);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.modal-checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed var(--gray-300);
}

/* Multi-step Logic & Animations */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 12px;
}

.progress-step {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.progress-step span {
    width: 22px;
    height: 22px;
    background-color: var(--gray-200);
    color: var(--gray-600);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.progress-step.active {
    color: var(--primary-dark);
}

.progress-step.active span {
    background-color: var(--primary);
    color: var(--white);
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-actions-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* CEP Auto lookup input button */
.input-with-action {
    position: relative;
    display: flex;
    align-items: center;
}

.input-action-msg {
    position: absolute;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Loading state spinner */
.checkout-spinner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    gap: 20px;
}

.checkout-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pix Success Page */
.pix-success-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.pix-success-icon {
    font-size: 3.5rem;
    color: var(--success);
    line-height: 1;
}

.pix-urgency-notice {
    background-color: rgba(0, 178, 122, 0.1);
    color: var(--accent-hover);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 178, 122, 0.2);
}

.qr-code-frame {
    width: 200px;
    height: 200px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.qr-code-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pix-copiapaste-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    margin-top: 10px;
}

.pix-cp-label {
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-muted);
}

.pix-cp-input-group {
    display: flex;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    width: 100%;
}

.pix-cp-input-group input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.85rem;
    background-color: var(--gray-100);
    color: var(--dark-muted);
    font-family: monospace;
    outline: none;
}

.btn-copy-pix-action {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-copy-pix-action:hover {
    background-color: var(--primary-dark);
}

.copy-success-tooltip {
    display: none;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 700;
    margin-top: 4px;
}

.pix-instructions-footer {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 15px;
}

/* ==========================================================================
   REAL-TIME SOCIAL PROOF POPUP
   ========================================================================== */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 162, 165, 0.15);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    max-width: 320px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.social-proof-popup.active {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.social-proof-content h5 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.social-proof-content p {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.3;
}

.social-proof-time {
    font-size: 0.65rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

/* ==========================================================================
   FAQ ACCORDION STYLES (Smooth transition override)
   ========================================================================== */
.faq-item {
    border: 1px solid rgba(232, 162, 165, 0.15);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    transition: var(--transition);
}

.faq-header:hover {
    background-color: var(--cream);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.6;
}

/* ==========================================================================
   INPUTS FIELD WITH FLOATING ICONS & SAFE MESSAGES
   ========================================================================== */
.form-group-premium {
    position: relative;
    margin-bottom: 10px;
}

.form-group-premium label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-muted);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-premium-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-premium-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.input-premium-wrapper input {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 10px 15px 10px 42px;
    font-size: 0.9rem;
    background-color: var(--white);
    color: var(--dark);
    transition: var(--transition);
}

.input-premium-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 162, 165, 0.15);
}

.input-security-notice {
    font-size: 0.72rem;
    color: var(--gray-600);
    margin-top: 5px;
    display: block;
    line-height: 1.3;
}

/* Timer line indicator on PIX screen */
.pix-timer-container {
    width: 100%;
    background-color: var(--gray-200);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.pix-timer-bar {
    width: 100%;
    background-color: var(--accent);
    height: 100%;
    transform-origin: left;
    animation: shrinkTimer 900s linear forwards; /* 15 minutes = 900s */
}

@keyframes shrinkTimer {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* ==========================================================================
   2-STEP EXPRESS CHECKOUT MODAL STYLES
   ========================================================================== */
.checkout-urgency-banner {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: var(--border-radius-sm);
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-urgency-banner i {
    animation: pulse 1s infinite;
}

.checkout-product-summary {
    background-color: var(--cream);
    border-radius: var(--border-radius-sm);
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(232, 162, 165, 0.15);
}

.summary-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-thumb img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.summary-details {
    flex: 1;
}

.summary-details h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.summary-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-free-shipping, .badge-secure-checkout {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-free-shipping {
    background-color: rgba(0, 178, 122, 0.1);
    color: var(--accent-hover);
}

.badge-secure-checkout {
    background-color: rgba(232, 162, 165, 0.15);
    color: var(--primary-dark);
}

/* Modal Content mobile height optimization */
@media (max-width: 768px) {
    .modal-checkout {
        align-items: flex-start; /* Align to top to allow scroll downwards */
    }
    
    .modal-content {
        width: 100%;
        max-width: 100%;
        margin: 15px auto 40px; /* Margins for scrolling top/bottom */
        border-radius: 12px;
        padding: 20px 15px 25px;
    }
}

/* ==========================================================================
   SHOPEE IMPORTED RATINGS STYLES
   ========================================================================== */
.shopee-rating-summary {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .shopee-rating-summary {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 15px;
    }
}

.shopee-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--gray-300);
    padding-right: 40px;
}

@media (max-width: 768px) {
    .shopee-rating-score {
        border-right: none;
        padding-right: 0;
        align-items: flex-start;
    }
}

.shopee-rating-score .score-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ee4d2d;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.shopee-rating-score .score-stars {
    color: #ee4d2d;
    font-size: 0.95rem;
    margin: 5px 0;
    display: flex;
    gap: 2px;
}

.shopee-rating-score .score-total {
    font-size: 0.78rem;
    color: var(--dark-muted);
}

.shopee-rating-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-filter {
    padding: 6px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--dark-muted);
    cursor: pointer;
    transition: var(--transition);
}

.rating-filter.active, .rating-filter:hover {
    border-color: #ee4d2d;
    color: #ee4d2d;
    background-color: rgba(238, 77, 45, 0.05);
}

.shopee-badge {
    font-size: 0.75rem;
    color: #ee4d2d;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

