/* ═══════════════════════════════════════════
           PRODUCTS GRID (Light BG)
           ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   PRODUCTS CAROUSEL
   ═══════════════════════════════════════════ */
.products-carousel {
    padding: var(--section-padding) 20px;
    background: var(--eden-cream);
    overflow: hidden;
}

.pc-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.pc-sidebar {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pc-title {
    font-family: var(--font-accent);
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--eden-dark);
    line-height: 1.1;
}

.pc-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.pc-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 10px 24px;
    border: 1px solid var(--eden-blush);
    color: var(--eden-burgundy);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (hover: hover) {
    .pc-btn-outline:hover {
        background: var(--eden-burgundy);
        border-color: var(--eden-burgundy);
        color: #fff;
    }
}

.pc-controls {
    display: flex;
    gap: 12px;
}

.pc-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #efe5df;
    background: #fff;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .pc-arrow:hover {
        border-color: var(--eden-blush);
        color: var(--eden-burgundy);
        box-shadow: 0 4px 12px rgba(140, 17, 85, 0.08);
    }
}

.pc-track-container {
    flex: 1;
    overflow: hidden;
    padding: 20px 0;
}

.pc-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pc-track::-webkit-scrollbar {
    display: none;
}

/* Card Styles */
.pc-card {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #e8cdd7; /* Pinkish border */
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(140, 17, 85, 0.06);
    border-color: var(--eden-rose);
}

.pc-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f7ede8; /* light warm box */
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pc-img-placeholder {
    font-size: 4rem;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(140, 17, 85, 0.1);
    color: var(--eden-burgundy);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.pc-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #b25d76; /* Rosa suave */
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pc-price-strike {
    font-size: 0.7rem;
    color: #a09088;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.pc-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--eden-dark);
    margin-bottom: 20px;
}

.pc-add-btn {
    width: 100%;
    background: #b25d76; /* Soft burgundy to match screenshot */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}

@media (hover: hover) {
    .pc-add-btn:hover {
        background: var(--eden-burgundy);
    }
}

@media (max-width: 900px) {
    .pc-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        align-items: stretch;
    }
    .pc-sidebar {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .pc-title {
        font-size: 1.6rem;
    }
    .pc-title br {
        display: none;
    }
    .pc-desc {
        display: none;
    }
    .pc-btn-outline {
        margin: 0;
        padding: 8px 16px;
        font-size: 0.6rem;
    }
    .pc-controls {
        display: none;
    }
    .pc-track {
        padding: 0 0 10px 0;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .pc-inner { padding: 25px 15px; }
    .pc-title { font-size: 1.4rem; }
    .pc-card { flex: 0 0 calc(46vw - 10px); padding: 12px; border-radius: 12px; }
    .pc-img-box { margin-bottom: 12px; border-radius: 8px; }
    .pc-name { font-size: 0.75rem; margin-bottom: 10px; }
    .pc-price { font-size: 1rem; margin-bottom: 12px; }
    .pc-add-btn { padding: 10px; font-size: 0.65rem; border-radius: 6px; }
}

        /* ═══════════════════════════════════════════
           DISCRETION (Dark)
           ═══════════════════════════════════════════ */
        .discretion {
            padding: var(--section-padding) 20px;
            max-width: 1200px; margin: 0 auto;
        }
        .discretion-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
        }
        .discretion-visual {
            position: relative;
            display: flex; justify-content: center; align-items: center;
            min-height: 400px;
        }
        .box-3d {
            width: 220px; height: 180px;
            background: linear-gradient(145deg, #c4a882, #a08060);
            border-radius: 4px; position: relative;
            transform: perspective(600px) rotateY(-8deg) rotateX(3deg);
            box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
        }
        .box-3d::before {
            content: 'LACRADO'; position: absolute;
            top: 50%; left: 50%; transform: translate(-50%, -50%);
            font-size: 0.6rem; letter-spacing: 4px;
            color: rgba(0,0,0,0.15); font-weight: 600;
        }
        .box-tape {
            position: absolute; top: -6px; left: 50%;
            transform: translateX(-50%);
            width: 60%; height: 20px;
            background: rgba(200, 180, 140, 0.6); border-radius: 2px;
        }
        .seal-badge {
            position: absolute; bottom: -20px; right: -20px;
            width: 70px; height: 70px; border-radius: 50%;
            background: var(--eden-wine);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.5rem; letter-spacing: 1px;
            text-transform: uppercase; color: var(--eden-cream);
            text-align: center; line-height: 1.3;
            box-shadow: 0 4px 20px rgba(107, 29, 58, 0.5);
        }
        .discretion-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 300; color: var(--eden-cream);
            line-height: 1.2; margin-bottom: 24px;
        }
        .discretion-content h2 em {
            font-style: italic; color: var(--eden-gold);
        }
        .discretion-list {
            list-style: none; display: flex;
            flex-direction: column; gap: 18px; margin-top: 32px;
        }
        .discretion-list li {
            display: flex; align-items: flex-start; gap: 14px;
            font-size: 0.85rem; color: var(--eden-text-muted);
            line-height: 1.6; font-weight: 300;
        }
        .discretion-list li .check {
            flex-shrink: 0; width: 22px; height: 22px;
            border: 1px solid var(--eden-gold); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.6rem; color: var(--eden-gold); margin-top: 2px;
        }

        /* ═══════════════════════════════════════════
           DELIVERY AREAS (Light)
           ═══════════════════════════════════════════ */
        .areas-light {
            padding: var(--section-padding) 20px;
            background: white;
        }
        .areas-container { max-width: 1000px; margin: 0 auto; }
        .areas-light .section-title { color: #1a1a1a; }
        .areas-light .section-subtitle { color: #888; }
        .areas-light .section-tag { color: var(--eden-burgundy); }
        .areas-light .section-tag::before,
        .areas-light .section-tag::after { background: var(--eden-burgundy); }

        .areas-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 20px; margin-top: 48px;
        }
        .area-card {
            text-align: center; padding: 32px 20px;
            border: 1px solid #f0e6e0; border-radius: 12px;
            background: #fdf8f5; transition: all 0.3s ease;
        }
        .area-card:hover {
            border-color: var(--eden-blush);
            box-shadow: 0 8px 30px rgba(140, 17, 85, 0.06);
        }
        .area-city {
            font-family: var(--font-accent);
            font-size: 1.2rem; color: #1a1a1a;
            margin-bottom: 4px; font-weight: 700;
        }
        .area-state {
            font-size: 0.65rem; letter-spacing: 2px;
            text-transform: uppercase; color: var(--eden-burgundy);
        }
        .area-neighborhoods {
            margin-top: 16px; font-size: 0.72rem;
            color: #999; line-height: 1.8; font-weight: 300;
        }

        /* ═══════════════════════════════════════════
           FAQ
           ═══════════════════════════════════════════ */
        .faq {
            padding: var(--section-padding) 20px;
            max-width: 800px; margin: 0 auto;
        }
        .faq .section-title { color: #1a1a1a; }
        .faq .section-tag { color: var(--eden-burgundy); }
        .faq .section-tag::before,
        .faq .section-tag::after { background: var(--eden-burgundy); }

        .faq-item { border-bottom: 1px solid #f0e6e0; overflow: hidden; }
        .faq-question {
            width: 100%; padding: 24px 0;
            background: none; border: none;
            display: flex; justify-content: space-between;
            align-items: center; cursor: pointer; text-align: left;
        }
        .faq-question h3 {
            font-family: var(--font-accent);
            font-size: 1.05rem; font-weight: 400; color: #4a403a;
            transition: color 0.3s ease;
        }
        @media (hover: hover) {
            .faq-question:hover h3 {
                color: #b25d76;
            }
            .faq-question:hover .faq-icon {
                color: #b25d76;
            }
        }
        .faq-icon {
            font-size: 1.4rem; color: #999;
            font-weight: 300;
            flex-shrink: 0; transition: transform 0.3s ease, color 0.3s ease;
        }
        .faq-item.active .faq-question h3 {
            color: #b25d76;
        }
        .faq-item.active .faq-icon {
            color: #b25d76;
        }
        .faq-item.active .faq-icon { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-item.active .faq-answer { max-height: 300px; }
        .faq-answer p {
            padding-bottom: 24px; font-size: 0.85rem;
            color: #777; line-height: 1.8; font-weight: 300;
        }

        /* ═══════════════════════════════════════════
           CTA
           ═══════════════════════════════════════════ */
        .cta-section {
            padding: var(--section-padding) 20px;
            text-align: center;
            background: linear-gradient(135deg, var(--eden-dark), var(--eden-black));
            position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at center, rgba(107, 29, 58, 0.2), transparent 70%);
        }
        .cta-content { position: relative; z-index: 1; }
        .cta-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 300; color: var(--eden-cream);
            margin-bottom: 16px; line-height: 1.2;
        }
        .cta-content h2 em { font-style: italic; color: var(--eden-gold); }
        .cta-content p {
            font-size: 0.9rem; color: var(--eden-text-muted);
            max-width: 450px; margin: 0 auto 36px;
            font-weight: 300; line-height: 1.7;
        }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--eden-wine), var(--eden-burgundy));
            color: var(--eden-cream);
            font-size: 0.75rem; letter-spacing: 2px;
            text-transform: uppercase; border: none;
            cursor: pointer; transition: all 0.4s ease;
            border-radius: 4px;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(140, 17, 85, 0.3); }

        /* ═══════════════════════════════════════════
           SITE FOOTER (VIBRESHOP CLONE)
           ═══════════════════════════════════════════ */
        .site-footer {
            background: #f5f1ed;
            padding: 60px 20px 80px;
            position: relative;
            border-top: 1px solid #e8e0db;
        }

        .sf-brand {
            text-align: center;
            margin-bottom: 40px;
        }

        .sf-logo {
            font-family: var(--font-accent);
            font-size: 2.2rem;
            font-weight: 600;
            font-style: italic;
            color: white;
            background: linear-gradient(135deg, #b25d76, #8c1155);
            width: 120px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            margin: 0 auto 15px;
            box-shadow: -10px 10px 30px rgba(178, 93, 118, 0.2);
            transform: rotate(-5deg);
        }

        .sf-slogan {
            font-size: 0.65rem;
            letter-spacing: 2px;
            color: #4a403a;
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .sf-socials {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .sf-social {
            width: 40px;
            height: 40px;
            border: 1px solid #d4c5bd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8c7e82;
            transition: all 0.3s ease;
        }

        .sf-social:hover {
            color: #b25d76;
            border-color: #b25d76;
        }

        .sf-social svg { width: 16px; height: 16px; }

        .sf-accordions {
            max-width: 800px;
            margin: 0 auto 40px;
            border-top: 1px solid #e8e0db;
        }

        .sf-details {
            border-bottom: 1px solid #e8e0db;
        }

        .sf-details summary {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #4a403a;
            padding: 24px 0;
            cursor: pointer;
            text-transform: uppercase;
            list-style: none;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sf-details summary::-webkit-details-marker { display: none; }

        .sf-arrow::after {
            content: '▾';
            font-size: 1rem;
            transition: transform 0.3s;
        }

        .sf-details[open] .sf-arrow::after {
            transform: rotate(180deg);
        }

        .sf-content {
            padding-bottom: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .sf-content a {
            color: #7a6e65;
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s;
        }

        .sf-content a:hover {
            color: #b25d76;
        }

        .sf-commits {
            gap: 20px;
        }

        .sf-commit {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .sfc-icon {
            font-size: 1.2rem;
            color: #b25d76;
        }

        .sfc-text strong {
            display: block;
            font-size: 0.9rem;
            color: #4a403a;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .sfc-text p {
            font-size: 0.8rem;
            color: #7a6e65;
            font-weight: 300;
        }

        .sf-copyright {
            text-align: center;
            font-size: 0.75rem;
            color: #7a6e65;
            font-weight: 300;
        }

        .sf-backtop {
            position: absolute;
            bottom: 60px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid #b25d76;
            background: transparent;
            color: #b25d76;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sf-backtop:hover {
            background: #b25d76;
            color: white;
        }

        /* ═══════════════════════════════════════════
           WHATSAPP FAB
           ═══════════════════════════════════════════ */
        .whatsapp-fab {
            position: fixed; bottom: 28px; left: 28px;
            z-index: 9000; width: 56px; height: 56px;
            background: #25D366; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            animation: fabPulse 2s ease infinite;
        }
        .whatsapp-fab:hover { transform: scale(1.1); }
        .whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

        @keyframes fabPulse {
            0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3); }
            50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.5); }
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ═══════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════ */
        @media (max-width: 968px) {
            .nav-search { 
                display: block; 
                flex: 1 1 100%; 
                order: 3; 
                margin-top: 12px; 
            }
            .navbar { 
                padding: 12px 20px; 
                flex-wrap: wrap; 
                height: auto; 
            }
            .nav-logo { font-size: 2rem; flex: 1 1 auto; }
            .nav-actions { flex: 0 1 auto; }
            .category-nav { overflow-x: auto; justify-content: flex-start; gap: 20px; padding: 12px 20px; }
            .discretion-grid { grid-template-columns: 1fr; gap: 40px; }
            .areas-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .areas-grid { grid-template-columns: 1fr; }
            .nav-logo { font-size: 1.8rem; }
            .navbar { height: auto; min-height: 60px; }
        }
        @media (max-width: 480px) {
            .nav-logo { font-size: 1.5rem; }
            .navbar { padding: 10px 15px; }
            .category-nav a { font-size: 0.6rem; }
            .discretion-content h2 { font-size: 1.8rem; }
        }
        /* ═══════════════════════════════════════════
           HOW IT WORKS — LIGHT BOUTIQUE
           ═══════════════════════════════════════════ */
        .how-light {
            background: #fdf8f5;
            padding: clamp(50px, 8vw, 100px) 20px;
        }
        .how-light-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-tag-light {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.6rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--eden-burgundy);
            margin-bottom: 16px;
            font-weight: 500;
        }
        .section-tag-light::before, .section-tag-light::after {
            content: ''; width: 24px; height: 1px;
            background: var(--eden-burgundy); opacity: 0.3;
        }
        .section-title-light {
            font-family: var(--font-accent);
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.2;
        }
        .section-title-light em {
            font-style: italic;
            color: var(--eden-burgundy);
            font-weight: 400;
        }
        .section-subtitle-light {
            font-size: 0.88rem;
            color: #999;
            max-width: 520px;
            margin: 14px auto 0;
            font-weight: 300;
            line-height: 1.7;
        }

        .steps-light-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 56px;
            position: relative;
        }
        .steps-light-grid::before {
            content: '';
            position: absolute;
            top: 36px;
            left: calc(16.66% + 20px);
            right: calc(16.66% + 20px);
            height: 1px;
            background: linear-gradient(90deg, #8c1155, #d4607a, #8c1155);
            opacity: 0.2;
        }

        .step-light {
            text-align: center;
            padding: 0 32px;
            position: relative;
        }
        .step-light-icon {
            width: 72px; height: 72px;
            border-radius: 50%;
            background: white;
            border: 1px solid #f0e0e8;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 4px 20px rgba(140, 17, 85, 0.06);
            transition: all 0.3s ease;
        }
        .step-light:hover .step-light-icon {
            border-color: var(--eden-blush);
            box-shadow: 0 8px 30px rgba(140, 17, 85, 0.12);
            transform: translateY(-4px);
        }
        .step-light-num {
            font-family: var(--font-accent);
            font-size: 0.65rem;
            letter-spacing: 3px;
            color: var(--eden-burgundy);
            opacity: 0.5;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .step-light-title {
            font-family: var(--font-accent);
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .step-light-desc {
            font-size: 0.78rem;
            color: #aaa;
            line-height: 1.7;
            font-weight: 300;
        }
        .step-light-line {
            display: none;
        }

        @media (max-width: 900px) {
            .steps-light-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .steps-light-grid::before {
                display: none;
            }
        }


        /* ═══════════════════════════════════════════
           EXPLORE POR CATEGORIA
           ═══════════════════════════════════════════ */
        .categories-section {
            background: white;
            padding: clamp(40px, 7vw, 80px) 20px;
            border-top: 1px solid #f5ede8;
            border-bottom: 1px solid #f5ede8;
        }
        .categories-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .categories-section .section-header {
            margin-bottom: 44px;
        }
        .categories-grid {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .categories-grid {
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 20px;
                scrollbar-width: none; /* Firefox */
                margin: 0 -20px; /* Bleed to edges on mobile */
                padding-left: 20px;
                padding-right: 20px;
            }
            .categories-grid::-webkit-scrollbar {
                display: none; /* Chrome/Safari */
            }
            .categories-grid .cat-item {
                flex: 0 0 auto;
                scroll-snap-align: start;
            }
        }
        .cat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease;
            width: 110px;
        }
        .cat-item:hover {
            transform: translateY(-6px);
        }
        .cat-circle {
            width: 90px; height: 90px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        }
        .cat-item:hover .cat-circle {
            box-shadow: 0 8px 28px rgba(140, 17, 85, 0.15);
            transform: scale(1.05);
        }
        .cat-name {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #555;
            text-align: center;
            line-height: 1.4;
        }



        /* Animated background blob */
        


    

