/* ================================================================
   Natu Category Carousel — CSS
   ================================================================ */

.ncc-section { background-color: #f0ebe4; padding: 60px 40px; }

.ncc-section__head { margin-bottom: 32px; }
.ncc-heading  { color:#1a0a02; font-size:28px; font-weight:700; line-height:1.2; margin:0 0 8px; }
.ncc-subheading { color:#6b5a4e; font-size:14px; line-height:1.6; margin:0; }

/* ── Carousel ────────────────────────────────────────────────── */
.ncc-carousel-wrap { position: relative; }
.ncc-track-outer   { overflow: hidden; width: 100%; }
.ncc-track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.ncc-slide { flex: 0 0 auto; box-sizing: border-box; }

/* ── Card ────────────────────────────────────────────────────── */
.ncc-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* ── Large Image ─────────────────────────────────────────────── */
.ncc-card__img {
    height: 300px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b4;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.ncc-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(184,118,58,0.30);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.ncc-card:hover .ncc-card__img         { transform: translateY(-3px); }
.ncc-card:hover .ncc-card__img::after  { opacity: 1; }

/* ── Info row ────────────────────────────────────────────────── */
.ncc-card__info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0 2px;
}

/* Circle icon */
.ncc-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d4c4b4;
    background-color: #ffffff;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease;
}
.ncc-card:hover .ncc-card__icon { border-color: #B8763A; }
.ncc-card__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Text */
.ncc-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ncc-card__label {
    display: block;
    color: #1a0a02;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.22s ease;
}
.ncc-card:hover .ncc-card__label { color: #B8763A; }
.ncc-card__count { display: block; color: #9a8070; font-size: 12px; }

/* ── Arrows ──────────────────────────────────────────────────── */
.ncc-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}
.ncc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d4c4b4;
    background: #fff;
    color: #1a0a02;
    cursor: pointer;
    padding: 0;
    transition: background-color .25s, color .25s, border-color .25s;
    flex-shrink: 0;
}
/* FIXED: Explicit SVG size — not relative to font-size */
.ncc-arrow svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    flex-shrink: 0;
}
.ncc-arrow:hover { background-color:#B8763A; border-color:#B8763A; color:#fff; }

/* ── Empty ───────────────────────────────────────────────────── */
.ncc-empty { padding:32px; text-align:center; color:#9a8070; font-size:13px; background:#f7f2ec; border-radius:8px; border:1px dashed #d4c4b4; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width:900px) { .ncc-section { padding:48px 24px; } .ncc-card__img { height:220px; } }
@media (max-width:600px) { .ncc-section { padding:40px 16px; } .ncc-card__img { height:180px; } .ncc-heading { font-size:22px; } }
