@font-face {
    font-family: 'RBMultima';
    src: url('font/RBMultima-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'RBRationalNeueNarrow';
    src: url('font/RBRationalNeueNarrow-Medium.ttf') format('truetype'),
        url('font/RB_Rational_Neue_Narrow-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'RBRationalNeueNarrow';
    src: url('font/RBRationalNeueNarrow-SemiBold.ttf') format('truetype'),
        url('font/RB_Rational_Neue_Narrow-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'TTBackwardsScript';
    src: url('font/TTBackwardsScript-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body,
header,
.header,
.navbar {
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #FCFBF4;
    /* Soft off-white matching the theme */
    overflow-x: hidden;
}

/* Hero-colored top region: top bar + header + hero share the active slide color */
.top-bar,
header,
.hero {
    background-color: var(--hero-bg, #F8F5B7);
    transition: background-color 0.6s ease;
}

/* Subpage Overrides (White backgrounds) */
body.subpage-body {
    background-color: #FFFFFF !important;
}

body.subpage-body .top-bar,
body.subpage-body header,
body.subpage-body .navbar {
    background-color: #FFFFFF !important;
}

/* Sticky header */
header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* After scrolling 50px, the header turns white */
header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(16, 45, 62, 0.08);
}



/* Logo transparent background and sizing */
.logo,
.header-logo,
header img,
.navbar img,
.navbar-brand img {
    background-color: transparent !important;
    background: transparent !important;
}

.header-logo {
    height: 70px;
    width: auto;
}

/* Top bar styles */
.top-bar {
    font-size: 0.85rem;
    font-weight: 400;
}

.top-bar a {
    transition: opacity 0.2s ease;
}

.top-bar a:hover {
    opacity: 0.75;
}

/* Hide top bar on mobile */
@media (max-width: 767.98px) {
    .top-bar {
        display: none;
    }
}

/* Top bar layout */
.top-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.4rem;
}

/* Mobile: row 1 social (left), row 2 phone (left) + email (right) */
.top-bar-inner .social-icons {
    flex: 0 0 100%;
    justify-content: flex-start;
}

.top-bar-inner .tb-phone {
    margin-right: auto;
    text-align: left;
}

.top-bar-inner .tb-email {
    text-align: right;
}

/* Separator only visible on desktop */
.tb-sep {
    display: none;
    margin: 0 0.75rem;
}

/* Desktop: social left, phone | email grouped right */
@media (min-width: 768px) {
    .top-bar-inner .social-icons {
        flex: 0 0 auto;
        margin-right: auto;
    }

    .top-bar-inner .tb-phone {
        margin-right: 0;
    }

    .tb-sep {
        display: inline;
    }
}

/* Navbar styles */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 300;
    color: #102D3E !important;
    letter-spacing: 0;
    padding: 0.5rem 0.3rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #102D3E !important;
}

/* Menu Button */
.btn-menu {
    background-color: #1B3E53 !important;
    color: #FFF !important;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #102D3E;
}

.btn-menu:hover {
    background-color: transparent !important;
    color: #102D3E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(16, 45, 62, 0.15);
}

/* ============================================
   Hero Slider
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-stage {
    position: relative;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    aspect-ratio: 1512 / 933;
}

/* Slides stacked; inactive ones are hidden (their inner parts animate in) */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* Outgoing slide slides straight up and out (stays visible, no fade) */
.hero-slide.is-leaving {
    opacity: 1;
    transform: translateY(-100%);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Scattered fruits overlay (each slide) */
.hero-fruits {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
}

/* Step 1: the surrounding fruits come in first, then keep a gentle drift */
.hero-slide.is-active .hero-fruits {
    animation:
        fruitsIn 0.7s ease-out both,
        fruitsDrift 5s ease-in-out 1.7s infinite;
}

@keyframes fruitsIn {
    0% {
        transform: translateY(70vh);
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Very subtle continuous drift after the entrance */
@keyframes fruitsDrift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-slide.is-active .hero-fruits,
    .hero-slide.is-active .hero-bowl {
        animation: none;
    }
}

/* Big background wordmark */
.hero-title {
    position: absolute;
    inset: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 13vw, 204px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-indent: 0.01em;
    /* offset trailing letter-spacing so text stays centered */
    color: #FFFFFF;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

/* Slide 2 (Mevsim Salata) has a longer title, so a smaller size */
.hero-slide-salata .hero-title {
    font-size: clamp(38px, 10.5vw, 185px);
}

/* Soft circle behind the bowl */
.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
}

/* Center bowl */
.hero-bowl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34%;
    max-width: 560px;
    height: auto;
    z-index: 4;
    filter: drop-shadow(0 18px 30px rgba(16, 45, 62, 0.18));
}

/* Step 2: after the fruits, the plate rises from the bottom, overshoots up,
   then settles — the eye-catching moment */
.hero-slide.is-active .hero-bowl {
    animation: bowlDrop 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes bowlDrop {
    0% {
        transform: translate(-50%, calc(-50% + 65vh));
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    65% {
        /* smooth rise, overshooting a bit above the resting spot */
        transform: translate(-50%, calc(-50% - 26px));
    }

    82% {
        /* small dip back down */
        transform: translate(-50%, calc(-50% + 6px));
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.is-active .hero-bowl {
        animation: none;
    }
}


/* Ingredient description (top-right) */
.hero-desc {
    position: absolute;
    top: 4%;
    right: 3%;
    width: 22%;
    max-width: 320px;
    margin: 0;
    text-align: right;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #102D3E;
    z-index: 5;
}

/* Pagination dots */
.hero-dots {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.55rem;
    z-index: 6;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: rgba(16, 45, 62, 0.25);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
    background-color: #102D3E;
    transform: scale(1.15);
}

/* Product card (bottom-right) — glass pill */
.hero-card {
    position: absolute;
    bottom: 6%;
    right: 4%;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 1.8rem 0.35rem 0.35rem;
    background-color: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(16, 45, 62, 0.08);
    text-decoration: none;
    z-index: 6;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(16, 45, 62, 0.14);
}

.hero-card-thumb {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    background-color: #F8F5B7;
}

.hero-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vertical divider between image and text */
.hero-card-divider {
    width: 1px;
    height: 42px;
    flex: 0 0 auto;
    background-color: rgba(16, 45, 62, 0.18);
}

.hero-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #102D3E;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Desktop: fit header + hero into the viewport height (e.g. 1920x1080) */
@media (min-width: 992px) {
    .hero-stage {
        /* ~140px top chrome (top bar + header) */
        height: calc(100vh - 140px);
        max-height: 933px;
        /* native fruit-layout height */
        width: auto;
        aspect-ratio: 1512 / 933;
    }

    /* Bigger bowl, sized by the stage height */
    .hero-bowl {
        width: auto;
        height: 82%;
        max-width: none;
    }
}

/* Tablet / mobile tuning */
@media (max-width: 991.98px) {

    /* Taller, roughly full-height hero so it doesn't look cramped */
    .hero-stage {
        aspect-ratio: auto;
        min-height: calc(100vh - 105px);
    }

    .hero-title {
        font-size: clamp(42px, 16vw, 120px);
    }

    .hero-slide-salata .hero-title {
        font-size: clamp(30px, 12.5vw, 96px);
    }

    /* Description centered near the top */
    .hero-desc {
        top: 11%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 86%;
        max-width: 360px;
        text-align: center;
        font-size: 0.9em;
        line-height: 1.5;
    }

    /* Bigger circle + bowl to fill the vertical space */
    .hero-circle {
        width: 78%;
    }

    .hero-bowl {
        width: 66%;
    }

    /* Product card centered, sitting above the dots */
    .hero-card {
        bottom: 12%;
        right: 50%;
        transform: translateX(50%);
        padding: 0.35rem 1.3rem 0.35rem 0.35rem;
    }

    .hero-card:hover {
        transform: translateX(50%) translateY(-3px);
    }

    .hero-card-thumb {
        width: 54px;
        height: 54px;
    }

    .hero-card-divider {
        height: 38px;
    }

    .hero-card-title {
        font-size: 0.9rem;
    }

    .hero-dots {
        bottom: 5%;
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background-color: #FBF3E7;
    padding: 5rem 0;
}

.about-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 1.1rem;
}

.about-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #102D3E;
    margin: 0 0 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .about {
        padding: 3rem 0;
    }

    .about-heading {
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   Dishes Banner (zemin.svg)
   ============================================ */
.dishes {
    position: relative;
    background-color: #F8F5B7;
    /* yellow strip, continues from About */
    padding-top: 48px;
    overflow: hidden;
}

/* Navy band (zemin.svg) pinned to the bottom */
.dishes::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: #063A50 url('img/zemin.svg') center / cover no-repeat;
}

.dishes .container {
    position: relative;
    z-index: 1;
}

/* Viewport shows exactly 3 dishes (slot widths set by JS).
   Left edge stays at the container; the right breaks out to the viewport edge. */
.dishes-row {
    overflow: hidden;
    padding-bottom: 48px;
    margin-right: calc((100vw - 90%) / -2);
}

/* Track holding all dishes; shifted one step at a time by JS */
.dishes-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
}

.dish-img {
    height: 200px;
    width: auto;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.25));
}

@media (max-width: 767.98px) {
    .dishes {
        padding-top: 28px;
    }

    .dishes::after {
        height: 80px;
    }

    .dishes-row {
        gap: 0.75rem;
        padding-bottom: 28px;
    }

    .dish-img {
        height: 105px;
    }
}

/* ============================================
   Discover Marquee
   ============================================ */
.discover,
.discover2 {
    background-color: #E05B5B;
    overflow: hidden;
    height: clamp(170px, 18vw, 345px);
    display: flex;
    align-items: center;
}

.discover-track,
.discover2-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: discoverScroll 32s linear infinite;
}

.discover-track:hover,
.discover2-track:hover {
    animation-play-state: paused;
}

/* List is duplicated, so move by half for a seamless loop */
@keyframes discoverScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.discover-text,
.discover2-text {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(44px, 8vw, 96px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

.discover-btn,
.discover2-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background-color: #DDD53F;
    color: #102D3E;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 999px;
    transition: transform 0.2s ease;
}

.discover-btn:hover,
.discover2-btn:hover {
    transform: scale(1.05);
    color: #102D3E;
}

@media (prefers-reduced-motion: reduce) {

    .discover-track,
    .discover2-track {
        animation: none;
    }
}

/* ============================================
   Curved Gallery
   ============================================ */
.gallery {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
}

/* Curved background SVG wrapper */
.gallery-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 519px;
    z-index: 2;
    pointer-events: none;
}

.gallery-bg-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Curved background bottom SVG wrapper */
.gallery-bg-svg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 224px;
    z-index: 2;
    pointer-events: none;
}

.gallery-bg-svg-2 svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Heading block over the cream (copied from About, can be tweaked) */
.gallery-head {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 110px;
}

.gallery-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 1.1rem;
}

.gallery-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0;
}

/* Full-width row (edge to edge, not constrained to the container) */
.gallery-row {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 50px 0 90px;
}

.gallery-img {
    width: 24%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1024px) {
    .gallery-bg-svg,
    .gallery-bg-svg-2 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .gallery-head {
        padding-top: 40px;
    }

    .gallery-script {
        font-size: 1.2rem;
    }

    .gallery-row {
        display: flex;
        flex-wrap: wrap;
        padding: 0 15px 50px;
        margin-top: -30px;
        gap: 12px;
    }

    .gallery-img {
        width: calc(50% - 6px);
        border-radius: 8px;
    }
}

/* ============================================
   Recommendations – Günün Tavsiyeleri
   ============================================ */
.recommendations {
    background: #FFFDFB;
    padding: 80px 0 0px;
}

/* Heading */
.rec-head {
    margin-bottom: 48px;
}

.rec-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 0.8rem;
}

.rec-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0;
}

/* Cards row */
.rec-row {
    display: flex;
    gap: 20px;
}

/* Single card */
.rec-card {
    flex: 0 0 330px;
    height: 500px;
    background: #FFFFFF;
    border: 1px solid #F0EFEA;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(16, 45, 62, 0.1);
}

/* Top image area */
.rec-card-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 12px 16px;
    background: #1b3e53;
    border-radius: 14px;
    margin: 8px 8px 0;
}

/* Kcal badge */
.rec-kcal {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #4A7A59;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* Image wrapper */
.rec-img-wrap {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rec-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card body */
.rec-card-body {
    padding: 16px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Title row */
.rec-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.rec-name {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #11263C;
    margin: 0;
}

.rec-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #102D3E;
    white-space: nowrap;
}

/* Description */
.rec-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6B7B8D;
    line-height: 1.5;
    margin: 0 0 14px;
}

/* Allergen tags */
.rec-tags {
    display: flex;
    flex-wrap: wrap;
    column-gap: 14px;
    row-gap: 8px;
    margin-bottom: 18px;
}

/* Anasayfa tavsiye kartları: açıklamayı 2 satıra sınırla (sabit yükseklik korunsun) */
.recommendations .rec-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #102D3E;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rec-tag-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* CTA button */
.rec-btn {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #102D3E;
    background: #EAEAEA;
    border-radius: 10px;
    padding: 10px 0;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.25s ease, color 0.25s ease;
}

.rec-btn:hover {
    background: #102D3E;
    color: #FFFFFF;
}

/* Mobile and Tablet */
@media (max-width: 1024px) {
    .recommendations {
        padding: 50px 0 60px;
    }

    .rec-head {
        margin-bottom: 30px;
    }

    .rec-script {
        font-size: 1.2rem;
    }

    .rec-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .rec-card {
        flex: 0 0 calc(50% - 8px);
        height: auto !important;
    }

    .rec-img-wrap {
        width: 100%;
        height: 180px;
        overflow: visible;
    }

    .rec-img-wrap img {
        transform: scale(1.35);
    }
}

@media (max-width: 480px) {
    .rec-card {
        flex: 0 0 100%;
    }
}

/* Menu page: all product cards the same size */
.menu-products-section .rec-card {
    height: 540px !important;
    flex: none;
}

/* İçecekler: görselsiz fiyat listesi kartı */
.drink-card {
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #F0EFEA;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.drink-card:hover {
    border-color: #E0DED7;
    box-shadow: 0 8px 22px rgba(16, 45, 62, 0.06);
}

.drink-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.drink-name {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #11263C;
    margin: 0;
}

.drink-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #E05B5B;
    white-space: nowrap;
    flex-shrink: 0;
}

/* dotted leader arası çizgi hissi */
.drink-card-head::after {
    content: none;
}

.drink-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #8E9BAE;
    margin: 8px 0 0;
}

.drink-tags {
    margin-top: 12px;
    margin-bottom: 0;
}

/* Keep description to a fixed height so cards stay uniform */
.menu-products-section .rec-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .menu-products-section .rec-card {
        height: 520px !important;
    }
}

@media (max-width: 767.98px) {
    .menu-products-section .rec-card {
        height: auto !important;
    }
}

/* ============================================
   Statik / Yasal Sayfa
   ============================================ */
.static-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8E9BAE;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s ease;
}

.static-back:hover {
    color: #102D3E;
}

.static-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: #102D3E;
    margin: 0 0 1.75rem;
}

.static-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4A5A6A;
}

.static-body h4 {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #102D3E;
    margin: 0 0 1rem;
}

.static-body h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #102D3E;
    margin: 1.6rem 0 0.5rem;
}

.static-body p {
    margin: 0 0 1rem;
}

.static-body a {
    color: #E05B5B;
    text-decoration: none;
}

.static-body a:hover {
    text-decoration: underline;
}

/* ============================================
   Allergen Guide Page
   ============================================ */
.allergen-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #8E9BAE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.allergen-back:hover {
    color: #102D3E;
}

.allergen-divider {
    border: none;
    border-top: 1px solid #EAEDF0;
}

.allergen-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #11263C;
    margin: 0 0 1rem;
}

.allergen-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6B7280;
    max-width: 780px;
    margin: 0 0 1rem;
}

.allergen-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background-color: #F9F8F6;
    border-radius: 22px;
    padding: 18px 22px;
    margin-bottom: 1rem;
}

.allergen-icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    display: flex;
    border: 1px solid #EAE6E1;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;

    border-radius: 16px;
    box-shadow: #102d3e1a;
}

.allergen-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.allergen-name {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 21px;
    color: #102D3E;
    margin: 0 0 0.2rem;
}

.allergen-desc {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-size: 17px;
    color: #A0AAB5;
    margin: 0;
}

/* ============================================
   About Page
   ============================================ */
/* Story visual */
.story-visual {
    position: relative;
}

.story-shape {
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 68%;
    height: 68%;
    background-color: #F8F5B7;
    border-radius: 28px;
    z-index: 0;
}

.story-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(16, 45, 62, 0.15);
}

.about-lead {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #E05B5B;
    margin: 0;
}

/* Values */
.about-values {
    position: relative;
    background-color: #FBF3E7;
    padding: 6.5rem 0;
    overflow: hidden;
}

/* Signature curved transition: white above flows down into the cream */
.about-values::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -10%;
    right: -10%;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Matching curve at the bottom: cream flows back into white below */
.about-values::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -10%;
    right: -10%;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.values-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: #102D3E;
    margin: 0;
}

.value-card {
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: 0 12px 30px rgba(16, 45, 62, 0.05);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: #F8F5B7;
    border-radius: 18px;
    margin-bottom: 1.25rem;
}

.value-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.value-title {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #102D3E;
    margin: 0 0 0.6rem;
}

.value-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #6B7B8D;
    margin: 0;
}

/* Stats */
.about-stats {
    background-color: #102D3E;
    padding: 3.5rem 0;
}

.stat-num {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1;
    color: #F8F5B7;
}

.stat-label {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
}

/* CTA */
.about-cta {
    padding: 5rem 0;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: #F8F5B7;
    border-radius: 30px;
    padding: 44px 48px;
}

.about-cta-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.4rem;
    color: #E05B5B;
    margin: 0 0 0.3rem;
}

.about-cta-title {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    color: #102D3E;
    margin: 0;
}

@media (max-width: 767.98px) {
    .about-cta-box {
        padding: 32px 26px;
    }

    .story-shape {
        left: -10px;
        bottom: -10px;
    }
}

/* ============================================
   Floating WhatsApp button
   ============================================ */
.wp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 1040;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: wpPulse 2.6s ease-in-out infinite;
}

.wp-float:hover {
    color: #FFFFFF;
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

@keyframes wpPulse {

    0%,
    100% {
        box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.75);
    }
}

@media (max-width: 575.98px) {
    .wp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wp-float {
        animation: none;
    }
}

/* ============================================
   Contact Page
   ============================================ */
.contact-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.5rem;
    color: #E05B5B;
    margin: 0 0 0.4rem;
}

.contact-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: #102D3E;
    line-height: 1;
    margin: 0 0 1rem;
}

.contact-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6B7B8D;
    max-width: 720px;
    margin: 0;
}

/* Info cards (same language as the allergen cards) */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background-color: #F9F8F6;
    border-radius: 22px;
    padding: 18px 22px;
    margin-bottom: 1rem;
}

.contact-info-icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #EAE6E1;
    border-radius: 16px;
    color: #E05B5B;
    font-size: 1.2rem;
}

.contact-info-label {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #102D3E;
    margin: 0 0 0.15rem;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #383839;
    margin: 0;
}

.contact-info-text a {
    color: #383839;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: #1B3E53;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-socials-text {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #102D3E;
}

.contact-social {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #102D3E;
    color: #FFFFFF;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-social:hover {
    background-color: #E05B5B;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Form */
.contact-form {
    background-color: #F9F8F6;
    border-radius: 26px;
    padding: 32px;
}

.contact-field-label {
    display: block;
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #102D3E;
    margin-bottom: 0.4rem;
}

.contact-field {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #EAE6E1;
    border-radius: 14px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #102D3E;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field::placeholder {
    color: #B7C0CA;
}

.contact-field:focus {
    outline: none;
    border-color: #102D3E;
    box-shadow: 0 0 0 3px rgba(16, 45, 62, 0.06);
}

textarea.contact-field {
    resize: vertical;
    min-height: 120px;
}

.contact-form-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2E7D32;
}

/* Google Map */
.contact-map {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #EAE6E1;
    box-shadow: 0 12px 30px rgba(16, 45, 62, 0.06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}

@media (max-width: 767.98px) {
    .contact-form {
        padding: 22px;
    }

    .contact-map iframe {
        height: 320px;
    }
}

/* ============================================
   Product Detail Page
   ============================================ */
.pd-allergen-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background-color: #FFF4EC;
    border: 1px solid #F3D9C6;
    border-radius: 14px;
    padding: 12px 16px;
    margin: 1.25rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #A2543B;
}

.pd-allergen-warning i {
    color: #E05B5B;
    margin-top: 2px;
}

.pd-visual {
    position: relative;
}

.pd-bg {
    display: block;
    width: 100%;
    height: auto;
}

.pd-food {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 780px;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
}

.pd-category {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #EF4B53;
    margin: 0 0 0.75rem;
}

.pd-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    color: #11263C;
    margin: 0 0 1.25rem;
}

.pd-price {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #11263C;
    margin-bottom: 1.5rem;
}

.pd-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pd-pill {
    border: 1px solid #DCE1E6;

    border-radius: 999px;
    padding: 10px 22px;
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #11263C;
}

.pd-block {
    margin-bottom: 1.5rem;
}

.pd-label {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #868E96;
    margin: 0 0 0.5rem;
}

.pd-text {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #102D3E;
    margin: 0;
}

.pd-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.pd-allergen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #11263C;
}

.pd-allergen img {
    width: 22px;
    height: 22px;
}

.pd-divider {
    border: none;
    border-top: 1px solid #DCE1E6;
    margin: 1rem 0 1.5rem;
}

.pd-note {
    display: flex;
    gap: 1rem;
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.pd-note-label {
    flex: 0 0 160px;
    font-weight: 600;
    color: #11263C;
}

.pd-note-text {
    color: #8E9BAE;
}

@media (max-width: 767.98px) {
    .pd-note {
        flex-direction: column;
        gap: 0.15rem;
    }

    .pd-note-label {
        flex: none;
    }
}

/* ============================================
   Mobile Mega Menu
   ============================================ */

/* Custom hamburger toggle (no bootstrap icon) */
.mega-toggle {
    border: none;
    background: transparent;
    padding: 6px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    box-shadow: none !important;
}

.mega-toggle:focus {
    box-shadow: none !important;
    outline: none;
}

.mega-toggle-bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #102D3E;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate hamburger into an X when menu is open */
body.mega-open .mega-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.mega-open .mega-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.mega-open .mega-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Full-screen overlay panel */
.mega-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background-color: #FCFBF4;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
    overflow-y: auto;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(16, 45, 62, 0.1);
    padding-bottom: 1rem;
}

.mega-close {
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    color: #102D3E;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.mega-menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem;
}

.mega-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.mega-nav li {
    /* Staggered entrance animation */
    opacity: 0;
    transform: translateX(-16px);
}

.mega-menu.open .mega-nav li {
    animation: megaLinkIn 0.4s ease forwards;
}

.mega-menu.open .mega-nav li:nth-child(1) {
    animation-delay: 0.08s;
}

.mega-menu.open .mega-nav li:nth-child(2) {
    animation-delay: 0.14s;
}

.mega-menu.open .mega-nav li:nth-child(3) {
    animation-delay: 0.20s;
}

.mega-menu.open .mega-nav li:nth-child(4) {
    animation-delay: 0.26s;
}

.mega-menu.open .mega-nav li:nth-child(5) {
    animation-delay: 0.32s;
}

@keyframes megaLinkIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #102D3E;
    text-decoration: none;
    text-transform: none !important;
    padding: 0.35rem 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-link:hover,
.mega-link.active {
    color: #1B3E53;
    padding-left: 8px;
}

.mega-cta {
    align-self: flex-start;
    text-align: center;
    margin-top: 0.5rem;
}

.mega-menu-footer {
    border-top: 1px solid rgba(16, 45, 62, 0.1);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-menu-footer .social-icons a {
    color: #102D3E;
    font-size: 1.15rem;
    transition: opacity 0.2s ease;
}

.mega-menu-footer .social-icons a:hover {
    opacity: 0.65;
}

.mega-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.mega-contact a {
    color: #102D3E;
    text-decoration: none;
}

/* Prevent background scroll when menu is open */
body.mega-open {
    overflow: hidden;
}

/* Only show mega menu / toggle on mobile; hide on desktop */
@media (min-width: 992px) {
    .mega-menu {
        display: none !important;
    }
}

/* ============================================
   Burger Feature Section
   ============================================ */
.burger-feature {
    background-color: #FFFFFF;
    height: 1014px;
    min-height: 1014px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bf-row {
    height: 100%;
}

.bf-left {
    padding-right: 20px;
}

.bf-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 1.2rem;
}

.bf-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0;
}

.bf-center {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bf-image {
    max-height: 90%;
    max-width: 100%;
    object-fit: contain;
}

.bf-right {
    padding-left: 20px;
}

.bf-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: #063A50;
    margin: 0;
}

/* Mobile responsive styles for Burger Feature */
@media (max-width: 991.98px) {
    .burger-feature {
        height: auto;
        min-height: auto;
        padding: 80px 0;
    }

    .bf-left,
    .bf-right {
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
    }

    .bf-center {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .bf-image {
        max-height: 450px;
    }

    .bf-text {
        font-size: 1.15rem;
    }
}

/* ============================================
   Bite Feature Section
   ============================================ */
.bite-feature {
    background-color: #FFFFFF;
}

.bf-inner-box {
    background-color: #FFF8EF;
    border-radius: 40px;
    padding: 50px;
}

.bf-inner-left {
    padding-right: 20px;
}

.bf-inner-img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bf-inner-right {
    padding-left: 40px;
}

.bf-inner-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 1.2rem;
}

.bf-inner-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0 0 1.5rem;
}

.bf-inner-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: #063A50;
    margin: 0;
}

/* Mobile responsive styles for Bite Feature */
@media (max-width: 991.98px) {
    .bf-inner-box {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .bf-inner-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .bf-inner-right {
        padding-left: 0;
        text-align: center;
    }

    .bf-inner-script {
        font-size: 1.5rem;
    }

    .bf-inner-text {
        font-size: 16px;
    }
}

/* ============================================
   Heritage Feature Section
   ============================================ */
.heritage-feature {
    background-color: #FFF8EF;
    padding: 40px 0;
}

.hf-inner-box {
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 50px;
}

.hf-inner-left {
    padding-right: 40px;
}

.hf-inner-right {
    padding-left: 20px;
}

.hf-img-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.hf-inner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hf-inner-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 1.2rem;
}

.hf-inner-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0 0 1.5rem;
}

.hf-inner-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #102D3E;
    margin: 0;
}

/* Mobile responsive styles for Heritage Feature */
@media (max-width: 991.98px) {
    .hf-inner-box {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .hf-inner-left {
        padding-right: 0;
        text-align: center;
    }

    .hf-inner-right {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .hf-img-wrapper {
        border-radius: 20px;
        border-width: 3px;
    }

    .hf-inner-script {
        font-size: 1.5rem;
    }

    .hf-inner-text {
        font-size: 15px;
    }
}

/* ============================================
   Sharing Kitchen Section
   ============================================ */
.sharing-kitchen {
    background-color: #FFFFFF;
}

.sk-inner-box {
    background-color: #F9F9F9;
    border-radius: 40px;
    padding: 50px 60px;
}

.sk-left {
    padding-right: 20px;
}

.sk-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #102D3E;
    margin: 0 0 0.8rem;
}

.sk-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #102D3E;
    margin: 0;
}

.sk-cards-container {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.sk-card {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.sk-card:hover {
    transform: translateY(-4px);
}

.sk-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sk-card-text {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    color: #102D3E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive styles for Sharing Kitchen */
@media (max-width: 991.98px) {
    .sk-inner-box {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .sk-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .sk-cards-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .sk-card {
        flex: 0 0 calc(50% - 6px);
        padding: 20px 10px;
    }

    .sk-icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .sk-card-text {
        font-size: 10px;
    }
}

/* ============================================
   Site Footer
   ============================================ */
.site-footer {
    background-color: #1B3E53;
    position: relative;
}

.site-footer>.container {
    padding-top: 70px !important;
    padding-bottom: 40px !important;
}

.footer-top-stripe {
    height: 6px;
    background-color: #E05B5B;
    width: 100%;
}

.footer-subtitle {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 0.5rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.3rem;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social-icons .social-icon:hover {
    background-color: #FFFFFF;
    color: #1B3E53;
    border-color: #FFFFFF;
}

.follow-us-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.footer-links-menu {
    list-style: none;
}

.footer-links-menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.footer-links-menu a:hover {
    opacity: 0.7;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    opacity: 1;
}

.adshub-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.adshub-bold {
    font-weight: 900;
    font-size: 19px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.adshub-sub {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: #99A6B2;
    letter-spacing: 0.3px;
    margin-top: -2px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #A2B3C0;
}

.footer-bottom-links {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #A2B3C0;
}

.footer-bottom-links a {
    color: #A2B3C0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

/* Mobile responsive styles for Footer */
@media (max-width: 767.98px) {
    .footer-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-row {
        justify-content: center;
        flex-direction: column;
        gap: 15px !important;
    }

    .footer-social-section {
        flex-direction: column;
        gap: 10px !important;
    }

    .footer-right {
        justify-content: center !important;
    }

    .footer-links-menu {
        justify-content: center !important;
        gap: 15px 25px !important;
    }

    .copyright-text {
        font-size: 12px;
    }

    .footer-bottom-links {
        text-align: center;
        font-size: 12px;
    }
}

/* ============================================
   Menu & Products Page Styles
   ============================================ */
.menu-categories-nav {
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.categories-list {
    display: flex;
    list-style: none;
    flex-wrap: nowrap !important;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.categories-list::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.categories-list li {
    flex: 0 0 auto;
}

.cat-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    color: #8E9BAE;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-block;
    transition: color 0.25s ease;
}

/* Hover / active: RB Rational Neue Narrow SemiBold, dark, underlined */
.cat-link:hover,
.cat-link.active {
    color: #102D3E;
    font-weight: 600;
}

.cat-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #102D3E;
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.cat-link:hover::after,
.cat-link.active::after {
    transform: scaleX(1);
}

.cat-allergen-btn {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #102D3E;
    text-decoration: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cat-allergen-btn:hover {
    opacity: 0.7;
}

.menu-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 48px);
    color: #102D3E;
}

/* Filter components */
.btn-filter {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #102D3E;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s ease;
}

.btn-filter:hover {
    border-color: #102D3E;
}

.btn-pill-filter {
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-pill-filter:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* Aktif (seçili) diyet filtresi */
.btn-pill-filter.active {
    box-shadow: 0 0 0 2px #102D3E inset;
    font-weight: 700;
}

.btn-pill-alerjen {
    background-color: #FFF1F0 !important;
    border: none !important;
    color: #C62828 !important;
}

.btn-pill-vegan {
    background-color: #EAF6F0;
    color: #2E7D32;
}

.btn-pill-veggie {
    background-color: #FFF8EE;
    color: #D87D0D;
}

.btn-pill-gluten {
    background-color: #F5F6F7;
    color: #6B7B8D;
}

.search-input-wrap {
    position: relative;
}

.search-input {
    background: #F8F8F8;
    border: none;
    border-radius: 50px;
    padding: 10px 20px 10px 45px;
    width: 200px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #102D3E;
    transition: background-color 0.2s ease;
}

.search-input:focus {
    background-color: #F0F0F0;
    box-shadow: none;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #99A6B2;
    font-size: 14px;
    pointer-events: none;
}

/* Clickable card image + name */
.rec-name {
    cursor: pointer;
    transition: color 0.15s ease;
}

.rec-name:hover {
    color: #1B3E53;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rec-img-wrap {
    cursor: pointer;
}

.rec-img-wrap img {
    transition: transform 0.3s ease;
}

.rec-img-wrap:hover img {
    transform: scale(1.05);
}

/* Nicer filter dropdowns */
.menu-products-section .dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(16, 45, 62, 0.14);
    padding: 8px;
    margin-top: 10px;
    min-width: 200px;
}

.menu-products-section .dropdown-menu.show {
    animation: dropdownIn 0.18s ease;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-products-section .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #102D3E;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.menu-products-section .dropdown-item:hover,
.menu-products-section .dropdown-item:focus {
    background-color: #F2F5F7;
    color: #102D3E;
}

.menu-products-section .dropdown-item.active,
.menu-products-section .dropdown-item:active {
    background-color: #102D3E;
    color: #FFFFFF;
}

/* Rotate the caret when the dropdown is open */
.menu-products-section .dropdown-toggle::after {
    transition: transform 0.2s ease;
}

.menu-products-section .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile: categories become a dropdown */
.cat-mobile-toggle {
    display: none;
}

@media (max-width: 991.98px) {
    .menu-categories-nav {
        position: relative;
        padding: 12px 0;
    }

    /* Toggle button showing the active category */
    .cat-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        background: #F8F8F8;
        border: 1px solid #EAEAEA;
        border-radius: 12px;
        padding: 12px 18px;
        font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
        font-weight: 600;
        font-size: 15px;
        color: #102D3E;
    }

    .cat-mobile-toggle i {
        font-size: 12px;
        color: #8E9BAE;
        transition: transform 0.2s ease;
    }

    .menu-categories-nav.open .cat-mobile-toggle i {
        transform: rotate(180deg);
    }

    /* The list becomes a dropdown panel under the toggle */
    .categories-list {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 0 !important;
        background: #FFFFFF;
        border: 1px solid #EAEAEA;
        border-radius: 12px;
        box-shadow: 0 14px 30px rgba(16, 45, 62, 0.12);
        padding: 6px;
        margin-top: 8px;
        overflow: hidden;
        display: none;
        z-index: 1025;
    }

    .menu-categories-nav.open .categories-list {
        display: flex;
    }

    .categories-list li {
        width: 100%;
    }

    .cat-link {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .cat-link:hover,
    .cat-link.active {
        background: #F2F5F7;
    }

    /* No underline bar in the vertical list */
    .cat-link::after {
        display: none;
    }

    /* Allergen link not shown in the compact mobile bar */
    /* Allergen link not shown in the compact mobile bar */
    .cat-allergen-btn {
        display: none;
    }
}

/* ============================================
   Blog Page
   ============================================ */

/* Featured Banner */
.blog-banner-link {
    text-decoration: none;
    display: block;
}

.blog-banner-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.blog-banner-link:hover .blog-banner-card {
    transform: scale(1.01);
}

.blog-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(16, 45, 62, 0.85) 0%, rgba(16, 45, 62, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 36px;
    gap: 10px;
}

.blog-banner-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #FFFFFF;
    margin: 0;
    max-width: 550px;
    line-height: 1.3;
}


.blog-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #99A6B2;
}

/* Read More Link */
.blog-read-more {
    font-family: 'RBRationalNeueNarrow', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #102D3E;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: #E05B5B;
}

.blog-read-more i {
    transition: transform 0.2s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* rec-card overrides for blog grid */
.blog-rec-card {
    flex: unset;
    height: auto;
    width: 100%;
}

.blog-img-top {
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden;
    height: 310px;
    position: relative;
}

.blog-img-top img.blog-top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.blog-rec-card:hover .blog-top-img {
    transform: scale(1.05);
}



/* Blog Detail Page */
.blog-detail-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.blog-detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4A5568;
}

.blog-article-body p {
    margin-bottom: 1.5rem;
}

.blog-quote {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #E05B5B;
    text-align: center;
    padding: 0 20px;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F7F6F3;
    color: #102D3E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background-color: #102D3E;
    color: #FFFFFF;
}

/* Sustain Values (copied from about-values) */
.sustain-values {
    position: relative;
    background-color: #FBF3E7;
    padding: 6.5rem 0;
    overflow: hidden;
}

/* Signature curved transition: white above flows down into the cream */
.sustain-values::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -10%;
    right: -10%;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Matching curve at the bottom: cream flows back into white below */
.sustain-values::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -10%;
    right: -10%;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Subscribe area */
.blog-subscribe {
    align-items: center;
}

.blog-subscribe .contact-field {
    border: 1px solid #E5DACC;
}

/* Mobile */
@media (max-width: 767.98px) {
    .blog-banner-card {
        height: 200px;
    }

    .blog-banner-overlay {
        padding: 22px 20px;
    }

    .blog-img-top {
        height: 220px;
    }

    .blog-subscribe {
        width: 100%;
    }

    .blog-subscribe .contact-field {
        max-width: 100% !important;
        flex: 1;
    }
}

/* ============ KVKK ONAY KUTUSU ============ */
.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5b6572;
    cursor: pointer;
    margin: 4px 0 2px;
}

.contact-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #E05B5B;
    cursor: pointer;
}

.contact-consent a {
    color: #E05B5B;
    text-decoration: underline;
    font-weight: 600;
}

.contact-consent a:hover {
    color: #102D3E;
}

/* ============ ÇEREZ ONAY BANNER'I ============ */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1080;
    max-width: 760px;
    margin: 0 auto;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    background: #102D3E;
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 12px 40px rgba(16, 45, 62, 0.28);
}

.cookie-banner.is-visible {
    display: flex;
    animation: cookieUp 0.4s ease both;
}

@keyframes cookieUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner-text {
    flex: 1 1 320px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #e7ecf1;
}

.cookie-banner-text a {
    color: #F8F5B7;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn-accept {
    background: #E05B5B;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #cf4b4b;
}

.cookie-btn-reject {
    background: transparent;
    color: #e7ecf1;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-reject:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 575.98px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* ============================================
   Daily Menu Section
   ============================================ */
.daily-menu-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.dm-inner-box {
    background-color: #F8F9FA;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(16, 45, 62, 0.05);
}

.dm-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 2.2rem;
    color: #E05B5B;
    margin: 0 0 10px;
}

.dm-heading {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: #102D3E;
    margin-bottom: 20px;
    font-size: 3rem;
    text-transform: uppercase;
}

.dm-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #6B7B8D;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dm-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dm-badge {
    background-color: #1B3E53;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dm-badge.kcal {
    background-color: #E05B5B;
}

.dm-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 15px 35px rgba(16, 45, 62, 0.08);
    transition: transform 0.3s ease;
}

.dm-card:hover {
    transform: translateY(-5px);
}

.dm-img-wrapper {
    flex: 0 0 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFF8EF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dm-content {
    flex: 1;
}

.dm-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #102D3E;
    margin-bottom: 15px;
}

.dm-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.dm-items li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6B7B8D;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-items li i {
    color: #E05B5B;
    font-size: 0.9rem;
}

.dm-price-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #FFF8EF;
    border-radius: 16px;
    padding: 15px 25px;
    margin-top: 10px;
}

.dm-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #E05B5B;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.dm-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #102D3E;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .dm-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .dm-items li {
        justify-content: center;
    }

    .dm-price-wrap {
        justify-content: center;
    }

    .dm-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .dm-inner-box {
        padding: 30px 20px;
    }

    .dm-img-wrapper {
        flex: 0 0 150px;
        height: 150px;
    }
}

.dm-generic-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #6B7B8D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dm-generic-desc strong {
    color: #102D3E;
}

.dm-generic-desc small {
    font-size: 0.85rem;
    color: #99A6B2;
}

/* ============================================
   Page Hero (Breadcrumb)
   ============================================ */
.page-hero {
    background-color: #1B3E53;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: left;
    position: relative;
    border-bottom: none;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(16, 45, 62, 0.95) 0%, rgba(16, 45, 62, 0.4) 100%);
    z-index: 1;
}

.page-hero .container {
    z-index: 2;
}

.page-hero-title {
    font-family: 'RBMultima', 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.page-hero .breadcrumb {
    justify-content: flex-start;
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.page-hero .breadcrumb-item a:hover {
    color: #FFFFFF;
}

.page-hero .breadcrumb-item.active {
    color: #E05B5B;
    font-weight: 600;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "\f105";
    /* FontAwesome angle-right */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 10px;
}

/* ============================================
   About Hero Typography
   ============================================ */
.about-hero-script {
    font-family: 'TTBackwardsScript', cursive;
    font-size: 1.5rem;
    color: #E05B5B;
    margin: 0 0 0.4rem;
}

.about-hero-title {
    font-family: 'RBMultima', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: #102D3E;
    line-height: 1;
    margin: 0 0 1rem;
}

.about-hero-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6B7B8D;
    margin: 0;
}

/* Product Detail Hero Image Scaling */
.pd-hero-img {
    object-fit: contain;
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 5;
    background-color: #1b3e53;
    transform: scale(1.0);
    border-radius: 10px;

}
