/* ==========================================================================
   DESIGN SYSTEM - COPA 2026 PREMIUM LANDING PAGE
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #060b16;
    --bg-card: #0e1626;
    --bg-card-hover: #152035;
    --bg-header: rgba(6, 11, 22, 0.85);
    
    --primary: #ffd000;       /* Canary Yellow */
    --primary-hover: #e6bc00;
    --secondary: #009739;     /* Emerald Green */
    --secondary-hover: #008030;
    --accent: #2d82ff;        /* Royal Blue */
    --gold: #ffb700;          /* Trophy Gold */
    --text-white: #ffffff;
    --text-muted: #8c9cb5;
    --text-dark: #121824;
    --success: #10b981;
    --danger: #ef4444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout & Styling */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 208, 0, 0.2);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */

.promo-banner {
    background: linear-gradient(90deg, #009739, #060b16, #ffd000);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: var(--text-white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.badge-live {
    background-color: var(--danger);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
}

.text-gold {
    color: var(--primary);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.main-header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.logo-copa {
    color: var(--secondary);
    background: linear-gradient(135deg, var(--secondary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-year {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.3);
}

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

.secure-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 20px;
}

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

.cart-btn {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--border-radius-pill);
    position: relative;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cart-btn:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.cart-count {
    background-color: var(--primary);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(0, 151, 57, 0.08) 0%, rgba(6, 11, 22, 1) 90%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(0, 151, 57, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(0, 151, 57, 0.3);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 208, 0, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--text-dark);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.35);
}

/* HERO BANNER CARD */
.hero-banner-card {
    perspective: 1000px;
}

.card-inner {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(21, 32, 53, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(255, 208, 0, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 208, 0, 0.3);
}

.card-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.card-inner p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-inner strong {
    color: var(--primary);
    font-size: 1.15rem;
}

.card-extra {
    font-size: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    opacity: 0.15;
    animation: cardPulse 4s infinite;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.trust-badges-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background-color: rgba(14, 22, 38, 0.4);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-item i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.badge-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.badge-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PRODUCTS CATALOG & TABS
   ========================================================================== */

.products-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs Controller */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    border-color: var(--primary);
    background-color: var(--bg-card-hover);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 151, 57, 0.3);
}

/* Products Grid */
.products-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.products-grid.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* Product Card */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-premium);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-badge.gold {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--text-dark);
}

.product-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.product-img-wrapper.dragging {
    cursor: grabbing;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    pointer-events: none;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(6, 11, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.product-img-wrapper:hover .carousel-arrow {
    opacity: 1;
    visibility: visible;
}

.carousel-arrow.prev {
    left: 12px;
}

.carousel-arrow.next {
    right: 12px;
}

.carousel-arrow:hover {
    background-color: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.4);
}

/* Carousel Indicators (Dots) */
.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background-color: rgba(6, 11, 22, 0.4);
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Color & Size Selectors */
.selector-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selector-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 700;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.size-btn.active {
    background-color: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

/* Color dot selector */
.color-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.color-dot.active {
    border: 1px solid transparent !important;
    box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--primary) !important;
    transform: scale(1.15);
}

.color-dot:hover {
    box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px rgba(255, 208, 0, 0.4);
    transform: scale(1.1);
}

/* Specific product colors */
.color-dot.black { background-color: #000000; }
.color-dot.blue { background-color: #0d2df5; }
.color-dot.green { background-color: #009739; }
.color-dot.navy { background-color: #08122c; }
.color-dot.yellow { background-color: #ffd000; }
.color-dot.white { background-color: #ffffff; border: 1px solid #ccc; }
.color-dot.white-lisa { background-color: #eaeaea; border: 1px dashed #999; }
.color-dot.green-yellow { background: linear-gradient(135deg, #009739 50%, #ffd000 50%); }

.color-name-display {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Product Price Section */
.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.new-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.discount-badge {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Add to cart action button */
.btn-add-cart {
    width: 100%;
    background-color: var(--secondary);
    color: var(--text-white);
    font-size: 0.95rem;
    padding: 12px;
}

.btn-add-cart:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 151, 57, 0.2);
}

/* Highlight special layout cards */
.highlight-card {
    border: 1.5px solid rgba(255, 208, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 208, 0, 0.05);
}

.highlight-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.15);
}

/* ==========================================================================
   SWEEPSTAKES DETAILS
   ========================================================================== */

.sweepstakes-info-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(14, 22, 38, 0.6) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sweepstakes-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sweep-text {
    max-width: 600px;
}

.tag-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 183, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 183, 0, 0.25);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sweep-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sweep-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.steps-list li {
    display: flex;
    gap: 20px;
}

.step-num {
    background-color: var(--primary);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steps-list li strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.steps-list li span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sweep-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prize-card {
    background: linear-gradient(135deg, #ffd000, #ff8c00);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
    width: 100%;
    max-width: 300px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.prize-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.prize-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0;
}

.prize-sub {
    font-size: 0.9rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 20px;
}

.cbf-stars {
    display: flex;
    gap: 4px;
    color: var(--text-dark);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.stars-row {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    font-size: 2.2rem;
    color: var(--text-muted);
}

.user-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.user-verified {
    font-size: 0.75rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: #03060c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.social-icons a:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.footer-links h4,
.footer-security h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.payment-badges {
    display: flex;
    gap: 16px;
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.payment-badges i:hover {
    color: var(--text-white);
}

.security-badges-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sec-badge {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    transition: visibility 0.3s;
}

.cart-drawer.active {
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-drawer.active .cart-drawer-content {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart-btn {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.close-cart-btn:hover {
    color: var(--text-white);
}

/* Shipping Goal */
.shipping-goal-container {
    padding: 12px 20px;
    background-color: rgba(0, 245, 212, 0.02);
    border-bottom: 1px solid rgba(0, 245, 212, 0.08);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.shipping-goal-container strong {
    color: var(--primary);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-pill);
    margin-top: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--secondary);
    border-radius: var(--border-radius-pill);
    transition: width 0.3s ease;
}

/* Cart items list */
.cart-items {
    padding: 24px;
    flex-grow: 1;
    flex-shrink: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart-msg {
    text-align: center;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.empty-cart-msg i {
    font-size: 3rem;
}

.btn-close-cart-action {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Single Cart Item Layout */
.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cart-item-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.02);
}

.qty-btn:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.remove-item-btn {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 8px;
}

.remove-item-btn:hover {
    color: var(--danger);
}

/* Cart Footer */
.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(6, 11, 22, 0.3);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.total-grand {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 800;
    border-top: 1px dotted rgba(255, 255, 255, 0.1);
    margin-top: 12px;
    padding-top: 12px;
    margin-bottom: 16px;
}

.total-grand #cart-grand-total {
    color: var(--primary);
    font-family: var(--font-heading);
}

.sweepstakes-multiplier {
    background-color: rgba(255, 183, 0, 0.08);
    border: 1px dashed rgba(255, 183, 0, 0.25);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--gold);
}

.cart-actions-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

.secure-checkout-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   DYNAMIC POPUPS (REAL-TIME SOCIAL PROOF)
   ========================================================================== */

.notification-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 380px;
    width: calc(100% - 48px);
}

.popup-notification {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
    animation: popupSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

.popup-notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--secondary);
}

.popup-notification.viewers::before {
    background-color: var(--accent);
}

.popup-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.popup-notification.viewers .popup-avatar {
    color: var(--accent);
}

.popup-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popup-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}

.popup-product {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.popup-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
}

.popup-close:hover {
    color: var(--text-white);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes cardPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.02); opacity: 0.3; }
}

@keyframes popupSlideIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes popupSlideOut {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-30px) scale(0.95); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-banner-card {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sweepstakes-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    
    .sweep-text {
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .nav-links {
        display: none; /* Mobile menu can be hidden or collapsed; since it's a simple LP, we hide desktop links */
    }
    
    .secure-badge-header {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-img-wrapper {
        height: 340px;
    }
    
    .carousel-arrow {
        opacity: 1 !important;
        visibility: visible !important;
        width: 34px;
        height: 34px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-drawer-content {
        width: 100%;
    }
    
    .notification-container {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
    }
    
    .sweep-graphics {
        order: -1; /* Place prize badge on top on mobile */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
    
    .tabs-container {
        gap: 8px;
    }
}

/* ==========================================================================
   MOBILE TRUST SEALS & QUALITY BADGES
   ========================================================================== */
.mobile-trust-seals-section {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.seals-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.seal-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seal-icon {
    font-size: 1.8rem;
}

.ra-badge-box {
    background: linear-gradient(135deg, #00c853 0%, #1b5e20 100%);
    border-color: #00c853;
    flex-direction: column;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    padding: 6px;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.2);
}

.ra-score {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.ra-status {
    font-size: 0.55rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1px 4px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.seal-text-box h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.seal-text-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   DIRECT CHECKOUT & PAYMENT SUCCESS VIEW IN CART DRAWER
   ========================================================================== */
.checkout-subheader {
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    color: var(--text-white);
    transform: translateX(-3px);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
}

.checkout-section {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-section h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    background-color: rgba(6, 11, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    padding: 10px 12px 10px 36px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-with-icon input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Card billing details specific inputs (no icons) */
#card-payment-details input {
    background-color: rgba(6, 11, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    padding: 10px 12px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

#card-payment-details input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.form-select {
    width: 100%;
    background-color: rgba(6, 11, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    padding: 10px 12px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-select:focus {
    border-color: var(--primary);
}

/* Payment tabs */
.payment-method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.pay-tab {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 6px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pay-tab i {
    font-size: 1.1rem;
}

.pay-tab:hover {
    border-color: var(--primary);
    color: var(--text-white);
}

.pay-tab.active {
    background-color: rgba(255, 208, 0, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.badge-instant {
    font-size: 0.55rem;
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 800;
}

/* Checkout actions */
.checkout-summary-box {
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.summary-row strong {
    font-size: 1.35rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.btn-pay {
    width: 100%;
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 14px;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(0, 151, 57, 0.2);
}

.btn-pay:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 151, 57, 0.35);
}

/* ==========================================================================
   SUCCESS & PIX DETAILS SCREEN
   ========================================================================== */
#success-view-container {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
    min-height: 0;
    overflow-y: auto;
    align-items: center;
    text-align: center;
}

.success-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 6px;
    color: var(--text-white);
}

.success-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.success-large-icon {
    font-size: 4rem;
}

.success-payment-box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pix-instructions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pix-instruction-badge {
    background-color: rgba(0, 200, 83, 0.15);
    color: #00c853;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.pix-instructions p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pix-qr-container {
    background-color: #ffffff;
    padding: 8px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pix-qrcode {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pix-code-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.pix-code-container label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.pix-code-input-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.pix-code-input-row textarea {
    flex-grow: 1;
    background-color: rgba(6, 11, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    padding: 10px;
    font-size: 0.75rem;
    font-family: monospace;
    resize: none;
    height: 48px;
    outline: none;
    scrollbar-width: none;
}

.pix-code-input-row textarea::-webkit-scrollbar {
    display: none;
}

.pix-timer {
    font-size: 0.75rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pix-timer i {
    color: var(--primary);
}

/* Card details panel style */
.success-card-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.success-card-msg h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.success-card-msg p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sweepstakes-coupon-badge {
    background-color: rgba(255, 183, 0, 0.08);
    border: 1px dashed rgba(255, 183, 0, 0.3);
    color: var(--gold);
    padding: 10px 14px;
    border-radius: var(--border-radius-md);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    text-align: left;
}

.success-actions {
    width: 100%;
}

.success-actions button {
    width: 100%;
}

/* Responsive Overrides for Seals */
@media (max-width: 768px) {
    .seals-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 10px;
    }
    
    .seal-item {
        gap: 16px;
    }
    
    .checkout-form {
        padding: 15px;
    }
}

/* Product free shipping badge card */
.product-free-shipping-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #00f5d4;
    font-size: 0.65rem;
    font-weight: 700;
    background-color: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 8px;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 8px rgba(0, 245, 212, 0.05);
}

/* Flex height mapping for containers inside drawer (prevents overflow cutoffs) */
#cart-view-container, #checkout-view-container, #success-view-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    overflow: hidden;
    height: calc(100% - 80px); /* header height offset */
}

/* Shipping options container */
.shipping-options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shipping-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.shipping-radio-option input[type="radio"] {
    display: none; /* Hide default radio */
}

.shipping-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.shipping-radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    transform: scale(0);
    transition: var(--transition-smooth);
}

.shipping-radio-option input[type="radio"]:checked + .shipping-radio-circle {
    border-color: var(--primary);
}

.shipping-radio-option input[type="radio"]:checked + .shipping-radio-circle::after {
    transform: scale(1);
}

.shipping-radio-option.active {
    border-color: var(--primary);
    background-color: rgba(255, 208, 0, 0.03);
}

.shipping-radio-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 2px;
}

.shipping-radio-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}

.shipping-radio-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.shipping-radio-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
}

/* Green highlight for free shipping option when active */
#label-shipping-free.active {
    border-color: #00f5d4;
    background-color: rgba(0, 245, 212, 0.03);
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.05);
}

#label-shipping-free input[type="radio"]:checked + .shipping-radio-circle {
    border-color: #00f5d4;
}

#label-shipping-free input[type="radio"]:checked + .shipping-radio-circle::after {
    background-color: #00f5d4;
}

#label-shipping-free .shipping-radio-price {
    color: #00f5d4;
    text-shadow: 0 0 5px rgba(0, 245, 212, 0.3);
}
