/* ============================================
   home.css — Homepage design system
   Replicates exemple/index.php aesthetic
   Loaded only by index.php
   ============================================ */

:root {
    --bg-primary: #0d0d1a;
    --bg-secondary: #13131f;
    --bg-card: #1a1a2e;
    --bg-card-hover: #22223a;

    --accent-purple: #7c3aed;
    --accent-purple-light: #a855f7;
    --accent-purple-dark: #6d28d9;
    --neon-purple: #bf5fff;
    --neon-glow: rgba(124, 58, 237, 0.4);

    --text-primary: #f0f0ff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b80;

    --border-color: rgba(124, 58, 237, 0.25);
    --border-light: rgba(124, 58, 237, 0.15);

    --gradient-brand: linear-gradient(135deg, #7c3aed, #bf5fff);
    --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #bf5fff 100%);
    --gradient-surface: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(19,19,31,0.95));

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px var(--neon-glow), 0 0 40px rgba(124, 58, 237, 0.2);
    --shadow-glow-strong: 0 0 30px rgba(124, 58, 237, 0.6), 0 0 60px rgba(124, 58, 237, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
    --transition-fast: 0.15s ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-width: 1200px;
    --header-height: 70px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.home-page {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent-purple-light); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--neon-purple); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent-purple); color: #fff; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent-purple), var(--neon-purple)); border-radius: 99px; }

/* ============================================
   Layout helpers
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    min-height: 48px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--transition-smooth);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-glow-strong); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-secondary {
    background: rgba(255,255,255,0.04);
    color: #fff;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    color: #fff;
    background: rgba(124,58,237,0.15);
    border-color: var(--accent-purple-light);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 18px; min-height: 38px; font-size: 0.9rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }

/* ============================================
   Top bar
   ============================================ */
.top-bar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 13px;
    position: relative;
    z-index: 50;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}
.top-bar-item svg { width: 16px; height: 16px; color: var(--neon-purple); }
.top-bar-item a { color: var(--text-secondary); }
.top-bar-item a:hover { color: var(--neon-purple); }

/* ============================================
   Header / Nav
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(13, 13, 26, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo-img {
    height: 66px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.35));
    transition: var(--transition);
}
.brand-logo:hover .brand-logo-img { filter: drop-shadow(0 0 12px rgba(191, 95, 255, 0.6)); }

@media (max-width: 480px) {
    .brand-logo-img { height: 54px; }
}
.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-link {
    position: relative;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: #fff; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.nav-toggle:hover { background: rgba(124,58,237,0.18); border-color: var(--accent-purple); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 100px;
    isolation: isolate;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 26, 0.35) 0%, rgba(13, 13, 26, 0.5) 50%, var(--bg-primary) 100%);
    z-index: -1;
}
.hero-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.hero-decor-1 {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.hero-decor-2 {
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191,95,255,0.15) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease-out;
}
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}
.gradient-text {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #bf5fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: #dddddd;
    margin-bottom: 36px;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Trust badges
   ============================================ */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    background: var(--gradient-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.trust-badge:hover {
    transform: translateY(-3px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}
.trust-badge-icon { font-size: 24px; }
.trust-badge-text { color: var(--text-secondary); font-size: 14px; font-weight: 600; line-height: 1.3; }

/* ============================================
   Section header
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-title {
    display: inline-block;
    position: relative;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 14px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: var(--gradient-brand);
}

/* ============================================
   Categories
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (min-width: 480px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 8px;
    background: var(--gradient-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    color: var(--text-primary);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.05);
}
.category-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}
.category-card.active {
    border-color: var(--accent-purple-light);
    background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(191,95,255,0.15));
    box-shadow: var(--shadow-glow);
}

/* Hide the "Tous" card on mobile — it remains the default selected category
   and is still in the DOM, just not visible. */
@media (max-width: 767px) {
    .category-card--all { display: none; }
}
.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: #fff;
    font-size: 28px;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}
.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.category-name { font-weight: 600; font-size: 14px; }

/* ============================================
   Products
   ============================================ */
.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.products-header .section-title { text-align: left; }
.products-header .section-title::after { left: 0; transform: none; }
.products-search {
    position: relative;
    min-width: 260px;
    flex: 0 1 320px;
}
.products-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}
.products-search .form-input {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}
.products-search .form-input::placeholder { color: var(--text-muted); }
.products-search .form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}
.product-card {
    display: block;
    background: var(--gradient-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.05);
    animation: fadeIn 0.6s ease-out backwards;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.40s; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
    color: inherit;
}
.product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-secondary);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth);
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 99px;
    backdrop-filter: blur(6px);
    z-index: 2;
}
.product-stock-badge.in-stock { background: rgba(16,185,129,0.18); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.4); }
.product-stock-badge.low-stock { background: rgba(245,158,11,0.18); color: #fcd34d; border: 1px solid rgba(245,158,11,0.4); }
.product-stock-badge.out-of-stock { background: rgba(239,68,68,0.18); color: #fca5a5; border: 1px solid rgba(239,68,68,0.4); }

.product-info { padding: 16px 18px 20px; }
.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}
.product-card:hover .product-name { color: var(--neon-purple); }
.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 14px;
}
.product-actions { display: flex; }

/* ============================================
   Empty state
   ============================================ */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--gradient-surface);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
}
.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-title { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.empty-text { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================
   Why us
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.why-card {
    padding: 30px 24px;
    text-align: center;
    background: var(--gradient-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    transition: var(--transition);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.05);
}
.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}
.why-icon { font-size: 40px; margin-bottom: 12px; }
.why-title { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.why-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.testimonial-card {
    padding: 24px;
    background: var(--gradient-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--accent-purple); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}
.testimonial-info { flex: 1; min-width: 0; }
.testimonial-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.testimonial-location { color: var(--text-muted); font-size: 0.8rem; }
.testimonial-rating { color: #fcd34d; font-size: 13px; letter-spacing: 1px; }
.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; font-style: italic; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--gradient-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-color); }
.faq-item.open { border-color: var(--accent-purple); box-shadow: var(--shadow-glow); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { color: var(--neon-purple); }
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--neon-purple);
    transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    margin-top: 80px;
    padding: 60px 0 24px;
    color: var(--text-secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 360px; }
.footer-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-link:hover { color: var(--neon-purple); }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition);
}
.social-link:hover { background: var(--gradient-cta); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-toggle { display: none !important; }

    .hero { padding: 60px 0 80px; min-height: 70vh; }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons .btn { flex: 1 1 auto; }

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

    .products-header { flex-direction: column; align-items: stretch; }
    .products-header .section-title { text-align: center; }
    .products-header .section-title::after { left: 50%; transform: translateX(-50%); }
    .products-search { width: 100%; flex: 1 1 100%; }

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

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-bar-item { font-size: 12px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-card { padding: 12px 4px; }
    .category-icon { width: 44px; height: 44px; font-size: 20px; }
    .category-name { font-size: 11px; }

    .product-info { padding: 12px 12px 14px; }
    .product-name { font-size: 13px; }
    .product-price { font-size: 1rem; }
    .product-stock-badge { font-size: 10px; padding: 4px 8px; }
    .product-actions .btn { padding: 8px; font-size: 0.8rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
