/* =========================================================
   KEN'S FOODEXPRESS - WEBSHOP
   Warme stijl gebaseerd op gekozen optie 1
   ========================================================= */


/* =========================================================
   ALGEMEEN
   ========================================================= */

.shop-page {
    background: #fbf8ef;
}


/* =========================================================
   HERO
   ========================================================= */

.shop-home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 30%, rgba(244,196,0,.10), transparent 28%),
        linear-gradient(135deg, #fffaf0 0%, #fbf8ef 100%);
    border-top: 1px solid rgba(4,60,33,.06);
    border-bottom: 1px solid rgba(4,60,33,.08);
}

.shop-home-hero::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 50px;
    width: 420px;
    height: 420px;
    opacity: .09;
    border-radius: 50%;
    background:
        repeating-conic-gradient(
            from 12deg,
            rgba(7,90,49,.28) 0deg 3deg,
            transparent 3deg 18deg
        );
    transform: rotate(-15deg);
    pointer-events: none;
}

.shop-home-hero-grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: stretch;
}

.shop-home-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 62px 48px 54px 0;
}

.shop-home-kicker {
    margin: 0 0 8px;
    color: #c62828;
    font-size: .94rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.shop-home-copy h1 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(3.7rem, 5.4vw, 5.6rem);
    line-height: .93;
    letter-spacing: -.055em;
    font-weight: 900;
}

.shop-home-copy h1 span {
    display: block;
}

.shop-home-script {
    width: max-content;
    margin: 14px 0 15px;
    color: #e1a700;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1;
    transform: rotate(-2deg);
    border-bottom: 3px solid #e1a700;
}

.shop-home-intro {
    max-width: 500px;
    margin: 12px 0 22px;
    color: #1f2d26;
    font-size: 1.08rem;
    line-height: 1.58;
}

.shop-home-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    transition: .2s ease;
}

.shop-button:hover {
    transform: translateY(-2px);
}

.shop-button-primary {
    background: var(--green);
    color: #fff;
}

.shop-button-secondary {
    background: #fff;
    color: var(--green-dark);
    border: 2px solid var(--green);
}

.shop-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    max-width: 560px;
}

.shop-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-benefit > span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-weight: 900;
}

.shop-benefit strong,
.shop-benefit small {
    display: block;
}

.shop-benefit strong {
    color: var(--green-dark);
    font-size: .9rem;
}

.shop-benefit small {
    color: var(--muted);
    font-size: .76rem;
}


/* =========================================================
   HERO FOTO
   ========================================================= */

.shop-home-photo {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.shop-home-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            #fbf8ef 0%,
            rgba(251,248,239,.72) 7%,
            rgba(251,248,239,.15) 17%,
            transparent 29%
        );
    pointer-events: none;
}

.shop-home-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 52%;
    transform: scale(1.05);
}


/* =========================================================
   SUBTIELE SURINAAMSE VLAG
   ========================================================= */

.shop-home-flag-accent {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 24px;
    width: 118px;
    height: 28px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 18px rgba(0,0,0,.16);
}

.shop-home-flag-accent::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            #08723d 0 20%,
            #ffffff 20% 30%,
            #c8102e 30% 70%,
            #ffffff 70% 80%,
            #08723d 80% 100%
        );
}

.shop-home-flag-accent strong {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    color: #f4c400;
    font-size: 16px;
}


/* =========================================================
   AFHALEN / BEZORGING / CATERING
   ========================================================= */

.shop-service-section {
    background: #fff;
    padding: 28px 0 34px;
}

.shop-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.shop-service-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(4,60,33,.08);
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(4,60,33,.07);
}

.shop-service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-weight: 900;
}

.shop-service-content h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 1.22rem;
}

.shop-service-subtitle {
    margin: 2px 0 7px !important;
    color: #d3a300 !important;
    font-weight: 800;
}

.shop-service-content p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.shop-service-content a {
    color: var(--green);
    text-decoration: none;
    font-weight: 900;
}


/* =========================================================
   CATEGORIEC‹N
   ========================================================= */

.shop-category-section {
    padding: 54px 0 68px;
    background: #fbf8ef;
}

.shop-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.shop-section-kicker {
    margin: 0 0 4px;
    color: #d3a300;
    font-size: .9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.shop-section-heading h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1;
}

.shop-section-heading > p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.shop-category-card {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(4,60,33,.08);
    border-radius: 16px;
    box-shadow: 0 9px 28px rgba(4,60,33,.08);
    text-decoration: none;
    overflow: hidden;
    transition: .2s ease;
}

.shop-category-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 5px;
    background: var(--yellow);
    transition: right .2s ease;
}

.shop-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 36px rgba(4,60,33,.13);
    border-color: rgba(244,196,0,.7);
}

.shop-category-card:hover::after {
    right: 0;
}

.shop-category-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 1.1rem;
    font-weight: 900;
}

.shop-category-copy {
    flex: 1 1 auto;
}

.shop-category-copy h3 {
    margin: 0 0 7px;
    color: var(--green-dark);
    font-size: 1.12rem;
}

.shop-category-copy p {
    margin: 0 0 10px;
    color: var(--text);
    font-size: .88rem;
    line-height: 1.45;
}

.shop-category-copy small {
    color: var(--muted);
    font-size: .77rem;
}

.shop-category-arrow {
    position: absolute;
    right: 18px;
    bottom: 15px;
    color: var(--green);
    font-size: 1.6rem;
    font-weight: 900;
}


/* =========================================================
   CATEGORIEPAGINA
   ========================================================= */

.shop-category-page {
    padding: 58px 0 72px;
}

.shop-category-page-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(4,60,33,.10);
}

.shop-category-page-header h1 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1;
}

.shop-category-page-header > div > p:last-child {
    max-width: 650px;
    margin: 10px 0 0;
    color: var(--muted);
}

.shop-back-button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 2px solid var(--green);
    border-radius: 10px;
    color: var(--green);
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}


/* =========================================================
   PRODUCTEN
   ========================================================= */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.shop-product-card {
    display: grid;
    grid-template-columns: 145px 1fr;
    min-height: 165px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(4,60,33,.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(4,60,33,.07);
    transition: .2s ease;
}

.shop-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(4,60,33,.11);
}

.shop-product-image {
    min-height: 165px;
    background: var(--green-soft);
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-image-empty {
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 2rem;
    font-weight: 900;
    background:
        radial-gradient(circle at 30% 30%, rgba(244,196,0,.13), transparent 40%),
        var(--green-soft);
}

.shop-product-content {
    padding: 20px;
}

.shop-product-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.shop-product-heading h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 1.1rem;
    line-height: 1.25;
}

.shop-product-price {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 9px;
    background: #fff0aa;
    color: var(--green-dark);
    font-weight: 900;
}

.shop-product-content p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.shop-product-description-empty {
    font-style: italic;
    opacity: .85;
}


/* =========================================================
   KWALITEITSBALK
   ========================================================= */

.shop-quality-strip {
    background:
        linear-gradient(
            90deg,
            #ffe292,
            #fff0bd
        );
    border-top: 1px solid rgba(160,110,0,.16);
    border-bottom: 1px solid rgba(160,110,0,.16);
}

.shop-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.shop-quality-item {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 22px;
    border-right: 1px solid rgba(150,100,0,.18);
}

.shop-quality-item:last-child {
    border-right: 0;
}

.shop-quality-item > span {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 2px solid var(--green);
    border-radius: 50%;
    color: var(--green);
    font-weight: 900;
}

.shop-quality-item strong,
.shop-quality-item small {
    display: block;
}

.shop-quality-item strong {
    color: var(--green-dark);
    font-size: .92rem;
}

.shop-quality-item small {
    color: var(--text);
    font-size: .8rem;
}


/* =========================================================
   MELDINGEN
   ========================================================= */

.menu-message {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 18px 22px;
    border-left: 5px solid var(--yellow);
    border-radius: 12px;
    background: #fff7d4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .shop-home-hero-grid {
        grid-template-columns: 1fr;
    }

    .shop-home-copy {
        padding: 48px 0 28px;
    }

    .shop-home-photo {
        min-height: 360px;
        border-radius: 18px;
        margin-bottom: 30px;
    }

    .shop-home-photo::before {
        display: none;
    }

    .shop-home-flag-accent {
        right: 30px;
        bottom: 42px;
    }

    .shop-service-grid {
        grid-template-columns: 1fr;
    }

    .shop-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .shop-quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-quality-item:nth-child(2) {
        border-right: 0;
    }
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 620px) {

    .shop-home-copy h1 {
        font-size: 3.1rem;
    }

    .shop-home-script {
        font-size: 2.6rem;
    }

    .shop-benefits {
        grid-template-columns: 1fr;
    }

    .shop-home-photo {
        min-height: 280px;
    }

    .shop-home-flag-accent {
        width: 90px;
        height: 22px;
        right: 18px;
        bottom: 40px;
    }

    .shop-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-category-grid {
        grid-template-columns: 1fr;
    }

    .shop-category-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-back-button {
        width: 100%;
        justify-content: center;
    }

    .shop-product-card {
        grid-template-columns: 1fr;
    }

    .shop-product-image {
        height: 220px;
    }

    .shop-product-heading {
        flex-direction: column;
    }

    .shop-quality-grid {
        grid-template-columns: 1fr;
    }

    .shop-quality-item {
        border-right: 0;
        border-bottom: 1px solid rgba(150,100,0,.18);
    }

    .shop-quality-item:last-child {
        border-bottom: 0;
    }
}

/* 2026: compacte menukaartintro; categorieën zitten in het hamburgermenu */
.shop-home-hero-grid { min-height:430px; }
.shop-home-copy { padding:38px 42px 58px 0; }
.shop-home-photo { min-height:430px; }
.shop-choice-buttons { margin-bottom:10px; }
.shop-choice-buttons button { font-family:inherit; cursor:pointer; }
.shop-button-catering { background:var(--green); color:#fff; }
.shop-menu-shortcut { display:block; }
.shop-card-action { padding:0; text-align:left; }
.shop-category-section { padding:28px 0 36px; background:#fffaf0; }
.shop-category-section .shop-section-heading { align-items:center; margin:0; padding:20px 24px; border:1px solid rgba(4,60,33,.1); border-radius:16px; background:#fff; box-shadow:0 8px 26px rgba(4,60,33,.07); }
.shop-category-launch { flex:0 0 auto; padding:12px 18px; border:2px solid var(--green); border-radius:10px; background:var(--green); color:#fff; }
.shop-category-grid { display:grid; margin-top:22px; }
.shop-service-card { padding:18px; }

@media(max-width:700px){
  .shop-home-hero-grid{min-height:auto;display:block}.shop-home-copy{padding:25px 0 28px}.shop-home-copy h1{font-size:2.5rem}.shop-home-script{margin:7px 0 9px;font-size:2.1rem}.shop-home-intro{margin:8px 0 14px;font-size:.97rem}
  .shop-choice-buttons{display:grid;grid-template-columns:1fr 1fr;gap:8px}.shop-choice-buttons .shop-button{min-height:43px;padding:8px 10px}.shop-choice-buttons .shop-button-catering{grid-column:1/-1}
  .shop-menu-shortcut{margin-bottom:10px}.shop-benefits{display:none}.shop-home-photo{min-height:210px;margin:0 0 26px;border-radius:14px}
  .shop-service-section{padding:16px 0}.shop-service-grid{gap:8px}.shop-service-card{grid-template-columns:43px 1fr;gap:10px;padding:13px}.shop-service-icon{width:40px;height:40px;font-size:.82rem}.shop-service-content h2{font-size:1.05rem}.shop-service-subtitle{margin:0 0 3px!important}.shop-service-content p{display:none}.shop-card-action{font-size:.84rem}
  .shop-category-section{padding:14px 0 22px}.shop-category-section .shop-section-heading{display:block;padding:15px}.shop-section-heading h2{font-size:1.45rem}.shop-category-launch{width:100%;margin-top:12px}
  .shop-quality-item{min-height:74px;padding:12px 16px}.shop-quality-item>span{width:38px;height:38px}
}


/* Vaste KenOS-keuze voor afhalen of bezorgen */
.shop-order-mode-bar{position:sticky;top:0;z-index:850;background:#fffaf0;border-bottom:1px solid rgba(4,60,33,.12);box-shadow:0 5px 18px rgba(4,60,33,.06)}
.shop-order-mode-inner{min-height:68px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.shop-order-mode-inner>div:first-child{display:flex;align-items:baseline;gap:9px;color:#043c21}
.shop-order-mode-inner>div:first-child span{color:#68746e}
.shop-order-mode-actions{display:flex;gap:8px}
.shop-order-mode-actions a{min-width:112px;padding:10px 16px;border:2px solid #075a31;border-radius:999px;color:#075a31;text-align:center;text-decoration:none;font-weight:900}
.shop-order-mode-actions a.is-active{background:#075a31;color:#fff}
@media(max-width:600px){.shop-order-mode-inner{padding:10px 0;align-items:flex-start;flex-direction:column}.shop-order-mode-actions{width:100%}.shop-order-mode-actions a{flex:1;min-width:0}}
