/* =============================================================
   index.css — Belcanto Wędliny | Nowy design 2026
   Paleta: kremowy (#FDFBF8), bordowy (#7B2D3B), złoty (#C9A96E)
   Fonty: Playfair Display (display) + DM Sans (body)
   ============================================================= */

/* ── GLOBAL HELPERS ── */
.sec-kicker {
    display: block;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 6px;
}
.sec-heading {
    font-family: var(--ff-display);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: var(--clr-dark);
    margin: 0;
    line-height: 1.15;
}
.link-arrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--tr), color var(--tr);
}
.link-arrow:hover { gap: 10px; color: var(--clr-accent-dark); }
.link-arrow i { font-size: 11px; }

.arr-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--clr-border);
    border-radius: 50%;
    background: var(--clr-white);
    color: var(--clr-body);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr);
}
.arr-btn:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: var(--clr-accent-pale);
}


/* =============================================================
   HERO SLIDER — Full-width cinematic
   ============================================================= */
.hero {
    position: relative;
    width: 100%;
    height: clamp(400px, 56vh, 620px);
    overflow: hidden;
    background: var(--clr-dark);
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s var(--ease-out);
    z-index: 1;
}
.hero__slide.is-active { opacity: 1; z-index: 2; }

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.03);
    transition: transform 6s linear;
}
.hero__slide.is-active .hero__img { transform: scale(1); }

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,26,.7) 0%,
        rgba(26,26,26,.35) 50%,
        transparent 100%
    );
    z-index: 3;
}

.hero__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 48px 56px 52px;
    max-width: 600px;
    color: #fff;
}

.hero__kicker {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-gold-light);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -.5px;
}

.hero__sub {
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 400;
    opacity: .8;
    margin: 0 0 24px;
    line-height: 1.6;
}

.hero__cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--clr-accent);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--tr);
}
.hero__cta:hover { background: var(--clr-white); color: var(--clr-accent); }

/* Indicators — vertical pills on desktop */
.hero__indicators {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}
.hero__dot {
    width: 10px;
    height: 28px;
    border: none;
    background: rgba(255,255,255,.25);
    border-radius: 100px;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: all var(--tr);
    position: relative;
}
.hero__dot.is-active { background: rgba(255,255,255,.5); }
.hero__dot-fill {
    display: block;
    width: 100%;
    height: 0%;
    background: var(--clr-white);
    border-radius: 100px;
    transition: height 5s linear;
}
.hero__dot.is-active .hero__dot-fill { height: 100%; }

/* Progress bar */
.hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,.1);
    z-index: 20;
}
.hero__progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--clr-gold);
}

@media(max-width:767px) {
    .hero { height: clamp(320px, 70vh, 520px); }
    .hero__caption {
        padding: 24px;
        max-width: 85%;
    }
    .hero__indicators {
        flex-direction: row;
        right: auto;
        left: 24px;
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .hero__dot { width: 28px; height: 5px; }
    .hero__dot-fill { width: 0%; height: 100% !important; transition: width 5s linear; }
    .hero__dot.is-active .hero__dot-fill { width: 100%; height: 100% !important; }
}


/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    padding: 0;
}
.trust-bar__row {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
}
.trust-bar__row::-webkit-scrollbar { display: none; }
.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    flex: 1;
    min-width: 180px;
    border-right: 1px solid var(--clr-border);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__label {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 2px;
}
.trust-bar__desc {
    font-size: 12px;
    color: var(--clr-muted);
}
@media(max-width:767px) {
    .trust-bar__item { padding: 14px 16px; min-width: 160px; }
}


/* =============================================================
   CATEGORY RIBBON
   ============================================================= */
.cat-ribbon { padding: 48px 0 32px; }
.cat-ribbon__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.cat-ribbon__arrows { display: flex; gap: 8px; }

.cat-ribbon__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.cat-ribbon__track::-webkit-scrollbar { display: none; }

.cat-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 145px;
    text-align: center;
    text-decoration: none;
    color: var(--clr-body);
    transition: all var(--tr);
}
.cat-card:hover { color: var(--clr-accent); }

.cat-card__visual {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-border);
    background: var(--clr-bg-warm);
    transition: all .35s var(--ease-out);
}
.cat-card:hover .cat-card__visual {
    border-color: var(--clr-accent);
    box-shadow: 0 8px 28px rgba(123,45,59,.15);
    transform: translateY(-4px);
}
.cat-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease-out);
}
.cat-card:hover .cat-card__visual img { transform: scale(1.08); }
.cat-card__label {
    display: block;
    margin-top: 12px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

@media(max-width:767px) { .cat-card { width: 110px; } .cat-card__label { font-size: 12px; } }
@media(max-width:374px) { .cat-card { width: 90px; } }


/* =============================================================
   PRODUCT GRID
   ============================================================= */
.products-section { padding: 48px 0 56px; }
.products-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prod-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease-out);
}
.prod-card:hover {
    border-color: var(--clr-accent-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.prod-card__visual {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--clr-bg-warm);
    display: block;
}
.prod-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform .5s var(--ease-out);
}
.prod-card:hover .prod-card__visual img { transform: scale(1.06); }

.prod-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}
.prod-card__badge--new  { background: var(--clr-accent); }
.prod-card__badge--sale { background: #c0392b; }
.prod-card__badge--best { background: var(--clr-gold); color: var(--clr-dark); }

.prod-card__info {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-card__cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.prod-card__name {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 4px;
    color: var(--clr-dark);
}
.prod-card__name a { color: inherit; }
.prod-card__name a:hover { color: var(--clr-accent); }

.prod-card__pkg {
    font-size: 12px;
    color: var(--clr-muted);
    margin-bottom: 12px;
}

.prod-card__bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.prod-card__price {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-dark);
}
.prod-card__price small {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-muted);
}

.prod-card__add {
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--clr-accent);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all var(--tr);
    white-space: nowrap;
}
.prod-card__add:hover { background: var(--clr-accent-dark); }

@media(max-width:991.98px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:767.98px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .prod-card__add { padding: 8px 12px; font-size: 11px; } }
@media(max-width:374px) { .prod-grid { grid-template-columns: 1fr; } }


/* =============================================================
   STORY / EDITORIAL SECTIONS
   ============================================================= */
.story-section { padding: 64px 0; }
.story-section--alt { background: var(--clr-bg-warm); }

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.story-block--rev { direction: rtl; }
.story-block--rev > * { direction: ltr; }

.story-block__heading {
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-dark);
    margin: 0 0 16px;
}

.story-block__body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--clr-muted);
    margin: 0 0 24px;
}

.story-block__perks {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.story-block__perks li {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-body);
    padding-left: 20px;
    position: relative;
}
.story-block__perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-accent);
}

.story-block__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.story-block__media img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .7s var(--ease-out);
}
.story-block:hover .story-block__media img { transform: scale(1.03); }

.story-block__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--clr-accent);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

/* Mini product cards inside story */
.story-block__products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.story-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--tr);
}
.story-section--alt .story-mini { background: var(--clr-bg); }
.story-mini:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.story-mini__img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--clr-bg-warm);
    flex-shrink: 0;
}
.story-mini__img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.story-mini__name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-dark);
    line-height: 1.3;
    margin-bottom: 2px;
}
.story-mini__price {
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-accent);
}

@media(max-width:991.98px) {
    .story-block, .story-block--rev {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
    }
    .story-block__media { order: -1; }
    .story-block__media img { min-height: 280px; }
}
@media(max-width:575.98px) {
    .story-block__products { grid-template-columns: 1fr; }
}


/* =============================================================
   LOGISTICS BANNER
   ============================================================= */
.logistics-band { padding: 0 0 64px; }

.logistics-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
}
.logistics-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logistics-card__content {
    position: relative;
    z-index: 2;
    padding: 48px 52px;
    color: #fff;
    max-width: 560px;
    background: linear-gradient(90deg, rgba(26,26,26,.82) 0%, rgba(26,26,26,.4) 60%, transparent 100%);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logistics-card__title {
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 14px;
}
.logistics-card__desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: .85;
    margin: 0 0 20px;
    max-width: 440px;
}
.logistics-card__feats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.logistics-card__feats span {
    padding: 6px 16px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

@media(max-width:767px) {
    .logistics-card__content {
        padding: 28px;
        background: linear-gradient(0deg, rgba(26,26,26,.85) 0%, rgba(26,26,26,.4) 70%, transparent 100%);
        justify-content: flex-end;
        min-height: 320px;
    }
    .logistics-card__feats { flex-direction: column; gap: 6px; }
}


/* =============================================================
   REVIEWS
   ============================================================= */
.reviews-section { padding: 64px 0; background: var(--clr-bg-warm); }
.reviews-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.reviews-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rev-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease-out);
}
.rev-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.rev-card__photo-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--clr-bg-warm);
}
.rev-card__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}
.rev-card:hover .rev-card__photo-wrap img { transform: scale(1.04); }

.rev-card__content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.rev-card__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.rev-card__stars i { font-size: 13px; color: var(--clr-gold); }

.rev-card__quote {
    font-family: var(--ff-display);
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--clr-body);
    margin: 0 0 24px;
    border: none;
    padding: 0;
}

.rev-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--clr-border);
}
.rev-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.rev-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-dark);
    margin: 0 0 2px;
}
.rev-card__role {
    font-size: 12px;
    color: var(--clr-muted);
    margin: 0;
}

@media(max-width:991.98px) { .reviews-row { grid-template-columns: 1fr; } }


/* =============================================================
   BLOG / ARTICLES
   ============================================================= */
.blog-section { padding: 64px 0; }
.blog-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease-out);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card__img-wrap {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--clr-bg-warm);
    display: block;
}
.blog-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.06); }

.blog-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--clr-white);
    color: var(--clr-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 2;
}

.blog-card__body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    font-size: 11px;
    color: var(--clr-muted);
    margin-bottom: 8px;
    display: block;
}

.blog-card__title {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 auto;
    color: var(--clr-dark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--clr-accent); }

.blog-card__link {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border);
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-accent);
}
.blog-card__link:hover { color: var(--clr-accent-dark); }

@media(max-width:991.98px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:575.98px) { .blog-grid { grid-template-columns: 1fr; gap: 14px; } }
