/* ═══════════════════════════════════════════════════
   BlazorShop — Modern Ecommerce Theme
   ═══════════════════════════════════════════════════ */

:root {
    --bg: #faf9f7;
    --bg-white: #ffffff;
    --bg-light: #f5f4f2;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --primary: #2d3436;
    --primary-hover: #1a1a2e;
    --accent: #e17055;
    --accent-hover: #d35400;
    --accent-light: #fff3f0;
    --accent-rgb: 225, 112, 85;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #e74c3c;
    --border: #e5e7eb;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif; 
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TOP BAR (Removed - Consolidated into Header) ── */
/* .top-bar styles removed as part of header consolidation */

/* ── HEADER ── */
.site-header {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; gap: 1.5rem; }

.header-left { flex: 0 0 auto; }

.header-center { flex: 1 1 auto; display: flex; justify-content: center; }

.header-right { flex: 0 0 auto; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 0.75rem; }

.logo-text { display: inline; }

.logo-image { display: block; object-fit: contain; height: 70px; width: auto; }
.logo i { color: var(--accent); }

.main-nav { display: flex; gap: 0.25rem; }
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover { background: var(--bg); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.search-box { position: relative; }
.search-box input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.55rem 1rem 0.55rem 2.5rem;
    font-size: 0.85rem;
    width: 220px;
    transition: all var(--transition);
    font-family: var(--font);
}
.search-box input:focus { outline: none; border-color: var(--accent); width: 280px; }
.search-box i { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.85rem; }

.cart-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    background: var(--bg-white);
    text-decoration: none;
}
.cart-icon-wrapper:hover { border-color: var(--accent); background: var(--accent-light); }
.cart-icon-inner { position: relative; display: flex; align-items: center; }
.cart-svg { width: 22px; height: 22px; color: var(--text); transition: color var(--transition); }
.cart-icon-wrapper:hover .cart-svg { color: var(--accent); }
.cart-badge-new {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
    line-height: 1;
}
.cart-label { font-size: 0.8rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.cart-icon-wrapper:hover .cart-label { color: var(--accent); }

/* Cart animations */
@keyframes cartBounce {
    0% { transform: scale(1); }
    25% { transform: scale(1.25); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@keyframes badgePop {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
.cart-bounce { animation: cartBounce 0.5s ease; }
.badge-pop { animation: badgePop 0.4s ease; }

/* ── HERO (fallback when no banners) ── */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3436 50%, #636e72 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}
.hero-content { max-width: 650px; margin: 0 auto; }
.hero h1 { font-family: var(--font-display); font-size: 3rem; line-height: 1.2; margin-bottom: 1rem; }
.hero .accent { color: var(--accent); }
.hero p { font-size: 1.15rem; opacity: 0.85; margin-bottom: 2rem; }

/* ── BANNER CAROUSEL ── */
.banner-carousel { position: relative; overflow: hidden; background: #111; }
.banner-slides { position: relative; width: 100%; height: 470px; }
.banner-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease; z-index: 0;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-slide-link { display: block; text-decoration: none; cursor: pointer; }

.banner-slide-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; align-items: center; padding: 0 5%;
}
.banner-align-left { justify-content: flex-start; }
.banner-align-center { justify-content: center; text-align: center; }
.banner-align-right { justify-content: flex-end; text-align: right; }
.banner-slide-text { max-width: 600px; }
.banner-slide-text.banner-light { color: #fff; }
.banner-slide-text.banner-dark { color: #1a1a2e; }
.banner-slide-text h1 {
    font-family: var(--font-display); font-size: 2.8rem; line-height: 1.15;
    margin-bottom: 0.75rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.banner-slide-text p {
    font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.banner-cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; font-weight: 700; font-size: 1rem;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    background: var(--accent); color: #fff; text-decoration: none;
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.banner-cta-btn:hover { background: var(--accent-dark, #d35400); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* Carousel arrows */
.banner-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: all 0.25s;
}
.banner-arrow:hover { background: rgba(255,255,255,0.3); }
.banner-prev { left: 1.5rem; }
.banner-next { right: 1.5rem; }

/* Carousel dots */
.banner-dots {
    position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 0.5rem;
}
.banner-dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6); background: transparent;
    cursor: pointer; transition: all 0.25s; padding: 0;
}
.banner-dot.active { background: #fff; border-color: #fff; transform: scale(1.2); }
.banner-dot:hover { border-color: #fff; }

/* ── SECTIONS ── */
.section-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }
.section-alt { background: var(--bg-light); }

/* ── SHOP BY CATEGORY CARDS ── */
.category-cards-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}
.category-home-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 2rem 1.25rem; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius);
    text-decoration: none; color: var(--text);
    transition: all 0.25s ease; cursor: pointer;
}
.category-home-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.category-home-icon {
    width: 56px; height: 56px; border-radius: 50%; margin-bottom: 0.85rem;
    background: var(--accent-light); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    transition: all 0.25s;
}
.category-home-card:hover .category-home-icon { background: var(--accent); color: #fff; }
.category-home-card strong { font-size: 0.95rem; margin-bottom: 0.25rem; }
.category-home-card span { font-size: 0.78rem; color: var(--text-muted); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    text-decoration: none;
}
.btn:hover { border-color: var(--text); }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { opacity: 0.9; }
.btn-outline { background: transparent; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.5rem; font-size: 1rem; }
.btn-icon:hover { color: var(--danger); }

/* ── SECTIONS ── */
.section { padding: 3rem 0; }
.section-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.section-header h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0; }
.link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.link:hover { text-decoration: underline; }

.page-header { margin-bottom: 2rem; }
.page-header h1 { font-family: var(--font-display); font-size: 2rem; }

/* ── PRODUCT GRID ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-image { aspect-ratio: 1; overflow: hidden; background: #f3f4f6; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 1.2rem; }
.product-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); font-weight: 600; }
.product-info h3 { font-size: 1rem; margin: 0.3rem 0 0.5rem; font-weight: 600; }
.product-price { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.price { font-weight: 700; font-size: 1.1rem; }
.compare-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
.badge-sale {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    z-index: 2;
}
.badge-low-stock {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--warning);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    z-index: 2;
}

/* ── FEATURED PRODUCTS SECTION ── */
.featured-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.featured-title-wrap h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0 0.25rem;
    color: var(--text);
}

.featured-title-wrap p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge i {
    font-size: 0.7rem;
}

.featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.featured-view-all:hover {
    background: var(--accent);
    color: #fff;
    transform: translateX(5px);
}

.featured-view-all i {
    transition: transform 0.3s ease;
}

.featured-view-all:hover i {
    transform: translateX(3px);
}

.featured-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.featured-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.featured-empty i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.featured-empty h3 {
    margin: 0 0 0.5rem;
}

.featured-empty p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.featured-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-badge-sale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(239,68,68,0.4);
}

.featured-card-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.featured-card:hover .featured-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    color: var(--text);
}

.action-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.featured-add-cart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.featured-card:hover .featured-add-cart {
    transform: translateY(0);
}

.featured-add-cart:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

.featured-card-body {
    padding: 1.25rem;
}

.featured-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
}

.featured-card-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    margin: 0.4rem 0 0.6rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.featured-card-title:hover {
    color: var(--accent);
}

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

.featured-rating .stars {
    display: flex;
    gap: 0.15rem;
}

.featured-rating .stars i {
    color: #fbbf24;
    font-size: 0.8rem;
}

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

.featured-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-price .current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

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

@media (max-width: 768px) {
    .featured-section { padding: 2.5rem 0; }
    .featured-header { flex-direction: column; align-items: flex-start; }
    .featured-title-wrap h2 { font-size: 1.5rem; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .featured-card-actions { opacity: 1; transform: translateX(0); }
    .featured-add-cart { transform: translateY(0); padding: 0.75rem; font-size: 0.8rem; }
    .featured-card-body { padding: 1rem; }
    .featured-card-title { font-size: 0.9rem; }
    .featured-price .current-price { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .featured-grid { grid-template-columns: 1fr; }
    .action-btn { width: 36px; height: 36px; }
}

/* ── AI TRAINING PROGRAM SECTION ── */
.ai-training-section {
    padding: 5rem 0;
    background: var(--bg-alt, linear-gradient(135deg, rgba(var(--accent-rgb, 225, 112, 85), 0.05) 0%, rgba(var(--accent-rgb, 225, 112, 85), 0.02) 100%));
    position: relative;
    overflow: hidden;
}

.ai-training-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-rgb, 225, 112, 85), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-training-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb, 225, 112, 85), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-training-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-training-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb, 225, 112, 85), 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.ai-training-badge i {
    font-size: 0.85rem;
}

.ai-training-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 1.5rem;
}

.ai-training-title .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-training-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

.ai-training-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(var(--accent-rgb, 225, 112, 85), 0.35);
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb, 225, 112, 85), 0.45);
}

.btn-instructor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-instructor:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb, 225, 112, 85), 0.3);
}

.ai-training-stats {
    display: flex;
    gap: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

.ai-training-instructor {
    display: flex;
    justify-content: center;
}

.instructor-card {
    background: var(--bg-white);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 340px;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 1.5rem 1.5rem 0 0;
    opacity: 0.1;
}

.instructor-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb, 225, 112, 85), 0.15), 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.instructor-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
}

.instructor-role {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.instructor-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.instructor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.instructor-tags .tag {
    background: rgba(var(--accent-rgb, 225, 112, 85), 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(var(--accent-rgb, 225, 112, 85), 0.2);
    transition: all 0.3s ease;
}

.instructor-tags .tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ── WHY LEARN AI SECTION ── */
.why-learn-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.why-learn-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.why-learn-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 1rem;
   }

.why-learn-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

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

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}

.why-card:hover::after {
    width: 60px;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.why-icon.practical {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #ef4444;
}

.why-icon.live {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #6366f1;
}

.why-icon.affordable {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #f59e0b;
}

.why-icon.expert {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
    color: #d97706;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-learn-section { padding: 3.5rem 0; }
    .why-learn-header h2 { font-size: 2rem; }
    .why-grid { grid-template-columns: 1fr; gap: 1rem; }
    .why-card { padding: 2rem 1.5rem; }
}

@media (max-width: 992px) {
    .ai-training-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ai-training-content { order: 1; text-align: center; }
    .ai-training-instructor { order: 2; }
    .ai-training-title { font-size: 2.5rem; }
    .ai-training-desc { margin-left: auto; margin-right: auto; }
    .ai-training-buttons { justify-content: center; }
    .ai-training-stats { justify-content: center; }
}

@media (max-width: 768px) {
    .ai-training-section { padding: 3.5rem 0; }
    .ai-training-title { font-size: 2rem; }
    .ai-training-desc { font-size: 1rem; }
    .ai-training-buttons { flex-direction: column; }
    .btn-explore, .btn-instructor { width: 100%; text-align: center; justify-content: center; }
    .ai-training-stats { gap: 1.5rem; flex-wrap: wrap; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-value { font-size: 1.75rem; }
    .instructor-card { padding: 2rem 1.5rem; }
    .instructor-image { width: 110px; height: 110px; }
}

/* ── FUTURE COURSE LINEUP SECTION ── */
.future-courses-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.future-courses-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.future-courses-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
}

.future-courses-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.course-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.course-card:hover::before {
    opacity: 1;
}

.course-card.featured {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-color: transparent;
}

.course-card.featured::before {
    display: none;
}

.course-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.course-card:hover .course-icon {
    transform: scale(1.1);
}

.course-card.featured .course-icon {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.course-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
}

.course-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.course-card.featured p {
    color: rgba(255,255,255,0.85);
}

@media (max-width: 1024px) {
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .future-courses-section { padding: 3.5rem 0; }
    .future-courses-header h2 { font-size: 2rem; }
    .courses-grid { grid-template-columns: 1fr; gap: 1rem; }
    .course-card { padding: 2rem 1.5rem; }
}

/* ── ABOUT US PAGE ── */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.image-frame {
    width: 320px;
    height: 400px;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(59, 130, 246, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
}

.about-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #60a5fa;
    margin: 0 0 1.5rem;
    letter-spacing: 1px;
}

.about-text .qualifications {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-text .qualifications strong {
    color: #fbbf24;
}

.about-text .philosophy {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text .experience {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.work-experience {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    padding: 0.75rem 0;
}

.work-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.work-item i {
    color: #60a5fa;
    font-size: 1.1rem;
    width: 24px;
}

.work-item strong {
    color: #fbbf24;
}

/* About Stats Section */
.about-stats {
    background: #1e293b;
    padding: 3rem 0;
}

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

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Mission Section */
.about-mission {
    background: var(--bg);
    padding: 5rem 0;
}

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

.mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1rem;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { display: flex; justify-content: center; }
    .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-hero { padding: 3rem 0; }
    .about-text h1 { font-size: 2rem; }
    .about-text h2 { font-size: 1.25rem; }
        .image-frame { width: 280px; height: 350px; }
    .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .stat-number { font-size: 2rem; }
    .mission-card { padding: 2rem 1.5rem; }
}

/* ── PRIVACY POLICY & LEGAL PAGES ── */
.policy-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 0;
    text-align: center;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
}

.policy-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.policy-content {
    padding: 4rem 0;
    background: var(--bg);
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
}

.policy-nav {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.policy-nav h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.policy-nav a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    margin-left: -1rem;
}

.policy-nav a:hover {
    color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
}

.policy-main {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
}

.policy-meta {
    margin-bottom: 2rem;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.policy-summary {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.policy-summary p {
    margin: 0;
    color: #166534;
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.25rem;
    font-family: var(--font-display);
}

.policy-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-section ul li strong {
    color: var(--text);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.75rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.info-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.highlight-box i {
    font-size: 1.5rem;
    color: #dc2626;
}

.highlight-box p {
    margin: 0;
    color: #991b1b;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
}

.security-item i {
    color: #22c55e;
    font-size: 1.1rem;
    width: 24px;
}

.security-item span {
    color: var(--text);
    font-size: 0.95rem;
}

.note {
    font-style: italic;
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.right-item {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.right-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.right-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.right-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
}

.contact-card h3 {
    color: #fff !important;
    font-size: 1.25rem;
    margin: 0 0 1.25rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card h3 i {
    color: #60a5fa;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: black !important;
    margin: 0.75rem 0 !important;
    font-size: 0.95rem;
}

.contact-info p i {
    color: #60a5fa;
    width: 20px;
}

.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Terms of Use Specific Styles */
.terms-summary {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #93c5fd;
}

.terms-summary .summary-icon {
    background: #3b82f6;
}

.terms-summary p {
    color: #1e40af;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(var(--accent-rgb), 0.1);
}

.service-item i {
    color: var(--accent);
    font-size: 1.25rem;
    width: 24px;
}

.service-item span {
    color: var(--text);
    font-size: 0.95rem;
}

.info-box {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.info-box p {
    margin: 0;
    font-size: 0.9rem;
}

.zoom-info {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
}

.zoom-info i {
    color: #3b82f6;
}

.warning-box {
    background: linear-gradient(135deg, #fefce8, #fef08a) !important;
    border-color: #fcd34d !important;
}

.warning-box i {
    color: #d97706 !important;
}

.warning-box p {
    color: #92400e !important;
}

.warning-box a {
    color: #d97706;
    font-weight: 600;
}

.restricted-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.restricted-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
}

.restricted-item i {
    color: #dc2626;
    font-size: 1.1rem;
}

.restricted-item span {
    color: #991b1b;
    font-size: 0.95rem;
}

.prohibited-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.prohibited-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.prohibited-list li:last-child {
    border-bottom: none;
}

.prohibited-list li i {
    color: #dc2626;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .info-box { flex-direction: column; text-align: center; }
}

/* Refund Policy Specific Styles */
.refund-summary {
    background: linear-gradient(135deg, #fdf4ff, #fae8ff);
    border-color: #e879f9;
}

.refund-summary .summary-icon {
    background: #a855f7;
}

.refund-summary p {
    color: #6b21a8;
}

.refund-table {
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    margin: 1.5rem 0;
}

.refund-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.refund-row:last-child {
    border-bottom: none;
}

.refund-row.header {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text);
}

.refund-row.success {
    background: rgba(34, 197, 94, 0.05);
}

.refund-row.warning {
    background: rgba(245, 158, 11, 0.05);
}

.refund-row.danger {
    background: rgba(239, 68, 68, 0.05);
}

.refund-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.refund-cell i {
    color: var(--accent);
    width: 20px;
}

.refund-row.success .refund-cell i { color: #22c55e; }
.refund-row.warning .refund-cell i { color: #f59e0b; }
.refund-row.danger .refund-cell i { color: #ef4444; }

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

.step-content a {
    color: var(--accent);
}

.note-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe) !important;
    border-color: #93c5fd !important;
}

.note-box i {
    color: #3b82f6 !important;
}

.note-box p {
    color: #1e40af !important;
}

.reschedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.reschedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
}

.reschedule-item i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 24px;
}

.reschedule-item span {
    color: var(--text);
    font-size: 0.95rem;
}

.transfer-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.transfer-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    padding: 1.25rem;
    border-radius: 0.75rem;
}

.transfer-option i {
    color: #22c55e;
    font-size: 1.5rem;
}

.transfer-option span {
    color: #166534;
    font-size: 0.95rem;
    font-weight: 500;
}

.special-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fdf4ff, #fae8ff);
    border: 1px solid #e879f9;
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem 0;
}

.special-box > i {
    font-size: 2.5rem;
    color: #a855f7;
    flex-shrink: 0;
}

.special-box p {
    color: #6b21a8 !important;
    margin: 0 0 0.75rem !important;
}

.special-box p:last-child {
    margin-bottom: 0 !important;
}

.refund-contact {
    background: linear-gradient(135deg, #a855f7, #7c3aed) !important;
}

@media (max-width: 1024px) {
    .refund-row { grid-template-columns: 1fr; gap: 0.5rem; }
    .refund-row.header { display: none; }
    .refund-cell:first-child { font-weight: 600; color: var(--text); }
    .transfer-options { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .step-item { flex-direction: column; text-align: center; }
    .step-number { margin: 0 auto; }
    .special-box { flex-direction: column; text-align: center; }
}

@media (max-width: 1024px) {
    .policy-wrapper { grid-template-columns: 1fr; }
    .policy-sidebar { position: static; }
    .policy-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .policy-nav h4 { width: 100%; }
    .policy-nav a { border-left: none; padding-left: 0; margin-left: 0; padding: 0.5rem 1rem; background: var(--bg-light); border-radius: 50px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
    .policy-hero { padding: 3rem 0; }
    .policy-hero h1 { font-size: 2rem; }
    .policy-content { padding: 2rem 0; }
    .policy-main { padding: 1.5rem; }
    .policy-summary { flex-direction: column; text-align: center; }
    .info-grid, .rights-grid { grid-template-columns: 1fr; }
    .policy-section h2 { font-size: 1.25rem; }
}
.badge-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
}

/* ── FILTERS ── */
.filters-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.category-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-tag {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}
.filter-tag:hover, .filter-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.sort-options select {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: var(--font);
    font-size: 0.85rem;
    background: var(--bg-white);
}

/* ── PRODUCT DETAIL ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 1.5rem; }
.product-detail-image { position: relative; border-radius: var(--radius); overflow: hidden; background: #f3f4f6; }
.product-detail-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail-info h1 { font-family: var(--font-display); font-size: 2rem; margin: 0.5rem 0; }
.product-price-large { margin: 1rem 0; }
.product-price-large .price { font-size: 1.8rem; font-weight: 700; }
.product-price-large .compare-price { font-size: 1.1rem; }
.product-description { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.product-sku { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.stock-status { margin-bottom: 1.5rem; }
.in-stock { color: var(--success); font-weight: 600; }
.low-stock { color: var(--accent); font-weight: 600; }
.out-of-stock { color: var(--danger); font-weight: 600; }

.quantity-selector { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.quantity-selector label { font-weight: 600; }
.qty-controls { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-controls button {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition);
}
.qty-controls button:hover { background: var(--border); }
.qty-controls span { width: 50px; text-align: center; font-weight: 600; }

.product-actions { margin-bottom: 1rem; }
.product-full-content { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.product-full-content h2 { font-family: var(--font-display); margin-bottom: 1rem; }

.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--accent); }

/* ── CART ── */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
.cart-header-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 50px; gap: 1rem; padding: 0.75rem 0; border-bottom: 2px solid var(--border); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.cart-item { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 50px; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-product { display: flex; align-items: center; gap: 1rem; }
.cart-item-product img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-item-product span { font-weight: 600; }
.cart-item-price, .cart-item-total { font-weight: 600; }

.cart-summary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.cart-summary h3 { margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; }
.summary-row.total { font-size: 1.2rem; font-weight: 700; padding-top: 0.75rem; }
.cart-summary hr { border: none; border-top: 1px solid var(--border); margin: 0.5rem 0; }
.cart-summary .btn { margin-top: 0.75rem; }

/* ── CHECKOUT ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; }
.checkout-form h3 { font-family: var(--font-display); margin: 1.5rem 0 1rem; }
.checkout-form h3:first-child { margin-top: 0; }
.checkout-summary {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.checkout-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; }
.checkout-item img { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; }
.checkout-item div { flex: 1; }
.checkout-item strong { display: block; font-size: 0.9rem; }
.checkout-item span:last-child { font-weight: 600; }
.checkout-item-img-wrap { position: relative; flex-shrink: 0; }
.checkout-item-qty-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--accent); color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* Checkout Steps */
.checkout-step { margin-bottom: 0.75rem; }
.checkout-step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.checkout-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent); color: #fff; font-weight: 700; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.checkout-step-header h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0; }

/* Payment Method Selector */
.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-method-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; border: 2px solid var(--border);
    border-radius: var(--radius); cursor: pointer;
    transition: all 0.2s ease;
}
.payment-method-card:hover { border-color: var(--accent); background: #fffaf6; }
.payment-method-card.selected { border-color: var(--accent); background: var(--accent-light); box-shadow: 0 0 0 1px var(--accent); }

.payment-method-radio { flex-shrink: 0; }
.pm-radio-outer {
    display: flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border: 2px solid var(--border);
    border-radius: 50%; transition: border-color 0.2s;
}
.payment-method-card.selected .pm-radio-outer { border-color: var(--accent); }
.pm-radio-inner {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent); animation: radioIn 0.15s ease;
}
@keyframes radioIn { from { transform: scale(0); } to { transform: scale(1); } }

.payment-method-icon {
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.payment-method-icon.rpay { background: #e0f2fe; color: #0369a1; }
.payment-method-icon.cod { background: #dcfce7; color: #15803d; }

.payment-method-info { flex: 1; min-width: 0; }
.payment-method-info strong { display: block; font-size: 0.92rem; margin-bottom: 0.1rem; }
.payment-method-info span { font-size: 0.78rem; color: var(--text-muted); }

.payment-method-badges { display: flex; gap: 0.35rem; flex-shrink: 0; }
.pm-badge {
    padding: 0.15rem 0.45rem; border-radius: 3px;
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.3px;
    background: var(--bg-light); color: var(--text-muted); border: 1px solid var(--border);
}
.pm-badge.visa { color: #1a1f71; } .pm-badge.mc { color: #eb001b; } .pm-badge.upi { color: #2d7d2d; }

.payment-secure-note {
    display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 0.85rem;
    padding: 0.75rem 1rem; background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm); font-size: 0.8rem; color: #166534; line-height: 1.5;
}
.payment-secure-note i { margin-top: 0.1rem; color: #16a34a; flex-shrink: 0; }

.checkout-submit-btn { margin-top: 1.5rem; }

/* Summary payment indicator */
.summary-payment-indicator {
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
    font-size: 0.82rem; color: var(--text-muted);
}
.summary-payment-indicator i { color: var(--accent); }

/* Payment Processing Overlay */
.payment-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    animation: overlayIn 0.3s ease;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.payment-overlay-content {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 2.5rem 3rem; text-align: center; max-width: 420px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: overlaySlide 0.3s ease;
}
@keyframes overlaySlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.payment-overlay-icon { margin-bottom: 1.25rem; }
.payment-overlay-icon i { font-size: 2.5rem; color: var(--accent); }
.payment-overlay-content h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.payment-overlay-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* ── FORMS ── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--text); }
.form-control {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    background: var(--bg-white);
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }
.form-row .form-group.flex-2 { flex: 2; }
.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; align-items: center; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.code-editor { font-family: 'Fira Code', monospace; font-size: 0.85rem; }
.validation-message { color: var(--danger); font-size: 0.8rem; margin-top: 0.25rem; }

/* ── ALERTS ── */
.alert { padding: 0.85rem 1.25rem; border-radius: var(--radius-sm); margin: 1rem 0; font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-success a { color: #065f46; font-weight: 600; text-decoration: underline; }
.alert-error { background: #fef2f2; color: #991b1b; }
.alert-warning { background: #fef9c3; color: #92400e; }
.alert-warning a { color: #92400e; font-weight: 600; }

/* ── FEATURES BAR ── */
.features-bar { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature { display: flex; align-items: center; gap: 1rem; }
.feature i { font-size: 1.5rem; color: var(--accent); }
.feature strong { display: block; font-size: 0.9rem; }
.feature div { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ── THANK YOU / CONFIRMATION ── */
.thankyou-header { text-align: center; margin-bottom: 2.5rem; }
.thankyou-icon-wrap { margin-bottom: 1.25rem; }
.thankyou-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    animation: thankyouPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.thankyou-icon i { color: #fff; font-size: 2rem; }
@keyframes thankyouPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.thankyou-header h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; }
.thankyou-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 0.75rem; }
.thankyou-order-num { font-size: 0.88rem; color: var(--text-muted); }
.thankyou-order-num strong { color: var(--text); font-weight: 700; }
.thankyou-order-num span { margin: 0 0.4rem; opacity: 0.4; }

/* Thank-you two-column grid */
.thankyou-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }

/* Thank-you cards */
.thankyou-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem;
}
.thankyou-card h3 {
    font-family: var(--font-display); font-size: 1rem; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.thankyou-card h3 i { color: var(--accent); font-size: 0.9rem; }

/* Payment status banner */
.thankyou-payment-banner {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem;
}
.banner-paid { background: #d1fae5; border: 1px solid #6ee7b7; }
.banner-paid .banner-icon-wrap i { color: #059669; font-size: 1.5rem; }
.banner-processing { background: #fef9c3; border: 1px solid #fde68a; }
.banner-processing .banner-icon-wrap i { color: #d97706; font-size: 1.5rem; }
.banner-cod { background: #f0f9ff; border: 1px solid #bae6fd; }
.banner-cod .banner-icon-wrap i { color: #0284c7; font-size: 1.5rem; }
.banner-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.banner-text span { font-size: 0.82rem; opacity: 0.8; }

/* Thank-you items */
.thankyou-items { margin-bottom: 0.5rem; }
.thankyou-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.65rem 0; border-bottom: 1px solid var(--border-light);
}
.thankyou-item:last-child { border-bottom: none; }
.thankyou-item-info strong { display: block; font-size: 0.88rem; }
.thankyou-item-info span { font-size: 0.78rem; color: var(--text-muted); }
.thankyou-item-total { font-weight: 600; font-size: 0.9rem; white-space: nowrap; margin-left: 1rem; }

/* Thank-you totals */
.thankyou-totals { border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.5rem; }
.thankyou-total-row { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: 0.88rem; }
.thankyou-total-row.grand-total {
    font-weight: 700; font-size: 1.15rem; padding-top: 0.65rem;
    margin-top: 0.35rem; border-top: 2px solid var(--text);
}

/* Thank-you detail rows */
.thankyou-detail-rows { display: flex; flex-direction: column; }
.thankyou-detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0; font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}
.thankyou-detail-row:last-child { border-bottom: none; }
.thankyou-detail-row span:first-child { color: var(--text-muted); }
.thankyou-mono { font-family: 'Fira Code', monospace; font-size: 0.75rem; word-break: break-all; }

/* Thank-you shipping address */
.thankyou-address strong { display: block; font-size: 0.95rem; margin-bottom: 0.35rem; }
.thankyou-address p { margin: 0.15rem 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.thankyou-phone, .thankyou-email { margin-top: 0.5rem !important; }
.thankyou-phone i, .thankyou-email i { margin-right: 0.4rem; font-size: 0.75rem; opacity: 0.6; }

/* Thank-you timeline */
.thankyou-timeline { position: relative; padding-left: 2rem; }
.timeline-step { position: relative; padding-bottom: 1.25rem; padding-left: 1rem; }
.timeline-step:not(.last)::before {
    content: ''; position: absolute; left: -1.35rem; top: 1.8rem;
    width: 2px; height: calc(100% - 1.2rem); background: var(--border);
}
.timeline-step.completed:not(.last)::before { background: #10b981; }
.timeline-dot {
    position: absolute; left: -2rem; top: 0.15rem;
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
}
.timeline-step.completed .timeline-dot {
    background: #10b981; color: #fff;
}
.timeline-dot.pending {
    background: var(--bg-light); border: 2px solid var(--border);
    color: var(--text-muted);
}
.timeline-dot.pending span { font-size: 0.7rem; }
.timeline-text strong { display: block; font-size: 0.88rem; }
.timeline-text span { font-size: 0.78rem; color: var(--text-muted); }
.timeline-step.last { padding-bottom: 0; }

/* Thank-you action buttons */
.thankyou-actions {
    display: flex; gap: 0.75rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 2rem;
}
.thankyou-actions .btn i { margin-right: 0.4rem; }

/* Legacy detail-row used by admin pages */

/* ── CMS CONTENT ── */
.content-page { max-width: 800px; margin: 0 auto; }
.content-page h1 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 1.5rem; }
.cms-content h2 { font-family: var(--font-display); font-size: 1.4rem; margin: 1.5rem 0 0.75rem; }
.cms-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 3rem; color: var(--text-light); margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

.loading { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 1.1rem; }

/* ── FOOTER ── */
.site-footer { 
    background: #1e293b; 
    color: rgba(255,255,255,0.7); 
    padding: 0; 
    margin-top: 0; 
}

.site-footer .container {
    padding-top: 4rem;
    padding-bottom: 0;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 3rem; 
    padding-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-badge {
    background: #3b82f6;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 { 
    color: #fff; 
    margin-bottom: 1.25rem; 
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a { 
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover { 
    color: #fff;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

.footer-policies {
    display: flex;
    gap: 2rem;
}

.footer-policies a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-policies { justify-content: center; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════ */

.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 240px;
    background: var(--primary);
    color: #fff;
    padding: 0;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.admin-logo { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.admin-logo a { color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.admin-nav { padding: 1rem 0; flex: 1; overflow-y: auto; min-height: 0; }
.admin-nav::-webkit-scrollbar { width: 4px; }
.admin-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.admin-nav::-webkit-scrollbar-track { background: transparent; }
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}
.admin-nav-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-nav-item i { width: 18px; text-align: center; }
.admin-nav-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 0.5rem 1.5rem; }

/* Admin sidebar user info — pinned at bottom */
.admin-user-info {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    position: relative;
    z-index: 2;
}
.admin-user-avatar { font-size: 1.6rem; color: rgba(255,255,255,0.6); }
.admin-user-details { display: flex; flex-direction: column; }
.admin-user-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.admin-user-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; }

.admin-main { flex: 1; margin-left: 240px; background: var(--bg); min-height: 100vh; }
.admin-topbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-topbar h2 { font-size: 1rem; font-weight: 600; }
.admin-topbar-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-logout { color: var(--danger); border-color: var(--danger); }
.btn-logout:hover { background: var(--danger); color: #fff; }
.admin-content { padding: 2rem; }

.admin-page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.admin-page-header h1 { font-family: var(--font-display); font-size: 1.6rem; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.stat-icon { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.stat-value { font-size: 1.8rem; font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card.accent .stat-icon { color: var(--accent); }
.stat-card.accent .stat-value { color: var(--accent); }
.stat-card.warning .stat-icon { color: var(--danger); }
.stat-card.warning .stat-value { color: var(--danger); }

/* ── ADMIN TABLE ── */
.admin-table { width: 100%; border-collapse: collapse; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.admin-table th { background: var(--bg); padding: 0.75rem 1rem; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 600; }
.admin-table td { padding: 0.75rem 1rem; border-top: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg); }
.admin-table a { color: var(--accent); font-weight: 600; }
.table-thumb { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: cover; }
.text-danger { color: var(--danger); font-weight: 600; }

.admin-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}
.admin-form-card h3 { font-family: var(--font-display); margin-bottom: 1rem; }

.admin-section { margin-top: 2rem; }
.admin-section h2 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1rem; }

.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.order-detail-grid h4 { margin: 1rem 0 0.5rem; }

/* ── STATUS BADGES ── */
.status-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.status-active, .status-delivered, .status-captured { background: #d1fae5; color: #065f46; }
.status-inactive { background: #f3f4f6; color: #6b7280; }
.status-pending, .status-authorized { background: #fef9c3; color: #92400e; }
.status-failed, .status-cancelled { background: #fee2e2; color: #991b1b; }
.status-refunded { background: #e0e7ff; color: #3730a3; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-shipped { background: #e0e7ff; color: #3730a3; }
.status-cancelled, .status-refunded { background: #fef2f2; color: #991b1b; }

/* ── EMAIL COMPOSER ── */
.email-composer {
    margin-top: 1.5rem;
}

.composer-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

.composer-form .form-card,
.composer-sidebar > div {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.composer-form .form-card h3,
.composer-sidebar h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.composer-form .form-card h3 i,
.composer-sidebar h4 i {
    color: var(--accent);
}

.email-editor {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 250px;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.editor-toolbar button {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.editor-toolbar button:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.editor-toolbar button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.info-box i {
    font-size: 1.1rem;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Product Preview Card */
.product-card .product-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-card .product-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.product-card .product-info h5 {
    font-size: 0.95rem;
    margin: 0 0 0.25rem;
}

.product-card .product-info .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.25rem;
}

.product-card .product-info .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Templates Card */
.template-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.template-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.template-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.template-btn i {
    width: 20px;
    text-align: center;
}

.template-btn span {
    font-size: 0.9rem;
}

/* Preview Card */
.preview-card .preview-subject {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.preview-card .preview-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.toast-notification.success {
    background: #059669;
    color: #fff;
}

.toast-notification.error {
    background: #dc2626;
    color: #fff;
}

.toast-notification button {
    background: transparent;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
}

.toast-notification button:hover {
    opacity: 1;
}

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

@media (max-width: 1024px) {
    .composer-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-inner { gap: 1rem; }
    .main-nav { gap: 1rem; }
    .search-box input { width: 180px; }
}

@media (min-width: 1025px) {
    .header-inner { gap: 2rem; }
    .main-nav { gap: 1.5rem; }
    .search-box input { width: 220px; }
}

@media (max-width: 1024px) {
    .product-detail { grid-template-columns: 1fr; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .order-detail-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 0.75rem; padding: 0.75rem 0; }
    .header-left, .header-center, .header-right { width: 100%; display: flex; justify-content: center; }
    .header-left { order: 1; }
    .header-center { order: 3; margin-top: 0.5rem; }
    .header-right { order: 2; }
    .main-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
    .search-box input { width: 100%; max-width: 200px; }
    .logo-text { font-size: 1.25rem; }
    .logo-image { height: 50px; max-width: 150px; }
    .hero h1 { font-size: 2rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .cart-header-row { display: none; }
    .cart-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cart-label { display: none; }
    .auth-card { margin: 1rem; padding: 1.5rem; }
    /* Banner carousel responsive */
    .banner-slides { height: 320px; }
    .banner-slide-text h1 { font-size: 2rem; }
    .banner-slide-text p { font-size: 0.95rem; }
    .banner-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
    .banner-prev { left: 0.75rem; }
    .banner-next { right: 0.75rem; }
    .category-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ═══════════════════════════════════════════════════
   AUTH PAGES (Login / Setup)
   ═══════════════════════════════════════════════════ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3436 40%, #636e72 100%);
    padding: 2rem;
}

.auth-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.auth-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #d35400);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.auth-header h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

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

.auth-card .form-group {
    margin-bottom: 1.25rem;
}

.auth-card .form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.auth-card .form-group label i {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-card .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
}

.auth-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(225, 112, 85, 0.12);
}

.auth-card .btn-primary {
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-card .alert {
    border-radius: 10px;
}

/* ── ADMIN USERS PAGE ── */
.badge-you {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    margin-left: 0.4rem;
}

.status-superadmin {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.status-superadmin i {
    font-size: 0.65rem;
    margin-right: 2px;
}

/* ── SECTION TITLES ── */
.section-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
    color: var(--text);
}

/* ── ROW SELECTED ── */
.row-selected { background: var(--accent-light) !important; }

/* ── ALERT VARIANTS ── */
.alert { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1rem; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert i { margin-right: 0.4rem; }

/* ══════════════════════════════════════════════
   CUSTOMER ACCOUNT STYLES
   ══════════════════════════════════════════════ */

/* ── Header Account Dropdown ── */
.header-login-btn {
    display: flex; align-items: center; gap: 0.4rem; padding: 0.45rem 1rem;
    border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.85rem;
    color: var(--text); text-decoration: none; transition: all 0.2s;
}
.header-login-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.header-account-dropdown { position: relative; }
.header-account-btn {
    display: flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.9rem;
    border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.85rem;
    color: var(--text); background: white; cursor: pointer; transition: all 0.2s;
}
.header-account-btn:hover { border-color: var(--accent); color: var(--accent); }
.header-account-btn i:first-child { font-size: 1.1rem; color: var(--accent); }
.header-account-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.header-account-menu {
    position: absolute; top: calc(100% + 0.5rem); right: 0; background: white;
    border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px; z-index: 1000; padding: 0.35rem 0;
}
.header-account-menu a {
    display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1rem;
    color: var(--text); text-decoration: none; font-size: 0.85rem; transition: background 0.15s;
}
.header-account-menu a:hover { background: var(--bg-warm); color: var(--accent); }
.header-account-menu a i { width: 16px; text-align: center; color: var(--text-muted); }
.header-account-menu a:hover i { color: var(--accent); }
.header-account-menu hr { margin: 0.25rem 0; border: none; border-top: 1px solid var(--border-light); }

/* ── Auth Pages (Customer Register/Login) ── */
.account-auth-card {
    max-width: 520px; margin: 2rem auto; background: white; border-radius: var(--radius);
    padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--border-light);
}
.account-auth-header { text-align: center; margin-bottom: 2rem; }
.account-auth-header i { font-size: 2.5rem; color: var(--accent); margin-bottom: 0.75rem; display: block; }
.account-auth-header h1 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.25rem; }
.account-auth-header p { color: var(--text-muted); font-size: 0.9rem; }
.account-auth-footer {
    text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light);
    color: var(--text-muted); font-size: 0.9rem;
}
.account-auth-footer a { color: var(--accent); font-weight: 600; }

/* ── Account Dashboard ── */
.account-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border-light);
}
.account-welcome { display: flex; align-items: center; gap: 1rem; }
.account-avatar { font-size: 3rem; color: var(--accent); }
.account-welcome h1 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.account-welcome p { color: var(--text-muted); font-size: 0.85rem; margin: 0.15rem 0 0; }

.account-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem; margin-bottom: 2rem;
}
.account-card {
    display: block; padding: 1.5rem; background: white; border: 1.5px solid var(--border-light);
    border-radius: var(--radius); text-decoration: none; color: var(--text);
    transition: all 0.2s; cursor: pointer;
}
.account-card:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.06); transform: translateY(-2px); }
.account-card-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.75rem; }
.account-card h3 { font-family: var(--font-display); font-size: 1rem; margin: 0 0 0.25rem; }
.account-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.account-page-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.account-page-header h1 { font-family: var(--font-display); margin: 0; flex: 1; }

/* ── Address Cards ── */
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.address-card {
    padding: 1.25rem; background: white; border: 1.5px solid var(--border-light);
    border-radius: var(--radius); position: relative;
}
.address-card.address-default { border-color: var(--accent); }
.address-default-badge {
    display: inline-block; padding: 0.15rem 0.5rem; background: var(--accent); color: white;
    font-size: 0.7rem; border-radius: 4px; font-weight: 600; text-transform: uppercase; vertical-align: middle; margin-left: 0.35rem;
}
.address-card h4 { font-family: var(--font-display); margin: 0 0 0.5rem; }
.address-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin: 0 0 0.75rem; }
.address-actions { display: flex; gap: 0.5rem; }

/* ── Checkout Login Prompt ── */
.checkout-login-prompt {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.25rem;
    background: #f0f9ff; border: 1px solid #bae6fd; border-radius: var(--radius-sm);
    font-size: 0.85rem; color: #075985; margin-bottom: 1.5rem;
}
.checkout-login-prompt i { font-size: 1.2rem; color: #0284c7; }
.checkout-login-prompt a { color: var(--accent); font-weight: 600; }

/* ── Registration Required Modal ── */
.registration-required-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; padding: 1rem;
}
.registration-required-modal {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 2.5rem; max-width: 480px; width: 100%;
    text-align: center; box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.registration-modal-icon {
    width: 80px; height: 80px; margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-light), #fff);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.registration-modal-icon i {
    font-size: 2rem; color: var(--accent);
}
.registration-required-modal h2 {
    font-family: var(--font-display); font-size: 1.75rem;
    margin-bottom: 0.75rem; color: var(--text);
}
.registration-required-modal > p {
    color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.95rem;
}
.registration-benefits {
    list-style: none; text-align: left; margin-bottom: 1.5rem;
    background: var(--bg-light); padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
}
.registration-benefits li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0; font-size: 0.9rem; color: var(--text);
}
.registration-benefits li i {
    color: var(--success); font-size: 1rem;
}
.registration-modal-actions {
    display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem;
}
.registration-modal-actions .btn-lg {
    padding: 0.85rem 1.5rem; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.registration-modal-actions .btn-outline {
    background: transparent; border: 2px solid var(--border);
    color: var(--text);
}
.registration-modal-actions .btn-outline:hover {
    border-color: var(--accent); color: var(--accent);
}
.registration-modal-cart-summary {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1rem; border-radius: var(--radius-sm);
    font-size: 0.9rem; color: #92400e;
}
.registration-modal-cart-summary p {
    margin: 0 0 0.25rem; font-weight: 500;
}
.registration-modal-cart-summary small {
    font-size: 0.8rem; opacity: 0.8;
}
@media (max-width: 480px) {
    .registration-required-modal { padding: 1.5rem; }
    .registration-required-modal h2 { font-size: 1.4rem; }
    .registration-modal-icon { width: 60px; height: 60px; }
    .registration-modal-icon i { font-size: 1.5rem; }
}

/* ── Checkout Saved Address Picker ── */
.checkout-saved-addresses { margin-bottom: 1.5rem; }
.checkout-saved-addresses h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.75rem; }
.address-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
.address-pick-card {
    padding: 0.85rem; border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
    cursor: pointer; transition: all 0.2s; font-size: 0.85rem;
}
.address-pick-card:hover { border-color: var(--accent); }
.address-pick-card.selected { border-color: var(--accent); background: var(--accent-light); }
.address-pick-card strong { font-size: 0.85rem; display: block; margin-bottom: 0.2rem; }
.address-pick-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* ── Order Detail Grid ── */
.order-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; }
.order-detail-side .admin-form-card { position: sticky; top: 1rem; }
.detail-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.detail-row:last-child { border-bottom: none; }

/* ── Coupon / Discount (Checkout) ── */
.coupon-section { padding: 0.75rem 0; }
.coupon-input-row { display: flex; gap: 0.5rem; }
.coupon-input {
    flex: 1; font-size: 0.85rem; padding: 0.5rem 0.75rem;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.coupon-input::placeholder { text-transform: none; letter-spacing: normal; }
.coupon-apply-btn {
    white-space: nowrap; padding: 0.5rem 1rem;
    font-weight: 600; font-size: 0.82rem;
    background: var(--accent); color: #fff; border: none;
}
.coupon-apply-btn:hover { background: #d35400; }
.coupon-apply-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.coupon-error {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; color: var(--danger); margin-top: 0.4rem;
}
.coupon-applied {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.65rem 0.85rem; background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
}
.coupon-applied-info { display: flex; align-items: center; gap: 0.6rem; }
.coupon-applied-info i { color: #16a34a; font-size: 1rem; }
.coupon-applied-info strong { display: block; font-size: 0.88rem; letter-spacing: 0.5px; }
.coupon-applied-info span { display: block; font-size: 0.75rem; color: #15803d; }
.coupon-remove-btn {
    background: none; border: none; color: #991b1b; cursor: pointer;
    font-size: 0.85rem; padding: 0.3rem; border-radius: 50%;
    transition: background 0.2s;
}
.coupon-remove-btn:hover { background: #fee2e2; }
.summary-discount { color: var(--success); font-weight: 600; }
.summary-discount i { margin-right: 0.25rem; font-size: 0.75rem; }

/* ── Thank-you Discount Row ── */
.thankyou-discount-row { color: var(--success); font-weight: 600; }
.thankyou-discount-row i { margin-right: 0.3rem; font-size: 0.75rem; }
.thankyou-discount-card { border-color: #bbf7d0; background: #f0fdf4; }
.thankyou-discount-card h3 i { color: #16a34a !important; }

/* ── Discount Admin ── */
.discount-stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    margin-bottom: 1.5rem;
}
.discount-stat {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center;
}
.discount-stat strong { display: block; font-size: 1.4rem; font-family: var(--font-display); }
.discount-stat span { font-size: 0.78rem; color: var(--text-muted); }
.discount-code-display {
    background: #f1f5f9; color: #1e293b; padding: 0.2rem 0.6rem;
    border-radius: 4px; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 1px; font-family: 'Fira Code', monospace;
}

/* Discount Product Picker */
.discount-product-picker {
    max-height: 280px; overflow-y: auto;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.5rem;
}
.discount-product-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0.65rem; border-radius: var(--radius-sm);
    cursor: pointer; transition: background 0.15s; border: 1px solid transparent;
}
.discount-product-item:hover { background: var(--bg-light); }
.discount-product-item.selected { background: var(--accent-light); border-color: var(--accent); }
.discount-product-item input[type="checkbox"] { flex-shrink: 0; accent-color: var(--accent); }
.discount-product-item img { width: 36px; height: 36px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.discount-product-item div { min-width: 0; }
.discount-product-item strong { display: block; font-size: 0.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.discount-product-item span { font-size: 0.72rem; color: var(--text-muted); }

/* Modal large variant */
.modal-lg { max-width: 720px; }

/* ── ADMIN BANNER MANAGEMENT ── */
.banner-admin-list { display: flex; flex-direction: column; gap: 1.25rem; }
.banner-admin-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: box-shadow 0.2s;
}
.banner-admin-card:hover { box-shadow: var(--shadow); }
.banner-admin-card.banner-inactive { opacity: 0.6; }

.banner-admin-preview {
    height: 160px; background-size: cover; background-position: center;
    position: relative; overflow: hidden;
}

.banner-text-left { justify-content: flex-start; }
.banner-text-center { justify-content: center; text-align: center; }
.banner-text-right { justify-content: flex-end; text-align: right; }
.banner-preview-text.text-light { color: #fff; }
.banner-preview-text.text-dark { color: #1a1a2e; }
.banner-preview-text strong { display: block; font-size: 1.1rem; font-family: var(--font-display); margin-bottom: 0.25rem; }
.banner-preview-text span { display: block; font-size: 0.78rem; opacity: 0.85; }
.banner-preview-btn {
    display: inline-block; margin-top: 0.5rem; padding: 0.3rem 0.8rem;
    background: var(--accent); color: #fff; border-radius: 3px; font-size: 0.72rem; font-weight: 700;
}

.banner-admin-info {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.25rem; gap: 1rem;
}
.banner-admin-meta { flex: 1; min-width: 0; }
.banner-admin-title { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.35rem; }
.banner-sort-num {
    background: var(--bg-light); color: var(--text-muted); border-radius: 4px;
    padding: 0.1rem 0.5rem; font-size: 0.72rem; font-weight: 700;
}
.banner-admin-title strong { font-size: 0.95rem; }
.banner-admin-details { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-muted); }
.banner-admin-details i { margin-right: 0.25rem; opacity: 0.6; }
.banner-admin-actions { display: flex; gap: 0.4rem; align-items: center; flex-shrink: 0; }
.banner-reorder-btns { display: flex; flex-direction: column; gap: 0.2rem; }
.banner-reorder-btns .btn-sm { padding: 0.2rem 0.5rem; font-size: 0.7rem; }

/* Form preview */
.banner-form-preview {
    height: 180px; background-size: cover; background-position: center;
    border-radius: var(--radius-sm); overflow: hidden; position: relative;
    margin-bottom: 1.25rem; border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .order-detail-grid { grid-template-columns: 1fr; }
    .account-grid { grid-template-columns: 1fr 1fr; }
    .address-picker { grid-template-columns: 1fr; }
    .header-account-name { display: none; }
    .thankyou-grid { grid-template-columns: 1fr; }
    .payment-method-badges { display: none; }
    .payment-method-card { padding: 0.85rem 1rem; }
    .payment-overlay-content { margin: 1rem; padding: 2rem 1.5rem; }
    .discount-stats-bar { grid-template-columns: 1fr 1fr; }
    .coupon-input-row { flex-direction: column; }
    .banner-admin-info { flex-direction: column; align-items: flex-start; }
    .banner-admin-actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
    .account-grid { grid-template-columns: 1fr; }
    .account-auth-card { padding: 1.5rem; margin: 1rem; }
    .thankyou-header h1 { font-size: 1.5rem; }
    .thankyou-icon { width: 64px; height: 64px; }
    .thankyou-icon i { font-size: 1.5rem; }
    .thankyou-actions { flex-direction: column; }
    .thankyou-actions .btn { width: 100%; text-align: center; }
    /* Banner mobile */
    .banner-slides { height: 260px; }
    .banner-slide-text h1 { font-size: 1.5rem; }
    .banner-slide-text p { font-size: 0.85rem; margin-bottom: 1rem; }
    .banner-slide-content { padding: 0 1.25rem; }
    .banner-arrow { display: none; }
    .banner-cta-btn { padding: 0.65rem 1.5rem; font-size: 0.85rem; }
    .category-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .category-home-card { padding: 1.25rem 0.75rem; }
    .category-home-icon { width: 44px; height: 44px; font-size: 1rem; }
}

/* ══════════════════════════════════════════════
   AFFILIATE MARKETING STYLES
   ══════════════════════════════════════════════ */

/* Affiliate Dashboard Header */
.affiliate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.affiliate-code-badge {
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.affiliate-code-badge .label {
    opacity: 0.9;
    margin-right: 0.5rem;
}

/* Earnings Breakdown */
.earnings-breakdown {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.earning-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 6px;
    gap: 0.75rem;
}

.earning-item.pending { background: #fff4e6; }
.earning-item.approved { background: #e6f4ff; }
.earning-item.paid { background: #e6ffe6; }

.earning-item i {
    font-size: 1.5rem;
}

.earning-label {
    flex: 1;
    font-weight: 500;
}

.earning-amount {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Referral Link Section */
.referral-link-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.referral-link-box {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.referral-link-box input {
    flex: 1;
}

.hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Affiliate Enrollment Page */
.affiliate-enroll-hero {
    text-align: center;
    padding: 3rem 0;
}

.affiliate-enroll-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.affiliate-enroll-hero .lead {
    font-size: 1.3rem;
    color: var(--accent);
}

.affiliate-benefits {
    margin: 2rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
}

.affiliate-cta {
    text-align: center;
    padding: 3rem 0;
}

/* Admin Bulk Actions */
.bulk-actions {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* Status badges for commissions */
.status-badge.status-pending { background: #ffc107; color: #000; }
.status-badge.status-approved { background: #17a2b8; color: white; }
.status-badge.status-paid { background: #28a745; color: white; }
.status-badge.status-cancelled { background: #6c757d; color: white; }
.status-badge.status-active { background: #28a745; color: white; }
.status-badge.status-inactive { background: #6c757d; color: white; }

/* Account card styles for affiliate */
.account-card.affiliate-card {
    border: 2px solid var(--accent);
}

.account-card.affiliate-enroll-card {
    border: 2px dashed var(--accent);
}

/* Commissions table section */
.commissions-table-section {
    margin-top: 2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .affiliate-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .affiliate-code-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .affiliate-enroll-hero h1 {
        font-size: 1.8rem;
    }

    .affiliate-enroll-hero .lead {
        font-size: 1.1rem;
    }

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

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

    .referral-link-box {
        flex-direction: column;
    }

    .referral-link-box button {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════
   BLOG PAGES
   ═══════════════════════════════════════════════════ */

.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}
.blog-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: var(--text);
    transition: all 0.25s ease; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image { height: 200px; overflow: hidden; background: #f3f4f6; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.blog-card-meta i { margin-right: 0.3rem; }
.blog-card-body h3 { font-size: 1.1rem; margin: 0 0 0.5rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.blog-read-more { color: var(--accent); font-weight: 600; font-size: 0.85rem; margin-top: 0.75rem; }

/* Blog Detail */
.blog-detail { max-width: 800px; margin: 0 auto; }
.blog-back-link { color: var(--accent); font-size: 0.88rem; font-weight: 600; text-decoration: none; display: inline-block; margin-bottom: 1.5rem; }
.blog-back-link:hover { text-decoration: underline; }
.blog-detail-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; max-height: 400px; }
.blog-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-meta { display: flex; gap: 1.25rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-detail-meta i { margin-right: 0.3rem; }
.blog-detail h1 { font-family: var(--font-display); font-size: 2.2rem; line-height: 1.3; margin-bottom: 1.5rem; }
.blog-detail-content { font-size: 1rem; line-height: 1.75; color: #333; }
.blog-detail-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.blog-detail-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.blog-detail-content p { margin-bottom: 1rem; }
.blog-detail-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 1rem 0; }
.blog-detail-content blockquote { border-left: 3px solid var(--accent); padding-left: 1rem; margin: 1.5rem 0; color: #555; font-style: italic; }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */

.contact-page {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 3rem; align-items: start;
}
.contact-info h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-item i {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-light); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.9rem; }
.contact-info-item span { font-size: 0.82rem; color: var(--text-muted); }

.contact-form-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
}
.contact-form-card h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.25rem; }

/* Success state */
.contact-success { text-align: center; padding: 2rem 1rem; }
.contact-success-icon { font-size: 3rem; color: var(--success); margin-bottom: 1rem; }
.contact-success h2 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.contact-success p { color: var(--text-muted); line-height: 1.6; }

/* Alert success */
.alert-success { background: #dcfce7; color: #166534; padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.85rem; }

@media (max-width: 768px) {
    .contact-page { grid-template-columns: 1fr; gap: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-detail h1 { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════════════════
   THEME SYSTEM
   Themes are applied via data-theme attribute on .site-wrapper,
   <html>, and <body>. Classic theme uses default :root variables.
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   THEME 1: CLASSIC (default — uses :root vars)
   No overrides needed.
   ───────────────────────────────────────────── */


/* ─────────────────────────────────────────────
   THEME 2: DARK MODERN
   Deep dark with purple-cyan gradient accents
   ───────────────────────────────────────────── */

[data-theme="dark-modern"] {
    --bg: #0a0a1a; --bg-white: #111127; --bg-light: #0d0d20;
    --text: #e8e6f0; --text-muted: #9896a8; --text-light: #6e6c80;
    --primary: #0f0f23; --primary-hover: #1a1a3e;
    --accent: #8b5cf6; --accent-hover: #7c3aed; --accent-light: rgba(139,92,246,0.08); --accent-rgb: 139, 92, 246;
    --success: #10b981; --warning: #f59e0b; --danger: #ef4444;
    --border: rgba(139,92,246,0.12);
    --shadow: 0 1px 3px rgba(0,0,0,0.3); --shadow-md: 0 4px 12px rgba(0,0,0,0.4); --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
}
[data-theme="dark-modern"] .top-bar { background: linear-gradient(90deg,#0f0f23,#1a1a3e); border-bottom:1px solid rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .top-bar a { color: rgba(167,139,250,0.6); }
[data-theme="dark-modern"] .top-bar a:hover { color: #a78bfa; }
[data-theme="dark-modern"] .site-header { background: rgba(10,10,26,0.9); border-bottom-color: rgba(139,92,246,0.08); backdrop-filter: blur(20px); }
[data-theme="dark-modern"] .logo { color: #fff; }
[data-theme="dark-modern"] .logo i { color: #8b5cf6; }
[data-theme="dark-modern"] .nav-link { color: #9896a8; }
[data-theme="dark-modern"] .nav-link:hover { background: rgba(139,92,246,0.08); color: #a78bfa; }
[data-theme="dark-modern"] .search-box input { background: rgba(255,255,255,0.04); border-color: rgba(139,92,246,0.15); color: #e8e6f0; }
[data-theme="dark-modern"] .search-box input::placeholder { color: #6e6c80; }
[data-theme="dark-modern"] .search-box input:focus { border-color: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .search-box i { color: #6e6c80; }
[data-theme="dark-modern"] .cart-icon-wrapper { background: rgba(255,255,255,0.04); border-color: rgba(139,92,246,0.15); }
[data-theme="dark-modern"] .cart-icon-wrapper:hover { border-color: #8b5cf6; background: rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .cart-svg { color: #e8e6f0; }
[data-theme="dark-modern"] .cart-icon-wrapper:hover .cart-svg,
[data-theme="dark-modern"] .cart-icon-wrapper:hover .cart-label { color: #a78bfa; }
[data-theme="dark-modern"] .cart-badge-new { background: #8b5cf6; border-color: #111127; }
[data-theme="dark-modern"] .cart-label { color: #e8e6f0; }
[data-theme="dark-modern"] .header-account-btn { color: #e8e6f0; }
[data-theme="dark-modern"] .header-account-menu { background: #111127; border-color: rgba(139,92,246,0.15); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
[data-theme="dark-modern"] .header-account-menu a { color: #9896a8; }
[data-theme="dark-modern"] .header-account-menu a:hover { background: rgba(139,92,246,0.08); color: #a78bfa; }
[data-theme="dark-modern"] .header-account-menu hr { border-color: rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .header-login-btn { color: #9896a8; }
[data-theme="dark-modern"] .header-login-btn:hover { color: #a78bfa; }
[data-theme="dark-modern"] .hero { background: linear-gradient(135deg,#0a0a1a 0%,#1a1a3e 50%,#2d1b69 100%); }
[data-theme="dark-modern"] .hero .accent { color: #a78bfa; }
[data-theme="dark-modern"] .banner-carousel { background: #0a0a1a; }
[data-theme="dark-modern"] .banner-cta-btn { background: linear-gradient(135deg,#8b5cf6,#06b6d4); box-shadow: 0 4px 20px rgba(139,92,246,0.3); }
[data-theme="dark-modern"] .banner-cta-btn:hover { box-shadow: 0 6px 30px rgba(139,92,246,0.5); }
[data-theme="dark-modern"] .section-header h2 { color: #fff; }
[data-theme="dark-modern"] .link { color: #8b5cf6; }
[data-theme="dark-modern"] .link:hover { color: #a78bfa; }
[data-theme="dark-modern"] .product-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .product-card:hover { border-color: rgba(139,92,246,0.25); box-shadow: 0 0 20px rgba(139,92,246,0.15); }
[data-theme="dark-modern"] .product-image { background: rgba(139,92,246,0.04); }
[data-theme="dark-modern"] .product-category { color: #8b5cf6; }
[data-theme="dark-modern"] .product-info h3 { color: #e8e6f0; }
[data-theme="dark-modern"] .price { color: #a78bfa; }
[data-theme="dark-modern"] .compare-price { color: #6e6c80; }
[data-theme="dark-modern"] .badge-sale { background: #8b5cf6; }
[data-theme="dark-modern"] .category-home-card { background: rgba(255,255,255,0.025); border-color: rgba(139,92,246,0.1); color: #e8e6f0; }
[data-theme="dark-modern"] .category-home-card:hover { border-color: rgba(139,92,246,0.3); box-shadow: 0 0 20px rgba(139,92,246,0.15); }
[data-theme="dark-modern"] .category-home-icon { background: rgba(139,92,246,0.08); color: #8b5cf6; }
[data-theme="dark-modern"] .category-home-card:hover .category-home-icon { background: linear-gradient(135deg,#8b5cf6,#06b6d4); color: #fff; }
[data-theme="dark-modern"] .category-home-card span { color: #6e6c80; }
[data-theme="dark-modern"] .btn { border-color: rgba(139,92,246,0.2); color: #e8e6f0; }
[data-theme="dark-modern"] .btn:hover { border-color: #8b5cf6; background: rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .btn-primary { background: linear-gradient(135deg,#8b5cf6,#06b6d4); border: none; color: #fff; box-shadow: 0 2px 10px rgba(139,92,246,0.2); }
[data-theme="dark-modern"] .btn-primary:hover { box-shadow: 0 4px 20px rgba(139,92,246,0.4); filter: brightness(1.1); }
[data-theme="dark-modern"] .btn-outline { border-color: rgba(139,92,246,0.3); color: #a78bfa; }
[data-theme="dark-modern"] .btn-outline:hover { background: rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .features-bar { background: #0d0d20; border-color: rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .feature i { color: #8b5cf6; }
[data-theme="dark-modern"] .feature strong { color: #e8e6f0; }
[data-theme="dark-modern"] .site-footer { background: linear-gradient(180deg,#0a0a1a,#0f0f23); border-top: 1px solid rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .site-footer h4 { color: #e8e6f0; }
[data-theme="dark-modern"] .footer-col a { color: #6e6c80; }
[data-theme="dark-modern"] .footer-col a:hover { color: #a78bfa; }
[data-theme="dark-modern"] .footer-bottom { border-color: rgba(139,92,246,0.08); color: #4e4c60; }
[data-theme="dark-modern"] .social-links a { background: rgba(139,92,246,0.08); color: #8b5cf6; }
[data-theme="dark-modern"] .social-links a:hover { background: #8b5cf6; color: #fff; }
[data-theme="dark-modern"] .form-control { background: rgba(255,255,255,0.04); border-color: rgba(139,92,246,0.15); color: #e8e6f0; }
[data-theme="dark-modern"] .form-control:focus { border-color: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .form-control::placeholder { color: #6e6c80; }
[data-theme="dark-modern"] label { color: #9896a8; }
[data-theme="dark-modern"] .auth-page { background: radial-gradient(ellipse at top,#1a1a3e 0%,#0a0a1a 60%); }
[data-theme="dark-modern"] .auth-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(139,92,246,0.12); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
[data-theme="dark-modern"] .auth-card h1 { color: #fff; }
[data-theme="dark-modern"] .auth-card .btn-primary { background: linear-gradient(135deg,#8b5cf6,#06b6d4); }
[data-theme="dark-modern"] .blog-card { background: rgba(255,255,255,0.025); border-color: rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .blog-card:hover { border-color: rgba(139,92,246,0.25); box-shadow: 0 0 20px rgba(139,92,246,0.15); }
[data-theme="dark-modern"] .blog-card-body h3 { color: #e8e6f0; }
[data-theme="dark-modern"] .blog-read-more { color: #8b5cf6; }
[data-theme="dark-modern"] .blog-detail h1 { color: #fff; }
[data-theme="dark-modern"] .blog-detail-content { color: #c4c2d0; }
[data-theme="dark-modern"] .blog-back-link { color: #8b5cf6; }
[data-theme="dark-modern"] .contact-form-card { background: rgba(255,255,255,0.025); border-color: rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .contact-form-card h2 { color: #fff; }
[data-theme="dark-modern"] .contact-info h1 { color: #fff; }
[data-theme="dark-modern"] .contact-info-item i { background: rgba(139,92,246,0.1); color: #8b5cf6; }
[data-theme="dark-modern"] .contact-info-item strong { color: #e8e6f0; }
[data-theme="dark-modern"] .account-card { background: rgba(255,255,255,0.025); border-color: rgba(139,92,246,0.1); color: #e8e6f0; }
[data-theme="dark-modern"] .account-card:hover { border-color: rgba(139,92,246,0.3); box-shadow: 0 0 20px rgba(139,92,246,0.15); }
[data-theme="dark-modern"] .account-card-icon { background: rgba(139,92,246,0.08); color: #8b5cf6; }
[data-theme="dark-modern"] .admin-table { background: #111127; border-color: rgba(139,92,246,0.1); }
[data-theme="dark-modern"] .admin-table thead { background: rgba(139,92,246,0.05); }
[data-theme="dark-modern"] .admin-table th { color: #9896a8; border-color: rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .admin-table td { border-color: rgba(139,92,246,0.06); color: #c4c2d0; }
[data-theme="dark-modern"] .admin-table tr:hover td { background: rgba(139,92,246,0.03); }
[data-theme="dark-modern"] .alert-success { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
[data-theme="dark-modern"] .alert-error { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
[data-theme="dark-modern"] .modal-panel { background: #111127; border: 1px solid rgba(139,92,246,0.15); }
[data-theme="dark-modern"] .modal-header { border-color: rgba(139,92,246,0.08); color: #fff; }
[data-theme="dark-modern"] .modal-footer { border-color: rgba(139,92,246,0.08); }
[data-theme="dark-modern"] .empty-state { color: #6e6c80; }
[data-theme="dark-modern"] .empty-state h3 { color: #e8e6f0; }
[data-theme="dark-modern"] .loading { color: #8b5cf6; }
[data-theme="dark-modern"] .status-badge.status-active { background: rgba(16,185,129,0.15); color: #34d399; }
[data-theme="dark-modern"] .status-badge.status-pending { background: rgba(245,158,11,0.15); color: #fbbf24; }
[data-theme="dark-modern"] .status-badge.status-cancelled { background: rgba(239,68,68,0.15); color: #f87171; }
[data-theme="dark-modern"] .status-badge.status-processing { background: rgba(139,92,246,0.15); color: #a78bfa; }
[data-theme="dark-modern"] ::-webkit-scrollbar { width: 8px; }
[data-theme="dark-modern"] ::-webkit-scrollbar-track { background: #0a0a1a; }
[data-theme="dark-modern"] ::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.2); border-radius: 4px; }
[data-theme="dark-modern"] ::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.4); }


/* ─────────────────────────────────────────────
   THEME 3: OCEAN BLUE
   Clean professional blue/teal on soft white
   ───────────────────────────────────────────── */

[data-theme="ocean-blue"] {
    --bg: #f0f7ff; --bg-white: #ffffff; --bg-light: #e8f2ff;
    --text: #0f2b46; --text-muted: #5a7a96; --text-light: #8fa7bd;
    --primary: #0c3b5e; --primary-hover: #082a45;
    --accent: #0ea5e9; --accent-hover: #0284c7; --accent-light: #e0f4ff; --accent-rgb: 14, 165, 233;
    --success: #10b981; --warning: #f59e0b; --danger: #ef4444;
    --border: #c9dff2;
    --shadow: 0 1px 3px rgba(12,59,94,0.06); --shadow-md: 0 4px 12px rgba(12,59,94,0.08); --shadow-lg: 0 10px 30px rgba(12,59,94,0.12);
}
[data-theme="ocean-blue"] .top-bar { background: linear-gradient(90deg,#0c3b5e,#155e8a); }
[data-theme="ocean-blue"] .site-header { background: rgba(255,255,255,0.92); border-bottom-color: #c9dff2; backdrop-filter: blur(12px); }
[data-theme="ocean-blue"] .logo { color: #0c3b5e; }
[data-theme="ocean-blue"] .logo i { color: #0ea5e9; }
[data-theme="ocean-blue"] .nav-link:hover { background: #e0f4ff; color: #0ea5e9; }
[data-theme="ocean-blue"] .search-box input { background: #f0f7ff; border-color: #c9dff2; }
[data-theme="ocean-blue"] .search-box input:focus { border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
[data-theme="ocean-blue"] .cart-icon-wrapper { border-color: #c9dff2; }
[data-theme="ocean-blue"] .cart-icon-wrapper:hover { border-color: #0ea5e9; background: #e0f4ff; }
[data-theme="ocean-blue"] .cart-icon-wrapper:hover .cart-svg,
[data-theme="ocean-blue"] .cart-icon-wrapper:hover .cart-label { color: #0ea5e9; }
[data-theme="ocean-blue"] .cart-badge-new { background: #0ea5e9; }
[data-theme="ocean-blue"] .hero { background: linear-gradient(135deg,#0c3b5e 0%,#155e8a 50%,#1a8fc7 100%); }
[data-theme="ocean-blue"] .hero .accent { color: #38bdf8; }
[data-theme="ocean-blue"] .banner-cta-btn { background: linear-gradient(135deg,#0ea5e9,#06b6d4); box-shadow: 0 4px 20px rgba(14,165,233,0.25); }
[data-theme="ocean-blue"] .banner-cta-btn:hover { box-shadow: 0 6px 30px rgba(14,165,233,0.4); }
[data-theme="ocean-blue"] .btn-primary { background: linear-gradient(135deg,#0ea5e9,#06b6d4); border: none; color: #fff; }
[data-theme="ocean-blue"] .btn-primary:hover { box-shadow: 0 4px 15px rgba(14,165,233,0.3); filter: brightness(1.05); }
[data-theme="ocean-blue"] .btn-outline { border-color: #0ea5e9; color: #0ea5e9; }
[data-theme="ocean-blue"] .btn-outline:hover { background: #e0f4ff; }
[data-theme="ocean-blue"] .product-card { border-color: #c9dff2; }
[data-theme="ocean-blue"] .product-card:hover { border-color: #0ea5e9; box-shadow: 0 8px 25px rgba(14,165,233,0.12); }
[data-theme="ocean-blue"] .product-category { color: #0ea5e9; }
[data-theme="ocean-blue"] .price { color: #0c3b5e; }
[data-theme="ocean-blue"] .badge-sale { background: #0ea5e9; }
[data-theme="ocean-blue"] .category-home-card { border-color: #c9dff2; }
[data-theme="ocean-blue"] .category-home-card:hover { border-color: #0ea5e9; box-shadow: 0 8px 25px rgba(14,165,233,0.12); }
[data-theme="ocean-blue"] .category-home-icon { background: #e0f4ff; color: #0ea5e9; }
[data-theme="ocean-blue"] .category-home-card:hover .category-home-icon { background: linear-gradient(135deg,#0ea5e9,#06b6d4); color: #fff; }
[data-theme="ocean-blue"] .features-bar { background: #fff; border-color: #c9dff2; }
[data-theme="ocean-blue"] .feature i { color: #0ea5e9; }
[data-theme="ocean-blue"] .site-footer { background: linear-gradient(180deg,#0c3b5e,#082a45); }
[data-theme="ocean-blue"] .social-links a { background: rgba(14,165,233,0.15); color: #38bdf8; }
[data-theme="ocean-blue"] .social-links a:hover { background: #0ea5e9; color: #fff; }
[data-theme="ocean-blue"] .form-control:focus { border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
[data-theme="ocean-blue"] .auth-page { background: linear-gradient(135deg,#e0f4ff 0%,#f0f7ff 100%); }
[data-theme="ocean-blue"] .auth-card { border-color: #c9dff2; box-shadow: 0 8px 30px rgba(12,59,94,0.1); }
[data-theme="ocean-blue"] .auth-card .btn-primary { background: linear-gradient(135deg,#0ea5e9,#06b6d4); }
[data-theme="ocean-blue"] .link { color: #0ea5e9; }
[data-theme="ocean-blue"] .blog-card { border-color: #c9dff2; }
[data-theme="ocean-blue"] .blog-card:hover { border-color: #0ea5e9; box-shadow: 0 8px 25px rgba(14,165,233,0.12); }
[data-theme="ocean-blue"] .blog-read-more { color: #0ea5e9; }
[data-theme="ocean-blue"] .blog-back-link { color: #0ea5e9; }
[data-theme="ocean-blue"] .contact-info-item i { background: #e0f4ff; color: #0ea5e9; }
[data-theme="ocean-blue"] .contact-form-card { border-color: #c9dff2; }
[data-theme="ocean-blue"] .account-card { border-color: #c9dff2; }
[data-theme="ocean-blue"] .account-card:hover { border-color: #0ea5e9; box-shadow: 0 8px 25px rgba(14,165,233,0.12); }
[data-theme="ocean-blue"] .account-card-icon { background: #e0f4ff; color: #0ea5e9; }


/* ─────────────────────────────────────────────
   THEME 4: EMERALD GREEN
   Nature-inspired earthy green on warm white
   ───────────────────────────────────────────── */

[data-theme="emerald"] {
    --bg: #f5faf5; --bg-white: #ffffff; --bg-light: #ecf7ec;
    --text: #1a2e1a; --text-muted: #5a755a; --text-light: #8aaa8a;
    --primary: #1b4332; --primary-hover: #132e23;
    --accent: #059669; --accent-hover: #047857; --accent-light: #d1fae5; --accent-rgb: 5, 150, 105;
    --success: #10b981; --warning: #f59e0b; --danger: #ef4444;
    --border: #c6e4c6;
    --shadow: 0 1px 3px rgba(27,67,50,0.06); --shadow-md: 0 4px 12px rgba(27,67,50,0.08); --shadow-lg: 0 10px 30px rgba(27,67,50,0.12);
}
[data-theme="emerald"] .top-bar { background: linear-gradient(90deg,#1b4332,#2d6a4f); }
[data-theme="emerald"] .site-header { background: rgba(255,255,255,0.92); border-bottom-color: #c6e4c6; backdrop-filter: blur(12px); }
[data-theme="emerald"] .logo { color: #1b4332; }
[data-theme="emerald"] .logo i { color: #059669; }
[data-theme="emerald"] .nav-link:hover { background: #d1fae5; color: #059669; }
[data-theme="emerald"] .search-box input { background: #f5faf5; border-color: #c6e4c6; }
[data-theme="emerald"] .search-box input:focus { border-color: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,0.12); }
[data-theme="emerald"] .cart-icon-wrapper { border-color: #c6e4c6; }
[data-theme="emerald"] .cart-icon-wrapper:hover { border-color: #059669; background: #d1fae5; }
[data-theme="emerald"] .cart-icon-wrapper:hover .cart-svg,
[data-theme="emerald"] .cart-icon-wrapper:hover .cart-label { color: #059669; }
[data-theme="emerald"] .cart-badge-new { background: #059669; }
[data-theme="emerald"] .hero { background: linear-gradient(135deg,#1b4332 0%,#2d6a4f 50%,#40916c 100%); }
[data-theme="emerald"] .hero .accent { color: #34d399; }
[data-theme="emerald"] .banner-cta-btn { background: linear-gradient(135deg,#059669,#10b981); box-shadow: 0 4px 20px rgba(5,150,105,0.25); }
[data-theme="emerald"] .banner-cta-btn:hover { box-shadow: 0 6px 30px rgba(5,150,105,0.4); }
[data-theme="emerald"] .btn-primary { background: linear-gradient(135deg,#059669,#10b981); border: none; color: #fff; }
[data-theme="emerald"] .btn-primary:hover { box-shadow: 0 4px 15px rgba(5,150,105,0.3); filter: brightness(1.05); }
[data-theme="emerald"] .btn-outline { border-color: #059669; color: #059669; }
[data-theme="emerald"] .btn-outline:hover { background: #d1fae5; }
[data-theme="emerald"] .product-card { border-color: #c6e4c6; }
[data-theme="emerald"] .product-card:hover { border-color: #059669; box-shadow: 0 8px 25px rgba(5,150,105,0.12); }
[data-theme="emerald"] .product-category { color: #059669; }
[data-theme="emerald"] .price { color: #1b4332; }
[data-theme="emerald"] .badge-sale { background: #059669; }
[data-theme="emerald"] .category-home-card { border-color: #c6e4c6; }
[data-theme="emerald"] .category-home-card:hover { border-color: #059669; box-shadow: 0 8px 25px rgba(5,150,105,0.12); }
[data-theme="emerald"] .category-home-icon { background: #d1fae5; color: #059669; }
[data-theme="emerald"] .category-home-card:hover .category-home-icon { background: linear-gradient(135deg,#059669,#10b981); color: #fff; }
[data-theme="emerald"] .features-bar { background: #fff; border-color: #c6e4c6; }
[data-theme="emerald"] .feature i { color: #059669; }
[data-theme="emerald"] .site-footer { background: linear-gradient(180deg,#1b4332,#132e23); }
[data-theme="emerald"] .social-links a { background: rgba(5,150,105,0.15); color: #34d399; }
[data-theme="emerald"] .social-links a:hover { background: #059669; color: #fff; }
[data-theme="emerald"] .form-control:focus { border-color: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
[data-theme="emerald"] .auth-page { background: linear-gradient(135deg,#d1fae5 0%,#f5faf5 100%); }
[data-theme="emerald"] .auth-card { border-color: #c6e4c6; box-shadow: 0 8px 30px rgba(27,67,50,0.1); }
[data-theme="emerald"] .auth-card .btn-primary { background: linear-gradient(135deg,#059669,#10b981); }
[data-theme="emerald"] .link { color: #059669; }
[data-theme="emerald"] .blog-card { border-color: #c6e4c6; }
[data-theme="emerald"] .blog-card:hover { border-color: #059669; box-shadow: 0 8px 25px rgba(5,150,105,0.12); }
[data-theme="emerald"] .blog-read-more { color: #059669; }
[data-theme="emerald"] .blog-back-link { color: #059669; }
[data-theme="emerald"] .contact-info-item i { background: #d1fae5; color: #059669; }
[data-theme="emerald"] .contact-form-card { border-color: #c6e4c6; }
[data-theme="emerald"] .account-card { border-color: #c6e4c6; }
[data-theme="emerald"] .account-card:hover { border-color: #059669; box-shadow: 0 8px 25px rgba(5,150,105,0.12); }
[data-theme="emerald"] .account-card-icon { background: #d1fae5; color: #059669; }
