/* assets/css/style.css - Design Sokoni Luxe */

/* ============================================
   PALETTE DE COULEURS
   ============================================ */
:root {
    --primary: #E74C3C;
    --primary-dark: #C0392B;
    --primary-light: #FADBD8;
    --primary-gradient: linear-gradient(135deg, #E74C3C, #C0392B);
    --secondary: #F1C40F;
    --secondary-dark: #D4AC0E;
    --secondary-light: #FDEBD0;
    --secondary-gradient: linear-gradient(135deg, #F1C40F, #D4AC0E);
    --accent: #2C3E50;
    --accent-light: #34495E;
    --gold: #D4AC0E;
    --gold-light: #F9E79F;
    --dark: #1C1C1E;
    --dark-light: #2D2D30;
    --gray: #8E8E93;
    --gray-light: #F2F2F7;
    --gray-border: #E5E5EA;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 40px rgba(231, 76, 60, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

/* ============================================
   BASE & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #F8F9FA;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding: 0 2rem;
    }
}

/* ============================================
   BOUTONS - DESIGN LUXE
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(231, 76, 60, 0.45);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(241, 196, 15, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(241, 196, 15, 0.4);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(231, 76, 60, 0.04);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
}

.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   HEADER - LUXE
   ============================================ */
.header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.header .brand .highlight {
    color: var(--primary);
    position: relative;
}

.header .brand .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.header .brand .tagline {
    font-weight: 400;
    font-size: 0.6rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 0.2rem;
}

.header .search-wrapper {
    position: relative;
    flex: 1;
    max-width: 550px;
    margin: 0 2rem;
}

.header .search-wrapper .search-input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 3rem;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--gray-light);
    outline: none;
    color: var(--dark);
}

.header .search-wrapper .search-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.header .search-wrapper .search-input::placeholder {
    color: var(--gray);
}

.header .search-wrapper .search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.9rem;
}

.header .search-wrapper .search-btn {
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.4rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .search-wrapper .search-btn:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

/* ============================================
   HERO - LUXE
   ============================================ */
.hero {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A252F 0%, #2C3E50 40%, var(--primary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatHero 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatHero 8s ease-in-out infinite reverse;
}

@keyframes floatHero {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -20px) scale(1.05); }
}

.hero .content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero .badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero .badge-top i {
    color: var(--secondary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero h1 .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: 2px;
}

.hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 420px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero .search-box {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 0.4rem;
    max-width: 500px;
    box-shadow: 0 8px 50px rgba(0,0,0,0.25);
}

.hero .search-box input {
    flex: 1;
    padding: 0.7rem 1.2rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    color: var(--dark);
}

.hero .search-box input::placeholder {
    color: var(--gray);
}

.hero .search-box .btn-search {
    padding: 0.7rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero .search-box .btn-search:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 25px rgba(231, 76, 60, 0.4);
}

.hero .stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.hero .stats .stat {
    text-align: left;
}

.hero .stats .stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero .stats .stat .number .plus {
    color: var(--secondary);
}

.hero .stats .stat .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.hero .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-visual .orb {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(241, 196, 15, 0.2), rgba(231, 76, 60, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    animation: floatOrb 6s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(2deg); }
    66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.hero .hero-visual .orb .emoji {
    font-size: 7rem;
    animation: floatEmoji 4s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -15px); }
}

.hero .hero-visual .floating-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    animation: floatCard 5s ease-in-out infinite;
}

.hero .hero-visual .floating-card i {
    color: var(--secondary);
    font-size: 1rem;
}

.hero .hero-visual .floating-card:nth-child(2) {
    top: -10px;
    right: -30px;
    animation-delay: 0.5s;
}

.hero .hero-visual .floating-card:nth-child(3) {
    bottom: 10px;
    left: -40px;
    animation-delay: 1.2s;
}

.hero .hero-visual .floating-card:nth-child(4) {
    bottom: -10px;
    right: -20px;
    animation-delay: 0.8s;
}

@keyframes floatCard {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -10px); }
}

/* ============================================
   CATÉGORIES - LUXE
   ============================================ */
.categories-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
}

.categories-section .section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.categories-section .section-top h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.categories-section .section-top h2 i {
    color: var(--primary);
}

.categories-section .section-top a {
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.categories-section .section-top a:hover {
    color: var(--primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.5rem;
    background: var(--gray-light);
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--dark);
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 2px 2px;
}

.category-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--white);
}

.category-item:hover::before {
    opacity: 1;
}

.category-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.category-item:hover .icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.category-item .name {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: center;
}

.category-item .count {
    font-size: 0.65rem;
    color: var(--gray);
}

/* ============================================
   PRODUCT CARD - LUXE
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card .image-wrap {
    position: relative;
    padding-top: 100%;
    background: var(--gray-light);
    overflow: hidden;
}

.product-card .image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .image-wrap img {
    transform: scale(1.08);
}

.product-card .badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.2rem 0.7rem;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
}

.product-card .badge-sale {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(231, 76, 60, 0.3);
}

.product-card .badge-new {
    background: var(--secondary-gradient);
    color: var(--dark);
    box-shadow: 0 2px 12px rgba(241, 196, 15, 0.3);
}

.product-card .badge-discount {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.2rem 0.7rem;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 12px rgba(212, 172, 14, 0.3);
}

.product-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-card .overlay .btn {
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem;
    border-radius: var(--radius-full);
}

.product-card .overlay .btn-view {
    background: var(--white);
    color: var(--dark);
}

.product-card .overlay .btn-view:hover {
    background: var(--secondary-gradient);
    color: var(--dark);
}

.product-card .overlay .btn-cart {
    background: var(--primary-gradient);
    color: var(--white);
}

.product-card .overlay .btn-cart:hover {
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.product-card .info {
    padding: 0.8rem 0.9rem;
}

.product-card .info .name {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4rem;
    line-height: 1.3;
}

.product-card .info .name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card .info .name a:hover {
    color: var(--primary);
}

.product-card .info .rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin: 0.2rem 0;
}

.product-card .info .rating .stars {
    color: var(--secondary);
    font-size: 0.65rem;
}

.product-card .info .rating .stars .star-empty {
    color: var(--gray-border);
}

.product-card .info .rating .count {
    font-size: 0.65rem;
    color: var(--gray);
}

.product-card .info .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.2rem;
}

.product-card .info .price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.product-card .info .price-old {
    font-size: 0.7rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 0.3rem;
}

.product-card .info .shop {
    font-size: 0.65rem;
    color: var(--gray);
}

.product-card .info .shop i {
    color: var(--primary-light);
}

/* ============================================
   SECTION PRODUITS
   ============================================ */
.products-section {
    padding: 3rem 0;
}

.products-section:last-of-type {
    padding-bottom: 1rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-header h2 i {
    color: var(--primary);
}

.section-header a {
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.section-header a:hover {
    color: var(--primary);
}

/* ============================================
   FOOTER - LUXE
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 1.5rem;
    border-top: 4px solid var(--primary);
    margin-top: 2rem;
}

.footer .brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
}

.footer .brand .highlight {
    color: var(--primary);
}

.footer .brand .tagline {
    font-weight: 400;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer .socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer .socials a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
    border-color: transparent;
}

.footer h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.4rem;
}

.footer ul li a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer .divider {
    border-color: rgba(255,255,255,0.05);
    margin: 1.5rem 0;
}

.footer .bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.toast-success {
    background: linear-gradient(135deg, #27AE60, #1E8449);
}

.toast-error {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.toast-warning {
    background: linear-gradient(135deg, #F1C40F, #D4AC0E);
    color: var(--dark);
}

.toast-info {
    background: linear-gradient(135deg, #2C3E50, #1A252F);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero .hero-visual .orb {
        width: 220px;
        height: 220px;
    }
    .hero .hero-visual .orb .emoji {
        font-size: 5rem;
    }
    .hero .hero-visual .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        margin: 0 auto 1.5rem;
    }
    
    .hero .search-box {
        flex-direction: column;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .hero .search-box input {
        background: var(--white);
        border-radius: var(--radius-full);
        padding: 0.8rem 1.2rem;
        box-shadow: var(--shadow-md);
    }
    
    .hero .search-box .btn-search {
        width: 100%;
        padding: 0.8rem;
        border-radius: var(--radius-full);
    }
    
    .hero .stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero .stats .stat .number {
        font-size: 1.4rem;
    }
    
    .hero .hero-visual .orb {
        width: 150px;
        height: 150px;
    }
    
    .hero .hero-visual .orb .emoji {
        font-size: 3.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .category-item {
        padding: 0.8rem 0.3rem;
    }
    
    .category-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .category-item .name {
        font-size: 0.65rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .product-card .overlay {
        opacity: 1;
        background: linear-gradient(transparent 50%, rgba(0,0,0,0.15));
        align-items: flex-end;
        padding: 0.5rem;
    }
    
    .product-card .overlay .btn {
        padding: 0.2rem 0.6rem;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero .stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.3rem;
    }
    
    .category-item .icon {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}