/* =========================
   Baza / Variabile
========================= */
:root {
    --bg: #f7f3ee;
    --surface: #f7f3ee;
    --surface-deep: #f7f3ee;
    --text: #2c2621;
    --muted: #72665b;
    --accent: #a57b53;
    --line: rgba(44, 38, 33, 0.12);
    --container: 1120px;
    --header-height: 94px;
    --header-height-compact: 82px;
    --logo-row-height: 0px;
    --ease: 320ms cubic-bezier(0.22, 1, 0.36, 1);
    --ease-header: 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.72;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-info-importante a {
    font-weight: 700;
    transition: color var(--ease), text-decoration-color var(--ease);
}

.page-info-importante a:hover {
    color: var(--accent);
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.01em;
    margin: 0;
}

p {
    margin: 0;
}

.container {
    width: min(var(--container), calc(100% - 4rem));
    margin-inline: auto;
}

.section {
    padding-block: clamp(5.6rem, 8vw, 8.2rem);
}

/* Reduce gap under the smaller header on internal pages */
.catalog-main .section,
.tort-detail-main .section,
.order-main .section,
.policy-main .section,
.blog-main .section,
.blog-post-main .section {
    padding-top: clamp(2.6rem, 4.2vw, 4rem);
}

.tort-detail-main .section {
    padding-bottom: clamp(2.6rem, 4.2vw, 4rem);
}

.section-soft {
    background: var(--surface);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.page-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a6d62;
    margin-bottom: 0.95rem;
}

.page-crumbs a {
    color: inherit;
    transition: color var(--ease);
}

.page-crumbs a:hover {
    color: var(--accent);
}

.page-crumbs [aria-hidden="true"] {
    opacity: 0.5;
}

.page-crumbs [aria-current="page"] {
    font-weight: 700;
}

/* =========================
   Header
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #f7f3ee;
    border-bottom: 1px solid transparent;
    transition: background var(--ease-header), border-color var(--ease-header);
}

.header-inner {
    height: var(--header-height);
    width: min(1240px, calc(100% - 6rem));
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
    transition: height var(--ease-header);
}

@media (min-width: 981px) {
    .header-inner {
        width: min(var(--container), calc(100% - 4rem));
    }

    .header-logo-row {
        margin-left: -0.35rem;
    }
}

.header-logo-row {
    height: auto;
    max-height: none;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
    transition: opacity 220ms ease;
    order: 1;
    flex: 0 0 auto;
    position: relative;
}

.header-logo-row::after {
    content: "Gustul autentic franțuzesc!";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(5px);
    opacity: 0;
    filter: blur(5px);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.24rem, 1.6vw, 1.74rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.01em;
    color: #6b4a31;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 360ms ease, filter 420ms ease, transform 360ms ease;
}

.header-nav-row {
    width: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    border-top: 0;
    transition: none;
    order: 2;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(1.35rem, 1.65vw, 2.45rem);
}

.nav-left {
    justify-content: flex-end;
    padding-right: 0;
}

.nav-right {
    display: none;
}

.nav a {
    font-size: 0.86rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 600;
    color: #564d45;
    transition: color var(--ease), opacity var(--ease);
}

.nav a:hover {
    color: var(--accent);
}

.link-accent {
    text-decoration: underline;
    text-decoration-color: rgba(165, 123, 83, 0.52);
    text-underline-offset: 0.24em;
    text-decoration-thickness: 1px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    display: block;
    width: clamp(170px, 19vw, 245px);
    height: auto;
    transition: opacity 300ms ease, filter 300ms ease, transform 300ms ease;
}

.site-header.is-compact {
    border-bottom-color: var(--line);
    background: #f3ede5;
}

.site-header.is-compact .header-inner {
    height: var(--header-height-compact);
}

.site-header.is-compact .header-logo-row {
    opacity: 1;
    transform: translateY(0);
}

.site-header.is-compact .header-nav-row {
    border-top-color: transparent;
}

.site-header.is-compact .header-logo-row .logo img {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-4px);
}

.site-header.is-compact .header-logo-row::after {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
}

.site-header.is-compact .nav-left {
    filter: none;
    opacity: 0.9;
    transition: filter 320ms ease, opacity 320ms ease;
}

/* =========================
   Hero
========================= */
.hero {
    min-height: calc(96vh - var(--header-height));
    position: relative;
    display: grid;
    align-items: center;
    background-image: linear-gradient(rgba(20, 15, 11, 0.46),
            rgba(20, 15, 11, 0.46)),
        url("assets/img/home-bg-desktop.jpg");
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "poză cu titlu orientativ";
    position: absolute;
    right: 1rem;
    bottom: 0.9rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: rgba(252, 247, 241, 0.82);
    text-shadow: 0 1px 2px rgba(20, 15, 11, 0.55);
    pointer-events: none;
}

.hero-content {
    color: #f7f2ec;
    padding-block: clamp(5.2rem, 8vw, 8rem);
}

.hero h1 {
    font-size: clamp(2.35rem, 4.6vw, 4.6rem);
    max-width: none;
    margin-bottom: 1.2rem;
}

.hero h1 span {
    display: block;
    white-space: nowrap;
}

.hero p {
    max-width: 54ch;
    color: rgba(252, 249, 245, 0.98);
    font-size: 1.02rem;
    text-shadow:
        -0.6px 0 rgba(44, 38, 33, 0.62),
        0 0.6px rgba(44, 38, 33, 0.62),
        0.6px 0 rgba(44, 38, 33, 0.62),
        0 -0.6px rgba(44, 38, 33, 0.62);
}

.hero .eyebrow {
    color: rgba(247, 242, 236, 0.86);
}

.btn-ghost {
    display: inline-block;
    margin-top: 2.4rem;
    border: 1px solid rgba(247, 242, 236, 0.65);
    border-radius: 8px;
    padding: 0.78rem 1.32rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.btn-ghost:hover {
    background: rgba(247, 242, 236, 0.95);
    color: #28211a;
    border-color: rgba(247, 242, 236, 0.95);
}

.page-home .hero .btn-ghost {
    background: rgba(247, 242, 236, 0.95);
    color: #28211a;
    border-color: rgba(247, 242, 236, 0.95);
}

.page-home .hero .btn-ghost:hover {
    background: rgba(236, 228, 218, 0.95);
    color: #28211a;
    border-color: rgba(236, 228, 218, 0.95);
}

/* =========================
   Chef
========================= */
.chef {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(2.2rem, 6vw, 7.2rem);
    align-items: stretch;
}

.chef-image-wrap {
    margin: 0;
    aspect-ratio: 4 / 5.2;
    border-radius: 2px;
    overflow: hidden;
}

.chef-text h2 {
    font-size: clamp(2.25rem, 3.7vw, 3.85rem);
    max-width: none;
    margin-bottom: 1.3rem;
}

.chef-text h2 span {
    display: block;
    white-space: nowrap;
}

.chef-text p+p {
    margin-top: 1rem;
}

.chef-text p {
    max-width: 52ch;
    color: #4c433b;
}

.chef-text {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.chef-story-btn {
    margin-top: auto;
    align-self: flex-start;
    border-color: rgba(123, 90, 58, 0.78);
    background: rgba(165, 123, 83, 0.08);
    color: #5a4432;
    padding: 0.56rem 1.02rem;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
}

.chef-story-btn:hover {
    background: rgba(165, 123, 83, 0.16);
    border-color: rgba(123, 90, 58, 0.95);
}

/* =========================
   Locație
========================= */
.location-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 4vw, 3.6rem);
    align-items: center;
}

#locatie-title span {
    display: block;
    white-space: nowrap;
}

.location-section-lined {
    background: transparent;
    border-top: 1px solid rgba(44, 38, 33, 0.12);
    border-bottom: 1px solid rgba(44, 38, 33, 0.12);
}

.location h2 {
    font-size: clamp(2.15rem, 3.9vw, 3.55rem);
    max-width: 14ch;
}

.location-details {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    border-left: 1px solid rgba(44, 38, 33, 0.14);
    padding-left: 1.8rem;
}

.location-details dt {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 0.38rem;
}

.location-details dd {
    margin: 0;
    font-size: 1.05rem;
}

.location-details a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ease);
}

.location-details a:hover {
    color: var(--accent);
    text-decoration: none;
}

.location-social-links {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

/* =========================
   Categorii Vizuale
========================= */
.section-head {
    margin-bottom: 2.4rem;
}

.section-head h2 {
    font-size: clamp(2.1rem, 3.25vw, 3.2rem);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.45rem;
}

@media (min-width: 981px) {
    .category-grid-products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5.1;
    cursor: pointer;
    border-radius: 12px;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 21, 16, 0.56), rgba(29, 21, 16, 0.08));
    transition: background var(--ease);
    pointer-events: none;
}

.category-card a {
    display: block;
    height: 100%;
    color: inherit;
}

.category-card h3 {
    position: absolute;
    z-index: 2;
    left: 1.25rem;
    bottom: 1.1rem;
    color: #f7efe8;
    font-size: clamp(1.5rem, 2.45vw, 2.08rem);
}

.category-card img {
    transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), filter var(--ease);
}

.category-card:hover img {
    transform: scale(1.05);
    filter: saturate(1.04);
}

.category-card:hover::after {
    background: linear-gradient(to top, rgba(29, 21, 16, 0.68), rgba(29, 21, 16, 0.16));
}

/* =========================
   Politica Confidențialitate
========================= */
.policy-main {
    min-height: 65vh;
}

.policy-wrap h1 {
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    margin-bottom: 1.4rem;
}

.policy-content {
    background: rgba(252, 250, 247, 0.78);
    border: 1px solid rgba(44, 38, 33, 0.08);
    padding: clamp(1.6rem, 3vw, 2.5rem);
}

.policy-block+.policy-block {
    margin-top: 1.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 38, 33, 0.1);
}

.policy-block h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 0.65rem;
}

.policy-block p+p {
    margin-top: 0.75rem;
}

.policy-block ul {
    margin: 0.65rem 0 0 1.15rem;
    padding: 0;
}

.policy-block li {
    margin-top: 0.35rem;
}

.policy-block a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(44, 38, 33, 0.36);
}

.policy-block a:hover {
    color: var(--accent);
    text-decoration-color: rgba(165, 123, 83, 0.55);
}

.page-info-importante .policy-lead {
    max-width: 68ch;
    color: #665a50;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.page-info-importante .policy-content {
    background: rgba(252, 250, 247, 0.72);
    border: 1px solid rgba(44, 38, 33, 0.1);
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
}

.page-info-importante .policy-accordion {
    display: grid;
    gap: 0.72rem;
    margin-top: 0.2rem;
}

.page-info-importante .policy-accordion-item {
    border: 1px solid rgba(44, 38, 33, 0.12);
    background: rgba(246, 242, 236, 0.78);
}

.page-info-importante .policy-accordion-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.95rem 1.05rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.25rem, 2.05vw, 1.65rem);
    line-height: 1.14;
    color: #352c24;
}

.page-info-importante .policy-accordion-item summary::-webkit-details-marker {
    display: none;
}

.page-info-importante .policy-accordion-item summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(44, 38, 33, 0.22);
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #5f5349;
    line-height: 1;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}

.page-info-importante .policy-accordion-item[open] {
    background: rgba(252, 250, 247, 0.9);
}

.page-info-importante .policy-accordion-item[open] summary {
    border-bottom: 1px solid rgba(44, 38, 33, 0.1);
}

.page-info-importante .policy-accordion-item[open] summary::after {
    content: "−";
    border-color: rgba(165, 123, 83, 0.45);
    color: var(--accent);
    background: rgba(165, 123, 83, 0.09);
}

.page-info-importante .policy-accordion-body {
    padding: 0.85rem 1.05rem 1rem;
}

.page-info-importante .policy-accordion-body p + p {
    margin-top: 0.7rem;
}

.page-info-importante .policy-accordion-body ul,
.page-info-importante .policy-accordion-body ol {
    margin: 0.6rem 0 0 1.12rem;
    padding: 0;
}

.page-info-importante .policy-accordion-body li {
    margin-top: 0.32rem;
}

.page-info-importante .policy-accordion-body a,
.page-info-importante .policy-accordion-body a:visited,
.page-info-importante .policy-accordion-body a:hover,
.page-info-importante .policy-accordion-body a:active,
.page-info-importante .policy-accordion-body a:focus-visible {
    font-weight: 400;
}

.page-info-importante .delivery-rates-inline {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    padding: 0.5rem 0.62rem;
    border: 1px solid rgba(44, 38, 33, 0.12);
    background: rgba(241, 235, 227, 0.72);
    font-size: 0.8rem;
    line-height: 1.45;
    white-space: nowrap;
    overflow-x: auto;
}

.page-info-importante .delivery-rates-inline span + span::before {
    content: "•";
    margin-right: 0.5rem;
    color: rgba(44, 38, 33, 0.45);
}

/* =========================
   Catalog Prăjituri
========================= */
.catalog-main {
    min-height: 70vh;
}

.catalog-head {
    margin-bottom: 2rem;
}

.catalog-head h1 {
    font-size: clamp(2.35rem, 4.8vw, 4.5rem);
    margin-bottom: 0.8rem;
}

.catalog-head p {
    max-width: 58ch;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: rgba(252, 250, 247, 0.85);
    border: 1px solid rgba(44, 38, 33, 0.08);
}

.page-no-card-zoom .product-card,
.platouri-grid .product-card,
.sezon-card {
    border-radius: 12px;
    overflow: hidden;
}

.products-subsection+.products-subsection {
    margin-top: 3rem;
}

.products-subsection .section-head {
    margin-bottom: 1.2rem;
}

.product-image-btn {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    cursor: zoom-in;
    background: none;
    aspect-ratio: 4 / 4.2;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.product-image-btn img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-image-btn:hover img {
    transform: scale(1.04);
}

.page-no-card-zoom .product-image-btn:hover img {
    transform: none;
}

.page-no-card-zoom .product-image-btn {
    cursor: default;
}

.product-image-badge {
    position: absolute;
    z-index: 3;
    top: 0.65rem;
    right: 0.65rem;
    border: 1px solid rgba(82, 56, 36, 0.45);
    background: rgba(247, 242, 236, 0.92);
    color: #6a4a31;
    padding: 0.2rem 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.product-meta {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0.95rem;
}

.product-meta h2 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.product-meta p {
    flex: 1;
    font-size: 0.86rem;
    color: #5c5249;
    line-height: 1.55;
}

.product-price-row {
    margin-top: auto;
    padding-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #4c4239;
}

.product-card-price {
    font-weight: 600;
}

.product-price-row .btn-detail {
    margin-top: 0;
}

.product-card-anchor {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100%;
}

.product-card-link {
    transition: border-color var(--ease), transform var(--ease);
}

.product-card-link:hover {
    border-color: rgba(165, 123, 83, 0.35);
    transform: translateY(-2px);
}

.evenimente-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5.1;
    cursor: pointer;
    border: 0;
    background: transparent;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    border-radius: 12px;
}

.evenimente-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 21, 16, 0.64), rgba(29, 21, 16, 0.14));
    transition: background var(--ease);
    pointer-events: none;
    z-index: 1;
}

.evenimente-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(44, 38, 33, 0.14);
}

.evenimente-card:hover::after {
    background: linear-gradient(to top, rgba(29, 21, 16, 0.76), rgba(29, 21, 16, 0.2));
}

.evenimente-card .product-image-placeholder {
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    background: none;
}

.evenimente-card .product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter var(--ease);
}

.evenimente-card:hover .product-image-placeholder img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.evenimente-card .product-meta {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 1rem 1rem 1.1rem;
    pointer-events: none;
}

.evenimente-card .product-meta h2 {
    color: #f7efe8;
    font-size: clamp(1.5rem, 2.45vw, 2.08rem);
    margin-bottom: 0;
}

.evenimente-card .product-meta p {
    display: none;
}

.evenimente-card .product-meta .btn-detail {
    display: none;
}

.torturi-grid .product-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5.1;
    border: 0;
    background: transparent;
    border-radius: 12px;
}

.torturi-grid .product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 21, 16, 0.64), rgba(29, 21, 16, 0.14));
    transition: background var(--ease);
    pointer-events: none;
    z-index: 1;
}

.torturi-grid .product-card:hover::after {
    background: linear-gradient(to top, rgba(29, 21, 16, 0.76), rgba(29, 21, 16, 0.2));
}

.torturi-grid .product-card-link {
    transform: none;
    border-color: transparent;
}

.torturi-grid .product-card-link:hover {
    transform: none;
    border-color: transparent;
}

.torturi-grid .product-card-anchor {
    position: relative;
}

.torturi-grid .product-image-placeholder {
    height: 100%;
    aspect-ratio: auto;
    border: 0;
}

.torturi-grid .product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter var(--ease);
}

.torturi-grid .product-card:hover .product-image-placeholder img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.torturi-grid .product-meta {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 1rem 1rem 1.1rem;
    pointer-events: none;
}

.torturi-grid .product-meta h2 {
    color: #f7efe8;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    margin-bottom: 0.12rem;
}

.tort-card-note {
    margin: 0;
    color: rgba(247, 239, 232, 0.88) !important;
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.03em;
    text-transform: lowercase;
}

.sezon-card {
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.sezon-card:hover {
    transform: translateY(-3px);
    border-color: rgba(165, 123, 83, 0.35);
    box-shadow: 0 10px 26px rgba(44, 38, 33, 0.08);
}

.sezon-card .product-image-btn img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter var(--ease);
}

.sezon-card:hover .product-image-btn img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.platouri-grid .product-card {
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.platouri-grid .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(165, 123, 83, 0.35);
    box-shadow: 0 10px 26px rgba(44, 38, 33, 0.08);
}

.platouri-grid .product-image-btn img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter var(--ease);
}

.platouri-grid .product-card:hover .product-image-btn img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

@media (min-width: 981px) {
    .events-grid .product-card {
        min-height: 100%;
    }

    .events-grid .product-meta {
        padding: 1rem 1rem 1.1rem;
    }
}

.evenimente-highlights {
    margin-top: 2rem;
    text-align: center;
}

.evenimente-highlights p {
    width: min(100%, 56rem);
    margin: 0 auto;
    color: #5d5249;
    font-size: 0.88rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-transform: none;
}

.evenimente-instagram-note {
    margin-top: 0.85rem !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03em !important;
    color: #6b5d52 !important;
}

.evenimente-instagram-note a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(165, 123, 83, 0.42);
}

.evenimente-instagram-note a:hover {
    color: var(--accent);
    text-decoration-color: rgba(165, 123, 83, 0.7);
}

.catalog-next-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-next-links--center {
    justify-content: center;
}

.catalog-next-links--center > span {
    display: none;
}

.catalog-next-links--center::before,
.catalog-next-links--center::after {
    content: "";
    flex: 1 1 auto;
    border-top: 1px dashed rgba(90, 77, 66, 0.35);
    max-width: 180px;
}

.catalog-next-link--plain {
    text-transform: none;
    letter-spacing: 0.04em;
}

.catalog-next-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #5a4d42;
    transition: color var(--ease), transform var(--ease);
}

.catalog-next-link:hover {
    color: var(--accent);
}

.catalog-next-link.prev:hover {
    transform: translateX(-2px);
}

.catalog-next-link.next:hover {
    transform: translateX(2px);
}

.product-image-placeholder {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 4.2;
    background: linear-gradient(180deg, rgba(241, 235, 227, 0.8), rgba(246, 242, 236, 0.9));
    color: #7e7268;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(44, 38, 33, 0.08);
    border-radius: 12px;
}

.info-modal {
    position: fixed;
    inset: 0;
    background: rgba(27, 21, 16, 0.58);
    display: none;
    place-items: center;
    padding: 1.2rem;
    z-index: 260;
}

.info-modal.is-open {
    display: grid;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    inset: 0;
    width: 100%;
    overscroll-behavior: none;
}

.info-modal-panel {
    width: min(620px, 100%);
    background: #fbf7f2;
    border: 1px solid rgba(44, 38, 33, 0.12);
    padding: 1.2rem 1.25rem 1.35rem;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.info-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #7a6a5d;
}

.info-modal-panel h3 {
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    margin-bottom: 0.35rem;
}

.info-modal-panel p {
    color: #5e5248;
}

.info-modal-price {
    margin-top: 0.55rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #4e3b2c;
}

.chef-story-modal .info-modal-panel {
    width: min(760px, 100%);
    padding: 1.5rem 1.55rem 1.4rem;
    background: #f9f4ee;
}

.chef-story-modal .info-modal-panel h3 {
    font-size: clamp(1.85rem, 2.8vw, 2.55rem);
    margin-bottom: 0.85rem;
    color: #4c3d31;
}

.chef-story-modal .info-modal-panel p {
    color: #5a4d42;
    line-height: 1.78;
    font-size: 0.96rem;
}

.chef-story-modal .info-modal-panel p+p {
    margin-top: 0.82rem;
}

.floating-promo-card {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: min(380px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0.95rem;
    padding: 0.75rem;
    border: 1px solid rgba(82, 56, 36, 0.14);
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(255, 244, 223, 0.62), transparent 42%),
        linear-gradient(180deg, rgba(251, 246, 239, 0.98) 0%, rgba(245, 238, 230, 0.98) 100%);
    box-shadow: 0 18px 42px rgba(30, 22, 16, 0.16);
    z-index: 240;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 260ms ease, transform 260ms ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.floating-promo-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-promo-close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(76, 58, 45, 0.08);
    color: #6f5b4c;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.floating-promo-media {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #efe3d3;
    min-height: 100%;
}

.floating-promo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-promo-copy {
    padding: 0.15rem 1.55rem 0.1rem 0;
}

.floating-promo-copy .eyebrow {
    margin-bottom: 0.38rem;
    color: #82654a;
}

.floating-promo-copy h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: #4c3a2d;
    margin-bottom: 0.35rem;
    line-height: 1.06;
}

.floating-promo-copy p {
    color: #5f5045;
    line-height: 1.5;
    font-size: 0.9rem;
}

.floating-promo-copy .btn-order {
    width: fit-content;
    margin-top: 0.8rem;
    padding: 0.7rem 1rem;
    font-size: 0.73rem;
}

.product-info-modal-panel {
    width: min(560px, 100%);
    padding: 0 1rem 1.1rem;
}

.product-info-modal-image-wrap {
    margin: 0 -1rem 0.8rem;
    border: 0;
    background: transparent;
}

.product-info-modal-image-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 320px;
    object-fit: cover;
}

.info-modal-panel .btn-order {
    display: inline-flex;
    margin-top: 0.55rem;
    justify-self: center;
    align-self: center;
}

.info-modal-helper-link {
    display: block;
    width: fit-content;
    margin: 0.15rem auto 0.2rem;
    font-size: 0.84rem;
    color: #5d534b;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(44, 38, 33, 0.32);
}

.info-modal-helper-link:hover {
    color: var(--accent);
    text-decoration-color: rgba(165, 123, 83, 0.55);
}

.info-modal-assist {
    width: 100%;
    text-align: center;
    margin-top: 0.85rem;
    margin-bottom: 0.15rem;
}

.modal-gallery {
    position: relative;
}

.modal-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 1px solid rgba(44, 38, 33, 0.28);
    background: rgba(251, 247, 242, 0.95);
    color: #5b4b3f;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}

.modal-gallery-arrow:hover {
    border-color: rgba(165, 123, 83, 0.58);
    color: var(--accent);
    background: rgba(247, 242, 236, 1);
}

.modal-gallery-arrow-prev {
    left: 0.55rem;
}

.modal-gallery-arrow-next {
    right: 0.55rem;
}

.modal-gallery-caption {
    margin-top: 0.3rem;
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b5d51;
}

.modal-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.2rem;
    margin: 0;
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    z-index: 5;
    max-width: min(150px, 46%);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
}

.modal-gallery-thumb {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
    cursor: pointer;
    opacity: 0.9;
    transition: transform var(--ease), opacity var(--ease);
}

.modal-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-gallery-thumb:hover {
    transform: translateY(-1px);
    opacity: 1;
}

.modal-gallery-thumb.is-active {
    opacity: 1;
}

#platouModal .product-info-modal-image-wrap,
#platouModal .product-info-modal-image-wrap img {
    border: 0 !important;
    outline: 0;
    box-shadow: none;
    background: transparent;
}

#platouModalCta {
    display: flex !important;
    width: min(100%, 22rem);
    margin: 0.8rem auto 0;
    padding: 0.82rem 1.15rem;
    font-size: 0.86rem;
    letter-spacing: 0.14em;
}

#evenimentModal .product-info-modal-image-wrap,
#evenimentModal .product-info-modal-image-wrap img {
    border: 0 !important;
    box-shadow: none;
}

#evenimentModal .product-info-modal-panel {
    padding: 0 1rem 1.1rem;
}

#evenimentModal .modal-gallery {
    margin: 0 -1rem 0.35rem;
}

#evenimentModal .product-info-modal-image-wrap {
    margin: 0;
}

#evenimentModalImage {
    aspect-ratio: 4 / 3;
    max-height: 320px;
}

#evenimentModal #evenimentModalDesc {
    font-size: 0.9rem;
    line-height: 1.62;
}

#evenimentModal .modal-gallery-thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    right: 0;
    bottom: 0;
    transform: translateY(calc(100% + 0.45rem));
    max-width: none;
    width: auto;
    max-height: none;
    overflow: visible;
    justify-content: flex-end;
    z-index: 8;
}

#evenimentModal .info-modal-assist-link {
    font-size: 0.66rem;
    line-height: 1.35;
    width: min(100%, 22rem);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#evenimentModalPrice .desktop-price-main {
    display: block;
    font-weight: 700;
    color: #4e3b2c;
    font-size: 0.98rem;
    margin-bottom: 0.18rem;
}

#evenimentModalPrice .desktop-price-included {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: #75665a;
    font-weight: 600;
}

#evenimentModal .info-modal-assist-row {
    text-decoration: none;
}

#evenimentModal .info-modal-assist-row a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(44, 38, 33, 0.35);
}

#evenimentModal .info-modal-assist-row a:hover {
    text-decoration-color: rgba(165, 123, 83, 0.55);
}

#evenimentModalTitle,
#evenimentModalTitleMobile {
    font-weight: 700;
}

#evenimentModalCta {
    display: flex !important;
    width: min(100%, 22rem);
    margin: 1.05rem auto 0;
    padding: 1rem 1.2rem;
    font-size: 0.86rem;
    letter-spacing: 0.14em;
}

.eveniment-mobile-content {
    display: none;
}

.modal-mobile-gallery {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.modal-mobile-gallery-item {
    margin: 0;
}

.modal-mobile-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
}

.modal-mobile-gallery-item figcaption {
    margin-top: 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b5d51;
}

@media (min-width: 981px) {
    #platouModal .info-modal-panel,
    #evenimentModal .info-modal-panel,
    #sezonModal .info-modal-panel {
        max-height: calc(100vh - 2.4rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

#sezonModalCta {
    display: block !important;
    width: 22rem !important;
    max-width: 100%;
    margin: 0.8rem auto 0 !important;
    padding: 0.82rem 1.15rem;
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-align: center;
}

#sezonModal .product-info-modal-image-wrap {
    margin: 0 -1rem 0.8rem;
    aspect-ratio: auto;
    max-height: none;
}

#sezonModal .product-info-modal-image-wrap img {
    height: auto;
    max-height: 320px;
    object-fit: contain;
    background: #f6f2ec;
}

.tort-detail-main {
    min-height: 70vh;
}

.tort-detail-wrap {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    grid-template-areas:
        "crumbs crumbs"
        "title title"
        "image desc"
        "image meta"
        "image cta";
    row-gap: 0;
    column-gap: 2rem;
    align-items: start;
    padding-top: 0.39rem;
}

.tort-detail-wrap:not(:has(.product-extra-gallery)):not(:has(.product-sticker)) {
    grid-template-rows: auto auto 1fr auto auto;
}

.tort-detail-wrap:not(:has(.product-extra-gallery)):has(.product-sticker) {
    grid-template-rows: auto auto auto 1fr auto auto;
}

.tort-detail-wrap:has(.product-extra-gallery) {
    grid-template-areas:
        "crumbs crumbs"
        "title title"
        "image desc"
        "gallery meta"
        "gallery cta";
}

.tort-detail-wrap:has(.product-sticker) {
    grid-template-areas:
        "crumbs crumbs"
        "title title"
        "image sticker"
        "image desc"
        "image meta"
        "image cta";
}

.tort-detail-wrap:has(.product-extra-gallery):has(.product-sticker) {
    grid-template-areas:
        "crumbs crumbs"
        "title title"
        "image sticker"
        "image desc"
        "gallery meta"
        "gallery cta";
}

.tort-detail-wrap .eyebrow,
.tort-detail-wrap>.page-crumbs {
    grid-area: crumbs;
    margin: 0 0 0.95rem;
    align-self: start;
}

.tort-detail-wrap h1 {
    grid-area: title;
    font-size: clamp(2.35rem, 4.8vw, 4.5rem);
    margin: 0 0 0.8rem;
    align-self: start;
    white-space: nowrap;
}

.tort-detail-image-wrap {
    grid-area: image;
    margin: 0;
    aspect-ratio: 4 / 4.2;
    overflow: hidden;
    border: 1px solid rgba(44, 38, 33, 0.08);
    background: rgba(252, 250, 247, 0.8);
    align-self: start;
    border-radius: 12px;
}

.product-extra-gallery {
    grid-area: gallery;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.55rem;
}

.product-extra-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(44, 38, 33, 0.08);
    border-radius: 10px;
}

.product-sticker {
    width: fit-content;
    border: 1px solid rgba(165, 123, 83, 0.42);
    background: rgba(165, 123, 83, 0.1);
    color: #5a4635;
    padding: 0.26rem 0.58rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}

.product-stickers {
    grid-area: sticker;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    justify-self: start;
    align-self: start;
    margin-top: 0;
    margin-bottom: 1.15rem;
}

.tort-detail-wrap>p:not(.eyebrow),
.tort-desc-block {
    grid-area: desc;
    color: #5d534b;
    max-width: 58ch;
}

.tort-detail-wrap>p:not(.eyebrow) {
    margin: 0;
}

.tort-desc-block {
    display: grid;
    gap: 1.15rem;
    margin-top: 0.28rem;
}

.tort-desc-block p {
    margin: 0;
}

.availability-note {
    font-size: 0.84rem;
    line-height: 1.52;
    color: #6b5f55;
}

.tort-detail-meta {
    grid-area: meta;
    margin-top: auto;
    align-self: end;
    display: grid;
    gap: 0.3rem;
}

.tort-detail-meta p {
    color: #4c4239;
}

.tort-price-line {
    font-size: 1.02rem;
    letter-spacing: 0.01em;
}

.tort-delivery-link {
    display: inline-block;
    width: fit-content;
    font-size: 0.84rem;
    color: #5d534b;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(44, 38, 33, 0.32);
}

.tort-delivery-link:hover {
    color: var(--accent);
    text-decoration-color: rgba(165, 123, 83, 0.55);
}

.btn-order {
    grid-area: cta;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    align-self: end;
    justify-self: start;
    border: 1px solid rgba(123, 90, 58, 0.95);
    background: var(--accent);
    color: #f7f2ec;
    width: min(100%, 25.6rem);
    padding: 0.58rem 1rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-align: center;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease);
    border-radius: 8px;
}

.btn-order:hover {
    background: #8e673f;
    border-color: #8e673f;
}

.cta-block {
    grid-area: cta;
    align-self: end;
    justify-self: start;
    display: grid;
    gap: 0.3rem;
}

.tort-detail-main .cta-block {
    margin-top: 0.95rem;
    padding-top: 0.45rem;
    padding-bottom: 0;
    gap: 0.55rem;
}

.tort-detail-main .cta-block .btn-assist {
    margin-top: 0.45rem;
}

.tort-detail-main .tort-detail-wrap > .btn-order {
    margin-top: 0.95rem;
    margin-bottom: 0.55rem;
}

.cta-block .btn-order {
    grid-area: auto;
    margin-top: 0;
    align-self: auto;
    justify-self: start;
}

.btn-assist {
    margin: 0;
    font-size: 0.66rem;
    line-height: 1.35;
    color: #6a5d52;
}

.btn-assist a {
    color: #6a5d52;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(44, 38, 33, 0.3);
}

.btn-assist a:hover {
    color: var(--accent);
    text-decoration-color: rgba(165, 123, 83, 0.55);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.85rem;
    border: 1px solid rgba(165, 123, 83, 0.58);
    padding: 0.5rem 0.92rem;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3f342b;
    width: fit-content;
    transition: background-color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    background: rgba(165, 123, 83, 0.12);
    cursor: pointer;
    border-radius: 8px;
}

.btn-detail:hover {
    background: rgba(165, 123, 83, 0.12);
    border-color: rgba(165, 123, 83, 0.58);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(44, 38, 33, 0.12);
}

/* =========================
   Formular Comanda
========================= */
.order-main {
    min-height: 70vh;
}

.order-wrap {
    max-width: 900px;
}

.order-head {
    margin-bottom: 1.8rem;
}

.order-head h1 {
    font-size: clamp(1.85rem, 3.3vw, 3rem);
    line-height: 1.12;
}

.order-head p {
    max-width: none;
    font-size: clamp(0.86rem, 1.2vw, 0.95rem);
    line-height: 1.62;
    color: #62584f;
    white-space: nowrap;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0 0 2.05rem;
}

.contact-info-card {
    padding: 0.95rem 1rem 0.95rem;
    border: 1px solid rgba(44, 38, 33, 0.12);
    background: rgba(246, 242, 236, 0.72);
    border-radius: 12px;
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(44, 38, 33, 0.18);
    background: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.42rem;
}

.contact-info-icon svg {
    width: 17px;
    height: 17px;
    stroke: #5f554d;
    fill: none;
    stroke-width: 1.7;
}

.contact-info-card h2 {
    font-size: clamp(1.26rem, 2vw, 1.5rem);
    margin-bottom: 0.35rem;
}

.contact-info-card p + p {
    margin-top: 0.25rem;
}

.contact-info-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5f554d;
}

.contact-info-card a {
    color: #5f554d;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-form-intro {
    margin: 0.1rem 0 0.95rem;
}

.contact-holiday-banner {
    margin: 1.15rem 0 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(91, 73, 57, 0.16);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(248, 242, 235, 0.98), rgba(244, 236, 228, 0.96));
    color: #56473c;
    box-shadow: 0 14px 30px rgba(58, 40, 28, 0.06);
}

.contact-holiday-banner p + p {
    margin-top: 0.45rem;
}

.contact-holiday-banner a {
    color: #4d3829;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.contact-holiday-banner a:hover {
    color: #2f2118;
}

.order-feedback {
    margin: 0 0 0.95rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid transparent;
    font-size: 0.82rem;
    line-height: 1.45;
}

.order-feedback-success {
    border-color: rgba(91, 128, 88, 0.35);
    background: rgba(235, 245, 231, 0.85);
    color: #3f5a3e;
}

.order-feedback-error {
    border-color: rgba(147, 84, 68, 0.34);
    background: rgba(248, 236, 232, 0.88);
    color: #7a4a3d;
}

.order-form {
    background: rgba(252, 250, 247, 0.84);
    border: 1px solid rgba(44, 38, 33, 0.1);
    padding: clamp(1.2rem, 2.4vw, 2rem);
    border-radius: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.form-field[hidden] {
    display: none;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    color: #5d534b;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(44, 38, 33, 0.16);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font: inherit;
    font-size: 16px;
    padding: 0.5rem 0.72rem;
    border-radius: 8px;
}

.form-field input,
.form-field select {
    min-height: 40px;
    height: 40px;
}

.form-field input[type="date"] {
    box-sizing: border-box;
    min-height: 40px;
    height: 40px;
    line-height: 1.2;
    padding: 0.5rem 0.72rem;
    font: inherit;
    font-size: 16px;
}

.form-field input[type="date"]::-webkit-datetime-edit {
    padding: 0;
}

.form-field input[type="date"]::-webkit-date-and-time-value {
    line-height: 1.2;
}

.form-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    margin: 0;
    padding: 0 0 0 0.35rem;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-field small {
    font-size: 0.72rem;
    color: #75695f;
}

.form-field .field-hint-subtle {
    font-size: 0.66rem;
    color: rgba(117, 105, 95, 0.72);
    letter-spacing: 0.01em;
}

.form-field .date-field-alert {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-end;
    width: fit-content;
    max-width: 100%;
    margin-top: 0.18rem;
    margin-left: auto;
    padding: 0.38rem 0.62rem;
    background: rgba(239, 229, 218, 0.78);
    color: #7a5a43;
    font-size: 0.68rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    border-radius: 999px;
    text-align: right;
}

.form-field .date-field-alert[hidden] {
    display: none !important;
}

.date-field-shell {
    position: relative;
    width: 100%;
    min-height: 40px;
    box-sizing: border-box;
}

.date-field-shell #data-eveniment {
    width: 100%;
    min-height: 40px;
    height: 40px;
    display: block;
    margin: 0;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(44, 38, 33, 0.16);
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
}

.date-field-shell #data-eveniment::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.date-faux-placeholder {
    position: absolute;
    left: 0.72rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #9a7a5e;
    pointer-events: none;
    z-index: 4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 2.2rem);
}

#data-eveniment.date-has-no-value {
    color: transparent;
    -webkit-text-fill-color: transparent;
}

#data-eveniment.date-has-no-value::-webkit-datetime-edit,
#data-eveniment.date-has-no-value::-webkit-date-and-time-value,
#data-eveniment.date-has-no-value::-webkit-datetime-edit-fields-wrapper,
#data-eveniment.date-has-no-value::-webkit-datetime-edit-text,
#data-eveniment.date-has-no-value::-webkit-datetime-edit-day-field,
#data-eveniment.date-has-no-value::-webkit-datetime-edit-month-field,
#data-eveniment.date-has-no-value::-webkit-datetime-edit-year-field {
    color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.form-field .field-error-top {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-105%);
    z-index: 2;
    white-space: nowrap;
    font-size: 0.68rem;
    color: #a74646;
    pointer-events: none;
}

.form-field .field-input-error {
    border-color: rgba(167, 70, 70, 0.9);
    box-shadow: 0 0 0 2px rgba(167, 70, 70, 0.12);
}

.form-field .field-input-error:focus {
    border-color: rgba(167, 70, 70, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(167, 70, 70, 0.18) !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(165, 123, 83, 0.85);
    box-shadow: 0 0 0 2px rgba(165, 123, 83, 0.12);
}

.form-extra {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0.9rem;
    background: rgba(246, 242, 236, 0.72);
    border: 1px solid rgba(44, 38, 33, 0.08);
    border-radius: 10px;
}

.form-extra[hidden] {
    display: none;
}

.btn-submit {
    margin-top: 1.1rem;
    border: 1px solid rgba(165, 123, 83, 0.58);
    background: rgba(165, 123, 83, 0.12);
    color: #3f342b;
    padding: 0.75rem 1.24rem;
    font-family: inherit;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    border-radius: 8px;
}

.btn-submit:hover {
    background: rgba(165, 123, 83, 0.12);
    border-color: rgba(165, 123, 83, 0.58);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(44, 38, 33, 0.12);
}

.form-note {
    margin-top: 0.75rem;
    font-size: 0.74rem;
    line-height: 1.5;
    color: #7c7168;
}

.submit-error-hint {
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    font-size: 0.7rem;
    color: #a74646;
    text-align: right;
}

.form-note a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(44, 38, 33, 0.35);
}

.form-note a:hover {
    color: var(--accent);
    text-decoration-color: rgba(165, 123, 83, 0.55);
}

/* =========================
   Blog
========================= */
.blog-main {
    min-height: 70vh;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.blog-card {
    display: block;
    border: 1px solid rgba(44, 38, 33, 0.08);
    background: rgba(252, 250, 247, 0.86);
    overflow: hidden;
    border-radius: 12px;
}

.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 21, 16, 0.56), rgba(29, 21, 16, 0.08));
    transition: background var(--ease);
    pointer-events: none;
}

.blog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5.1;
    object-fit: cover;
}

.blog-card-body {
    padding: 0.65rem 0.9rem 0.95rem;
}

.blog-card h2 {
    font-size: clamp(1.28rem, 2.05vw, 1.72rem);
    margin: 0;
}

.blog-card:hover img {
    transform: scale(1.03);
}

.blog-card:hover .blog-card-image::after {
    background: linear-gradient(to top, rgba(29, 21, 16, 0.68), rgba(29, 21, 16, 0.16));
}

.blog-card img {
    transition: transform var(--ease);
}

.blog-post-main {
    min-height: 70vh;
}

.blog-post-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
    align-items: start;
}

.blog-post-wrap > * {
    border-radius: 12px;
}

.blog-post-image {
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    aspect-ratio: 4 / 4.2;
    object-fit: cover;
    border: 1px solid rgba(44, 38, 33, 0.08);
    border-radius: 12px;
}

.blog-post-content h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin-bottom: 0.75rem;
}

.blog-post-content p {
    color: #5f554d;
    line-height: 1.7;
}

.blog-post-content p + p {
    margin-top: 0.75rem;
}

.blog-post-cta-wrap {
    margin-top: 1.15rem;
}

.blog-post-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1rem;
    border: 1px solid rgba(123, 90, 58, 0.95);
    background: #8f6a44;
    color: #f8f3ed;
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease);
    border-radius: 8px;
}

.blog-post-cta-link:hover {
    background: #7f5a35;
    border-color: #7f5a35;
    color: #fff9f1;
}

.blog-post-nav {
    margin-top: 1.3rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(44, 38, 33, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.blog-post-nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6a5d52;
    text-decoration: none;
    font-weight: 600;
}

.blog-post-nav-link:hover {
    color: var(--accent);
}

/* =========================
   Footer
========================= */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 3.4rem 0 1.1rem;
    background: #f3ede5;
}

.site-footer::after {
    content: none;
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-grid h4 {
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.footer-col>*+* {
    margin-top: 0.42rem;
}

.footer-grid.footer-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-grid p,
.footer-grid a {
    display: block;
    color: #54493f;
    font-size: 0.88rem;
    line-height: 1.55;
}

.footer-grid a {
    transition: color var(--ease);
}

.site-footer .footer-grid a {
    position: relative;
    padding-left: 0.85rem;
}

.site-footer .footer-grid a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-52%);
    color: rgba(107, 74, 49, 0.72);
    font-size: 0.8em;
    line-height: 1;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-grid .footer-link-emphasis {
    font-weight: 600;
}

.page-contact .site-footer .footer-grid a,
.page-contact .site-footer .footer-grid a:visited,
.page-contact .site-footer .footer-grid a:hover,
.page-contact .site-footer .footer-grid a:active,
.page-contact .site-footer .footer-grid a:focus-visible {
    font-weight: 400 !important;
}

.page-contact .site-footer .footer-grid .footer-link-emphasis,
.page-contact .site-footer .footer-grid .footer-link-emphasis:visited,
.page-contact .site-footer .footer-grid .footer-link-emphasis:hover,
.page-contact .site-footer .footer-grid .footer-link-emphasis:active,
.page-contact .site-footer .footer-grid .footer-link-emphasis:focus-visible {
    font-weight: 600 !important;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
}

.social-link[aria-label="Facebook"] svg,
.social-link[aria-label="TikTok"] svg {
    fill: currentColor;
    stroke: none;
}

.footer-bottom-inline {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(44, 38, 33, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom-inline p {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    color: #6f635a;
}

.footer-social-inline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 2rem));
    background: rgba(248, 243, 236, 0.97);
    border: 1px solid rgba(82, 56, 36, 0.2);
    box-shadow: 0 14px 30px rgba(30, 22, 16, 0.12);
    padding: 0.75rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 320;
    transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-bar p {
    margin: 0;
    color: #5b4d42;
    font-size: 0.86rem;
    line-height: 1.45;
}

.cookie-bar a {
    color: #6a4a31;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.cookie-bar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.cookie-bar-btn {
    border: 1px solid rgba(82, 56, 36, 0.28);
    background: rgba(255, 255, 255, 0.75);
    color: #4b3a2d;
    font: inherit;
    font-size: 0.8rem;
    padding: 0.38rem 0.68rem;
    cursor: pointer;
}

.cookie-bar-btn-primary {
    background: #6b4a31;
    border-color: #6b4a31;
    color: #f7efe8;
}

.cookie-bar.is-closing {
    opacity: 0;
    transform: translate(-50%, 12px);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(24, 18, 13, 0.28);
        -webkit-backdrop-filter: blur(1.8px);
        backdrop-filter: blur(1.8px);
        pointer-events: none;
    }

    .cookie-bar {
        width: calc(100% - 1rem);
        bottom: 0.5rem;
        padding: 0.65rem 0.7rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .cookie-bar p {
        font-size: 0.82rem;
    }

    .cookie-bar-actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .header-inner {
        height: 74px;
        padding: 0;
        width: min(1380px, calc(100% - 2rem));
        gap: 0.9rem;
        align-items: center;
        justify-content: space-between;
    }

    .site-header {
        border-bottom-color: transparent;
        isolation: isolate;
        will-change: transform;
        transform: translateZ(0);
    }

    .site-header::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 3px;
        background: #f7f3ee;
        pointer-events: none;
    }

    .site-header.is-compact {
        background: #f7f3ee;
        border-bottom-color: transparent;
    }

    .header-logo-row {
        order: 1;
        max-height: none;
        opacity: 1;
        transform: none;
        justify-content: flex-start;
    }

    .site-header.is-compact .header-inner {
        height: 74px;
    }

    .site-header.is-compact .header-logo-row {
        max-height: none;
        opacity: 1;
        transform: none;
    }

    .header-nav-row {
        order: 2;
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-top-color: transparent;
        padding: 0;
        min-height: 0;
        flex: 0 0 auto;
    }

    .header-nav-row .nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.25rem;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(44, 38, 33, 0.16);
        background: rgba(252, 250, 247, 0.9);
        color: var(--text);
        cursor: pointer;
        padding: 0 10px;
        border-radius: 10px;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 1px;
        background: currentColor;
        transition: transform 220ms ease, opacity 90ms ease;
        transform-origin: center;
    }

    .menu-toggle span:nth-child(2) {
        transition-delay: 0ms;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transition-delay: 0ms;
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transition-delay: 0ms;
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu {
        display: grid;
        position: absolute;
        top: 100%;
        left: calc(50% - 50vw);
        right: calc(50% - 50vw);
        background: #f7f3ee;
        grid-template-columns: 1fr;
        gap: 0.15rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height var(--ease-header), opacity var(--ease), transform var(--ease);
        padding-inline: 1rem;
        box-shadow: none;
    }

    .mobile-menu a {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 1.08rem;
        font-weight: 900;
        text-align: center;
        padding: 0.92rem 0.2rem;
        color: #40362f;
    }

    .mobile-menu-address {
        margin-top: 1.3rem;
        padding: 1rem 0.8rem 0.9rem;
        border-top: 1px solid rgba(44, 38, 33, 0.12);
        text-align: center;
        color: rgba(92, 80, 70, 0.84);
    }

    .mobile-menu-address-city {
        display: block;
        margin: 0 0 0.28rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 0.92rem;
        font-weight: 800;
        color: #6f6258;
        white-space: normal;
    }

    .mobile-menu-address-line {
        display: block;
        margin: 0;
        font-size: 1rem;
        line-height: 1.45;
        white-space: normal;
    }

    /* Fallback: hide old title node if an older cached HTML still contains it */
    .mobile-menu-address-title {
        display: none !important;
    }

    .mobile-menu .mobile-cta {
        background: #efe6dc;
        color: #3f3226;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.12em;
        margin-top: 0.35rem;
    }

    .site-header.menu-open .mobile-menu {
        max-height: calc(100dvh - 74px);
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding-top: 0.5rem;
        padding-bottom: 1.2rem;
    }

    .hero {
        min-height: 82vh;
        background-image: linear-gradient(rgba(20, 15, 11, 0.46),
                rgba(20, 15, 11, 0.46)),
            url("assets/img/home-bg-mobil2.jpg");
        background-size: cover;
        background-position: center;
    }

    .page-home .hero {
        margin-top: -1px;
    }

    .hero::after {
        right: 0.75rem;
        bottom: 0.7rem;
        font-size: 0.58rem;
    }

    .chef {
        grid-template-columns: 1fr;
    }

    .chef-text {
        order: 1;
    }

    .chef-image-wrap {
        order: 2;
    }

    .location-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .location-details {
        border-left: 0;
        border-top: 1px solid rgba(44, 38, 33, 0.14);
        padding-left: 0;
        padding-top: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
    }

    .site-footer .footer-grid .footer-col:nth-child(1) {
        order: 3;
    }

    .site-footer .footer-grid .footer-col:nth-child(2) {
        order: 1;
    }

    .site-footer .footer-grid .footer-col:nth-child(3) {
        order: 2;
    }

    .site-footer .footer-grid .footer-col:nth-child(4) {
        order: 4;
    }

    .footer-grid.footer-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-col {
        border-top: 1px solid rgba(44, 38, 33, 0.1);
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .site-footer .footer-grid .footer-col:nth-child(2),
    .site-footer .footer-grid .footer-col:nth-child(3) {
        border-top: 0;
    }

    .footer-bottom-inline {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.65rem;
    }

    .footer-social-inline {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .footer-social-inline .social-link span {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-post-wrap {
        grid-template-columns: 1fr;
    }

    .blog-post-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-next-links {
        margin-top: 1.2rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .catalog-next-link {
        width: auto;
        justify-content: flex-start;
        text-align: left;
    }

    .catalog-next-link.next {
        justify-content: flex-end;
        text-align: right;
    }

    .form-grid,
    .form-extra {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .date-faux-placeholder {
        font-size: 0.76rem;
    }

    .date-field-shell {
        min-height: 40px;
        width: 100%;
    }

    .date-field-shell #data-eveniment {
        width: 100%;
        min-height: 40px !important;
        max-height: 40px !important;
        height: 40px !important;
        box-sizing: border-box;
        line-height: 40px;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-appearance: none;
        appearance: none;
    }

    .date-field-shell #data-eveniment::-webkit-date-and-time-value,
    .date-field-shell #data-eveniment::-webkit-datetime-edit {
        line-height: 40px;
        min-height: 0;
        padding: 0;
        margin: 0;
    }

    #evenimentModal .modal-gallery,
    #evenimentModal .modal-gallery-caption,
    #evenimentModal #evenimentModalTitle,
    #evenimentModal #evenimentModalDesc,
    #evenimentModal #evenimentModalPrice,
    #evenimentModal #evenimentModalCta,
    #evenimentModal #evenimentModalAssistDesktop {
        display: none !important;
    }

    #evenimentModal .eveniment-mobile-content {
        display: block;
        text-align: center;
    }

    #evenimentModal .eveniment-mobile-content h3 {
        margin: 0 0 0.45rem;
        font-size: clamp(1.8rem, 6.6vw, 2.35rem);
    }

    #evenimentModal .eveniment-mobile-content p {
        margin: 0 0 0.55rem;
    }

    #evenimentModalPriceMobile {
        margin-bottom: 0.7rem;
        text-align: center;
    }

    #evenimentModalPriceMobile .mobile-price-main {
        display: block;
        font-weight: 700;
        color: #4e3b2c;
        font-size: 0.98rem;
        margin-bottom: 0.25rem;
    }

    #evenimentModalPriceMobile .mobile-price-included {
        display: block;
        font-size: 0.74rem;
        letter-spacing: 0.04em;
        text-transform: none;
        color: #75665a;
        font-weight: 600;
    }

    #evenimentModal .eveniment-mobile-content .info-modal-assist-link {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-top: 0.05rem;
        margin-bottom: 0.5rem;
    }

    #evenimentModal #evenimentModalCtaTopMobile,
    #evenimentModal #evenimentModalCtaBottomMobile {
        display: flex !important;
        width: min(100%, 22rem);
        margin: 0.72rem auto 0;
        padding: 1rem 1.35rem;
    }

    #evenimentModal #evenimentModalCtaBottomMobile {
        margin-top: 1rem;
        margin-bottom: 2.6rem;
    }

    #platouModal,
    #evenimentModal,
    #sezonModal {
        align-items: flex-start;
        padding: 0.55rem;
        overflow-y: auto;
    }

    #platouModal .info-modal-panel,
    #evenimentModal .info-modal-panel,
    #sezonModal .info-modal-panel {
        width: min(100%, 32rem);
        max-height: calc(100vh - 1.1rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #evenimentModal .info-modal-panel {
        padding: 1.2rem 1rem 2.4rem;
    }
}

@media (max-width: 980px) and (orientation: landscape) {
    .mobile-menu a {
        padding: 0.78rem 0.2rem;
    }

    .mobile-menu-address {
        margin-top: 1rem;
        padding-top: 0.85rem;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(var(--container), calc(100% - 2rem));
    }

    .chef-text h2 {
        font-size: clamp(1.95rem, 8.6vw, 2.85rem);
    }

    .chef-text h2 span {
        white-space: normal;
    }

    .mobile-menu a {
        font-size: 1rem;
    }

    .logo img {
        width: 168px;
    }

    .section {
        padding-block: 4.4rem;
    }

    .hero-content {
        padding-block: 4.2rem;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 11vw, 3.3rem);
    }

  .hero p {
    font-size: 0.96rem;
    color: rgba(252, 249, 245, 0.98);
    text-shadow:
      -0.6px 0 rgba(44, 38, 33, 0.62),
      0 0.6px rgba(44, 38, 33, 0.62),
      0.6px 0 rgba(44, 38, 33, 0.62),
      0 -0.6px rgba(44, 38, 33, 0.62);
  }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-card {
        aspect-ratio: 4 / 4.6;
    }

    .info-modal-panel {
        padding: 1rem 0.95rem 1.1rem;
    }

    .floating-promo-card {
        left: max(0.75rem, env(safe-area-inset-left));
        right: max(0.75rem, env(safe-area-inset-right));
        bottom: max(0.75rem, env(safe-area-inset-bottom));
        width: auto;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.65rem;
        border-radius: 14px;
    }

    .floating-promo-copy {
        padding: 0.05rem 1.35rem 0.05rem 0;
    }

    .floating-promo-copy .eyebrow {
        margin-bottom: 0.4rem;
    }

    .floating-promo-copy h3 {
        font-size: 1.08rem;
        margin-bottom: 0.25rem;
    }

    .floating-promo-copy p {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .floating-promo-copy .btn-order {
        margin-top: 0.65rem;
        padding: 0.62rem 0.9rem;
        font-size: 0.68rem;
    }

    .chef-story-modal .info-modal-panel p {
        font-size: 0.88rem;
        line-height: 1.62;
    }

    #platouModal .info-modal-panel,
    #evenimentModal .info-modal-panel,
    #sezonModal .info-modal-panel {
        border: 0;
        box-shadow: none;
    }

    #platouModal .info-modal-panel,
    #sezonModal .info-modal-panel {
        padding: 0 0.95rem 1rem;
    }

    #platouModal .product-info-modal-image-wrap,
    #sezonModal .product-info-modal-image-wrap {
        margin: 0 -0.95rem 0.75rem;
    }

    #platouModal,
    #evenimentModal,
    #sezonModal {
        padding: 0.75rem;
    }

    .info-modal .info-modal-close {
        top: 0.45rem;
        right: 0.45rem;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(247, 242, 236, 0.55);
        border-radius: 999px;
        background: rgba(44, 38, 33, 0.82);
        color: #f7f2ec;
        font-size: 1.1rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .footer-grid h4 {
        font-size: 1.05rem;
    }

    .catalog-head {
        margin-bottom: 1.3rem;
    }

    .catalog-head p {
        font-size: 0.95rem;
    }

    .page-info-importante .policy-lead {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }

    .page-info-importante .policy-accordion-item summary {
        padding: 0.82rem 0.9rem;
        font-size: 1.18rem;
    }

    .page-info-importante .policy-accordion-body {
        padding: 0.75rem 0.9rem 0.9rem;
    }

    .page-info-importante .delivery-rates-inline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.28rem;
        white-space: normal;
        overflow-x: visible;
    }

    .page-info-importante .delivery-rates-inline span + span::before {
        content: "";
        margin-right: 0;
    }

  .page-crumbs {
    display: flex;
    flex-wrap: wrap;
        row-gap: 0.35rem;
        line-height: 1.35;
    }

    .page-crumbs>* {
        white-space: nowrap;
    }

    .order-form {
        padding: 1rem;
    }

    .order-head p {
        white-space: normal;
    }

    .tort-detail-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "crumbs"
            "title"
            "image"
            "desc"
            "meta"
            "cta";
        gap: 0.8rem;
        padding-top: 0;
    }

    .tort-detail-wrap:has(.product-extra-gallery) {
        grid-template-rows: none;
        grid-template-areas:
            "crumbs"
            "title"
            "image"
            "gallery"
            "desc"
            "meta"
            "cta";
    }

    .tort-detail-wrap:has(.product-sticker) {
        grid-template-rows: none;
        grid-template-areas:
            "crumbs"
            "title"
            "image"
            "sticker"
            "desc"
            "meta"
            "cta";
    }

    .tort-detail-wrap:has(.product-extra-gallery):has(.product-sticker) {
        grid-template-rows: none;
        grid-template-areas:
            "crumbs"
            "title"
            "image"
            "gallery"
            "sticker"
            "desc"
            "meta"
            "cta";
    }

    .tort-detail-wrap h1 {
        white-space: normal;
    }

    .product-extra-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tort-detail-meta,
    .btn-order,
    .cta-block {
        margin-top: 0.8rem;
    }

    .btn-order,
    .cta-block {
        align-self: center;
    }

    .tort-detail-meta {
        justify-items: center;
        text-align: center;
    }

    .tort-delivery-link {
        margin-inline: auto;
    }

    .cta-block {
        justify-self: center;
        width: 100%;
        justify-items: center;
    }

    .cta-block .btn-order {
        width: min(100%, 22rem);
        margin-inline: auto;
        justify-self: center;
    }

    .cta-block .btn-assist {
        width: 100%;
        text-align: center;
    }

    .btn-order {
        justify-self: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Eliminare globala a borderelor din site */
body *,
body *::before,
body *::after {
    border-width: 0 !important;
    border-style: none !important;
}
