/* Custom Design Tokens & Variables */
:root {
    --primary: #E50914;
    --primary-hover: #C40811;
    --secondary: #F8F9FA;
    --accent: #FF5E00;
    --bg: #FFFFFF;
    --card-bg: #FFFFFF;
    --text: #1B1B22;
    --text-muted: #6C757D;
    --success: #00C853;
    --border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(12px);
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.btn-outline:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.btn-accent:hover {
    background-color: #E05300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.5);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Utilities */
.red-text {
    color: var(--primary);
}

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

.hidden {
    display: none !important;
}

/* Promo Alert Bar */
.promo-bar {
    background: linear-gradient(90deg, #E50914, #FF5E00);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    z-index: 100;
    position: relative;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 90;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active, .nav-link.red-link {
    color: var(--text);
}

.nav-link.active, .nav-link.red-link {
    font-weight: 700;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
}

.phone-link i {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    background-color: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-nav-link.active, .mobile-nav-link.red-link {
    color: var(--text);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

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

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

.hero-badge {
    background-color: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.3);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.trust-tags {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
}

.tag-item i {
    color: var(--success);
}

/* Urgency Sales Alert */
.sales-alert {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(27, 27, 34, 0.95);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 80;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 400px;
}

.sales-alert.show {
    transform: translateY(0);
}

.alert-pulse {
    width: 12px;
    height: 12px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.alert-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

#sales-alert-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sections Global */
section {
    padding: 3rem 0;
}

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

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

.section-header h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

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

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 9, 20, 0.4);
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.category-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(15, 15, 18, 0.95) 85%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.card-overlay h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Product Section & Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    background-color: #1e1e27;
    overflow: hidden;
}

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

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

.badge-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-family: var(--font-head);
}

.badge-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-family: var(--font-head);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.stars {
    color: #FFD700;
    font-size: 0.85rem;
}

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

.product-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-specs span strong {
    color: var(--text);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

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

/* Why Choose Us Section */
.why-us-section {
    background-color: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(229, 9, 20, 0.25);
    background-color: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.review-card .stars {
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

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

/* Lead Capture Form */
.lead-section {
    background: linear-gradient(rgba(15, 15, 18, 0.8), rgba(15, 15, 18, 0.8)), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--border);
}

.lead-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.lead-content h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.lead-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.lead-form {
    background-color: rgba(27, 27, 34, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex-grow: 1;
    background-color: rgba(15, 15, 18, 0.8);
    border: 1px solid var(--border);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.consent-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    justify-content: center;
    cursor: pointer;
}

.lead-success-msg {
    background-color: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.lead-success-msg i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.code-badge {
    background-color: var(--secondary);
    border: 2px dashed var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.checkout-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 2.5rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.open .modal-content, .modal.open .checkout-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.modal-gallery {
    background-color: #1e1e27;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-tag {
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font-head);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.modal-info h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
}

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

.discount-badge {
    background-color: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font-head);
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: 8px;
}

.spec-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.spec-item strong {
    color: var(--text);
}

.badge-stock {
    color: var(--success);
    font-weight: 600;
}

.modal-purchase {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.shipping-info {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-info i {
    color: var(--success);
}

/* Simulated Checkout Styles */
.checkout-content h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.checkout-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    background-color: #F8F9FA;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.payment-option {
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option input {
    accent-color: var(--primary);
}

.payment-option.checked {
    border-color: var(--primary);
    background-color: rgba(229, 9, 20, 0.03);
}

.price-summary {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.summary-line.total {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.checkout-success {
    text-align: center;
    padding: 1rem 0;
}

.checkout-success h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.checkout-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Footer Section */
.main-footer {
    background-color: #F8F9FA;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-contact p i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    padding-top: 2rem;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-nav.open {
        display: flex;
    }
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .trust-tags {
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-gallery {
        height: 250px;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Transparent Overlay Links for Google Ads Redirect Policy Compliance */
.hero-overlay-link,
.card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
}
