/* ═══════════════════════════════════════════════════════════════════
   CATEGORY SHOWCASE v5 — Premium Glassmorphism Cards
   Redesigned: Large horizontal cards with gradient glow effects
═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   FREE PRODUCTS SECTION — Horizontal product scroll
═══════════════════════════════════════════════════════════════════ */
.freesec {
    margin-bottom: 28px;
}

.freesec__row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.freesec__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 7px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.freesec__badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

body.dark-theme .freesec__badge {
    background: linear-gradient(135deg, rgba(5,150,105,0.15), rgba(16,185,129,0.10));
    color: #6ee7b7;
}

.freesec__title {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    white-space: nowrap;
    user-select: none;
}

body.dark-theme .freesec__title {
    color: #64748b;
}

.freesec__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #e2e8f0, transparent);
}

body.dark-theme .freesec__line {
    background: linear-gradient(to right, rgba(255,255,255,0.06), transparent);
}

.freesec__arrows {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.freesec__btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all 0.2s ease;
}

.freesec__btn svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
}

.freesec__btn:hover {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.freesec__btn:active {
    transform: scale(0.92);
}

.freesec__btn.is-off {
    opacity: 0.25;
    pointer-events: none;
}

body.dark-theme .freesec__btn {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #94a3b8;
}

body.dark-theme .freesec__btn:hover {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

/* ── Free Products Viewport ── */
.freesec__vp {
    position: relative;
    overflow: hidden;
    margin: 0 -4px;
    padding: 0 4px;
}

.freesec__vp::before,
.freesec__vp::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s;
}

.freesec__vp::before {
    left: 0;
    background: linear-gradient(to right, #f7f9fa 20%, transparent);
    opacity: 0;
}

.freesec__vp::after {
    right: 0;
    background: linear-gradient(to left, #f7f9fa 20%, transparent);
}

.freesec__vp.has-fade-l::before {
    opacity: 1;
}

.freesec__vp.no-fade-r::after {
    opacity: 0;
}

body.dark-theme .freesec__vp::before {
    background: linear-gradient(to right, #181818 20%, transparent);
}

body.dark-theme .freesec__vp::after {
    background: linear-gradient(to left, #181818 20%, transparent);
}

/* ── Free Products Track ── */
.freesec__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 6px 0 10px;
}

.freesec__track::-webkit-scrollbar { display: none; }

/* ── Free product cards inside track ── */
.freesec__track .product-card.fp-card {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 260px;
    min-height: 260px;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .freesec { margin-bottom: 22px; }
    .freesec__row { margin-bottom: 10px; }
    .freesec__arrows { display: none; }
    .freesec__track { gap: 10px; }
    .freesec__track .product-card.fp-card {
        flex: 0 0 170px;
        width: 170px;
        min-width: 170px;
        max-width: 170px;
        height: 230px;
        min-height: 230px;
    }
    .freesec__badge { font-size: 10px; padding: 3px 8px 3px 6px; }
    .freesec__badge svg { width: 12px; height: 12px; }
    .freesec__title { font-size: 11px; }
}

@media (max-width: 480px) {
    .freesec__track .product-card.fp-card {
        flex: 0 0 155px;
        width: 155px;
        min-width: 155px;
        max-width: 155px;
        height: 210px;
        min-height: 210px;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   CATEGORY SECTION — Layout & Header
═══════════════════════════════════════════════════════════════════ */
.catsec {
    margin-bottom: 40px;
    position: relative;
}

.catsec__row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.catsec__title {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
    white-space: nowrap;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catsec__title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, #10b981, #059669);
    flex-shrink: 0;
}

body.dark-theme .catsec__title {
    color: #94a3b8;
}

.catsec__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #e2e8f0 0%, transparent 100%);
}

body.dark-theme .catsec__line {
    background: linear-gradient(to right, rgba(255,255,255,0.08), transparent);
}

.catsec__arrows {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.catsec__btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.catsec__btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
}

.catsec__btn:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
    transform: scale(1.05);
}

.catsec__btn:active {
    transform: scale(0.92);
}

.catsec__btn.is-off {
    opacity: 0.2;
    pointer-events: none;
}

body.dark-theme .catsec__btn {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.10);
    color: #94a3b8;
}

body.dark-theme .catsec__btn:hover {
    background: #fff;
    border-color: #fff;
    color: #0f172a;
}

/* ── Viewport ── */
.catsec__vp {
    position: relative;
    overflow: hidden;
    margin: 0 -6px;
    padding: 0 6px;
}

.catsec__vp::before,
.catsec__vp::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s;
}

.catsec__vp::before {
    left: 0;
    background: linear-gradient(to right, #f7f9fa 25%, transparent);
    opacity: 0;
}

.catsec__vp::after {
    right: 0;
    background: linear-gradient(to left, #f7f9fa 25%, transparent);
}

.catsec__vp.has-fade-l::before {
    opacity: 1;
}

.catsec__vp.no-fade-r::after {
    opacity: 0;
}

body.dark-theme .catsec__vp::before {
    background: linear-gradient(to right, #181818 25%, transparent);
}

body.dark-theme .catsec__vp::after {
    background: linear-gradient(to left, #181818 25%, transparent);
}

/* ── Track ── */
.catsec__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 8px 0 14px;
}

.catsec__track::-webkit-scrollbar { display: none; }


/* ═══════════════════════════════════════════════════════════════════
   CATEGORY CARD — Premium Wide Card Design
   Yatay geniş kart: sol taraf gradient ikon, sağ taraf bilgi
═══════════════════════════════════════════════════════════════════ */
.cc {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 210px;
    height: 80px;
    padding: 0 16px 0 14px;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--cc-bg, #fff);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Shimmer overlay — premium glow on hover */
.cc::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255,255,255,0.35) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.cc:hover::before {
    opacity: 1;
}

/* Subtle border glow */
.cc::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: var(--cc-glow, linear-gradient(135deg, transparent, transparent));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.cc:hover::after {
    opacity: 1;
}

.cc:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 32px -8px var(--cc-shadow, rgba(0,0,0,0.12)),
        0 4px 12px -2px rgba(0,0,0,0.06);
    border-color: var(--cc-border-hover, rgba(0,0,0,0.08));
}

.cc:active {
    transform: translateY(-1px) scale(0.99);
    transition-duration: 0.1s;
}

body.dark-theme .cc {
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

body.dark-theme .cc::before {
    background: radial-gradient(circle at 30% 30%, 
        rgba(255,255,255,0.08) 0%, 
        transparent 50%);
}

body.dark-theme .cc:hover {
    box-shadow:
        0 12px 32px -8px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08);
}

/* ── Icon container — gradient circle ── */
.cc__ic {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--cc-ic-bg, rgba(0,0,0,0.04));
    color: var(--cc-accent, #64748b);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulsing ring on hover */
.cc__ic::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    border: 2px solid var(--cc-accent, transparent);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc:hover .cc__ic::after {
    opacity: 0.25;
    transform: scale(1);
}

.cc__ic svg,
.cc__ic [data-lucide] {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.cc__ic img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cc:hover .cc__ic {
    transform: scale(1.08) rotate(-2deg);
    background: var(--cc-ic-hover, rgba(0,0,0,0.06));
}

body.dark-theme .cc__ic {
    background: rgba(255,255,255,0.06);
}

body.dark-theme .cc:hover .cc__ic {
    background: rgba(255,255,255,0.12);
}

/* ── Text Container ── */
.cc__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
    z-index: 2;
}

/* ── Category name ── */
.cc__name {
    font-size: 13px;
    font-weight: 650;
    color: var(--cc-text, #1e293b);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: left;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    max-width: 100%;
    transition: color 0.3s ease;
}

body.dark-theme .cc__name {
    color: var(--cc-text, #e2e8f0);
}

/* ── Product count pill ── */
.cc__count {
    font-size: 11px;
    font-weight: 600;
    color: var(--cc-accent, #94a3b8);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cc__count::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cc-accent, #94a3b8);
    opacity: 0.5;
    flex-shrink: 0;
}

body.dark-theme .cc__count {
    color: var(--cc-accent, #64748b);
}

/* ── Arrow indicator ── */
.cc__arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--cc-accent, #94a3b8);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc__arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.cc:hover .cc__arrow {
    opacity: 0.6;
    transform: translateY(-50%) translateX(2px);
}


/* ═══════════════════════════════════════════════════════════════════
   COLOR PALETTES — Rich gradient cards with glow
═══════════════════════════════════════════════════════════════════ */

/* Emerald */
.cc--c0 {
    --cc-bg: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    --cc-accent: #059669;
    --cc-ic-bg: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(16,185,129,0.25), rgba(5,150,105,0.32));
    --cc-text: #064e3b;
    --cc-shadow: rgba(16,185,129,0.20);
    --cc-border-hover: rgba(16,185,129,0.30);
    --cc-glow: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(5,150,105,0.1));
}
body.dark-theme .cc--c0 {
    --cc-bg: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(5,150,105,0.04) 100%);
    --cc-text: #a7f3d0;
    --cc-accent: #34d399;
    border-color: rgba(16,185,129,0.12);
}

/* Indigo */
.cc--c1 {
    --cc-bg: linear-gradient(135deg, #e8ecff 0%, #c7d2fe 100%);
    --cc-accent: #4f46e5;
    --cc-ic-bg: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(79,70,229,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(79,70,229,0.32));
    --cc-text: #1e1b4b;
    --cc-shadow: rgba(99,102,241,0.20);
    --cc-border-hover: rgba(99,102,241,0.30);
    --cc-glow: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(79,70,229,0.1));
}
body.dark-theme .cc--c1 {
    --cc-bg: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(79,70,229,0.04) 100%);
    --cc-text: #c7d2fe;
    --cc-accent: #818cf8;
    border-color: rgba(99,102,241,0.12);
}

/* Amber */
.cc--c2 {
    --cc-bg: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    --cc-accent: #b45309;
    --cc-ic-bg: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(180,83,9,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(217,119,6,0.25), rgba(180,83,9,0.32));
    --cc-text: #451a03;
    --cc-shadow: rgba(217,119,6,0.20);
    --cc-border-hover: rgba(217,119,6,0.30);
    --cc-glow: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(217,119,6,0.1));
}
body.dark-theme .cc--c2 {
    --cc-bg: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(217,119,6,0.04) 100%);
    --cc-text: #fde68a;
    --cc-accent: #fbbf24;
    border-color: rgba(245,158,11,0.12);
}

/* Rose */
.cc--c3 {
    --cc-bg: linear-gradient(135deg, #ffe4e9 0%, #fecdd3 100%);
    --cc-accent: #be123c;
    --cc-ic-bg: linear-gradient(135deg, rgba(225,29,72,0.12), rgba(190,18,60,0.20));
    --cc-ic-hover: linear-gradient(135deg, rgba(225,29,72,0.22), rgba(190,18,60,0.30));
    --cc-text: #4c0519;
    --cc-shadow: rgba(225,29,72,0.18);
    --cc-border-hover: rgba(225,29,72,0.28);
    --cc-glow: linear-gradient(135deg, rgba(244,63,94,0.3), rgba(225,29,72,0.1));
}
body.dark-theme .cc--c3 {
    --cc-bg: linear-gradient(135deg, rgba(244,63,94,0.08) 0%, rgba(225,29,72,0.04) 100%);
    --cc-text: #fecdd3;
    --cc-accent: #fb7185;
    border-color: rgba(244,63,94,0.12);
}

/* Sky */
.cc--c4 {
    --cc-bg: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    --cc-accent: #0369a1;
    --cc-ic-bg: linear-gradient(135deg, rgba(2,132,199,0.15), rgba(3,105,161,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(2,132,199,0.25), rgba(3,105,161,0.32));
    --cc-text: #082f49;
    --cc-shadow: rgba(2,132,199,0.18);
    --cc-border-hover: rgba(2,132,199,0.28);
    --cc-glow: linear-gradient(135deg, rgba(14,165,233,0.3), rgba(2,132,199,0.1));
}
body.dark-theme .cc--c4 {
    --cc-bg: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(2,132,199,0.04) 100%);
    --cc-text: #bae6fd;
    --cc-accent: #38bdf8;
    border-color: rgba(14,165,233,0.12);
}

/* Violet */
.cc--c5 {
    --cc-bg: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    --cc-accent: #6d28d9;
    --cc-ic-bg: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(109,40,217,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(109,40,217,0.32));
    --cc-text: #2e1065;
    --cc-shadow: rgba(124,58,237,0.18);
    --cc-border-hover: rgba(124,58,237,0.28);
    --cc-glow: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(124,58,237,0.1));
}
body.dark-theme .cc--c5 {
    --cc-bg: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(124,58,237,0.04) 100%);
    --cc-text: #ddd6fe;
    --cc-accent: #a78bfa;
    border-color: rgba(139,92,246,0.12);
}

/* Pink */
.cc--c6 {
    --cc-bg: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    --cc-accent: #be185d;
    --cc-ic-bg: linear-gradient(135deg, rgba(219,39,119,0.12), rgba(190,24,93,0.20));
    --cc-ic-hover: linear-gradient(135deg, rgba(219,39,119,0.22), rgba(190,24,93,0.30));
    --cc-text: #500724;
    --cc-shadow: rgba(219,39,119,0.18);
    --cc-border-hover: rgba(219,39,119,0.28);
    --cc-glow: linear-gradient(135deg, rgba(236,72,153,0.3), rgba(219,39,119,0.1));
}
body.dark-theme .cc--c6 {
    --cc-bg: linear-gradient(135deg, rgba(236,72,153,0.08) 0%, rgba(219,39,119,0.04) 100%);
    --cc-text: #fbcfe8;
    --cc-accent: #f472b6;
    border-color: rgba(236,72,153,0.12);
}

/* Teal */
.cc--c7 {
    --cc-bg: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    --cc-accent: #0f766e;
    --cc-ic-bg: linear-gradient(135deg, rgba(13,148,136,0.15), rgba(15,118,110,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(13,148,136,0.25), rgba(15,118,110,0.32));
    --cc-text: #042f2e;
    --cc-shadow: rgba(13,148,136,0.18);
    --cc-border-hover: rgba(13,148,136,0.28);
    --cc-glow: linear-gradient(135deg, rgba(20,184,166,0.3), rgba(13,148,136,0.1));
}
body.dark-theme .cc--c7 {
    --cc-bg: linear-gradient(135deg, rgba(20,184,166,0.08) 0%, rgba(13,148,136,0.04) 100%);
    --cc-text: #99f6e4;
    --cc-accent: #2dd4bf;
    border-color: rgba(20,184,166,0.12);
}

/* Orange */
.cc--c8 {
    --cc-bg: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    --cc-accent: #c2410c;
    --cc-ic-bg: linear-gradient(135deg, rgba(234,88,12,0.15), rgba(194,65,12,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(234,88,12,0.25), rgba(194,65,12,0.32));
    --cc-text: #431407;
    --cc-shadow: rgba(234,88,12,0.18);
    --cc-border-hover: rgba(234,88,12,0.28);
    --cc-glow: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(234,88,12,0.1));
}
body.dark-theme .cc--c8 {
    --cc-bg: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(234,88,12,0.04) 100%);
    --cc-text: #fed7aa;
    --cc-accent: #fb923c;
    border-color: rgba(249,115,22,0.12);
}

/* Cyan */
.cc--c9 {
    --cc-bg: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    --cc-accent: #0e7490;
    --cc-ic-bg: linear-gradient(135deg, rgba(8,145,178,0.15), rgba(14,116,144,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(8,145,178,0.25), rgba(14,116,144,0.32));
    --cc-text: #083344;
    --cc-shadow: rgba(8,145,178,0.18);
    --cc-border-hover: rgba(8,145,178,0.28);
    --cc-glow: linear-gradient(135deg, rgba(6,182,212,0.3), rgba(8,145,178,0.1));
}
body.dark-theme .cc--c9 {
    --cc-bg: linear-gradient(135deg, rgba(6,182,212,0.08) 0%, rgba(8,145,178,0.04) 100%);
    --cc-text: #a5f3fc;
    --cc-accent: #22d3ee;
    border-color: rgba(6,182,212,0.12);
}

/* Lime */
.cc--c10 {
    --cc-bg: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
    --cc-accent: #4d7c0f;
    --cc-ic-bg: linear-gradient(135deg, rgba(101,163,13,0.15), rgba(77,124,15,0.22));
    --cc-ic-hover: linear-gradient(135deg, rgba(101,163,13,0.25), rgba(77,124,15,0.32));
    --cc-text: #1a2e05;
    --cc-shadow: rgba(101,163,13,0.18);
    --cc-border-hover: rgba(101,163,13,0.28);
    --cc-glow: linear-gradient(135deg, rgba(132,204,22,0.3), rgba(101,163,13,0.1));
}
body.dark-theme .cc--c10 {
    --cc-bg: linear-gradient(135deg, rgba(132,204,22,0.08) 0%, rgba(101,163,13,0.04) 100%);
    --cc-text: #d9f99d;
    --cc-accent: #a3e635;
    border-color: rgba(132,204,22,0.12);
}

/* Fuchsia */
.cc--c11 {
    --cc-bg: linear-gradient(135deg, #fae8ff 0%, #f0abfc 100%);
    --cc-accent: #86198f;
    --cc-ic-bg: linear-gradient(135deg, rgba(162,28,175,0.12), rgba(134,25,143,0.20));
    --cc-ic-hover: linear-gradient(135deg, rgba(162,28,175,0.22), rgba(134,25,143,0.30));
    --cc-text: #4a044e;
    --cc-shadow: rgba(162,28,175,0.18);
    --cc-border-hover: rgba(162,28,175,0.28);
    --cc-glow: linear-gradient(135deg, rgba(192,38,211,0.3), rgba(162,28,175,0.1));
}
body.dark-theme .cc--c11 {
    --cc-bg: linear-gradient(135deg, rgba(192,38,211,0.08) 0%, rgba(162,28,175,0.04) 100%);
    --cc-text: #f0abfc;
    --cc-accent: #d946ef;
    border-color: rgba(192,38,211,0.12);
}


/* ═══════════════════════════════════════════════════════════════════
   "ALL" CARD — Special gradient border treatment
═══════════════════════════════════════════════════════════════════ */
.cc--all {
    --cc-bg: #fff;
    --cc-text: #475569;
    --cc-accent: #10b981;
    border: 1.5px dashed #cbd5e1;
    background: rgba(255,255,255,0.8);
}

.cc--all::before,
.cc--all::after {
    display: none;
}

.cc--all .cc__ic {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(5,150,105,0.14));
    color: #10b981;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
}

.cc--all .cc__ic svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.cc--all:hover {
    --cc-bg: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-style: solid;
    border-color: rgba(16,185,129,0.35);
    box-shadow: 0 8px 24px -6px rgba(16,185,129,0.20);
}

.cc--all:hover .cc__ic {
    background: linear-gradient(135deg, rgba(16,185,129,0.20), rgba(5,150,105,0.28));
    color: #059669;
    transform: scale(1.1);
}

.cc--all:hover .cc__name {
    color: #064e3b;
}

body.dark-theme .cc--all {
    --cc-bg: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.02);
}

body.dark-theme .cc--all .cc__ic {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(5,150,105,0.12));
    color: #6ee7b7;
}

body.dark-theme .cc--all:hover {
    --cc-bg: rgba(16,185,129,0.08);
    border-color: rgba(16,185,129,0.25);
    background: rgba(16,185,129,0.06);
}

body.dark-theme .cc--all:hover .cc__ic {
    color: #34d399;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.22));
}

body.dark-theme .cc--all:hover .cc__name {
    color: #6ee7b7;
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile & Tablet
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .catsec {
        margin-bottom: 28px;
    }
    
    .catsec__row {
        margin-bottom: 14px;
    }
    
    .catsec__title {
        font-size: 11.5px;
    }
    
    .catsec__arrows {
        display: none;
    }
    
    .catsec__track {
        gap: 10px;
    }
    
    .cc {
        width: 185px;
        height: 70px;
        padding: 0 14px 0 12px;
        border-radius: 14px;
        gap: 10px;
    }
    
    .cc__ic {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }
    
    .cc__ic svg,
    .cc__ic [data-lucide] {
        width: 18px;
        height: 18px;
    }
    
    .cc__ic img {
        width: 20px;
        height: 20px;
    }
    
    .cc__name {
        font-size: 12px;
    }
    
    .cc__count {
        font-size: 10px;
    }
    
    .catsec__vp::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .cc {
        width: 170px;
        height: 64px;
        padding: 0 12px 0 10px;
        gap: 9px;
        border-radius: 12px;
    }
    
    .cc__ic {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
    }
    
    .cc__ic svg,
    .cc__ic [data-lucide] {
        width: 16px;
        height: 16px;
    }
    
    .cc__name {
        font-size: 11px;
    }
    
    .cc__count {
        font-size: 9px;
    }

    .cc__count::before {
        width: 3px;
        height: 3px;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   ENTRANCE ANIMATION — Smooth staggered slide-in
═══════════════════════════════════════════════════════════════════ */
@keyframes ccSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.cc {
    animation: ccSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cc:nth-child(1)  { animation-delay: 0s; }
.cc:nth-child(2)  { animation-delay: .04s; }
.cc:nth-child(3)  { animation-delay: .08s; }
.cc:nth-child(4)  { animation-delay: .12s; }
.cc:nth-child(5)  { animation-delay: .16s; }
.cc:nth-child(6)  { animation-delay: .20s; }
.cc:nth-child(7)  { animation-delay: .24s; }
.cc:nth-child(8)  { animation-delay: .28s; }
.cc:nth-child(9)  { animation-delay: .32s; }
.cc:nth-child(10) { animation-delay: .36s; }
.cc:nth-child(11) { animation-delay: .40s; }
.cc:nth-child(12) { animation-delay: .44s; }
.cc:nth-child(13) { animation-delay: .48s; }
