:root {
    --yellow: #ffd51a;
    --yellow-dark: #d7a900;
    --green: #477a24;
    --green-dark: #2f5d14;
    --cream: #f7f1e5;
    --ink: #171713;
    --muted: #6f6f67;
    --line: #e4dccd;
    --wood: #2b180d;
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}


/* ==========================================================================
   ZÁKLAD / RESET
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1288px, calc(100% - 44px));
    margin: auto;
}


/* ==========================================================================
   HLAVIČKA
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #171713;
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.brand {
    width: 265px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a {
    padding: 34px 0 30px;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--yellow);
    border-color: var(--yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn,
.cart-btn {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.cart-btn svg {width: 20px; fill: white;}

.icon-btn {
    font-size: 28px;
}

.cart-btn {
    display: flex;
    gap: 7px;
    align-items: center;
}

.cart-btn b {
    display: grid;
    flex: 0 0 20px;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow);
    color: #111;
    font-size: 11px;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #111;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.54) 38%,
            rgba(0, 0, 0, 0.05) 68%
        ),
        url("assets/syr-prirodni.jpg");
    background-size: cover;
    background-position: center 42%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: 0.14em;
    font-size: 13px;
}

.hero h2,
.section h2,
.section-heading h2,
.flavours h2,
.split-promo h2,
.payments h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.hero h2 {
    max-width: 560px;
    margin: 0;
    font-size: 82px;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hero h2 span {
    display: block;
    color: var(--yellow);
}

.hero-rule,
.accent-line {
    width: 72px;
    height: 3px;
    margin: 24px 0;
    background: var(--yellow);
}

.handwritten {
    margin: 0 0 30px;
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 34px;
    line-height: 1.25;
    transform: rotate(-2deg);
}


/* ==========================================================================
   TLAČÍTKA
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--yellow);
    color: #161612;
    box-shadow: 0 8px 24px rgba(255, 213, 26, 0.18);
}

.btn-outline {
    border: 1.5px solid var(--yellow-dark);
    background: #fff8;
    color: #2c291f;
}

.btn-cart {
    width: 100%;
    padding: 12px 18px;
    background: var(--green);
    color: #fff;
}

.btn-cart svg {width: 20px; fill: white;}

.btn-cart:hover {
    background: var(--green-dark);
}


/* ==========================================================================
   VÝHODY
   ========================================================================== */

.benefits {
    padding: 42px 0;
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefits article {
    padding: 0 30px;
    text-align: center;
    border-right: 1px solid #d6cdbd;
}

.benefits article:last-child {
    border-right: 0;
}

.benefit-icon {
    color: var(--green);
    font-size: 39px;
    line-height: 1;
}

.benefit-icon svg {
    height: 70px;
    fill: var(--green);
}

.benefits h3 {
    margin: 12px 0 6px;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.15;
}

.benefits p {
    margin: 0;
    color: #5d5a53;
    font-size: 14px;
}


/* ==========================================================================
   OBECNÉ SEKCE
   ========================================================================== */

.section {
    padding: 78px 0;
}

.row-between {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
}

.section-heading h2,
.flavours h2,
.split-promo h2 {
    margin: 0;
    font-size: 45px;
    line-height: 1.05;
}

.text-link {
    padding-bottom: 3px;
    font-size: 14px;
    font-weight: 800;
}

.text-link span {
    margin-left: 8px;
    color: var(--yellow-dark);
}


/* ==========================================================================
   PRODUKTY
   ========================================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 22px;
}

.product-card {
    overflow: hidden;
    border: 1px solid #ece7de;
    border-radius: 5px;
    background: #fff;
    box-shadow: var(--shadow);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    object-fit: cover;
}

.product-body {
    padding: 18px;
}

.product-body h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 20px;
}

.product-body p {
    min-height: 44px;
    margin: 0 0 16px;
    color: #65625c;
    font-size: 14px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #777;
}

.product-meta strong {
    color: #2f2514;
    font-family: Georgia, serif;
    font-size: 21px;
}


/* ==========================================================================
   PŮVODNÍ SEKCE FLAVOURS
   ========================================================================== */

.flavours {
    background: linear-gradient(90deg, #fbf7ef 0 50%, #eee4d3 50% 100%);
}

.flavours-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    min-height: 465px;
}

.flavours-copy {
    align-self: center;
    padding: 70px 70px 70px 0;
}

.flavours-copy p {
    max-width: 470px;
    margin: 0 0 28px;
    color: #4e4a43;
}

.flavours-photo {
    min-height: 465px;
}

.flavours-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================================================
   PŘÍCHUTĚ NAŠICH ROZTOMILÝCH SÝRŮ
   ========================================================================== */

.cheese-tastes {
    position: relative;
    overflow: hidden;
    background-image: url("/assets/bg-4.jpg");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Světlý přechod přes fotografii */
.cheese-tastes::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #f8f3e9 0%,
        #f8f3e9 28%,
        rgba(248, 243, 233, 0.95) 38%,
        rgba(248, 243, 233, 0.70) 48%,
        rgba(248, 243, 233, 0.20) 60%,
        rgba(248, 243, 233, 0) 72%
    );
}

.cheese-tastes__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    max-width: 1200px;
    min-height: 430px;
    margin: 0 auto;
    padding: 70px 30px;
}

.cheese-tastes__content {
    width: 48%;
}

.cheese-tastes h2 {
    margin: 0 0 25px;
    color: #171717;
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.05;
}

.cheese-tastes h2::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    margin-top: 20px;
    background: #e4ad19;
}

.cheese-tastes p {
    margin: 0 0 30px;
    color: #333;
    font-size: 17px;
    line-height: 1.6;
}

.cheese-tastes__button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    border: 1px solid #dba514;
    border-radius: 4px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.cheese-tastes__button:hover {
    background: #e4ad19;
    color: #111;
}

.cheese-tastes__button span {
    font-size: 20px;
}


/* ==========================================================================
   CITÁT / DŘEVĚNÝ PRUH
   ========================================================================== */

.quote-band {
    background:
        linear-gradient(rgba(37, 20, 11, 0.84), rgba(37, 20, 11, 0.84)),
        url("assets/drevo.png") center / cover;
    color: #fff;
}

.quote-inner {
    min-height: 210px;
    display: grid;
    grid-template-columns: auto 1.4fr 0.5fr 1fr;
    align-items: center;
    gap: 30px;
}

.quote-mark {
    color: var(--yellow);
    font: 120px Georgia, serif;
}

.quote-text,
.quote-note {
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 28px;
    line-height: 1.35;
}

.quote-cheese {
    font-size: 74px;
    text-align: center;
}

.quote-note {
    font-size: 25px;
    transform: rotate(-2deg);
}


/* ==========================================================================
   PROMO / PROČ PRÁVĚ ROZTOMILÉ SÝRY
   ========================================================================== */

.split-promo {
    background: #f7f3ea;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.sandwich-card,
.why-card {
    min-height: 360px;
}

.sandwich-card {
    padding: 52px 0;
    /*background:*/
    /*    linear-gradient(*/
    /*        90deg,*/
    /*        rgba(255, 251, 244, 0.96),*/
    /*        rgba(255, 251, 244, 0.65)*/
    /*    ),*/
    /*    url("assets/chlebicek.png") center / cover;*/
    background-image: url("assets/chlebicek.png");
    background-size: cover;
    background-position: center;
}

.promo-copy {
    max-width: 530px;
}

.split-promo h2 {
    font-size: 38px;
}

.split-promo h3 {
    margin: 4px 0 0;
    font-family: Georgia, serif;
    font-size: 21px;
}

.split-promo p {
    max-width: 320px;
    color: #58534b;
}

.why-card {
    position: relative;
    padding: 52px;
}

.why-card ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.why-card ul li {display: flex; align-items: center;}

.why-card ul li svg {
    width: 30px;
    fill: var(--yellow);
    margin-right: 5px;
}

/*.why-card li::before {*/
/*    content: "✓";*/
/*    display: inline-grid;*/
/*    place-items: center;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    margin-right: 10px;*/
/*    border-radius: 50%;*/
/*    background: var(--yellow);*/
/*    font-weight: 900;*/
/*}*/

.cheese-sketch {
    position: absolute;
    right: 34px;
    bottom: 24px;
    font-size: 88px;
    opacity: 0.18;
    transform: rotate(-12deg);
}


/* ==========================================================================
   PLATBY
   ========================================================================== */

.payments {
    padding: 38px 0;
    background: #fff;
}

.payments-inner {
    text-align: center;
}

.payments h2 {
    margin: 0 0 4px;
    font-size: 28px;
}

.payments p {
    margin: 0;
    color: #6d6b65;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 28px;
    font-size: 26px;
}

.comgate {
    color: #e42929;
}


/* ==========================================================================
   PATIČKA
   ========================================================================== */

.site-footer {
    padding: 52px 0 0;
    background: #171713;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 45px;
    align-items: start;
}

.footer-brand img {
    width: 230px;
}

.footer-brand p {
    margin: 8px 0;
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #f0eee8;
    font-size: 14px;
}

.footer-contact {
    color: #e2dfd8;
    font-size: 14px;
}

.footer-social {
    text-align: right;
}

.social-icons {
    font-size: 25px;
    letter-spacing: 8px;
}

.social-icons svg {
    width: 50px;
    fill: #fff;
}

.farm-sketch {
    margin-top: 18px;
    font-size: 47px;
    opacity: 0.55;
}

.handwritten-small {
    color: var(--yellow);
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 38px;
    padding: 22px 0;
    border-top: 1px solid #34342e;
    color: #95958e;
    font-size: 12px;
}


/* ==========================================================================
   RESPONSIVE - TABLET / MENŠÍ DESKTOP
   ========================================================================== */

@media (max-width: 980px) {

    .main-nav {
        display: none;
    }

    .header-inner {
        height: 74px;
    }

    .brand {
        width: 220px;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero {
        min-height: 570px;
    }

    .hero h1 {
        font-size: 66px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .benefits article:nth-child(2) {
        border-right: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flavours-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .flavours {
        background: #fbf7ef;
    }

    .flavours-copy {
        padding: 55px 0;
    }

    .flavours-photo {
        min-height: 360px;
    }

    .quote-inner {
        grid-template-columns: auto 1fr 0.5fr;
    }

    .quote-note {
        grid-column: 2 / 4;
        padding-bottom: 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-social {
        text-align: left;
    }
}


/* ==========================================================================
   RESPONSIVE - MOBIL
   ========================================================================== */

@media (max-width: 700px) {

    .cheese-tastes {
        background-position: 65% center;
    }

    .cheese-tastes::before {
        background: linear-gradient(
            90deg,
            rgba(248, 243, 233, 0.98) 0%,
            rgba(248, 243, 233, 0.95) 60%,
            rgba(248, 243, 233, 0.70) 100%
        );
    }

    .cheese-tastes__inner {
        min-height: 400px;
        padding: 50px 25px;
    }

    .cheese-tastes__content {
        width: 100%;
    }

    .cheese-tastes h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand {
        width: 180px;
    }

    .cart-btn span {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero-bg {
        background-position: 62% center;
    }

    .hero-content {
        padding-top: 78px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .handwritten {
        font-size: 26px;
    }

    .eyebrow {
        font-size: 11px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits article {
        padding: 0 12px;
    }

    .benefits h3 {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .row-between {
        flex-direction: column;
        align-items: start;
    }

    .section-heading h2,
    .flavours h2 {
        font-size: 36px;
    }

    .flavours-photo {
        min-height: 280px;
    }

    .quote-inner {
        grid-template-columns: 1fr;
        padding: 28px 0;
        text-align: center;
    }

    .quote-mark {
        display: none;
    }

    .quote-cheese {
        font-size: 58px;
    }

    .quote-note {
        grid-column: auto;
    }

    .sandwich-card,
    .why-card {
        padding: 34px 26px;
    }

    .payment-logos {
        gap: 22px;
        font-size: 21px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-social {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-brand img {
        width: 210px;
    }
}



#sectionBanner {position: relative; width: 100%; height: 620px;}
#sectionBanner .hero {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
#banner {position: relative; width: 100%; height: 620px;}
#banner .inner {width: 100%; height: 100%;}
#banner .inner .bannerList {width: 100%; height: 100%;}
#banner .inner .bannerList .cover {width: 100%; height: 100%;}
#banner .inner .bannerList .cover .photo {position: relative; z-index: 1; width: 100%; height: 100%; background-position: center; background-repeat: no-repeat; background-size: cover;}
#banner .inner .bannerList .cover .photo {display: flex; justify-content: flex-start; align-items: center;}
#banner .inner .bannerList .cover .photo {filter:brightness(.82) contrast(1.05) saturate(.9);}

#banner .swiper-pagination {bottom: 16px;}
#banner .swiper-pagination-bullet {fill: #cec7bb; opacity: 0.8; width: 12px; height: 12px;}
#banner .swiper-pagination-bullet-active {fill: #cda55c; background: #cda55c;}