/*
Theme Name: Lula Theme
Theme URI: https://lulasan.com/
Description: Clean-coded WordPress restaurant theme. No page builders.
Author: Lula Restaurant
Version: 2.0.0
Text Domain: lula-theme
*/

/* =========================================================
   VARIABLES & RESET
========================================================= */
:root {
    --red:       #c43159;
    --dark:      #0f1a1a;
    --dark-bg:   #121317;
    --beige:     #e3d5cf;
    --cream:     #f3edea;
    --off-white: #eeebe7;
    --gray:      #b8a9a3;
    --font-body:    'Raleway', sans-serif;
    --font-serif:   'Fraunces', serif;
    --font-jp:      'Raleway', sans-serif;
    --transition:   0.3s ease;
    --container:    1320px;
    --radius:       4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.65;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; }

/* =========================================================
   TYPOGRAPHY HELPERS
========================================================= */
.jp-text {
    font-family: var(--font-jp);
    color: var(--red);
    font-size: 2rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1.2rem;
}

.section-subheading {
    font-family: var(--font-jp);
    color: var(--red);
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1rem;
    text-transform: lowercase;
    font-style: italic;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(3.6rem, 5vw, 6rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 3rem;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

.btn-outline {
    background: transparent;
    color: var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }

.btn-dark {
    background: var(--dark);
    border-color: var(--dark);
}
.btn-dark:hover { background: var(--red); border-color: var(--red); }

.btn-sm { padding: 1rem 2.4rem; font-size: 1.2rem; }

/* btn-circle — deprecated, kept for safety */
.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    border: 2px solid var(--dark);
    background: transparent;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    transition: background var(--transition), color var(--transition);
}
.btn-circle:hover { background: var(--dark); color: #fff; }

/* =========================================================
   WAVE DIVIDER
========================================================= */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    /* SVG fill is naturally at top → rotate so wavy edge bites INTO section above */
    transform: rotate(180deg);
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 5rem;
}
/* Top wave: placed at top of section, no rotation needed (fill at top, wavy edge below) */


/* =========================================================
   SITE HEADER
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(243, 237, 234, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    border-bottom-color: rgba(15, 26, 26, 0.08);
    box-shadow: 0 2px 20px rgba(15, 26, 26, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
    gap: 2rem;
}

.site-logo img { height: 5rem; width: auto; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 3.6rem; }
.primary-nav a {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.3rem;
    transition: color var(--transition);
}
.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--red); }
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { width: 100%; }

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    font-size: 1.8rem;
    color: var(--dark);
    line-height: 1;
    transition: color var(--transition);
    position: relative;
}
.header-icon-btn:hover { color: var(--red); }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Search bar */
.header-search { position: relative; }
.search-popup {
    display: none;
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    width: 28rem;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    overflow: hidden;
}
.search-popup.active { display: flex; }
.search-popup input {
    flex: 1;
    padding: 1.4rem 1.6rem;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
}
.search-popup button {
    background: var(--red);
    border: none;
    color: #fff;
    padding: 0 1.6rem;
    cursor: pointer;
    font-size: 1.6rem;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.8rem;
}
.menu-toggle span {
    display: block;
    width: 2.4rem;
    height: 2px;
    background: var(--dark);
    transition: transform var(--transition), opacity var(--transition);
}

/* =========================================================
   SECTION 1: HERO
========================================================= */
.section-hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--beige);
    background-image: url('images/pattern-light.webp');
    background-repeat: repeat;
    background-size: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14rem 3rem 12rem;
    overflow: hidden;
}

.hero-top { position: relative; z-index: 2; margin-bottom: 2rem; }

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(7rem, 10vw, 15rem);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    z-index: 2;
}
.hero-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--dark);
    font-size: 0.62em;
    vertical-align: middle;
    margin: 0 0.15em;
}

.hero-image {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    max-width: 100rem;
    width: 100%;
}
.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: -4rem auto 0;
}

.hero-bottom {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    margin-top: -2rem;
}
.hero-tagline {
    text-align: left;
    max-width: 28rem;
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: 1.4;
    color: var(--dark);
}
.hero-tagline em {
    font-style: italic;
    color: var(--red);
}

.hero-badge {
    flex-shrink: 0;
}
.hero-badge img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    animation: spin 12s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* =========================================================
   SECTION 2: PROMO PRODUCTS
========================================================= */
.section-promo {
    position: relative;
    background: var(--cream);
}

.promo-item {
    display: flex;
    align-items: center;
    min-height: 70rem;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.promo-item:nth-child(even) {
    background: var(--off-white);
}
.promo-item:nth-child(odd) {
    background: var(--cream);
}

.promo-item .container {
    display: flex;
    align-items: center;
    gap: 8rem;
    width: 100%;
}
.promo-item.layout-right .container {
    flex-direction: row-reverse;
}

.promo-media {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-end;
    flex-direction: column-reverse;
}
.promo-leaves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 100%;
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}
.promo-roll {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.5s ease;
}
.promo-item:hover .promo-roll { transform: scale(1.04) translateY(-6px); }

.promo-info {
    flex: 1;
}
.promo-info .jp-text { font-size: 2.2rem; }
.promo-name {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 5vw, 6.4rem);
    font-weight: 700;
    line-height: 1;
    margin: 1.2rem 0 1.6rem;
    color: var(--dark);
}
.promo-weight {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--gray);
    letter-spacing: 0.06em;
    margin-bottom: 1.6rem;
}
.promo-desc {
    font-size: 1.5rem;
    color: rgba(15,26,26,0.7);
    line-height: 1.7;
    max-width: 42rem;
    margin-bottom: 2.8rem;
}
.promo-price {
    display: block;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 3rem;
}

/* =========================================================
   SECTION 3: CHEF / PARALLAX
========================================================= */
.section-parallax {
    position: relative;
    background-color: var(--dark);
    padding: 18rem 3rem 22rem;
    text-align: center;
    overflow: hidden;
}
.section-parallax .parallax-bg {
    position: absolute;
    inset: -20%;
    background-image: url('images/parallax-wood.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 26, 0.65);
    z-index: 0;
}

.parallax-inner {
    position: relative;
    z-index: 1;
}

.parallax-title {
    font-family: var(--font-serif);
    font-size: clamp(4.4rem, 7vw, 9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 5rem;
}

.video-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    color: #fff;
    cursor: pointer;
    transition: opacity var(--transition);
}
.video-btn:hover { opacity: 0.75; }

.video-play-icon {
    width: 7.2rem;
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
}
.video-play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 1.2rem solid transparent;
    border-bottom: 1.2rem solid transparent;
    border-left: 2rem solid #fff;
    margin-left: 0.4rem;
}
.video-btn:hover .video-play-icon {
    opacity: 0.7;
}

.video-label {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* =========================================================
   SECTION 4: POPULAR SUSHI ROLLS
========================================================= */
.section-popular {
    padding: 10rem 0;
    background: var(--cream);
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 6rem;
}
.section-heading .section-subheading { margin-bottom: 1rem; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(15,26,26,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,26,26,0.13);
}

/* Image with padding inside card — matches screenshot */
.product-card-image {
    display: block;
    margin: 2rem 2rem 0;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    flex-shrink: 0;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-body {
    padding: 1.6rem 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Top meta row: weight left, icon right */
.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

/* Weight — red, bold */
.product-weight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.03em;
}

/* Title row: name left, stars right — same line */
.product-card-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.star-rating {
    display: flex;
    flex-shrink: 0;
    gap: 2px;
    color: #f0b429;
    font-size: 1.4rem;
    padding-bottom: 0.2rem;
}
.star-rating .star-empty { color: #d9ccc7; }

.product-card-name {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.15;
}
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--red); }

.product-card-desc {
    font-size: 1.4rem;
    color: rgba(15,26,26,0.5);
    line-height: 1.55;
    margin-bottom: auto;
    padding-bottom: 1.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--off-white);
    padding-top: 1.4rem;
    margin-top: auto;
}

/* Price — serif, large, $ superscript */
.product-card-price {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.product-card-price .woocommerce-Price-currencySymbol {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
}
.product-card-price del {
    color: var(--gray);
    font-size: 1.8rem;
    font-weight: 400;
    margin-right: 0.4rem;
}
.product-card-price ins { text-decoration: none; }

/* "add to cart" / "view details" text link */
.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--red);
    white-space: nowrap;
}
.product-card-link i { font-size: 1.3rem; transition: transform var(--transition); }
.product-card-link:hover i { transform: translateX(3px); }

/* =========================================================
   SECTION 5: SUSHI SETS CTA
========================================================= */
.section-sushi-sets {
    position: relative;
    min-height: 62rem;
    display: flex;
    align-items: center;
    background-image: var(--sushi-sets-bg, none);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sushi-sets-inner {
    position: relative;
    z-index: 1;
    width: 50%;
    padding: 12rem 6rem 12rem 10rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

.sushi-sets-subheading {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 2rem;
    color: var(--red);
    line-height: 1;
}

.sushi-sets-title {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 6vw, 8.4rem);
    font-weight: 400;
    line-height: 1.0;
    color: var(--dark);
}

.sushi-sets-btn {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 1.4rem 3.6rem;
    border-radius: 2px;
    transition: background var(--transition), transform var(--transition);
}
.sushi-sets-btn:hover {
    background: #c73519;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .section-sushi-sets {
        background-position: right center;
    }
    .sushi-sets-inner {
        width: 100%;
        padding: 8rem 4rem;
        background: rgba(243, 237, 234, 0.88);
    }
}
@media (max-width: 600px) {
    .sushi-sets-inner {
        padding: 6rem 2.4rem;
    }
    .sushi-sets-title { font-size: 4.8rem; }
}

/* =========================================================
   SECTION 6: FEATURES / ABOUT
========================================================= */
.section-features {
    padding: 10rem 0;
    background: var(--dark);
    color: #fff;
}

.features-quote {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 3.5vw, 4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 8rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: border-color var(--transition), background var(--transition);
}
.feature-item:hover {
    border-color: var(--red);
    background: rgba(233, 66, 34, 0.06);
}

.feature-icon {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    color: var(--red);
    display: block;
}

.feature-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
}

.feature-desc {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* =========================================================
   SECTION 7: RESERVATION
========================================================= */
.section-reservation {
    padding: 10rem 0;
    background: var(--cream);
}

.reservation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.reservation-info .section-title { margin-bottom: 2rem; }
.reservation-info p {
    font-size: 1.6rem;
    color: rgba(15,26,26,0.65);
    line-height: 1.7;
    max-width: 38rem;
}

.reservation-form {
    background: #fff;
    border-radius: 12px;
    padding: 5rem;
    box-shadow: 0 8px 40px rgba(15,26,26,0.07);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.form-row.full { grid-template-columns: 1fr; }
.form-row.thirds { grid-template-columns: 1fr 1fr 1fr; }

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.form-field label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15,26,26,0.5);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1.4rem 1.6rem;
    border: 1.5px solid rgba(15,26,26,0.15);
    border-radius: var(--radius);
    font-size: 1.5rem;
    color: var(--dark);
    background: var(--cream);
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--red);
    outline: none;
}
.form-field textarea { resize: vertical; min-height: 12rem; }

.form-submit { margin-top: 3rem; }
.form-submit .btn { width: 100%; text-align: center; padding: 1.8rem; font-size: 1.5rem; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.75);
    padding: 8rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 5rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { margin-bottom: 2.4rem; }
.footer-logo img { height: 6rem; width: auto; }

.footer-about p {
    font-size: 1.4rem;
    line-height: 1.75;
    max-width: 30rem;
    margin-bottom: 3rem;
}

.footer-socials {
    display: flex;
    gap: 1.6rem;
}
.footer-social-link {
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3rem;
}

.footer-nav li { margin-bottom: 1.2rem; }
.footer-nav a {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover { color: var(--red); padding-left: 0.6rem; }

.footer-subscribe p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2.4rem;
}

.subscribe-form { display: flex; }
.subscribe-form input {
    flex: 1;
    padding: 1.4rem 1.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    border-radius: var(--radius) 0 0 var(--radius);
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-form input:focus { outline: none; border-color: var(--red); }
.subscribe-form button {
    background: var(--red);
    border: none;
    color: #fff;
    padding: 0 2rem;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--transition);
}
.subscribe-form button:hover { background: #c83518; }

.footer-bottom {
    padding: 2.8rem 0;
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.3);
}

/* =========================================================
   WOOCOMMERCE OVERRIDES
========================================================= */
.woocommerce-page .site-main { padding-top: 12rem; }

/* =========================================================
   VIDEO MODAL
========================================================= */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 96rem;
    aspect-ratio: 16/9;
}
.video-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-modal-close {
    position: absolute;
    top: -4.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 3.2rem;
    cursor: pointer;
    line-height: 1;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .reservation-inner { grid-template-columns: 1fr; }
    .promo-item .container { flex-direction: column !important; gap: 4rem; }
    .promo-media { flex: none; width: 80%; max-width: 40rem; }
    .primary-nav { display: none; }
    .menu-toggle { display: flex; }
    .header-inner { height: 7rem; }
}

@media (max-width: 640px) {
    html { font-size: 55%; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-row.thirds { grid-template-columns: 1fr; }
    .reservation-form { padding: 3rem 2.4rem; }
    .hero-bottom { justify-content: center; flex-direction: column; text-align: center; }
    .hero-tagline { max-width: 100%; text-align: center; }
}

/* =========================================================
   MOBILE NAVIGATION OVERLAY
========================================================= */

/* Full-screen backdrop */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 26, 26, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Slide-in panel from right */
.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 100vw);
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}
.mobile-nav-overlay.open .mobile-nav {
    transform: translateX(0);
}

/* Top bar: logo + close button */
.mobile-nav-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mobile-nav-logo img { display: block; }
.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.mobile-nav-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* Menu list */
.mobile-nav-menu {
    flex: 1;
    padding: 1rem 0;
}
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 3rem;
}
.mobile-menu-row a {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    transition: color var(--transition);
}
.mobile-menu-row a:hover,
.mobile-menu-row.is-active a {
    color: var(--red);
}

/* + toggle button */
.mobile-submenu-toggle {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), transform 0.25s ease;
}
.mobile-submenu-toggle[aria-expanded="true"] span {
    display: inline-block;
    transform: rotate(45deg);
}
.mobile-submenu-toggle:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Sub-menu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-submenu.open { max-height: 40rem; }
.mobile-submenu li {
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-submenu .mobile-menu-row {
    padding: 1.2rem 3rem 1.2rem 4.5rem;
}
.mobile-submenu .mobile-menu-row a {
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}
.mobile-submenu .mobile-menu-row a:hover { color: var(--red); }

/* Search bar — full width, large */
.mobile-nav-search {
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-search form {
    display: flex;
    align-items: center;
    background: #fff;
    margin: 0;
}
.mobile-nav-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 2rem 2.4rem;
    font-size: 1.6rem;
    color: var(--dark);
    outline: none;
    min-width: 0;
}
.mobile-nav-search input::placeholder {
    color: #aaa;
    font-size: 1.5rem;
}
.mobile-nav-search button {
    background: none;
    border: none;
    border-left: 1px solid #e5e5e5;
    padding: 0 2.4rem;
    height: 6rem;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color var(--transition);
    flex-shrink: 0;
}
.mobile-nav-search button:hover { color: var(--red); }

/* Footer: contact + socials */
.mobile-nav-footer {
    padding: 2.4rem 3rem 3.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-shrink: 0;
}
.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.mobile-nav-contact a:hover { color: #fff; }
.mobile-nav-contact i {
    color: var(--red);
    font-size: 1.2rem;
    width: 1.4rem;
    text-align: center;
}
.mobile-nav-socials {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.mobile-nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.mobile-nav-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* =========================================================
   WOOCOMMERCE — SHOP / ARCHIVE PAGE
========================================================= */
.page-header-section {
    background: var(--dark);
    padding: 10rem 0 7rem;
    text-align: center;
    color: var(--cream);
}
.page-header-section .section-subheading,
.page-header-section .section-title { color: var(--cream); }

.section-shop { padding: 8rem 0 10rem; }

/* Category filter tabs */
.shop-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
    position: sticky;
    top: 8rem;
    z-index: 100;
    background: var(--bg, #f3edea);
    padding: 1.2rem 0;
}
.filter-tab {
    display: inline-block;
    padding: 0.8rem 2.4rem;
    border: 1px solid var(--beige);
    border-radius: 10rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 6rem;
}
.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--beige);
    border-radius: var(--radius);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers.current {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.shop-empty { text-align: center; opacity: 0.6; padding: 6rem 0; }

/* =========================================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
========================================================= */
.product-breadcrumb {
    background: var(--off-white);
    padding: 1.6rem 0;
    font-size: 1.4rem;
}
.product-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.product-breadcrumb a { color: var(--gray); }
.product-breadcrumb a:hover { color: var(--red); }
.product-breadcrumb span[aria-hidden] { color: var(--gray); }
.product-breadcrumb > .container > span:last-child { color: var(--dark); font-weight: 600; }

.section-single-product { padding: 8rem 0 10rem; }

.single-product-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* Gallery */
.single-product-gallery { display: flex; flex-direction: column; gap: 1.6rem; }
.single-product-main-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}
.single-product-thumbs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.thumb-btn {
    width: 8rem;
    height: 8rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color var(--transition);
}
.thumb-btn.active,
.thumb-btn:hover { border-color: var(--red); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

/* Info */
.product-category-label {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}
.single-product-name {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 2rem;
}
.single-product-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}
.product-rating-wrap { display: flex; align-items: center; gap: 0.8rem; }
.product-review-count { font-size: 1.4rem; color: var(--gray); }
.product-review-count:hover { color: var(--red); }

.single-product-price {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 2.4rem;
}
.single-product-price del { color: var(--gray); font-size: 2.2rem; margin-right: 1rem; }
.single-product-price ins { text-decoration: none; }

.single-product-short-desc {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2.8rem;
    border-top: 1px solid var(--beige);
    padding-top: 2.4rem;
}

.single-product-attributes {
    margin-bottom: 3rem;
    border-top: 1px solid var(--beige);
    padding-top: 2rem;
}
.product-attr-row {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--beige);
}
.product-attr-label { font-weight: 700; min-width: 12rem; color: var(--dark); }
.product-attr-value { color: var(--dark); opacity: 0.8; }

.single-product-cta {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3.2rem;
}
.btn-outline {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border: 2px solid var(--dark);
    border-radius: var(--radius);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--dark); color: #fff; }

/* Description / Reviews */
.single-product-description,
.single-product-reviews {
    margin-top: 8rem;
    padding-top: 6rem;
    border-top: 1px solid var(--beige);
}
.single-product-tab-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}
.single-product-description-body {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.85;
    max-width: 80ch;
}
.single-product-description-body p { margin-bottom: 1.6rem; }
.single-product-description-body ul,
.single-product-description-body ol { margin: 1.2rem 0 1.6rem 2.4rem; }

/* Related products */
.section-related-products { padding: 0 0 10rem; }

/* =========================================================
   HAKKIMIZDA SAYFASI
========================================================= */

/* ── Sayfa Hero ─────────────────────────────────────── */
.section-page-hero {
    position: relative;
    background-color: var(--dark);
    padding: 16rem 3rem 18rem;
    text-align: center;
    overflow: hidden;
}

.section-page-hero .parallax-bg {
    position: absolute;
    inset: -20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.about-hero-bg {
    background-image: url('images/parallax-wood.jpg');
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 8vw, 10rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 2rem;
}

.page-hero-desc {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    font-family: var(--font-serif);
}

/* ── Hikayemiz ──────────────────────────────────────── */
.section-about-story { background: var(--cream); }

.about-story-item {
    padding: 10rem 0;
    border-bottom: 1px solid var(--beige);
}
.about-story-item:last-child { border-bottom: none; }

.about-story-item .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

/* Bug 3 fix: use order instead of direction:rtl to avoid text/icon direction issues */
.about-story-item--reverse .about-story-media {
    order: -1;
}

.about-story-media {
    position: relative;
    overflow: hidden; /* Bug 2 fix: prevent leaves image from causing horizontal scroll */
}

.about-story-media > img:not(.about-story-leaves):not(.about-story-food-img) {
    width: 100%;
    height: 54rem;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(15,26,26,0.15);
}

.about-story-food-img {
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
    display: block;
}

.about-story-leaves {
    position: absolute;
    inset: -10% -10%;
    width: 75%;
    pointer-events: none;
}

.about-story-badge {
    position: absolute;
    bottom: 3rem;
    right: -2rem;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 10rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(196,49,89,0.4);
}

.about-badge-year {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-story-content p {
    font-size: 1.6rem;
    color: rgba(15,26,26,0.65);
    line-height: 1.75;
}

.about-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border: 1.5px solid var(--beige);
    border-radius: 10rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.04em;
}

.about-tag i { color: var(--red); font-size: 1.2rem; }

/* ── Stats ──────────────────────────────────────────── */
.section-about-stats {
    background: var(--dark);
    padding: 8rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: rgba(196,49,89,0.08); }

.about-stat-number {
    font-family: var(--font-serif);
    font-size: clamp(4.8rem, 6vw, 8rem);
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-stat-label {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── Felsefe parallax quote ─────────────────────────── */
.about-parallax-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-style: italic;
    color: rgba(255,255,255,0.65);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Şeflerimiz ─────────────────────────────────────── */
.section-about-team {
    padding: 10rem 0;
    background: var(--cream);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.about-chef-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,26,26,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-chef-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15,26,26,0.14);
}

.about-chef-image {
    overflow: hidden;
    aspect-ratio: 5/4;
}
.about-chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-chef-card:hover .about-chef-image img { transform: scale(1.05); }

.about-chef-info {
    padding: 3rem 2.8rem;
}

.about-chef-info .jp-text {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.about-chef-name {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.about-chef-role {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.6rem;
}

.about-chef-desc {
    font-size: 1.4rem;
    color: rgba(15,26,26,0.55);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.about-chef-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: 1.5px solid var(--beige);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--dark);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.about-chef-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ── About CTA banner ───────────────────────────────── */
.section-about-cta {
    background-image: var(--about-cta-bg, none);
}

/* =========================================================
   İLETİŞİM SAYFASI
========================================================= */

/* ── Hero ───────────────────────────────────────────── */
.contact-hero-bg {
    background-image: url('images/parallax-wood.jpg');
    filter: brightness(0.85) saturate(0.9);
}

.contact-section-heading { text-align: center; }

/* ── Ana İletişim Bölümü ────────────────────────────── */
.section-contact-main {
    padding: 10rem 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-intro {
    font-size: 1.6rem;
    color: rgba(15,26,26,0.6);
    line-height: 1.75;
    text-align: center;
    max-width: 64rem;
    margin: 2rem auto 5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.4rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--beige);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(196,49,89,0.08);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: rgba(196,49,89,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--red);
}

.contact-card-body { flex: 1; }

.contact-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.contact-card-body p {
    font-size: 1.4rem;
    color: rgba(15,26,26,0.55);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--red);
    transition: gap var(--transition);
}
.contact-card-link:hover { gap: 0.9rem; }
.contact-card-link i { font-size: 1.2rem; }

.contact-socials {
    display: flex;
    gap: 1.2rem;
}
.contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border: 1.5px solid var(--beige);
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--dark);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.contact-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ── Sağ Sütun: Form Kartı ──────────────────────────── */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 5rem;
    box-shadow: 0 8px 40px rgba(15,26,26,0.08);
    height: 100%;
    box-sizing: border-box;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-header {
    margin-bottom: 3.5rem;
}
.contact-form-header .jp-text { margin-bottom: 0.6rem; }

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
}

/* ── Harita Bölümü ──────────────────────────────────── */
.section-contact-map {
    background: var(--cream);
    padding-bottom: 0;
}

.contact-map-header {
    padding: 8rem 0 5rem;
}

.contact-map-embed {
    line-height: 0;
}
.contact-map-embed iframe {
    display: block;
    width: 100%;
    filter: grayscale(15%) contrast(1.05);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .contact-inner { gap: 5rem; }
    .contact-form-card { padding: 4rem 3.5rem; }
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .contact-intro { max-width: 100%; }
}

@media (max-width: 768px) {
    .contact-form-card { padding: 3rem 2.4rem; }
    .contact-map-header { padding: 6rem 0 4rem; }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item:nth-child(2) { border-right: none; }
    .about-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
    .about-stat-item:nth-child(4) { border-right: none; }
}

@media (max-width: 900px) {
    .about-story-item .container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .about-story-item--reverse .container { direction: ltr; }
    .about-story-media > img:not(.about-story-leaves):not(.about-story-food-img) {
        height: 40rem;
    }
    .about-story-badge { right: 1rem; }
}

@media (max-width: 768px) {
    .section-page-hero { padding: 12rem 3rem 14rem; }
    .about-team-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .about-stat-item:nth-child(3) { border-right: none; }
}
.products-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .single-product-inner { grid-template-columns: 1fr; }
    .products-grid--4 { grid-template-columns: 1fr; }
    .single-product-cta { flex-direction: column; }
    .single-product-cta .btn,
    .single-product-cta .btn-outline { width: 100%; text-align: center; }
    .shop-filter-tabs { top: 7rem; }
}

/* =========================================================
   SINGLE POST
========================================================= */

/* ── Post hero ──────────────────────────────────────── */
.section-post-hero {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

.post-hero-image {
    position: relative;
    height: 52rem;
    overflow: hidden;
}
.post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,26,26,0.25) 0%,
        rgba(15,26,26,0.72) 100%
    );
}

.section-post-hero .container {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.post-hero-inner {
    max-width: 84rem;
}

.post-hero-badge { margin-bottom: 1.6rem; }

.post-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 2rem;
}

.post-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1.45rem;
    color: rgba(255,255,255,0.8);
}
.post-hero-meta i { color: var(--red); margin-right: 0.5rem; }

.section-post-hero .wave-divider {
    position: relative;
    z-index: 2;
    margin-top: -2px;
    line-height: 0;
}
.section-post-hero .wave-divider svg {
    width: 100%;
    height: 3.2rem;
    display: block;
}

/* ── Post content ───────────────────────────────────── */
.section-post-content {
    padding: 6rem 0 8rem;
}

.post-layout {
    max-width: 80rem;
    margin: 0 auto;
}

.post-content-inner {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #2a2020;
}
.post-content-inner h2,
.post-content-inner h3,
.post-content-inner h4 {
    font-family: var(--font-serif);
    color: var(--dark);
    margin: 3.2rem 0 1.2rem;
    line-height: 1.2;
}
.post-content-inner h2 { font-size: 3rem; }
.post-content-inner h3 { font-size: 2.4rem; }
.post-content-inner h4 { font-size: 2rem; }
.post-content-inner p  { margin-bottom: 2rem; }
.post-content-inner ul,
.post-content-inner ol {
    margin: 0 0 2rem 2.4rem;
}
.post-content-inner li { margin-bottom: 0.6rem; }
.post-content-inner blockquote {
    border-left: 4px solid var(--red);
    margin: 3rem 0;
    padding: 1.6rem 2.4rem;
    background: var(--off-white);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    font-size: 1.8rem;
    color: #4a3838;
}
.post-content-inner img {
    border-radius: 6px;
    margin: 2.4rem 0;
}
.post-content-inner a { color: var(--red); text-decoration: underline; }

.post-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--beige);
}
.post-tag {
    display: inline-block;
    border: 1.5px solid var(--beige);
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.post-tag:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.post-back-link {
    margin-top: 4rem;
}
.post-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--red);
    transition: gap var(--transition);
}
.post-back-link a:hover { gap: 1.2rem; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
    .post-hero-image { height: 38rem; }
    .section-post-hero .container { bottom: 3rem; }
    .post-hero-title { font-size: 3rem; }
    .post-hero-meta { gap: 1.2rem; font-size: 1.3rem; }
}

/* =========================================================
   BLOG PAGE
========================================================= */

/* ── Hero ───────────────────────────────────────────── */
.blog-hero-bg {
    background-image: url('images/parallax-wood.jpg');
    filter: brightness(0.8) saturate(0.85);
}

/* ── Category filter tabs ───────────────────────────── */
.blog-filter-tabs {
    position: sticky;
    top: 8rem;
    z-index: 100;
    background: var(--cream);
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.4rem 3.2rem;
    border-bottom: 1px solid var(--beige);
    scrollbar-width: none;
}
.blog-filter-tabs::-webkit-scrollbar { display: none; }

/* ── Featured post ──────────────────────────────────── */
.section-blog-featured {
    padding: 8rem 0 6rem;
}

.blog-featured-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.blog-featured-image {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 8 / 5;
}
.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.blog-featured-image:hover img { transform: scale(1.04); }

.blog-featured-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.blog-category-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    align-self: flex-start;
}

.blog-featured-label {
    font-family: var(--font-jp);
    font-size: 1.3rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-featured-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 3.5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--dark);
}
.blog-featured-title a { color: inherit; }
.blog-featured-title a:hover { color: var(--red); }

.blog-featured-excerpt {
    color: #5a5050;
    font-size: 1.65rem;
    line-height: 1.7;
}

.blog-featured-meta {
    display: flex;
    gap: 2rem;
    font-size: 1.4rem;
    color: var(--gray);
}
.blog-featured-meta i { color: var(--red); margin-right: 0.5rem; }

/* ── Blog grid ──────────────────────────────────────── */
.section-blog-grid {
    padding: 6rem 0 10rem;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
    margin-bottom: 6rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(15,26,26,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(15,26,26,0.12);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--red);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    pointer-events: none;
}

.blog-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.4rem 2.4rem 2rem;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--red); }

.blog-card-excerpt {
    font-size: 1.5rem;
    color: #6a5a55;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.6rem;
    border-top: 1px solid var(--beige);
}

.blog-card-meta {
    display: flex;
    gap: 1.4rem;
    font-size: 1.3rem;
    color: var(--gray);
}
.blog-card-meta i { color: var(--red); margin-right: 0.4rem; }

.blog-card-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition);
}
.blog-card-link:hover { gap: 0.9rem; }

/* ── Pagination ─────────────────────────────────────── */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.blog-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    border: 1.5px solid var(--beige);
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
}
.blog-page-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.blog-page-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    pointer-events: none;
}
.blog-page-btn.prev,
.blog-page-btn.next {
    padding: 0.8rem 2rem;
}

/* ── Empty state ────────────────────────────────────── */
.blog-empty {
    text-align: center;
    padding: 8rem 0;
    color: var(--gray);
}
.blog-empty i {
    font-size: 4.8rem;
    color: var(--beige);
    display: block;
    margin-bottom: 2rem;
}
.blog-empty p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .blog-filter-tabs { top: 7rem; padding: 1.2rem 2rem; }
    .section-blog-featured { padding: 6rem 0 4rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured-title { font-size: 2.8rem; }
}

/* =========================================================
   SSS (FAQ) SAYFASI
========================================================= */

/* Hero background */
.faq-hero-bg {
    background-image: url('images/parallax-wood.jpg');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* FAQ list container */
.section-faq {
    padding: 8rem 0 6rem;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* FAQ item */
.faq-item {
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--beige);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open {
    border-color: var(--red);
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 2rem 2.4rem;
    text-align: left;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf2f5;
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-item.open .faq-q-icon {
    background: var(--red);
    color: #fff;
    transform: rotate(15deg);
}

.faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.faq-arrow {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    transition: transform 0.3s ease;
}
.faq-arrow::before,
.faq-arrow::after {
    content: '';
    position: absolute;
    background: var(--gray);
    transition: background var(--transition), transform 0.3s ease;
}
.faq-arrow::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
.faq-arrow::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
.faq-item.open .faq-arrow::after {
    transform: translateX(-50%) rotate(90deg);
}
.faq-item.open .faq-arrow::before,
.faq-item.open .faq-arrow::after {
    background: var(--red);
}

/* Answer panel */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}
.faq-answer-inner-wrap {
    overflow: hidden;
}
.faq-answer-inner {
    padding: 0 2.4rem 2.4rem;
    margin-left: 5.2rem;
    font-size: 1.55rem;
    line-height: 1.75;
    color: #554a47;
}
.faq-answer-inner p { margin-bottom: 0.8rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a {
    color: var(--red);
    text-decoration: underline;
}

/* Filter tabs */
.faq-filter-tabs .filter-tab {
    background: none;
    border: none;
    font-family: var(--font-body);
}
.faq-filter-tabs .filter-tab.active {
    background: var(--red);
    color: #fff;
}

/* Social CTA below FAQ */
.faq-social-cta {
    max-width: 860px;
    margin: 5rem auto 0;
    padding: 3rem 3.2rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--beige);
    text-align: center;
}

.faq-social-text {
    font-size: 1.5rem;
    color: #6a5a55;
    margin-bottom: 2rem;
}

.faq-social-links {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    flex-wrap: wrap;
}

.faq-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 1.5px solid var(--beige);
    border-radius: 4px;
    color: var(--dark);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.faq-social-link i { font-size: 1.6rem; }
.faq-social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* Bottom CTA */
.section-faq-cta {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.6rem;
        gap: 1rem;
        font-size: 1.5rem;
    }
    .faq-answer-inner {
        margin-left: 0;
        padding: 0 1.6rem 1.6rem;
    }
    .faq-q-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem;
    }
    .faq-social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
/* ==============================================================
 * Google Reviews Split Layout
 * ============================================================== */
.reviews-split-layout {
    display: flex;
    min-height: 100vh; /* Actually header takes space, so calc */
    min-height: calc(100vh - 100px);
    background: #fbfbfb;
    align-items: stretch;
}

.reviews-left-col {
    flex: 1;
    background-image: url('images/sushi_dining_scene.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.reviews-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px;
    align-items: center;
    text-align: center;
}

/* Header Area */
.reviews-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 5px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
}

.overall-rating .star-rating {
    color: #ffb400;
}

/* Slider Area */
.reviews-slider-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 40px 0;
    padding: 0 50px; /* space for arrows */
}

.lulaReviewsSwiper {
    width: 100%;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.review-author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    filter: grayscale(100%);
}

.review-card h3 {
    font-size: 1.1rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0 0 5px 0;
}

.review-time {
    font-size: 0.9rem;
    color: #888;
    margin: 0 0 10px 0;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.review-stars-row .star-rating {
    color: #ffb400;
    font-size: 1.1rem;
}

.verified-icon {
    color: #1d9bf0; /* Blue verified check */
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Custom Navigation UI */
.lula-sw-prev, .lula-sw-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.lula-sw-prev:after, .lula-sw-next:after {
    font-size: 1rem; /* Swiper font trick */
}

.lula-sw-prev {
    left: 0;
}
.lula-sw-next {
    right: 0;
}

/* Footer Area */
.reviews-footer p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .reviews-split-layout {
        flex-direction: column;
    }
    .reviews-left-col {
        min-height: 300px;
    }
}
