﻿/* =====================================================
   WordPress Theme Fixes — must come first
   ===================================================== */

/* Prevent grey corners — body/html bg must match theme */
html {
    background: #0a0a0a;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Light mode: white background */
html[data-theme="light"] {
    background: #ffffff;
}

/* Hero must be truly full width — kill any WP wrapper constraints */
.hero {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* WP Admin Bar: push fixed navbar down so it shows below admin bar */
.admin-bar .navbar {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px !important;
    }
}

/* =====================================================
   End WordPress Theme Fixes
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF8C00;
    --secondary-color: #FF9F1C;
    --accent-color: #FFB347;
    --light-bg: #f8f8f8;
    --dark-text: #222222;
    --muted-text: #666666;
    --card-bg: #ffffff;
    --card-border: #eee;
    --body-bg: #ffffff;
    --navbar-bg: rgba(255, 255, 255, 0.5);
    --navbar-shadow: rgba(0, 0, 0, 0.08);
    --input-bg: #ffffff;
    --input-border: #ddd;
    --footer-bg: #1a1a1a;
    --footer-text: #bbb;
    --footer-border: #333;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --light-bg: #1a1a1a;
    --dark-text: #f0f0f0;
    --muted-text: #aaaaaa;
    --card-bg: #2d2d2d;
    --card-border: #404040;
    --body-bg: #121212;
    --navbar-bg: rgba(18, 18, 18, 0.5);
    --navbar-shadow: rgba(0, 0, 0, 0.3);
    --input-bg: #2d2d2d;
    --input-border: #404040;
    --footer-bg: #0a0a0a;
    --footer-text: #999;
    --footer-border: #222;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--body-bg);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    z-index: 4000;
    box-shadow: 0 2px 20px var(--navbar-shadow);
    border-bottom: 2px solid var(--primary-color);
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: var(--navbar-bg);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mobile-drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    padding-left: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0 -10px;
    padding: 0;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    margin-top: 80px;
    width: 100%;
    min-height: 80vh;
    background: url('../images/unnamed.jpg') center center / cover no-repeat;
    background-color: #0a0a0a;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    position: relative;
    z-index: 10;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -50px;
    left: 100px;
    animation: pulseGlow 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    animation: floatUpDown 8s ease-in-out infinite;
}

.shape-3 {
    position: absolute;
    width: 250px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: 50%;
    right: 300px;
    transform: rotate(45deg);
    animation: spinSlow 20s linear infinite;
}

.shape-4 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: 100px;
    right: 100px;
    animation: floatLeftRight 7s ease-in-out infinite;
}

.shape-5 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: 150px;
    left: 50px;
    animation: pulseGlow 5s ease-in-out infinite 1s;
}

.hero-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.hero-text {
    max-width: 500px;
    opacity: 0;
    transform: translateX(-60px);
    animation: heroSlideInLeft 1s ease 0.3s forwards;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    opacity: 0;
    text-transform: uppercase;
    animation: heroFadeInUp 0.8s ease 0.6s forwards;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: heroFadeInUp 0.8s ease 0.9s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 1.1s forwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.45);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
    overflow: hidden;
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    animation: heroSlideInRight 1s ease 0.5s forwards;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==================== HERO KEYFRAMES ==================== */
@keyframes heroSlideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroSlideInRight {
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 0.95; transform: translateY(0); }
}

/* ==================== FLOATING SHAPES ANIMATIONS ==================== */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.08); }
}

@keyframes spinSlow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

/* ==================== FEATURES SECTION ==================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding-top: 0.5rem;
}

.features {
    padding: 80px 20px;
    background: var(--light-bg);
}

/* Features Slider */
.features-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.features-track-outer {
    overflow: hidden;
    border-radius: 16px;
}

.features-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card-slide {
    flex: 0 0 calc(33.333% - 1rem);
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.5);
}

.feature-slide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00, #FF9F1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

.feature-card-slide h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.feature-card-slide p {
    color: var(--muted-text);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Slider Dots */
.features-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #FF8C00;
    width: 28px;
    border-radius: 5px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #FF8C00;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.slider-arrow:hover {
    background: #FF8C00;
    color: white;
    border-color: #FF8C00;
}

.slider-prev { left: -56px; }
.slider-next { right: -56px; }

/* ==================== PRODUCTS SECTION ==================== */
.products {
    padding: 80px 20px;
    background: var(--body-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.3s ease;
    border: 1px solid var(--card-border);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.25);
    border-color: var(--primary-color);
}

.product-card:hover .product-image {
    filter: brightness(1.1);
}

.product-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF9F1C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.basketball-shoes::before { content: '\1F45F'; }
.basketball-ball::before { content: '\1F3C0'; }
.basketball-jersey::before { content: '\1F455'; }

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--dark-text);
}

.product-info p {
    color: var(--muted-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-rating {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating i {
    color: #E8A317;
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--muted-text);
    font-size: 0.85rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-add-cart {
    position: relative;
    overflow: hidden;
}

.btn-add-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-add-cart:active::after {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
}

/* Product Button Group */
.product-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.product-btn-group .btn-add-cart {
    flex: 1;
    width: auto;
}

.btn-buy-now {
    flex: 1;
    background: transparent;
    color: var(--primary-color);
    padding: 10px 18px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-buy-now:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
}

.btn-buy-now::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-buy-now:active::after {
    width: 300px;
    height: 300px;
}

/* ==================== SHOWCASE SECTION ==================== */
.showcase {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.showcase-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.showcase:hover .showcase-bg {
    transform: scale(1.0);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.55) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 20px;
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    margin-bottom: 1.2rem;
}

.showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.12);
    border: 1px solid rgba(255, 140, 0, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.showcase-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fff;
}

.showcase-title span {
    color: #FF8C00;
}

.showcase-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.showcase-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.showcase-stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FF8C00;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.showcase-stat p {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
}

.showcase-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF8C00;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.4);
}

.showcase-cta:hover {
    background: #e07900;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 140, 0, 0.5);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 80px 20px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    color: var(--muted-text);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.testimonials-carousel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: transparent;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    padding: 2rem 0;
}

.testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease, backdrop-filter 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    backdrop-filter: blur(15px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    color: #E8A317;
    font-size: 1rem;
}

.testimonial-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: var(--dark-text);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.testimonial-author p {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.testimonial-nav {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 25, 11, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    border-color: var(--primary-color);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 80px 20px;
    background: var(--body-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: var(--muted-text);
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 400px;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(59, 25, 11, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.04);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 20px;
    background: var(--body-bg);
}

.contact-subtitle {
    text-align: center;
    color: var(--muted-text);
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #FF8C00, #FF9F1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    color: var(--muted-text);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 50%;
    color: var(--dark-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.3rem;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg, var(--light-bg));
    border: 2px solid var(--card-border);
    border-radius: 10px;
    color: var(--dark-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted-text);
    opacity: 0.7;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-contact-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
}

.btn-contact-submit i {
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(5px);
}

.btn-contact-submit.sent {
    background: #28a745;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* ==================== CTA SECTION ==================== */
.cta {
    background: linear-gradient(135deg, #FF8C00 0%, #FF9F1C 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter {
    padding: 60px 20px;
    background: var(--light-bg);
    color: var(--dark-text);
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--muted-text);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: 2px solid var(--input-border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--dark-text);
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-form .btn {
    min-width: 150px;
    background: var(--primary-color);
    color: white;
    border: none;
}

.newsletter-form .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 60px 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: var(--footer-text);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid var(--footer-border);
    margin-top: 2.5rem;
    padding: 2rem 0 2.5rem;
    color: var(--footer-text);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 580px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== THEME TOGGLE ==================== */

/* ==================== ALL PRODUCTS PAGE ==================== */
.products-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--body-bg);
    z-index: 3000;
    overflow-y: auto;
    animation: fadeInPage 0.3s ease;
    padding-top: 80px;
}

/* Products Page Hero */
.pp-hero {
    padding: 80px 20px 50px;
    background: #1A0A04;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pp-hero-content {
    position: relative;
    z-index: 2;
}

.pp-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.3s forwards;
}

.pp-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.6s forwards;
}

.pp-hero-breadcrumb {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.8s forwards;
}

.pp-hero-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.pp-hero-breadcrumb a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .pp-hero h1 {
        font-size: 2.2rem;
    }
    .pp-hero {
        padding: 50px 20px 35px;
    }
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.products-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.products-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--card-border);
    margin-bottom: 1.5rem;
    position: sticky;
    top: 0;
    background: var(--body-bg);
    z-index: 10;
}

.products-page-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-page-title h2 {
    font-size: 1.6rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-page-title h2 i {
    color: var(--primary-color);
}

.products-page-count {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.products-page-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.products-page-close:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.products-page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.products-page-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.products-page-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-text);
    font-size: 0.9rem;
}

.products-page-search input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--dark-text);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.products-page-search input:focus {
    border-color: var(--primary-color);
}

.products-page-filters {
    display: flex;
    gap: 10px;
}

.products-page-filters select {
    padding: 10px 14px;
    border: 2px solid var(--card-border);
    border-radius: 10px;
    background: var(--input-bg);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.products-page-filters select:focus {
    border-color: var(--primary-color);
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Product Page Card */
.pp-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pp-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    font-size: 5rem;
    position: relative;
}

.pp-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pp-card-stock {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pp-card-stock.in-stock {
    background: #d4edda;
    color: #155724;
}

.pp-card-stock.low-stock {
    background: #fff3cd;
    color: #856404;
}

.pp-card-stock.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.pp-card-body {
    padding: 1.2rem;
}

.pp-card-body h3 {
    font-size: 1.05rem;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.pp-card-body .pp-desc {
    color: var(--muted-text);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pp-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pp-card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pp-card-sold {
    font-size: 0.8rem;
    color: var(--muted-text);
}

.pp-card-sold i {
    color: #f39c12;
    margin-right: 3px;
}

.pp-btn-add {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.pp-btn-add:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.pp-btn-add:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.pp-btn-add.added {
    background: #27ae60;
}

.products-page-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted-text);
}

.products-page-empty i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.products-page-empty p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* ==================== CART ICON ==================== */
.btn-cart-icon {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cart-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count.hidden {
    display: none;
}

/* ==================== CART SIDEBAR ==================== */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 6000;
}

.cart-overlay.show {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--card-bg);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
    z-index: 6001;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--primary-color);
    color: white;
}

.cart-header h2 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted-text);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 0.95rem;
    color: var(--dark-text);
    margin-bottom: 0.2rem;
}

.cart-item-details .cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.cart-item-qty button {
    width: 26px;
    height: 26px;
    border: 1px solid var(--card-border);
    background: var(--light-bg);
    color: var(--dark-text);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item-qty button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--dark-text);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: transform 0.2s;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 1.2rem 1.5rem;
    border-top: 2px solid var(--card-border);
    background: var(--light-bg);
}

.cart-subtotal, .cart-tax {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.cart-grand-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--card-border);
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.btn-checkout:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 25, 11, 0.3);
}

.btn-clear-cart {
    width: 100%;
    padding: 8px;
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-cart:hover {
    background: #e74c3c;
    color: white;
}

/* ==================== CHECKOUT MODAL ==================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 7000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-modal {
    background: var(--card-bg);
    border-radius: 16px;
    width: 650px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalAppear 0.3s ease;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 16px 16px 0 0;
}

.checkout-header h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.checkout-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.checkout-body {
    padding: 1.5rem 2rem 2rem;
}

.checkout-section {
    margin-bottom: 1.5rem;
}

.checkout-section h3 {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--card-border);
}

.checkout-section h3 i {
    color: var(--primary-color);
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid var(--card-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(59, 25, 11, 0.05);
}

.payment-option input {
    accent-color: var(--primary-color);
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.payment-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.checkout-order-items {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.checkout-order-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark-text);
    border-bottom: 1px solid var(--card-border);
}

.checkout-order-item span:last-child {
    font-weight: 600;
}

.checkout-totals {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1rem;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.checkout-total-row.grand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    border-top: 2px solid var(--card-border);
    margin-top: 0.5rem;
    padding-top: 0.8rem;
}

.btn-place-order {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-place-order:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 25, 11, 0.3);
}

/* ==================== CUSTOMER DASHBOARD ==================== */
.customer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-panel {
    background: var(--card-bg);
    border-radius: 16px;
    width: 800px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease;
}

.customer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 16px 16px 0 0;
}

.customer-header h2 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.customer-tabs {
    display: flex;
    border-bottom: 2px solid var(--card-border);
    padding: 0 1rem;
    background: var(--light-bg);
}

.customer-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--muted-text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.customer-tab:hover {
    color: var(--primary-color);
}

.customer-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.customer-content {
    padding: 1.5rem 2rem;
}

.customer-tab-content {
    display: none;
}

.customer-tab-content.active {
    display: block;
}

.orders-empty, .wishlist-empty {
    text-align: center;
    padding: 3rem;
    color: var(--muted-text);
}

.orders-empty i, .wishlist-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.orders-empty p, .wishlist-empty p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* Order Cards */
.order-card {
    background: var(--light-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.order-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--card-border);
}

.order-id {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.order-date {
    color: var(--muted-text);
    font-size: 0.8rem;
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-status.processing {
    background: #fff3cd;
    color: #856404;
}

.order-status.shipped {
    background: #cce5ff;
    color: #004085;
}

.order-items-list {
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.order-items-list span {
    display: block;
    padding: 2px 0;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--card-border);
}

.order-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.order-payment {
    font-size: 0.8rem;
    color: var(--muted-text);
}

/* Profile Card */
.profile-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-avatar {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.profile-info {
    flex: 1;
}

/* ==================== ORDER SUCCESS ==================== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: modalAppear 0.3s ease;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-modal h2 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.success-modal p {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

.success-details {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.success-details p {
    margin-bottom: 0.3rem;
    color: var(--dark-text);
}

/* ==================== NAV ACTIONS ==================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
}

.btn-login {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-login:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 25, 11, 0.3);
}

/* User Profile Button */
.user-profile-btn {
    position: relative;
}

.btn-user {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--dark-text);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-user:hover {
    background: var(--primary-color);
    color: white;
}

.btn-user i:first-child {
    font-size: 1.2rem;
}

/* User Dropdown */
.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    overflow: hidden;
    animation: dropdownSlide 0.2s ease;
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown.show {
    display: block;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--primary-color);
    color: white;
}

.dropdown-header i {
    font-size: 2rem;
}

.dropdown-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.dropdown-role {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-divider {
    height: 1px;
    background: var(--card-border);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.dropdown-item.logout-item:hover {
    background: #fee;
    color: #c0392b;
}

/* ==================== AUTH MODAL ==================== */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.auth-modal-overlay.show {
    display: flex;
}

.auth-modal {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    width: 420px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--muted-text);
    transition: color 0.2s;
    line-height: 1;
}

.auth-close:hover {
    color: #c0392b;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.auth-header h2 {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.auth-header p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 4px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--input-border);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--input-bg);
    color: var(--dark-text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group select {
    cursor: pointer;
    appearance: auto;
}

.btn-auth {
    width: 100%;
    padding: 13px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-auth:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 25, 11, 0.3);
}

.auth-switch {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-message {
    text-align: center;
    margin-top: 1rem;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
}

.auth-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== ADMIN DASHBOARD ==================== */
.admin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-panel {
    background: var(--card-bg);
    border-radius: 16px;
    width: 1100px;
    max-width: 96vw;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-header h2 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: opacity 0.2s;
    line-height: 1;
}

.admin-close:hover {
    opacity: 0.7;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem 2rem;
}

.admin-stat-card {
    background: var(--light-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.admin-stat-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.admin-stat-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.2rem;
}

.admin-stat-card p {
    color: var(--muted-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 0;
    padding: 0 2rem;
    border-bottom: 2px solid var(--card-border);
    overflow-x: auto;
}

.admin-tab {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.admin-tab:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

.admin-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.admin-tab-contents {
    padding: 0;
}

.admin-tab-content {
    display: none;
    padding: 1.5rem 2rem 2rem;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-section-header h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.admin-filter-bar {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-filter-bar select,
.admin-filter-bar input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--input-bg);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.admin-filter-bar select:focus,
.admin-filter-bar input:focus {
    border-color: var(--primary-color);
}

.btn-admin-action {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-admin-action:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.admin-section {
    padding: 1.5rem 2rem 2rem;
}

.admin-section h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--card-border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--primary-color);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.admin-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--card-border);
    color: var(--dark-text);
    font-size: 0.85rem;
}

.admin-table tr:hover td {
    background: var(--light-bg);
}

.admin-empty {
    text-align: center;
    padding: 3rem;
    color: var(--muted-text);
}

.admin-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.admin-empty p {
    font-size: 1rem;
}

.role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.role-badge.admin {
    background: #fff3cd;
    color: #856404;
}

.role-badge.customer {
    background: #d4edda;
    color: #155724;
}

.btn-delete-user {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-user:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* Order status badges (admin) */
.order-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}

.order-status.processing {
    background: #fff3cd;
    color: #856404;
}

.order-status.shipped {
    background: #cce5ff;
    color: #004085;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Admin action buttons in tables */
.admin-row-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn-admin-sm {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.btn-admin-sm:hover {
    transform: translateY(-1px);
}

.btn-admin-sm.btn-status {
    background: #3498db;
    color: white;
}

.btn-admin-sm.btn-invoice {
    background: #27ae60;
    color: white;
}

.btn-admin-sm.btn-edit {
    background: #f39c12;
    color: white;
}

.btn-admin-sm.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-admin-sm.btn-view {
    background: #6c5ce7;
    color: white;
}

.btn-admin-sm.btn-download {
    background: var(--primary-color);
    color: white;
}

/* Stock status */
.stock-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.low-stock {
    background: #fff3cd;
    color: #856404;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

/* Admin Sub-Modals (product form, status update, invoice preview) */
.admin-sub-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-sub-modal {
    background: var(--card-bg);
    border-radius: 14px;
    width: 550px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: modalAppear 0.25s ease;
}

.admin-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 14px 14px 0 0;
}

.admin-sub-header h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: white;
}

.admin-sub-body {
    padding: 1.5rem;
}

.admin-sub-body textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--dark-text);
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
}

/* Status options */
.status-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.status-option input[type="radio"] {
    display: none;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--card-border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.2s;
}

.status-option input[type="radio"]:checked + .status-label {
    border-color: var(--primary-color);
    background: var(--light-bg);
    box-shadow: 0 2px 8px rgba(59, 25, 11, 0.15);
}

.status-label.processing { color: #856404; }
.status-label.shipped { color: #004085; }
.status-label.delivered { color: #155724; }
.status-label.cancelled { color: #721c24; }

.status-order-info {
    color: var(--muted-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 8px;
}

/* Invoice Preview Modal */
.invoice-preview-modal {
    width: 700px;
    max-width: 96vw;
}

.invoice-content {
    padding: 2rem;
    background: white;
    color: #333;
}

.invoice-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #FF8C00;
}

.invoice-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invoice-brand i {
    font-size: 2rem;
    color: #FF8C00;
}

.invoice-brand h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FF8C00;
    letter-spacing: 2px;
}

.invoice-meta {
    text-align: right;
}

.invoice-meta h3 {
    font-size: 1.3rem;
    color: #FF8C00;
    margin-bottom: 4px;
}

.invoice-meta p {
    font-size: 0.85rem;
    color: #666;
    margin: 2px 0;
}

.invoice-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.invoice-from h4,
.invoice-to h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 6px;
}

.invoice-from p,
.invoice-to p {
    font-size: 0.9rem;
    color: #333;
    margin: 2px 0;
}

.invoice-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.invoice-items-table th {
    background: #FF8C00;
    color: white;
    padding: 10px 14px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invoice-items-table th:last-child,
.invoice-items-table td:last-child {
    text-align: right;
}

.invoice-items-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.invoice-totals {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.invoice-totals-table {
    width: 280px;
}

.invoice-totals-table .total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
}

.invoice-totals-table .total-row.grand {
    border-top: 2px solid #FF8C00;
    margin-top: 6px;
    padding-top: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #FF8C00;
}

.invoice-footer-row {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.8rem;
}

.invoice-footer-row p {
    margin: 2px 0;
}

.invoice-payment-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}

/* ==================== QUICK STOCK UPDATE ==================== */
.stock-update-product-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.stock-product-emoji {
    font-size: 2rem;
}

.stock-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
}

.stock-update-controls {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.stock-current {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 8px;
}

.stock-current span {
    color: var(--muted-text);
    font-size: 0.85rem;
}

.stock-current strong {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.stock-adjust label,
.stock-quick-set label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stock-adjust-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-adj-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    background: var(--light-bg);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.stock-adj-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.stock-adjust-row input[type="number"] {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--card-border);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    background: var(--input-bg);
    outline: none;
    font-family: inherit;
    -moz-appearance: textfield;
}

.stock-adjust-row input[type="number"]::-webkit-inner-spin-button,
.stock-adjust-row input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stock-adjust-row input[type="number"]:focus {
    border-color: var(--primary-color);
}

.stock-quick-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stock-quick-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--light-bg);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.stock-quick-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-admin-sm.btn-stock {
    background: #00b894;
    color: white;
}

/* ==================== THEME TOGGLE ==================== */
.theme-toggle {
    width: 52px;
    height: 28px;
    background: #ccc;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    margin-left: 1.5rem;
    flex-shrink: 0;
    z-index: 100;
    outline: none;
    display: inline-flex;
    align-items: center;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

[data-theme="dark"] .theme-toggle {
    background: var(--primary-color);
}

[data-theme="dark"] .theme-toggle::after {
    transform: translateX(24px);
}

.theme-toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    pointer-events: none;
    z-index: 1;
}

.theme-toggle .sun-icon {
    left: 6px;
    color: #f39c12;
}

.theme-toggle .moon-icon {
    right: 6px;
    color: #555;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    color: #ffd700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .slider-prev { left: -20px; }
    .slider-next { right: -20px; }

    .features-slider-wrapper {
        padding: 0 30px;
    }

    .feature-card-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Mobile Drawer */
    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        background: var(--navbar-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 2px solid var(--primary-color);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        z-index: 3999;
        transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
    }

    .mobile-drawer.mobile-open {
        max-height: 600px;
        opacity: 1;
        pointer-events: auto;
    }

    /* Nav links in drawer */
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        gap: 0;
        flex: unset;
        padding: 0.4rem 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(128,128,128,0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    /* Actions row in drawer */
    .nav-actions {
        display: flex;
        width: 100%;
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(255,140,0,0.15);
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-left: 0;
    }

    /* Hamburger â†’ X animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-8px);
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .logo-img {
        height: 48px;
    }

    .btn-login {
        padding: 7px 16px;
        font-size: 0.8rem;
    }

    .btn-user span {
        display: inline;
    }

    /* Hero â€” stacked layout on mobile: full image on top, text below with gradient overlap */
    .hero {
        min-height: unset;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        position: relative;
        min-height: unset;
        padding: 0;
    }

    .hero-image-container {
        position: relative;
        inset: unset;
        height: auto;
        width: 100%;
        opacity: 1;
        transform: none;
        animation: none;
        order: 1;
        z-index: 11;
        overflow: visible;
    }

    .hero-image {
        width: 100%;
        height: auto;
        object-fit: unset;
        transform: none;
        display: block;
    }

    .hero-content-container {
        position: relative;
        bottom: unset;
        left: unset;
        right: unset;
        z-index: 20;
        order: 2;
        margin-top: -120px;
        padding: 100px 24px 28px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.92) 40%,
            rgba(0, 0, 0, 0.55) 70%,
            transparent 100%
        );
        display: flex;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        transform: none;
        animation: none;
        opacity: 1;
    }

    .hero-eyebrow {
        font-size: 0.64rem;
        margin-bottom: 0.75rem;
        display: inline-flex;
        padding: 5px 11px;
        letter-spacing: 0.5px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
        animation: none;
        opacity: 1;
        margin-bottom: 0.75rem;
        letter-spacing: -0.02em;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.65;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        animation: none;
        opacity: 0.85;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1.2rem;
        animation: none;
        opacity: 1;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        flex: 0 0 auto;
        width: auto;
        padding: 9px 20px;
        font-size: 0.72rem;
        letter-spacing: 0.8px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Features Slider */
    .features-slider-wrapper {
        padding: 0 40px;
    }

    .feature-card-slide {
        flex: 0 0 100%;
    }

    .slider-prev { left: -10px; }
    .slider-next { right: -10px; }

    /* Showcase */
    .showcase-title {
        font-size: 2.5rem;
    }

    .showcase-stats {
        gap: 1.2rem;
    }

    .showcase-stat h3 {
        font-size: 1.8rem;
    }

    .showcase-divider {
        height: 36px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-placeholder {
        width: 100%;
        max-width: 100%;
        height: 300px;
        margin: 0 auto;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Section title */
    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        min-width: 100%;
    }

    .testimonial-card {
        padding: 2rem;
        flex: 0 0 100%;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonials-controls {
        gap: 1.5rem;
    }

    .testimonials-track {
        gap: 1rem;
    }

    /* Admin */
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-tabs {
        padding: 0 1rem;
    }

    .admin-tab {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .admin-tab-content {
        padding: 1rem;
    }

    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-filter-bar {
        width: 100%;
        flex-direction: column;
    }

    .admin-filter-bar input,
    .admin-filter-bar select {
        width: 100%;
    }

    .invoice-header-row {
        flex-direction: column;
        gap: 1rem;
    }

    .invoice-meta {
        text-align: left;
    }

    .invoice-parties {
        grid-template-columns: 1fr;
    }

    .products-page-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .products-page-search {
        max-width: 100%;
    }

    .products-page-filters {
        flex-direction: column;
    }

    .products-page-filters select {
        width: 100%;
    }

    .products-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .products-page-header {
        padding: 1rem 0;
    }

    .products-page-title h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    /* Hero */
    .hero-inner {
        min-height: unset;
    }

    .hero-content-container {
        padding: 80px 20px 24px;
        margin-top: -100px;
    }

    .hero-text h1 {
        font-size: 1.55rem;
        letter-spacing: -0.02em;
    }

    .hero-description {
        font-size: 0.78rem;
        line-height: 1.6;
        opacity: 0.82;
    }

    .hero-image-container {
        height: auto;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
        padding: 4px 10px;
        letter-spacing: 0.4px;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 0 0 auto;
        width: auto;
        font-size: 0.68rem;
        padding: 8px 16px;
        letter-spacing: 0.7px;
    }

    /* Features */
    .feature-card-slide {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
    }

    .features-slider-wrapper {
        padding: 0 36px;
    }

    /* Showcase */
    .showcase {
        min-height: 70vh;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .showcase-desc {
        font-size: 0.9rem;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .showcase-divider {
        width: 60px;
        height: 1px;
    }

    .showcase-cta {
        padding: 14px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 250px;
    }

    .product-btn-group {
        flex-direction: column;
        gap: 8px;
    }

    /* About */
    .about-image-placeholder {
        height: 240px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Section title */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Buttons */
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.product-image {
    transition: filter 0.4s ease;
}

/* Stagger delays for cards */
.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.45s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.6s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.75s; }

/* Feature icon bounce on card hover */
.feature-card:hover .feature-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    40% { transform: scale(1.2); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Ripple effect for buttons */
@keyframes rippleEffect {
    to { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* ==================== PAGE TRANSITION ==================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    background: var(--body-bg, #fff);
    opacity: 0;
    transition: opacity 0.03s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

body {
    animation: pageEnterFade 0.06s ease;
}

@keyframes pageEnterFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===============================
   WooCommerce Wildball Overrides
   =============================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (max-width: 768px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: 1fr; }
}
.woocommerce ul.products li.product {
    background: var(--card-bg, #1a1a1a);
    border: 1px solid rgba(255,140,0,.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform .3s, box-shadow .3s;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,140,0,.15);
}
.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 1rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text, #fff);
    margin-bottom: .5rem;
}
.woocommerce ul.products li.product .price {
    color: var(--primary-color, #FF8C00);
    font-size: 1.2rem;
    font-weight: 700;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    background: var(--primary-color, #FF8C00);
    color: #000;
    border: none;
    padding: .8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: background .3s, transform .2s;
    text-decoration: none;
    display: inline-block;
    margin-top: .8rem;
    width: 100%;
    text-align: center;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: var(--secondary-color, #e67e00);
    transform: translateY(-2px);
}
.woocommerce .woocommerce-ordering select,
.woocommerce-page .woocommerce-ordering select {
    background: var(--card-bg, #1a1a1a);
    color: var(--dark-text, #fff);
    border: 1px solid rgba(255,140,0,.3);
    border-radius: 8px;
    padding: .6rem 1rem;
}
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: .5rem;
    list-style: none;
    padding: 0;
    justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: var(--card-bg, #1a1a1a);
    color: var(--dark-text, #fff);
    border: 1px solid rgba(255,140,0,.2);
    border-radius: 8px;
    padding: .5rem 1rem;
    text-decoration: none;
    transition: background .3s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--primary-color, #FF8C00);
    color: #000;
    border-color: transparent;
}
/* Single product */
.woocommerce div.product div.summary .price {
    color: var(--primary-color, #FF8C00);
    font-size: 1.6rem;
    font-weight: 700;
}
.woocommerce div.product div.summary .single_add_to_cart_button {
    background: var(--primary-color, #FF8C00);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background .3s;
}
.woocommerce div.product div.summary .single_add_to_cart_button:hover {
    background: var(--secondary-color, #e67e00);
}
.woocommerce-breadcrumb { color: var(--muted-text, #888); font-size: .9rem; margin-bottom: 1.5rem; }
.woocommerce-breadcrumb a { color: var(--primary-color, #FF8C00); text-decoration: none; }

/* ========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================================================== */

        /* About Page Hero */
        .about-hero {
            margin-top: 80px;
            padding: 80px 20px 50px;
            background: #1A0A04;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-hero canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.3s forwards;
        }

        .about-hero p {
            color: rgba(255,255,255,0.8);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.6s forwards;
        }

        .about-hero .breadcrumb {
            margin-top: 1.5rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.8s forwards;
        }

        .about-hero .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .about-hero .breadcrumb a:hover {
            color: var(--secondary-color);
        }

        /* Story Section */
        .about-story {
            padding: 80px 20px;
            background: var(--body-bg);
        }

        .about-story .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-story-text h2 {
            font-size: 2.2rem;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-story-text h2 span {
            color: var(--primary-color);
        }

        .about-story-text p {
            color: var(--muted-text);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }

        .about-story-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-story-image {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 1;
            background: linear-gradient(135deg, #FF8C00, #FF9F1C);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 140px;
            color: rgba(255,255,255,0.25);
            box-shadow: 0 25px 50px rgba(255, 140, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .about-story-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            top: -50%;
            left: -50%;
            animation: shimmer 6s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20%, 20%); }
        }

        /* Stats Bar */
        .about-stats {
            padding: 60px 20px;
            background: #1A0A04;
        }

        .about-stats .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-item .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            line-height: 1.2;
        }

        .stat-item .stat-label {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Mission / Vision / Values */
        .about-values {
            padding: 80px 20px;
            background: var(--body-bg);
        }

        .about-values .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-values h2 {
            font-size: 2.2rem;
            color: var(--dark-text);
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-values h2 span {
            color: var(--primary-color);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            text-align: center;
            transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInCards 0.6s ease forwards;
        }

        .value-card:nth-child(1) { animation-delay: 0.15s; }
        .value-card:nth-child(2) { animation-delay: 0.3s; }
        .value-card:nth-child(3) { animation-delay: 0.45s; }

        @keyframes fadeInCards {
            to { opacity: 1; transform: translateY(0); }
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
        }

        .value-card .value-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #FF8C00, #FF9F1C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: white;
        }

        .value-card h3 {
            font-size: 1.25rem;
            color: var(--dark-text);
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .value-card p {
            color: var(--muted-text);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Team Section */
        .about-team {
            padding: 80px 20px;
            background: var(--light-bg);
        }

        .about-team .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-team h2 {
            font-size: 2.2rem;
            color: var(--dark-text);
            text-align: center;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-team h2 span {
            color: var(--primary-color);
        }

        .about-team .team-subtitle {
            text-align: center;
            color: var(--muted-text);
            font-size: 1.05rem;
            margin-bottom: 3rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .team-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--border-radius);
            padding: 2rem;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInCards 0.6s ease forwards;
        }

        .team-card:nth-child(1) { animation-delay: 0.2s; }
        .team-card:nth-child(2) { animation-delay: 0.4s; }
        .team-card:nth-child(3) { animation-delay: 0.6s; }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.12);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.2rem;
            background: linear-gradient(135deg, #FF8C00, #FFB347);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
        }

        .team-card h4 {
            font-size: 1.15rem;
            color: var(--dark-text);
            margin-bottom: 0.3rem;
        }

        .team-card .team-role {
            color: var(--primary-color);
            font-size: 0.88rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }

        .team-card p {
            color: var(--muted-text);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .team-socials {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .team-socials a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--card-border);
            border-radius: 50%;
            color: var(--muted-text);
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .team-socials a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Timeline */
        .about-timeline {
            padding: 80px 20px;
            background: var(--body-bg);
        }

        .about-timeline .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-timeline h2 {
            font-size: 2.2rem;
            color: var(--dark-text);
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-timeline h2 span {
            color: var(--primary-color);
        }

        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInTimeline 0.5s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }

        @keyframes slideInTimeline {
            to { opacity: 1; transform: translateX(0); }
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 6px;
            width: 14px;
            height: 14px;
            background: var(--primary-color);
            border-radius: 50%;
            border: 3px solid var(--body-bg);
            box-shadow: 0 0 0 3px var(--primary-color);
        }

        .timeline-item .year {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
        }

        .timeline-item h4 {
            font-size: 1.1rem;
            color: var(--dark-text);
            margin-bottom: 0.4rem;
        }

        .timeline-item p {
            color: var(--muted-text);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* CTA */
        .about-cta {
            padding: 80px 20px;
            background: #1A0A04;
            text-align: center;
        }

        .about-cta h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-cta p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto 2rem;
        }

        .about-cta .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .about-cta .btn-cta:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-hero h1 { font-size: 2.2rem; }
            .about-hero { padding: 50px 20px 35px; }
            .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
            .about-story-visual { order: -1; }
            .about-story-image { max-width: 280px; font-size: 90px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .values-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            .about-cta h2 { font-size: 1.8rem; }
        }
    

/* ========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================================================== */

        /* Contact Page Specific */
        .contact-hero {
            margin-top: 80px;
            padding: 80px 20px 50px;
            background: #1A0A04;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .contact-hero-content {
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.3s forwards;
        }

        .contact-hero p {
            color: rgba(255,255,255,0.8);
            font-size: 1.15rem;
            max-width: 550px;
            margin: 0 auto;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.6s forwards;
        }

        .contact-hero .breadcrumb {
            margin-top: 1.5rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.8s forwards;
        }

        .contact-hero .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-hero .breadcrumb a:hover {
            color: var(--secondary-color);
        }

        /* Main Contact Area */
        .contact-main {
            padding: 80px 20px;
            background: var(--body-bg);
        }

        .contact-main .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 3rem;
        }

        /* Contact Info Side */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-info-card {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            border: 1px solid var(--card-border);
            transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .contact-info-card:nth-child(1) { animation-delay: 0.2s; }
        .contact-info-card:nth-child(2) { animation-delay: 0.4s; }
        .contact-info-card:nth-child(3) { animation-delay: 0.6s; }

        @keyframes slideInLeft {
            to { opacity: 1; transform: translateX(0); }
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 140, 0, 0.15);
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: linear-gradient(135deg, #FF8C00, #FF9F1C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
        }

        .contact-info-card h4 {
            font-size: 1.1rem;
            color: var(--dark-text);
            margin-bottom: 0.4rem;
        }

        .contact-info-card p {
            color: var(--muted-text);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* Working Hours */
        .contact-hours {
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            border: 1px solid var(--card-border);
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease 0.8s forwards;
        }

        .contact-hours h4 {
            font-size: 1.1rem;
            color: var(--dark-text);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .contact-hours h4 i {
            color: var(--primary-color);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--card-border);
            color: var(--muted-text);
            font-size: 0.92rem;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-row .day {
            font-weight: 600;
            color: var(--dark-text);
        }

        /* Social Links */
        .contact-socials {
            display: flex;
            gap: 1rem;
            padding-top: 0.8rem;
            opacity: 0;
            animation: heroFadeInUp 0.6s ease 1s forwards;
        }

        .contact-socials a {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 50%;
            color: var(--dark-text);
            font-size: 1.15rem;
            transition: all 0.3s ease;
        }

        .contact-socials a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35);
        }

        /* Contact Form Side */
        .contact-form-container {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            border: 1px solid var(--card-border);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 0.7s ease 0.3s forwards;
        }

        @keyframes slideInRight {
            to { opacity: 1; transform: translateX(0); }
        }

        .contact-form-container h3 {
            font-size: 1.5rem;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-form-container .form-desc {
            color: var(--muted-text);
            font-size: 0.92rem;
            margin-bottom: 2rem;
        }

        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }

        .contact-form .form-group {
            margin-bottom: 1.3rem;
        }

        .contact-form label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            background: var(--input-bg, var(--light-bg));
            border: 2px solid var(--card-border);
            border-radius: 10px;
            color: var(--dark-text);
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
            box-sizing: border-box;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--muted-text);
            opacity: 0.6;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 130px;
        }

        .btn-contact-submit {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 36px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .btn-contact-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
        }

        .btn-contact-submit i {
            transition: transform 0.3s ease;
        }

        .btn-contact-submit:hover i {
            transform: translateX(5px);
        }

        .btn-contact-submit.sent {
            background: #28a745;
        }

        /* Map Section */
        .contact-map {
            padding: 0 20px 80px;
            background: var(--body-bg);
        }

        .contact-map .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .map-wrapper {
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 2px solid var(--card-border);
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            height: 350px;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
            color: var(--muted-text);
        }

        .map-placeholder i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: block;
        }

        .map-placeholder p {
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.2rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-form .form-row {
                grid-template-columns: 1fr;
            }
            .contact-form-container {
                padding: 1.5rem;
            }
        }
    

/* ========================================================================
   PRODUCTS PAGE SPECIFIC STYLES
   ======================================================================== */

        /* Products Page Hero */
        .products-hero {
            position: relative;
            margin-top: 80px;
            padding: 80px 20px 50px;
            background: #1A0A04;
            text-align: center;
            overflow: hidden;
        }

        .products-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .products-hero canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .products-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .products-hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.3s forwards;
        }

        .products-hero-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1.15rem;
            max-width: 550px;
            margin: 0 auto;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.6s forwards;
        }

        .products-hero-breadcrumb {
            margin-top: 1.5rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            opacity: 0;
            animation: heroFadeInUp 0.8s ease 0.8s forwards;
        }

        .products-hero-breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .products-hero-breadcrumb a:hover {
            color: var(--secondary-color);
        }

        .products-hero-breadcrumb span {
            margin: 0 0.5rem;
            color: rgba(255,255,255,0.5);
        }

        @keyframes heroFadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Products Main Section */
        .products-main {
            padding: 3rem 0 4rem;
            background: var(--body-bg);
            min-height: 60vh;
        }

        .products-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Search & Filter Bar */
        .products-toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .products-search {
            flex: 1;
            min-width: 250px;
            position: relative;
        }

        .products-search input {
            width: 100%;
            padding: 0.9rem 1rem 0.9rem 3rem;
            border: 2px solid var(--input-border);
            border-radius: 10px;
            font-size: 1rem;
            background: var(--input-bg);
            color: var(--dark-text);
            transition: all 0.3s ease;
        }

        .products-search input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
        }

        .products-search i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted-text);
        }

        .products-filters {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .products-filters select {
            padding: 0.9rem 2.5rem 0.9rem 1rem;
            border: 2px solid var(--input-border);
            border-radius: 10px;
            font-size: 0.95rem;
            background: var(--input-bg);
            color: var(--dark-text);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            transition: all 0.3s ease;
        }

        .products-filters select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* Category Pills */
        .products-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .category-pill {
            padding: 0.6rem 1.25rem;
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark-text);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-pill:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .category-pill.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .category-pill i {
            margin-right: 0.4rem;
        }

        /* Products Count */
        .products-count {
            color: var(--muted-text);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .products-count strong {
            color: var(--primary-color);
        }

        /* Products Grid */
        .products-grid-full {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        /* Product Card */
        .product-card-full {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card-full:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(255, 140, 0, 0.2);
        }

        .product-card-image {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--card-bg) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-card-image .product-emoji {
            font-size: 5rem;
            transition: transform 0.3s ease;
        }

        .product-card-full:hover .product-emoji {
            transform: scale(1.1);
        }

        .product-card-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.35rem 0.85rem;
            background: var(--primary-color);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
        }

        .product-card-badge.sale {
            background: #e74c3c;
        }

        .product-card-badge.new {
            background: #27ae60;
        }

        .product-card-stock {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.3rem 0.7rem;
            font-size: 0.7rem;
            font-weight: 600;
            border-radius: 50px;
        }

        .product-card-stock.in-stock {
            background: rgba(39, 174, 96, 0.15);
            color: #27ae60;
        }

        .product-card-stock.low-stock {
            background: rgba(241, 196, 15, 0.15);
            color: #f1c40f;
        }

        .product-card-stock.out-of-stock {
            background: rgba(231, 76, 60, 0.15);
            color: #e74c3c;
        }

        .product-card-body {
            padding: 1.25rem;
        }

        .product-card-body h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-text);
        }

        .product-card-body .product-desc {
            color: var(--muted-text);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .product-card-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .product-card-price .original-price {
            font-size: 0.9rem;
            color: var(--muted-text);
            text-decoration: line-through;
            margin-left: 0.5rem;
            font-weight: 400;
        }

        .product-card-rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .product-card-rating i {
            color: #f1c40f;
            font-size: 0.8rem;
        }

        .product-card-rating span {
            color: var(--muted-text);
            font-size: 0.8rem;
            margin-left: 0.25rem;
        }

        .product-card-actions {
            display: flex;
            gap: 0.75rem;
        }

        .btn-add-to-cart {
            flex: 1;
            padding: 0.75rem 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            white-space: nowrap;
        }

        .btn-add-to-cart:hover {
            background: #e67e00;
            transform: scale(1.02);
        }

        .btn-add-to-cart:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .btn-add-to-cart.added {
            background: #27ae60;
        }

        .btn-buy-now-full {
            flex: 1;
            padding: 0.75rem 1rem;
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            white-space: nowrap;
        }

        .btn-buy-now-full:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.02);
        }

        .btn-buy-now-full:disabled {
            border-color: #ccc;
            color: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .btn-wishlist {
            width: 48px;
            height: 48px;
            background: var(--light-bg);
            border: 2px solid var(--card-border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--muted-text);
        }

        .btn-wishlist:hover {
            border-color: #e74c3c;
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }

        .btn-wishlist.active {
            background: #e74c3c;
            border-color: #e74c3c;
            color: white;
        }

        /* Empty State */
        .products-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--muted-text);
        }

        .products-empty i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        .products-empty h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-text);
        }

        /* Load More Button */
        .load-more-wrapper {
            text-align: center;
            margin-top: 3rem;
        }

        .btn-load-more {
            padding: 1rem 3rem;
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-load-more:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .products-hero-content h1 {
                font-size: 2rem;
            }

            .products-toolbar {
                flex-direction: column;
            }

            .products-filters {
                width: 100%;
            }

            .products-filters select {
                flex: 1;
            }

            .products-grid-full {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }
    
