@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --header-color: #1a1a2e;
    --header-text: #ffffff;
    --bg-color: #0f0f23;
    --body-text: #e0e0e0;
    --accent: #e94560;
    --accent-hover: #ff6b81;
    --footer-color: #16213e;
    --footer-text: #b0b0b0;
    --card-bg: #16213e;
    --card-text: #ffffff;
    --sale-badge: #e94560;
    --button-color: #e94560;
    --button-text: #ffffff;
    --star-color: #ffd700;
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--body-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ============ HEADER ============ */
.header {
    background: var(--header-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    transition: var(--transition);
}

.header-logo img:hover {
    transform: rotate(10deg) scale(1.1);
}

.header-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--header-text);
    background: linear-gradient(135deg, var(--header-text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--header-text);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 70%;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(233,69,96,0.15);
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-btn {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--header-text);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.cart-btn:hover {
    background: var(--accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(233,69,96,0.4);
}

.cart-btn .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.3rem;
    border: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--header-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ============ TICKER / SCROLLING OFFER BAR ============ */
.ticker-bar {
    margin-top: 70px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
    background-size: 200% 100%;
    animation: tickerBgShift 4s ease infinite;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 10s linear infinite;
    direction: rtl;
}

.ticker-content {
    display: inline-block;
    padding: 6px 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    white-space: pre;
}

@keyframes tickerScroll {
    0% { transform: translateX(50%); }
    100% { transform: translateX(0); }
}

@keyframes tickerBgShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ticker-bar + .offers-slider,
.ticker-bar + .hero-section {
    margin-top: 0;
}

/* ============ CANDLES ============ */
.candles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.candle {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Candle blown out state */
.candle.blown-out .flame::before {
    animation: flameBlowOut 0.4s ease-out forwards;
}

.candle.blown-out .flame-inner {
    animation: flameBlowOut 0.3s ease-out forwards;
}

.candle.blown-out .candle-glow {
    animation: glowFadeOut 0.4s ease-out forwards;
}

/* Smoke effect when blown out */
.candle.blown-out .candle-body::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, rgba(180,180,180,0.6), transparent);
    border-radius: 50%;
    animation: smokeRise 1.2s ease-out forwards;
}

/* Candle relight state (small + spin) */
.candle.relighting {
    animation: candleSpin 0.8s ease-in-out;
}

.candle.relighting .flame::before {
    animation: flameRelight 0.6s ease-in forwards;
}

.candle.relighting .flame-inner {
    animation: flameRelightInner 0.6s ease-in forwards;
}

.candle.relighting .candle-glow {
    animation: glowRelight 0.8s ease-in forwards;
}

/* Small flame after relight */
.candle.small-flame .flame::before {
    width: 8px !important;
    height: 16px !important;
    animation: flameFlickerSmall 0.7s ease-in-out infinite alternate !important;
    box-shadow: 0 0 8px #ff6b35, 0 0 15px rgba(255,107,53,0.3);
}

.candle.small-flame .flame-inner {
    width: 3px !important;
    height: 8px !important;
    animation: flameFlickerInnerSmall 0.5s ease-in-out infinite alternate !important;
}

.candle.small-flame .candle-glow {
    width: 40px !important;
    height: 40px !important;
    opacity: 0.3 !important;
    animation: glowPulseSmall 2s ease-in-out infinite alternate !important;
}

@keyframes flameBlowOut {
    0% { opacity: 1; transform: translateX(-50%) scale(1); }
    30% { opacity: 0.8; transform: translateX(-50%) scale(1.3) rotate(15deg); }
    60% { opacity: 0.3; transform: translateX(-50%) scale(0.5) rotate(-10deg); }
    100% { opacity: 0; transform: translateX(-50%) scale(0); }
}

@keyframes glowFadeOut {
    0% { opacity: 0.6; }
    100% { opacity: 0; }
}

@keyframes smokeRise {
    0% { opacity: 0.6; height: 5px; top: -8px; }
    40% { opacity: 0.4; height: 25px; top: -20px; }
    100% { opacity: 0; height: 40px; top: -45px; }
}

@keyframes candleSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(8deg) scale(0.95); }
    50% { transform: rotate(-6deg) scale(0.98); }
    75% { transform: rotate(4deg) scale(1); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes flameRelight {
    0% { opacity: 0; transform: translateX(-50%) scale(0); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(0.6); }
    100% { opacity: 1; transform: translateX(-50%) scale(0.6); }
}

@keyframes flameRelightInner {
    0% { opacity: 0; transform: translateX(-50%) scale(0); }
    60% { opacity: 0.4; transform: translateX(-50%) scale(0.5); }
    100% { opacity: 0.9; transform: translateX(-50%) scale(0.6); }
}

@keyframes glowRelight {
    0% { opacity: 0; transform: translateX(-50%) scale(0); }
    100% { opacity: 0.3; transform: translateX(-50%) scale(0.6); }
}

@keyframes flameFlickerSmall {
    0% { height: 16px; width: 8px; opacity: 1; }
    25% { height: 13px; width: 7px; opacity: 0.85; }
    50% { height: 17px; width: 9px; opacity: 1; }
    75% { height: 12px; width: 6px; opacity: 0.8; }
    100% { height: 15px; width: 8px; opacity: 0.9; }
}

@keyframes flameFlickerInnerSmall {
    0% { height: 8px; opacity: 0.8; }
    50% { height: 5px; opacity: 0.6; }
    100% { height: 9px; opacity: 0.9; }
}

@keyframes glowPulseSmall {
    0% { opacity: 0.2; transform: translateX(-50%) scale(0.6); }
    100% { opacity: 0.4; transform: translateX(-50%) scale(0.8); }
}

.candle-body {
    width: 14px;
    height: 60px;
    background: linear-gradient(180deg, #fff5d4, #f0c27f, #e0a050);
    border-radius: 3px 3px 5px 5px;
    position: relative;
    box-shadow: 0 0 8px rgba(240,194,127,0.3);
}

.candle-body::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #333;
    border-radius: 1px;
}

.flame {
    position: relative;
    width: 16px;
    height: 30px;
    margin-bottom: -6px;
    z-index: 2;
}

.flame::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 28px;
    background: linear-gradient(to top, #ff6b35, #ffb347, #ffe066, rgba(255,255,255,0.9));
    border-radius: 50% 50% 35% 35%;
    animation: flameFlicker 0.8s ease-in-out infinite alternate;
    box-shadow: 0 0 15px #ff6b35, 0 0 30px rgba(255,107,53,0.4), 0 0 60px rgba(255,179,71,0.2);
}

.flame-inner {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 14px;
    background: linear-gradient(to top, #4dc9f6, #fff, rgba(255,255,255,0.8));
    border-radius: 50% 50% 35% 35%;
    animation: flameFlickerInner 0.6s ease-in-out infinite alternate;
    z-index: 3;
}

.candle-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,179,71,0.25), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite alternate;
    pointer-events: none;
}

.candle-1 { left: 5%; bottom: 0; }
.candle-2 { left: 20%; bottom: 0; }
.candle-2 .candle-body { height: 45px; }
.candle-3 { right: 5%; bottom: 0; }
.candle-3 .candle-body { height: 70px; }
.candle-4 { right: 20%; bottom: 0; }
.candle-4 .candle-body { height: 50px; }
.candle-5 { left: 50%; transform: translateX(-50%); bottom: 0; }
.candle-5.relighting { animation: candleSpin5 0.8s ease-in-out; }
@keyframes candleSpin5 {
    0% { transform: translateX(-50%) rotate(0deg) scale(1); }
    25% { transform: translateX(-50%) rotate(8deg) scale(0.95); }
    50% { transform: translateX(-50%) rotate(-6deg) scale(0.98); }
    75% { transform: translateX(-50%) rotate(4deg) scale(1); }
    100% { transform: translateX(-50%) rotate(0deg) scale(1); }
}
.candle-5 .candle-body { height: 55px; width: 12px; }

@keyframes flameFlicker {
    0% { height: 28px; width: 14px; opacity: 1; }
    25% { height: 24px; width: 12px; opacity: 0.9; }
    50% { height: 30px; width: 15px; opacity: 1; }
    75% { height: 22px; width: 11px; opacity: 0.85; }
    100% { height: 26px; width: 13px; opacity: 0.95; }
}

@keyframes flameFlickerInner {
    0% { height: 14px; opacity: 0.9; }
    50% { height: 10px; opacity: 0.7; }
    100% { height: 16px; opacity: 1; }
}

@keyframes glowPulse {
    0% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.8; transform: translateX(-50%) scale(1.3); }
}

/* ============ SPARKLES ============ */
.sparkles, .page-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.page-sparkles {
    position: fixed;
    z-index: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkleFloat linear infinite;
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.6), 0 0 12px 4px rgba(233,69,96,0.3);
}

.sparkle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

@keyframes sparkleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(80vh) scale(1); }
    50% { opacity: 0.8; }
    90% { opacity: 1; transform: translateY(10vh) scale(1); }
    100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

/* Section particles */
.section-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-particles::before,
.section-particles::after {
    content: '✦';
    position: absolute;
    font-size: 1.2rem;
    color: var(--accent);
    opacity: 0.2;
    animation: floatStar 4s ease-in-out infinite;
}

.section-particles::before { top: 20%; left: 8%; animation-delay: 0s; }
.section-particles::after { top: 30%; right: 8%; animation-delay: 2s; content: '✧'; }

@keyframes floatStar {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.5; }
}

/* Section glow */
.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,69,96,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sectionGlow 4s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Glowing text */
.glow-text {
    text-shadow: 0 0 10px rgba(233,69,96,0.3), 0 0 20px rgba(233,69,96,0.2), 0 0 40px rgba(233,69,96,0.1);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(233,69,96,0.3), 0 0 20px rgba(233,69,96,0.2); }
    100% { text-shadow: 0 0 20px rgba(233,69,96,0.5), 0 0 40px rgba(233,69,96,0.3), 0 0 60px rgba(233,69,96,0.15); }
}

/* Make services and store sections positioned for particles */
.services-section, .store-section {
    position: relative;
    overflow: hidden;
}

/* ============ HERO / OFFERS SLIDER ============ */
.offers-slider {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--header-color), var(--bg-color));
}

.offers-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-slide {
    min-width: 100%;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-slide .offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.offer-slide h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.offer-slide p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    animation: fadeInUp 0.8s 0.2s ease both;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 5;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ============ HOME HERO (no offers fallback) ============ */
.hero-section {
    margin-top: 70px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--header-color), var(--bg-color));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,35,0.85), rgba(26,26,46,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h2 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.4);
}

/* Floating 3D shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) { width: 80px; height: 80px; background: var(--accent); top: 20%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { width: 60px; height: 60px; background: #4ecdc4; top: 60%; right: 15%; animation-delay: 2s; }
.shape:nth-child(3) { width: 100px; height: 100px; background: var(--star-color); bottom: 20%; left: 30%; animation-delay: 4s; }
.shape:nth-child(4) { width: 40px; height: 40px; background: #a29bfe; top: 30%; right: 30%; animation-delay: 1s; border-radius: 10px; }
.shape:nth-child(5) { width: 70px; height: 70px; background: var(--accent); bottom: 10%; right: 10%; animation-delay: 3s; }

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 80px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(233,69,96,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: var(--transition);
    transform: rotateY(0deg);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--card-text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--body-text);
    opacity: 0.8;
}

.stars-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 10px;
}

.stars-rating i {
    color: var(--star-color);
    font-size: 1.3rem;
    animation: starPulse 1s ease-in-out infinite;
}

.stars-rating i:nth-child(2) { animation-delay: 0.1s; }
.stars-rating i:nth-child(3) { animation-delay: 0.2s; }
.stars-rating i:nth-child(4) { animation-delay: 0.3s; }
.stars-rating i:nth-child(5) { animation-delay: 0.4s; }

/* ============ OUR STORE SECTION ============ */
.store-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--card-text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.section-subtitle {
    color: var(--body-text);
    max-width: 700px;
    margin: 25px auto 50px;
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.8;
}

/* ============ WHATSAPP CHANNEL CTA ============ */
.wa-channel-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.wa-channel-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,211,102,0.1), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: waGlow 4s ease-in-out infinite alternate;
}

@keyframes waGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.wa-channel-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.wa-channel-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.2;
    animation: waParticle 6s ease-in-out infinite;
}

.wa-channel-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.wa-channel-particles span:nth-child(2) { left: 80%; top: 30%; animation-delay: 1s; width: 8px; height: 8px; }
.wa-channel-particles span:nth-child(3) { left: 30%; top: 70%; animation-delay: 2s; width: 4px; height: 4px; }
.wa-channel-particles span:nth-child(4) { left: 70%; top: 60%; animation-delay: 3s; }
.wa-channel-particles span:nth-child(5) { left: 50%; top: 15%; animation-delay: 4s; width: 5px; height: 5px; }

@keyframes waParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.4; }
}

.wa-channel-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    z-index: 1;
    text-decoration: none;
}

.wa-channel-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #25D366, #1FAD55, #128C7E);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: waIconFloat 3s ease-in-out infinite;
    box-shadow: 0 12px 35px rgba(37,211,102,0.35), inset 0 -2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.wa-channel-icon-link:hover .wa-channel-icon {
    transform: scale(1.08);
    box-shadow: 0 16px 45px rgba(37,211,102,0.5);
}

.wa-channel-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: iconSheen 4s ease-in-out infinite;
}

@keyframes iconSheen {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.wa-ch-logo {
    color: #fff;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-ch-logo svg {
    display: block;
}

@keyframes waIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.wa-channel-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(37,211,102,0.15);
    border-radius: 38px;
    animation: waRingPulse 2.5s ease-in-out infinite;
}

.wa-channel-ring.ring-2 {
    width: 170px;
    height: 170px;
    border-radius: 46px;
    animation-delay: 0.5s;
    border-color: rgba(37,211,102,0.08);
}

@keyframes waRingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.7; }
}

.wa-channel-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #128C7E;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 2px;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(18,140,126,0.4);
}

.wa-channel-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Responsive */
@media (max-width: 768px) {
    .wa-channel-section { padding: 50px 0; }

    .wa-channel-icon-link {
        width: 120px;
        height: 120px;
    }

    .wa-channel-icon {
        width: 90px;
        height: 90px;
        border-radius: 24px;
    }

    .wa-ch-logo { font-size: 2.2rem; }

    .wa-channel-ring {
        width: 115px;
        height: 115px;
        border-radius: 32px;
    }

    .wa-channel-ring.ring-2 {
        width: 140px;
        height: 140px;
        border-radius: 38px;
    }

    .wa-channel-badge {
        font-size: 0.5rem;
        padding: 2px 10px;
    }
}

/* ============ CATEGORIES SECTION ============ */
.categories-section {
    padding: 60px 0 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-card .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(233,69,96,0.8), transparent);
}

.category-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--card-bg), var(--header-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
}

/* ============ PRODUCTS GRID ============ */
.products-section {
    padding: 60px 0 80px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--body-text);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px) rotateY(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.product-image {
    display: block;
    position: relative;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sale-badge);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    animation: pulse 2s infinite;
}

/* ============ PRODUCT CARD IMAGE SLIDER ============ */
.card-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: block;
}

.card-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-slide img {
    transform: scale(1.05);
}

.card-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    z-index: 4;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .card-slider-btn {
    opacity: 1;
}

.card-slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.card-slider-prev { left: 8px; }
.card-slider-next { right: 8px; }

.card-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 4;
}

.card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.card-dot:hover {
    background: rgba(255,255,255,0.7);
}

.card-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.25);
    box-shadow: 0 0 6px rgba(233,69,96,0.5);
}

.card-img-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 4;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-img-counter {
    opacity: 1;
}

/* When card has slider, adjust quick actions position */
.product-image.has-slider .product-quick-actions {
    right: 12px;
    top: auto;
    bottom: 35px;
    z-index: 5;
}

/* Touch swipe indicator */
.card-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
    z-index: 2;
}

/* List view slider adjustments */
.shop-grid.list-view .card-slider-dots {
    bottom: 8px;
}

.shop-grid.list-view .card-img-counter {
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
}

.product-quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--header-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.quick-action-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: var(--card-bg);
}

.product-category-tag {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.05rem;
    color: var(--card-text);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    margin-top: auto;
}

.price-new {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.price-old {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
}

.discount-percent {
    font-size: 0.8rem;
    background: rgba(233,69,96,0.15);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--button-color), var(--accent-hover));
    color: var(--button-text);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,69,96,0.4);
}

.add-to-cart-btn.added {
    background: #25D366;
    animation: cartBounce 0.5s ease;
}

/* Product Buttons Group */
.product-buttons {
    display: flex;
    gap: 8px;
}

.product-buttons .add-to-cart-btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 10px 8px;
}

.order-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.order-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail {
    margin-top: 90px;
    padding: 40px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.gallery-main img:hover {
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--card-text);
    margin-bottom: 10px;
}

.detail-category {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.detail-pricing .price-new {
    font-size: 2rem;
}

.detail-pricing .price-old {
    font-size: 1.2rem;
}

.detail-description {
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.detail-add-cart {
    display: flex;
    gap: 15px;
}

.detail-add-cart .add-to-cart-btn {
    flex: 1;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 15px;
}

.detail-whatsapp-btn {
    padding: 16px 30px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ============ CART PAGE ============ */
.cart-page {
    margin-top: 90px;
    padding: 40px 0 80px;
    min-height: 70vh;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
}

.cart-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h3 {
    color: var(--card-text);
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-info .price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--card-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.qty-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.cart-item-qty span {
    color: var(--card-text);
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    border-radius: 8px;
}

.cart-item-remove:hover {
    background: rgba(231,76,60,0.1);
    transform: scale(1.1);
}

.cart-summary {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    color: var(--card-text);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--body-text);
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--card-text);
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
    margin-top: 15px;
}

.summary-row.total span:last-child {
    color: var(--accent);
}

.checkout-form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--card-text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,69,96,0.15);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: #666;
}

.checkout-whatsapp-btn {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.checkout-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty h2 {
    color: var(--card-text);
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--body-text);
    margin-bottom: 25px;
}

/* ============ CONTACT PAGE ============ */
.contact-page {
    margin-top: 90px;
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.contact-form-wrapper h3 {
    color: var(--card-text);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--card-text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,69,96,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.contact-submit-btn {
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.contact-whatsapp-direct {
    margin-top: 25px;
    text-align: center;
}

.contact-whatsapp-direct p {
    color: var(--body-text);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--card-text);
    padding: 14px 25px;
    border-radius: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.map-link-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(5px);
    border-color: var(--accent);
}

.contact-info-card i {
    font-size: 1.3rem;
    color: var(--accent);
    width: 45px;
    height: 45px;
    background: rgba(233,69,96,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card span {
    color: var(--card-text);
    font-size: 0.95rem;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--footer-color);
    border-top: 1px solid var(--glass-border);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: var(--card-text);
    font-size: 1.3rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    color: var(--footer-text);
}

.footer-social a.ig-link {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border: none;
}

.footer-social a.wa-link {
    background: #25D366;
    color: #fff;
    border: none;
}

.footer-social a.wa-channel-link {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
}

.footer-social a.wa-channel-link svg {
    display: block;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: var(--footer-text);
    font-size: 0.85rem;
}

.admin-link {
    color: var(--footer-text);
    font-size: 0.75rem;
    opacity: 0.4;
    transition: var(--transition);
    padding: 4px 10px;
    border-radius: 6px;
}

.admin-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* ============ WHATSAPP FLOATING BTN ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ============ TOAST NOTIFICATION ============ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--card-bg);
    color: var(--card-text);
    padding: 15px 30px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: #25D366; }
.toast.error { border-color: #e74c3c; }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.1); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(233,69,96,0.4);
}

/* ============ PAGE LOADER ============ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    margin-top: 80px;
    padding: 15px 0;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-list a {
    color: var(--body-text);
    transition: color 0.3s;
}

.breadcrumb-list a:hover { color: var(--accent); }

.breadcrumb-list .separator { color: #555; }

.breadcrumb-list .current {
    color: var(--accent);
    font-weight: 500;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-gallery { position: static; }
    .cart-grid { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--header-color);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 1001;
        gap: 5px;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        border-radius: 12px;
        width: 100%;
    }

    .mobile-toggle { display: block; }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        display: none;
    }

    .mobile-overlay.active { display: block; }

    .hero-content h2 { font-size: 2.2rem; }
    .offer-slide h2 { font-size: 2rem; }
    .offer-slide { height: 280px; }
    .section-title { font-size: 2rem; }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { width: 95%; }
    .hero-content h2 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card { height: 180px; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-image { height: 220px; }

    .header-logo h1 { font-size: 1.2rem; }

    .filter-tabs { gap: 6px; }
    .filter-tab { padding: 8px 18px; font-size: 0.8rem; }
}

/* ============ SHOP PAGE HERO ============ */
.shop-hero {
    margin-top: 70px;
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--header-color), var(--bg-color), var(--header-color));
}

.shop-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(233,69,96,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(78,205,196,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(233,69,96,0.08) 0%, transparent 40%);
    animation: shopHeroBgShift 8s ease-in-out infinite alternate;
}

@keyframes shopHeroBgShift {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 50px;
    max-width: 700px;
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233,69,96,0.15);
    border: 1px solid rgba(233,69,96,0.3);
    color: var(--accent);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,69,96,0.2); }
    50% { box-shadow: 0 0 0 10px rgba(233,69,96,0); }
}

.shop-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.shop-hero-content h1 span {
    color: var(--accent);
    position: relative;
}

.shop-hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 0.5s both;
}

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 100%; }
}

.shop-hero-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

/* Shop Search */
.shop-search-wrapper {
    margin-bottom: 25px;
}

.shop-search-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.shop-search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 22px;
    transition: var(--transition);
    position: relative;
}

.shop-search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(233,69,96,0.15), 0 8px 30px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.12);
}

.shop-search-box > i {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-right: 12px;
}

.shop-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    padding: 10px 0;
}

.shop-search-box input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-clear {
    color: rgba(255,255,255,0.5);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear:hover {
    color: var(--accent);
}

.shop-search-box button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.shop-search-box button:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* Shop Breadcrumb */
.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.shop-breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.shop-breadcrumb a:hover { color: var(--accent); }

.shop-breadcrumb i { font-size: 0.6rem; }

.shop-breadcrumb span { color: rgba(255,255,255,0.8); }

.shop-breadcrumb .active { color: var(--accent); font-weight: 500; }

/* ============ SHOP CATEGORIES BAR ============ */
.shop-categories-bar {
    background: var(--card-bg);
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 0;
    position: sticky;
    top: 68px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.shop-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

.shop-categories-scroll::-webkit-scrollbar { display: none; }

.shop-cat-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--body-text);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.shop-cat-chip img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.shop-cat-chip i {
    font-size: 0.8rem;
}

.shop-cat-chip:hover {
    background: rgba(233,69,96,0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.shop-cat-chip.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}

.shop-cat-chip.active img {
    border: 2px solid #fff;
}

/* ============ SHOP PRODUCTS SECTION ============ */
.shop-products-section {
    padding: 40px 0 80px;
    min-height: 50vh;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 16px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.shop-results-info {
    color: var(--body-text);
    font-size: 0.9rem;
}

.shop-results-info strong {
    color: var(--accent);
    font-weight: 700;
}

.shop-results-info em {
    color: var(--card-text);
    font-style: normal;
    font-weight: 500;
}

.shop-view-toggle {
    display: flex;
    gap: 6px;
    background: rgba(0,0,0,0.2);
    padding: 4px;
    border-radius: 10px;
}

.view-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--body-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.view-btn:hover {
    color: var(--accent);
}

.view-btn.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(233,69,96,0.3);
}

/* Grid view (default) */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* List view */
.shop-grid.list-view {
    grid-template-columns: 1fr;
    gap: 16px;
}

.shop-grid.list-view .product-card {
    flex-direction: row;
    border-radius: 16px;
}

.shop-grid.list-view .product-image {
    width: 220px;
    min-width: 220px;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    border-radius: 16px 0 0 16px;
}

.shop-grid.list-view .product-info {
    padding: 24px;
    justify-content: center;
}

.shop-grid.list-view .product-info h3 {
    font-size: 1.15rem;
}

.shop-grid.list-view .product-pricing {
    margin-bottom: 12px;
}

/* No Products Fancy */
.no-products-fancy {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-products-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: rgba(233,69,96,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    animation: float 4s ease-in-out infinite;
}

.no-products-fancy h3 {
    color: var(--card-text);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.no-products-fancy p {
    color: var(--body-text);
    opacity: 0.7;
    max-width: 400px;
    margin: 0 auto;
}

/* ============ SHOP RESPONSIVE ============ */
@media (max-width: 768px) {
    .shop-hero { min-height: 300px; }
    .shop-hero-content { padding: 40px 15px 35px; }
    .shop-hero-content h1 { font-size: 2rem; }
    .shop-hero-content > p { font-size: 0.9rem; margin-bottom: 20px; }
    .shop-search-form { max-width: 100%; }
    .shop-toolbar { flex-direction: column; gap: 12px; padding: 14px 16px; }
    .shop-results-info { text-align: center; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .shop-grid.list-view { grid-template-columns: 1fr; }
    .shop-grid.list-view .product-card { flex-direction: column; }
    .shop-grid.list-view .product-image { width: 100%; min-width: 100%; height: 200px; border-radius: 16px 16px 0 0; }
    .shop-categories-bar { top: 60px; }
}

@media (max-width: 480px) {
    .shop-hero { min-height: 260px; }
    .shop-hero-content h1 { font-size: 1.7rem; }
    .shop-hero-badge { font-size: 0.75rem; padding: 6px 16px; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-search-box button { padding: 10px 18px; font-size: 0.8rem; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--body-text);
    opacity: 0.6;
}

.no-products i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}
