/* TeamPrinted Unified Stylesheet */
/* Based on index.html template - comprehensive styles for all pages */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body styles removed to avoid conflicts with TeamPrinted theme */

/* Hide scrollbar across all browsers */
::-webkit-scrollbar {
    display: none;
}
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== BRAND COLORS ===== */
:root {
    --brand-cyan: #00AEEF;
    --brand-cyan-hover: #0089C4;
    --brand-magenta: #EC008C;
    --brand-magenta-hover: #C80075;
    --brand-yellow: #FFF200;
    --brand-green: #4CAF50;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-slate: #3A3A3A;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* ===== TYPOGRAPHY (Non-conflicting) ===== */
/* Removed global heading and paragraph styles to avoid conflicts with TeamPrinted theme */

/* ===== BRAND LOGO ===== */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.brand-logo-stripes {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-logo-stripe {
    height: 0.25rem;
    width: 2rem;
    border-radius: 0.125rem;
}

.brand-logo-stripe:nth-child(1) { background-color: var(--brand-cyan); }
.brand-logo-stripe:nth-child(2) { background-color: var(--brand-magenta); }
.brand-logo-stripe:nth-child(3) { background-color: var(--brand-yellow); }

.brand-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--brand-white);
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .brand-logo-stripe {
        width: 1.5rem;
    }
    .brand-logo-text {
        font-size: 1.125rem;
    }
}

/* ===== BUTTONS (Professional Design System) ===== */
/* Use tf-btn for all buttons to maintain theme consistency */
.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px; /* consistent 8px radius */
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 0.875rem; /* 14px - modular scale */
    padding: 12px 24px; /* 8px baseline grid */
    line-height: 1.2; /* proper button line-height */
    height: 48px; /* consistent component height */
    letter-spacing: 0; /* neutral tracking */
    background-color: var(--brand-magenta);
    color: var(--brand-white);
}

.tf-btn:hover {
    background-color: var(--brand-magenta-hover);
    color: var(--brand-white);
    text-decoration: none;
}

.tf-btn.btn-secondary {
    background-color: var(--brand-cyan);
    color: var(--brand-white);
}

.tf-btn.btn-secondary:hover {
    background-color: var(--brand-cyan-hover);
    color: var(--brand-white);
}

.tf-btn.btn-outline-primary {
    background-color: transparent;
    color: var(--brand-cyan);
    border: 2px solid var(--brand-cyan);
}

.tf-btn.btn-outline-primary:hover {
    background-color: var(--brand-cyan);
    color: var(--brand-white);
}

.tf-btn.btn-success {
    background-color: var(--brand-green);
    color: var(--brand-white);
}

.tf-btn.btn-success:hover {
    background-color: #45a049;
    color: var(--brand-white);
}

.tf-btn.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.tf-btn.btn-block {
    width: 100%;
}

/* Gray/disabled style button */
.tf-btn.btn-gray {
    background-color: #e5e7eb;
    color: #9ca3af;
    font-weight: 700;
}

.tf-btn.btn-gray:hover {
    background-color: var(--brand-cyan);
    color: var(--brand-white);
    transform: none;
    box-shadow: 0 10px 15px -3px rgba(0, 174, 239, 0.1);
}

/* Legacy btn class for backward compatibility */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    line-height: 1;
}

.btn-primary {
    background-color: var(--brand-magenta);
    color: var(--brand-white);
}

.btn-primary:hover {
    background-color: var(--brand-magenta-hover);
}

.btn-secondary {
    background-color: var(--brand-cyan);
    color: var(--brand-white);
}

.btn-secondary:hover {
    background-color: var(--brand-cyan-hover);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--brand-cyan);
    border: 2px solid var(--brand-cyan);
}

.btn-outline-primary:hover {
    background-color: var(--brand-cyan);
    color: var(--brand-white);
}

.btn-success {
    background-color: var(--brand-green);
    color: var(--brand-white);
}

.btn-success:hover {
    background-color: #45a049;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===== HEADER STYLES ===== */
.header {
    background-color: var(--brand-black);
    color: var(--brand-white);
    border-bottom: 1px solid var(--gray-800);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-search {
    flex: 1;
    max-width: 32rem;
    margin: 0 2rem;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 9999px;
    font-size: 0.875rem;
    background-color: var(--brand-white);
    color: var(--gray-900);
}

.header-search input:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.2);
}

.header-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: color 0.2s;
}

.header-contact-item:hover {
    color: var(--brand-white);
}

/* Navigation */
.nav {
    border-top: 1px solid var(--gray-800);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--gray-300);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-item:hover,
.nav-item.active {
    color: var(--brand-white);
    border-bottom-color: var(--brand-yellow);
}

.nav-item.active {
    border-bottom-color: var(--brand-magenta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.nav-account {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-account:hover {
    color: var(--brand-white);
}

.nav-cart {
    position: relative;
    color: var(--gray-300);
    cursor: pointer;
    transition: color 0.2s;
}

.nav-cart:hover {
    color: var(--brand-white);
}

.nav-cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: var(--brand-magenta);
    color: var(--brand-white);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 50%;
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brand-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: var(--brand-black);
    border-top: 1px solid var(--gray-800);
    padding: 1.5rem;
}

.mobile-search {
    margin-bottom: 1.5rem;
}

.mobile-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-600);
    background-color: var(--gray-900);
    color: var(--brand-white);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.mobile-nav {
    margin-bottom: 2rem;
}

.mobile-nav-item {
    display: block;
    color: var(--gray-300);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--brand-white);
}

@media (max-width: 768px) {
    .header-search,
    .header-contact,
    .nav-main {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }
}

/* ===== LAYOUT COMPONENTS (Non-conflicting) ===== */
/* Removed .container to avoid conflicts with TeamPrinted theme */

.tp-section {
    padding: 5rem 0;
}

.tp-section-sm {
    padding: 3rem 0;
}

.tp-section-lg {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .tp-section { padding: 3rem 0; }
    .tp-section-sm { padding: 2rem 0; }
    .tp-section-lg { padding: 5rem 0; }
}

/* ===== GRID SYSTEM ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .md\:grid-cols-2,
    .md\:grid-cols-3,
    .md\:grid-cols-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== CARD COMPONENTS ===== */
.card {
    background-color: var(--brand-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background-color: var(--gray-50);
}

/* Product Cards */
.product-card {
    background-color: var(--brand-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image {
    background-color: var(--gray-50);
    padding: 1.5rem;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 16rem;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--brand-cyan);
    color: var(--brand-white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.product-price {
    color: var(--brand-slate);
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.color-swatch {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: opacity 0.2s;
    border: 1px solid #a8a8a8;
}

.color-swatch:hover {
    border-color: #666;
}

.color-count {
    font-size: 0.75rem;
    color: var(--brand-slate);
    font-weight: 500;
}

/* Horizontal Product Cards (Collection Page) */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card-horizontal {
    display: flex;
    background-color: var(--brand-white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card-horizontal:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image-link {
    flex-shrink: 0;
    width: 320px;
}

.product-image-box {
    background-color: #e8f4fc;
    height: 288px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-horizontal:hover .product-image-box img {
    transform: scale(1.05);
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-details {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.product-details .product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-details .product-title a {
    color: var(--gray-900);
    text-decoration: none;
}

.product-details .product-title a:hover {
    color: var(--brand-primary);
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-reviews .stars {
    color: #f59e0b;
    font-size: 0.875rem;
}

.product-reviews .review-count {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-pricing .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.savings-badge {
    background-color: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.product-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-colors {
    margin-bottom: 1.25rem;
}

.colors-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.color-swatches-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.color-swatch-circle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #d1d5db;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-swatch-circle:hover {
    transform: scale(1.1);
    border-color: #6b7280;
}

.color-count-badge {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    background-color: var(--gray-100);
    border-radius: 0.25rem;
}

.more-colors-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.product-actions .btn {
    padding: 0.625rem 1.5rem;
    font-weight: 500;
}

/* Responsive: Stack cards on mobile */
@media (max-width: 768px) {
    .product-card-horizontal {
        flex-direction: column;
    }

    .product-image-link {
        width: 100%;
    }

    .product-image-box {
        height: 220px;
        border-radius: 0.75rem 0.75rem 0 0;
    }

    .product-details {
        padding: 1.25rem;
    }

    .product-details .product-title {
        font-size: 1.25rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== FORM COMPONENTS (Professional Typography System) ===== */
.form-group {
    margin-bottom: 24px; /* 8px baseline grid */
}

.form-label {
    display: block;
    font-size: 0.75rem; /* 12px - modular scale */
    font-weight: 700;
    color: #374151; /* WCAG AA contrast */
    margin-bottom: 8px; /* 8px baseline */
    letter-spacing: 0.05em; /* proper tracking for small caps */
    text-transform: uppercase;
    line-height: 1.2;
}

.form-input,
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea {
    width: 100% !important;
    height: 48px !important; /* consistent component height */
    padding: 12px 16px !important; /* 8px baseline grid */
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important; /* consistent rounded corners */
    font-size: 0.875rem !important; /* 14px - modular scale */
    font-weight: 400 !important;
    background-color: #ffffff !important;
    color: #111827 !important; /* high contrast */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: 1.5 !important; /* proper body text line-height */
    letter-spacing: 0 !important; /* neutral tracking for body text */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Textarea specific height override */
textarea {
    height: auto !important;
    min-height: 96px !important; /* 8px baseline multiple */
    resize: vertical !important;
    padding: 16px !important; /* increased vertical padding for multiline */
}

.form-input:focus,
.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--brand-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1) !important;
    background-color: var(--brand-white) !important;
}

.form-input::placeholder,
.form-control::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

/* Large form controls */
.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

/* Form control with enhanced styling for better UX */
.form-control-enhanced {
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
    font-weight: 500;
    background-color: var(--gray-50);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-enhanced:focus {
    border-color: var(--brand-magenta);
    background-color: var(--brand-white);
    box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.1);
}

.form-control-enhanced:hover:not(:focus) {
    border-color: var(--gray-300);
    background-color: var(--brand-white);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-checkbox {
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 0.25rem;
    border: 2px solid var(--gray-300);
    color: var(--brand-magenta);
}

.form-checkbox:focus {
    border-color: var(--brand-magenta);
    box-shadow: 0 0 0 2px rgba(236, 0, 140, 0.2);
}

/* ===== UTILITY CLASSES ===== */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    height: 0.75rem;
    background-color: var(--brand-yellow);
    z-index: -1;
}

.text-brand-cyan { color: var(--brand-cyan); }
.text-brand-magenta { color: var(--brand-magenta); }
.text-brand-yellow { color: var(--brand-yellow); }
.text-brand-green { color: var(--brand-green); }
.text-brand-slate { color: var(--brand-slate); }

.bg-brand-cyan { background-color: var(--brand-cyan); }
.bg-brand-magenta { background-color: var(--brand-magenta); }
.bg-brand-yellow { background-color: var(--brand-yellow); }
.bg-brand-green { background-color: var(--brand-green); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.border { border: 1px solid var(--gray-200); }
.border-2 { border: 2px solid var(--gray-200); }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-lg { max-width: 32rem; }
.max-w-3xl { max-width: 48rem; }

.transition-all { transition: all 0.2s ease-in-out; }
.transition-colors { transition: color 0.2s ease-in-out; }

.cursor-pointer { cursor: pointer; }

.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

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

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-slide-in { animation: slideIn 0.3s ease-out; }
.animate-marquee { animation: marquee 20s linear infinite; }

/* ===== FOOTER ===== */
.footer {
    background-color: var(--brand-black);
    color: var(--brand-white);
}

.footer-main {
    padding: 4rem 0;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--brand-white);
}

.footer-link {
    color: var(--gray-300);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: var(--brand-yellow);
}

.footer-newsletter {
    border-top: 1px solid var(--gray-800);
    padding: 2rem 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===== RESPONSIVE DESIGN (Non-conflicting) ===== */
@media (max-width: 640px) {
    .tp-grid {
        gap: 1rem;
    }

    .tp-card-body,
    .tp-card-header,
    .tp-card-footer {
        padding: 1rem;
    }

    .tf-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .tp-product-info {
        padding: 1rem;
    }

    .tp-product-image {
        padding: 1rem;
    }

    .tp-product-image img {
        height: 12rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .tp-header,
    .tp-footer,
    .tp-mobile-menu,
    .tf-btn {
        display: none !important;
    }

    .tp-section {
        padding: 1rem 0;
    }
}

/* ===== FOOTER STYLES ===== */
.tp-footer {
    background: #fff;
    padding: 64px 0 0;
    border-top: 1px solid #e5e7eb;
}
.tp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.tp-footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.tp-footer-contact li i {
    color: #00AEEF;
    font-size: 16px;
    margin-top: 3px;
    width: 16px;
}
.tp-footer-contact li a,
.tp-footer-contact li span {
    color: #4b5563;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.5;
}
.tp-footer-contact li a:hover {
    color: #00AEEF;
}
.tp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.tp-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 16px;
    transition: all 0.2s;
}
.tp-footer-social a:hover {
    background: #00AEEF;
    color: #fff;
}
.tp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tp-footer-links li {
    margin-bottom: 12px;
}
.tp-footer-links a {
    color: #4b5563;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}
.tp-footer-links a:hover {
    color: #00AEEF;
}
.tp-footer-newsletter p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}
.tp-footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tp-footer-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.tp-footer-newsletter input[type="email"]:focus {
    border-color: #00AEEF;
}
.tp-footer-newsletter button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #EC008C;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.tp-footer-newsletter button:hover {
    background: #d4007d;
}
.tp-footer-newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}
.tp-footer-newsletter-consent input {
    margin-top: 3px;
    accent-color: #00AEEF;
}
.tp-footer-newsletter-consent label {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
}
.tp-footer-newsletter-consent a {
    color: #00AEEF;
    text-decoration: underline;
}
.tp-footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.tp-footer-copyright {
    font-size: 14px;
    color: #9ca3af;
}
.tp-footer-legal {
    display: flex;
    gap: 24px;
}
.tp-footer-legal a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
}
.tp-footer-legal a:hover {
    color: #00AEEF;
}

/* Contact inline layout for mobile */
.tp-footer-contact-inline {
    display: none;
}

/* Chevron icon - hidden on desktop */
.tp-footer-chevron {
    display: none;
}

@media (max-width: 992px) {
    .tp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .tp-footer {
        padding: 32px 0 0;
    }

    .tp-footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Contact section - compact inline */
    .tp-footer-contact-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e7eb;
    }

    .tp-footer-contact-inline {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .tp-footer-contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #4b5563;
        text-decoration: none;
        font-size: 14px;
    }

    .tp-footer-contact-item i {
        color: #00AEEF;
        font-size: 14px;
    }

    .tp-footer-contact-item:hover {
        color: #00AEEF;
    }

    .tp-footer-social {
        margin-top: 0;
        gap: 10px;
    }

    .tp-footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Accordion styles for link sections */
    .tp-footer-accordion {
        border-bottom: 1px solid #e5e7eb;
    }

    .tp-footer-accordion .tp-footer-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        margin-bottom: 0;
        cursor: pointer;
        font-size: 14px;
        user-select: none;
    }

    .tp-footer-chevron {
        display: block;
        font-size: 12px;
        color: #9ca3af;
        transition: transform 0.3s ease;
    }

    .tp-footer-accordion.open .tp-footer-chevron {
        transform: rotate(180deg);
    }

    .tp-footer-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .tp-footer-accordion.open .tp-footer-collapse {
        max-height: 300px;
        padding-bottom: 16px;
    }

    .tp-footer-links li {
        margin-bottom: 10px;
    }

    .tp-footer-links a {
        font-size: 14px;
    }

    /* Newsletter accordion */
    .tp-footer-newsletter-col .tp-footer-newsletter {
        padding-bottom: 0;
    }

    .tp-footer-newsletter p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .tp-footer-newsletter input[type="email"] {
        padding: 10px 14px;
        font-size: 14px;
    }

    .tp-footer-newsletter button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .tp-footer-newsletter-consent label {
        font-size: 11px;
    }

    /* Footer bottom */
    .tp-footer-bottom {
        margin-top: 24px;
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .tp-footer-copyright {
        font-size: 13px;
    }

    .tp-footer-legal {
        gap: 16px;
    }

    .tp-footer-legal a {
        font-size: 13px;
    }
}

/* ===== COLLECTION PAGE STYLES ===== */
.collection-color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}
.collection-color-swatch:hover {
    border-color: #333;
}
.collection-color-swatch.active {
    border-color: #000;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #000;
}
.color-more {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.color-more:hover {
    background-color: #e9ecef;
}

.collection-product-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.product-image-wrapper {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.savings-badge {
    background-color: #d4edda;
    color: #155724;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.btn-quote {
    background-color: #111827;
    border: none;
    color: white;
}
.btn-quote:hover {
    background-color: #1f2937;
    color: white;
}

.btn-design {
    background-color: white;
    border: 1px solid #dee2e6;
    color: #212529;
}
.btn-design:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.filter-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.collection-item {
    padding: 8px 0;
    color: #495057;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.15s;
}
.collection-item:hover {
    color: #0d6efd;
}
.collection-item.active {
    color: #0d6efd;
    font-weight: 600;
}
.collection-count {
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
}
.collection-item.active .collection-count {
    background-color: #0d6efd;
    color: white;
}

.filter-color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-color {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: transform 0.15s;
}
.filter-color:hover {
    border-color: #333;
}
.filter-color.active {
    box-shadow: 0 0 0 2px #0d6efd;
}

.promo-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 220px;
}
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
}
/* ===== HOMEPAGE STYLES ===== */

/* Hero Section */
.hero-section {
    padding: 3rem 0 3.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef6fc 100%);
}

.hero-headline {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-headline .text-highlight {
    color: var(--brand-cyan);
}

.hero-subtext {
    font-size: 1.1875rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

/* Social Proof Pill */
.social-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: white;
    padding: 0.375rem 0.875rem 0.375rem 0.375rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100);
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -6px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.social-proof-pill span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
}

/* Micro-commitment Form */
.team-signup-form {
    margin-bottom: 1.5rem;
}

.input-group-hero {
    display: flex;
    gap: 0;
    max-width: 460px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.form-control-hero {
    flex: 1;
    border: none;
    padding: 0.9375rem 1.125rem;
    font-size: 0.9375rem;
    outline: none;
}

.form-control-hero::placeholder {
    color: var(--gray-400);
}

.btn-hero-submit {
    background: var(--brand-cyan);
    color: white;
    border: none;
    padding: 0.9375rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-hero-submit:hover {
    background: var(--brand-cyan-hover);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.625rem;
    margin-bottom: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.trust-badge i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.store-preview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    overflow: hidden;
}

.store-preview-header {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.store-preview-dots {
    display: flex;
    gap: 6px;
}

.store-preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.store-preview-dots span:first-child { background: #ef4444; }
.store-preview-dots span:nth-child(2) { background: #eab308; }
.store-preview-dots span:last-child { background: #22c55e; }

.store-preview-url {
    font-size: 0.75rem;
    color: var(--gray-500);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.store-preview-content {
    padding: 1rem;
}

.store-preview-hero-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.store-preview-hero-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.store-preview-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mini-product {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 0.5rem;
}

.mini-product-img {
    height: 60px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mini-product-name {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.mini-product-price {
    height: 8px;
    width: 50%;
    background: var(--gray-300);
    border-radius: 4px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.floating-badge i {
    font-size: 1.25rem;
}

.badge-savings {
    bottom: 20%;
    left: -10px;
    color: #16a34a;
}

.badge-savings i { color: #16a34a; }

.badge-delivery {
    top: 15%;
    right: -10px;
    color: var(--brand-cyan);
}

.badge-delivery i { color: var(--brand-cyan); }

/* Section Styles */
.section-how-it-works,
.section-benefits,
.section-sports,
.section-products,
.section-testimonial {
    padding: 3.5rem 0;
}

.section-how-it-works {
    background: white;
}

.section-benefits {
    background: var(--gray-50);
}

.section-sports {
    background: white;
}

.section-products {
    background: var(--gray-50);
}

.section-testimonial {
    background: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-cyan);
    margin-bottom: 0.5rem;
}

/* Step Cards */
.step-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    position: relative;
    height: 100%;
}

.step-number {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 26px;
    height: 26px;
    background: var(--brand-cyan);
    color: white;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--brand-cyan);
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1rem;
    color: var(--brand-cyan);
}

.benefit-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.benefit-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.45;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
}

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: var(--gray-50);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.sport-card:hover {
    background: var(--brand-cyan);
    transform: translateY(-2px);
}

.sport-card:hover .sport-icon,
.sport-card:hover span {
    color: white;
}

.sport-icon {
    font-size: 1.5rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.sport-card span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
}

/* Product Cards (Home) */
.product-card-home {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s;
}

.product-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.product-card-home-img {
    background: #e8f4fc;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-home-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-home-info {
    padding: 1rem;
}

.product-card-home-info h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.product-card-home-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-swatches {
    display: flex;
    gap: 4px;
    align-items: center;
}

.mini-swatch {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}

.mini-swatch-more {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.product-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Testimonial Section */
.testimonial-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.testimonial-stars i {
    font-size: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.1875rem;
    line-height: 1.55;
    color: var(--gray-800);
    margin: 0 0 1.25rem;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.testimonial-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Final CTA */
.section-final-cta {
    padding: 3.5rem 0;
    background: var(--gray-900);
}

.final-cta-card {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.final-cta-card h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.final-cta-card p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.team-signup-form-dark .input-group-hero {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.final-cta-trust span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.final-cta-trust i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .floating-badge {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .sports-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0 2.5rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .input-group-hero {
        flex-direction: column;
        border-radius: 10px;
    }

    .form-control-hero {
        border-bottom: 1px solid var(--gray-200);
        border-radius: 10px 10px 0 0;
    }

    .btn-hero-submit {
        border-radius: 0 0 10px 10px;
        justify-content: center;
    }

    .trust-badges {
        gap: 0.75rem 1.25rem;
    }

    .section-how-it-works,
    .section-benefits,
    .section-sports,
    .section-products,
    .section-testimonial,
    .section-final-cta {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .sports-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-content blockquote {
        font-size: 1rem;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .final-cta-card h2 {
        font-size: 1.75rem;
    }
}

/* ===== HOMEPAGE V2 STYLES ===== */
/* Inspired by Monday Merch, Avail, Aurora Capital */

/* Trust Bar */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.625rem 0;
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-bar-rating {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.trust-bar-stars {
    display: flex;
    gap: 2px;
    color: #00b67a;
    font-size: 0.875rem;
}

.trust-bar-source {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-bar-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-300);
}

.trust-bar-stat {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-bar-stat strong {
    color: var(--gray-900);
    font-weight: 700;
}

.trust-bar-avatars {
    display: flex;
}

.trust-bar-avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -6px;
}

.trust-bar-avatars img:first-child {
    margin-left: 0;
}

/* Hero Section V2 */
.hero-section-v2 {
    padding: 4rem 0 5rem;
    background: white;
}

.promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.promo-pill i {
    color: #f59e0b;
}

.hero-headline-v2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brand-cyan);
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.hero-benefit i {
    color: #10b981;
    font-size: 1rem;
}

/* Hero Signup Form */
.hero-signup-form {
    margin-bottom: 1.75rem;
}

.hero-input-group {
    display: flex;
    max-width: 480px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--gray-300);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-input-group:focus-within {
    border-color: var(--brand-cyan);
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.15);
}

.hero-input-group .hero-input,
.hero-input-group input[type="text"].hero-input,
input.hero-input {
    flex: 1;
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: auto !important;
}

.hero-input-group .hero-input:focus,
.hero-input-group input[type="text"].hero-input:focus,
input.hero-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-width: 0 !important;
    border-color: transparent !important;
}

.hero-input::placeholder {
    color: var(--gray-400);
}

.hero-submit-btn {
    background: var(--brand-cyan);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.hero-submit-btn:hover {
    background: var(--brand-cyan-hover);
}

.hero-form-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.hero-secondary-cta {
    margin-top: 1rem;
}

.hero-cta-secondary {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.hero-cta-secondary:hover {
    color: var(--brand-cyan);
}

/* Product Showcase Grid */
.hero-product-showcase {
    padding-left: 2rem;
}

.showcase-grid {
    display: flex;
    gap: 0.75rem;
}

.showcase-col-left {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.showcase-col-right .showcase-item {
    flex-shrink: 0;
}

.showcase-item {
    position: relative;
}

.showcase-item-inner {
    background: var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

/* Left column: 2 items, first bigger (~525px total with gap) */
.showcase-col-left .showcase-item:first-child .showcase-item-inner {
    height: 320px;
}

.showcase-col-left .showcase-item:last-child .showcase-item-inner {
    height: 190px;
}

/* Right column: 3 equal items (~575px total with gaps) */
.showcase-col-right .showcase-item-inner {
    height: 180px;
}

.showcase-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-item-inner img {
    transform: scale(1.05);
}

.showcase-tags {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.showcase-tag {
    background: white;
    color: var(--gray-700);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.showcase-tag.tag-color {
    background: var(--brand-cyan);
    color: white;
}

.showcase-tag.tag-method {
    background: var(--gray-800);
    color: white;
}

/* Partners Section */
.partners-section {
    padding: 2.5rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.partners-header span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.partners-logos {
    position: relative;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 30s linear infinite;
}

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

.partner-logo {
    flex-shrink: 0;
}

.partner-logo-placeholder {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
}

/* How It Works V2 */
.how-it-works-v2 {
    padding: 5rem 0;
    background: white;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-v2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle-v2 {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.section-label-v2 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-cyan);
    margin-bottom: 0.75rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.steps-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works-footer {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.how-it-works-footer p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.how-it-works-footer .tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0;
}

/* Step Cards */
.steps-cards {
    display: flex;
    gap: 1.5rem;
}

.step-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-card > p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 20px;
}

.step-card-visual {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    min-height: 200px;
}

/* Upload Mockup */
.mockup-upload {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-dropzone {
    flex: 1;
    border: 2px dashed var(--gray-300);
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.mockup-dropzone-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mockup-dropzone-icon i {
    font-size: 22px;
    color: var(--brand-cyan);
}

.mockup-dropzone-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.mockup-dropzone-or {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.mockup-dropzone-btn {
    background: var(--brand-cyan);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.mockup-file-types {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.mockup-file-types span {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mockup-file-types i {
    color: #10b981;
    font-size: 0.6875rem;
}

/* Store Mockup */
.mockup-store {
    height: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.mockup-store-header {
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-store-logo {
    width: 28px;
    height: 28px;
    background: var(--brand-cyan);
    border-radius: 6px;
}

.mockup-store-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-800);
}

.mockup-store-grid {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mockup-product {
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.mockup-product-img {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.mockup-product-img i {
    font-size: 28px;
    color: var(--gray-400);
}

.mockup-product-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.mockup-product-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand-cyan);
}

/* Share Mockup */
.mockup-share {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-share-url {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-share-url i {
    color: var(--gray-400);
}

.mockup-share-url span {
    flex: 1;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.mockup-share-url strong {
    color: var(--brand-cyan);
}

.mockup-share-url button {
    background: var(--gray-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: var(--gray-500);
    cursor: pointer;
}

.mockup-share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin: 16px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-share-buttons {
    display: flex;
    gap: 8px;
}

.mockup-share-btn {
    flex: 1;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.mockup-share-btn i {
    font-size: 18px;
}

.mockup-share-btn span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.mockup-share-btn.whatsapp i {
    color: #25d366;
}

.mockup-share-btn.email i {
    color: var(--brand-cyan);
}

.mockup-share-btn.sms i {
    color: #8b5cf6;
}

/* Mobile - stack cards vertically */
@media (max-width: 767px) {
    .steps-cards {
        flex-direction: column;
        gap: 1rem;
    }

    .step-card {
        padding: 20px;
        border-radius: 14px;
    }

    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .step-card > p {
        font-size: 0.875rem;
        margin-bottom: 16px;
    }

    .step-card-visual {
        padding: 16px;
        min-height: 160px;
    }

    /* Upload mockup - mobile */
    .mockup-dropzone {
        padding: 20px 16px;
    }

    .mockup-dropzone-icon {
        width: 48px;
        height: 48px;
    }

    .mockup-dropzone-icon i {
        font-size: 20px;
    }

    .mockup-dropzone-text {
        font-size: 0.8125rem;
    }

    .mockup-dropzone-or {
        font-size: 0.75rem;
    }

    .mockup-dropzone-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .mockup-file-types span {
        font-size: 0.75rem;
    }

    /* Store mockup - mobile */
    .mockup-store-header {
        padding: 10px 12px;
    }

    .mockup-store-logo {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .mockup-store-name {
        font-size: 0.75rem;
    }

    .mockup-store-grid {
        padding: 12px;
        gap: 8px;
    }

    .mockup-product {
        padding: 8px;
    }

    .mockup-product-img {
        height: 40px;
        margin-bottom: 6px;
    }

    .mockup-product-img i {
        font-size: 16px;
    }

    .mockup-product-name {
        font-size: 0.6875rem;
    }

    .mockup-product-price {
        font-size: 0.625rem;
    }

    /* Share mockup - mobile */
    .mockup-share-url {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .mockup-share-url i {
        font-size: 14px;
    }

    .mockup-share-url button {
        padding: 5px 10px;
        font-size: 0.6875rem;
    }

    .mockup-share-label {
        font-size: 0.75rem;
    }

    .mockup-share-btn {
        padding: 12px 10px;
    }

    .mockup-share-btn i {
        font-size: 20px;
    }

    .mockup-share-btn span {
        font-size: 0.6875rem;
    }
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number-v2 {
    width: 28px;
    height: 28px;
    background: var(--brand-cyan);
    color: white;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.step-icon-v2 {
    width: 72px;
    height: 72px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon-v2 i {
    font-size: 1.5rem;
    color: var(--brand-cyan);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Bestsellers Section */
.bestsellers-section {
    padding: 5rem 0;
    background: white;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.section-title-v2 em {
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: #b8e986;
    text-underline-offset: 4px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-cyan);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.view-all-btn:hover {
    background: var(--brand-cyan-hover);
    color: white;
    text-decoration: none;
}

.products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Promo Card */
.promo-card-v2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.promo-card-content {
    position: relative;
    z-index: 2;
}

.promo-card-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.promo-highlight {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #b8e986;
    margin-bottom: 1.5rem;
}

.promo-btn {
    display: inline-block;
    background: white;
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.promo-card-v2:hover .promo-btn {
    transform: scale(1.02);
}

.promo-card-image {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 6rem;
    color: rgba(255,255,255,0.1);
}

/* Product Cards V2 */
.product-card-v2 {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.product-card-v2:hover {
    transform: translateY(-4px);
}

.product-card-v2.bg-blue .product-image-v2 {
    background: #e0f2fe;
}

.product-card-v2.bg-yellow .product-image-v2 {
    background: #fef9c3;
}

.product-image-v2 {
    background: #e0f2fe;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
}

.product-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-v2:hover .product-image-v2 img {
    transform: scale(1.05);
}

.product-placeholder-v2 {
    color: var(--gray-300);
    font-size: 3rem;
}

.product-info-v2 {
    padding: 1rem 0.25rem;
}

.product-name-v2 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.product-price-v2 {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.product-colors-v2 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.625rem;
    flex-wrap: wrap;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.color-count {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background: white;
}

.why-us-description {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.benefits-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card-v2 {
    background: var(--gray-50);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon-v2 {
    width: 44px;
    height: 44px;
    background: #e0f2fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-v2 i {
    font-size: 1.125rem;
    color: var(--brand-cyan);
}

.benefit-card-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-card-v2 p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.45;
}

/* Testimonial Section V2 */
.testimonial-section-v2 {
    padding: 5rem 0;
    background: var(--gray-50);
}

.testimonial-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-stars-v2 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-content-v2 blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-800);
    margin: 0 0 1.5rem;
    font-style: normal;
}

.testimonial-author-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-v2 img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.testimonial-author-v2 strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-author-v2 span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-stats-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number-v2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-cyan);
    line-height: 1;
}

.stat-label-v2 {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.review-image {
    height: 180px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.review-content blockquote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0 0 1rem;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.review-author strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.review-author span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
}

.reviews-stat {
    text-align: center;
}

.reviews-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-cyan);
    line-height: 1;
}

.reviews-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: var(--gray-900);
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.final-cta-actions {
    margin-bottom: 1.5rem;
}

.final-cta-btn {
    background: var(--brand-cyan);
    font-size: 1.0625rem;
    padding: 1rem 2rem;
}

.final-cta-btn:hover {
    background: var(--brand-cyan-hover);
}

.final-cta-trust-v2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.final-cta-trust-v2 span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.final-cta-trust-v2 i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* Responsive Styles for V2 */
@media (max-width: 1199px) {
    .hero-headline-v2 {
        font-size: 3rem;
    }

    .products-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-section-v2 {
        padding: 3rem 0 4rem;
    }

    .hero-headline-v2 {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .hero-product-showcase {
        padding-left: 0;
        margin-top: 3rem;
    }

    .showcase-large .showcase-item-inner {
        min-height: 280px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .steps-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .step-item::after {
        display: none;
    }

    .how-it-works-footer {
        margin-top: 2rem;
    }

    .how-it-works-footer p {
        font-size: 1rem;
    }

    .how-it-works-footer .tagline {
        font-size: 1.125rem;
    }

    .products-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card-v2 {
        min-height: 280px;
    }

    .benefits-grid-v2 {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero-input-group {
        flex-direction: column;
    }

    .hero-input {
        border-bottom: 1px solid var(--gray-200) !important;
    }

    .hero-submit-btn {
        justify-content: center;
        padding: 0.875rem 1rem;
    }

    .reviews-stats {
        gap: 1.5rem;
    }

    .reviews-stat-number {
        font-size: 1.5rem;
    }

    .reviews-section,
    .how-it-works-v2,
    .bestsellers-section,
    .why-us-section,
    .final-cta-section {
        padding: 2rem 0;
    }

    .trust-bar-content {
        gap: 0.75rem 1rem;
    }

    .trust-bar-divider {
        display: none;
    }

    .hero-section-v2 {
        padding: 1rem 0 2rem;
    }

    /* Reverse hero columns on mobile - images first */
    .hero-section-v2 .row {
        flex-direction: column-reverse;
    }

    .hero-section-v2 .col-lg-6.mt-5 {
        margin-top: 0 !important;
        margin-bottom: 1.5rem;
    }

    .hero-product-showcase {
        margin-top: 0;
    }

    .hero-headline-v2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .promo-pill {
        margin-bottom: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-benefits {
        margin-bottom: 1.25rem;
        gap: 0.5rem 1rem;
    }

    .hero-benefit {
        font-size: 0.875rem;
    }

    .hero-signup-form {
        margin-bottom: 1rem;
    }

    .hero-secondary-cta {
        margin-top: 0;
    }

    /* Showcase grid on mobile - stack columns, 2x3 grid */
    .showcase-grid {
        flex-direction: column;
        gap: 0.5rem;
    }

    .showcase-col-left {
        flex: none;
        flex-direction: row;
        gap: 0.5rem;
    }

    .showcase-col-right {
        gap: 0.5rem;
    }

    .showcase-col-left .showcase-item:first-child .showcase-item-inner,
    .showcase-col-left .showcase-item:last-child .showcase-item-inner,
    .showcase-col-right .showcase-item-inner {
        min-height: 100px;
        height: 120px;
    }

    .showcase-tags {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works-footer p {
        font-size: 0.9375rem;
    }

    .how-it-works-footer .tagline {
        font-size: 1rem;
    }

    .section-title-v2 {
        font-size: 1.75rem;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .products-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .promo-card-v2 {
        grid-column: span 2;
        min-height: 200px;
        flex-direction: row;
        align-items: center;
    }

    .promo-card-v2 h3 {
        font-size: 1.25rem;
    }

    .promo-highlight {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .promo-card-image {
        font-size: 4rem;
    }

    .testimonial-card-v2 {
        padding: 1.5rem;
    }

    .testimonial-content-v2 blockquote {
        font-size: 1.0625rem;
    }

    .testimonial-stats-v2 {
        flex-direction: column;
        gap: 1.25rem;
    }

    .stat-number-v2 {
        font-size: 2rem;
    }

    .final-cta-content h2 {
        font-size: 1.75rem;
    }

    .final-cta-trust-v2 {
        flex-direction: column;
        gap: 0.75rem;
    }

    .how-it-works-v2,
    .bestsellers-section,
    .why-us-section,
    .testimonial-section-v2,
    .final-cta-section {
        padding: 3rem 0;
    }
}
