:root {
    --site-bg: #ffffff;
    --site-surface: #f7f9fb;
    --site-border: #e8edf2;
    --site-text: #18212f;
    --site-muted: #7d8795;
    --site-accent: #f06923;
    --site-accent-dark: #d95717;
    --site-shadow: 0 24px 60px rgba(24, 33, 47, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body.public-site-body {
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    color: var(--site-text);
    font-family: 'Manrope', 'Tajawal', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

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

.public-site-shell {
    transition: opacity 0.28s ease, filter 0.28s ease;
}

.public-site-body.is-loading .public-site-shell {
    opacity: 0.38;
    filter: saturate(0.78);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background: rgba(243, 245, 248, 0.7);
    backdrop-filter: blur(1px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.public-site-body.is-ready .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__panel {
    width: 96px;
    height: 76px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(232, 237, 242, 0.95);
    box-shadow: 0 20px 40px rgba(24, 33, 47, 0.12);
}

.site-loader__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-loader__dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #8c949f;
    animation: site-loader-bounce 1.05s infinite ease-in-out;
}

.site-loader__dots span:nth-child(2) {
    animation-delay: 0.14s;
}

.site-loader__dots span:nth-child(3) {
    animation-delay: 0.28s;
}

img {
    display: block;
    max-width: 100%;
}

.site-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #ffffff;
    border-bottom: 1px solid rgba(232, 237, 242, 0.9);
}

.site-header__layout {
    min-height: 0;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    gap: 1.8rem;
    padding: 0.75rem 0 0.65rem;
}

.site-header__main {
    display: grid;
    align-content: start;
    gap: 0.48rem;
    min-width: 0;
}

.site-header__topline {
    display: grid;
    grid-template-columns: minmax(260px, 560px) auto;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 280px;
    flex-shrink: 0;
}

.site-brand strong,
.site-brand small {
    display: block;
}

.site-brand strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
}

.site-brand small {
    color: var(--site-muted);
    font-size: 0.82rem;
    max-width: 220px;
}

.site-brand__logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
    color: var(--site-text);
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: none;
}

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

.site-brand__logo-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--site-border);
}
.site-brand--header {
    min-width: auto;
    width: 154px;
    gap: 0;
    align-self: center;
    justify-self: start;
}

.site-brand--header .site-brand__logo {
    width: 154px;
    height: 95px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.site-brand--header .site-brand__logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
}

.site-brand--header .site-brand__logo-fallback {
    border-radius: 0;
    background: transparent;
    color: #fff;
    border: 0;
    box-shadow: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex: 0 1 auto;
    min-width: 0;
}

.site-nav a {
    color: var(--site-muted);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--site-text);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.site-header-search {
    width: 100%;
    max-width: 560px;
    min-width: 0;
    justify-self: stretch;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    height: 40px;
    padding: 0 0.8rem 0 0.95rem;
    border: 0;
    border-radius: 6px;
    background: #f4f4f5;
    color: #969da6;
}

.site-header-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--site-text);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 500;
}

.site-header-search input::placeholder {
    color: #9298a1;
}

.site-header-search button {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #8e959e;
    padding: 0;
}

.site-language-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: #fff;
    gap: 0.2rem;
}

.site-language-toggle__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    color: var(--site-muted);
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-language-toggle__item:hover,
.site-language-toggle__item.is-active {
    background: var(--site-text);
    color: #fff;
    box-shadow: 0 10px 20px rgba(24, 33, 47, 0.12);
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.82rem 0.95rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.92rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

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

.site-btn--primary {
    background: var(--site-accent);
    color: #fff;
    box-shadow: 0 16px 32px rgba(240, 105, 35, 0.24);
}

.site-btn--primary:hover {
    background: var(--site-accent-dark);
    color: #fff;
}

.site-btn--ghost {
    background: #fff;
    border-color: var(--site-border);
    color: var(--site-text);
}

.site-btn--full {
    width: 100%;
}

.site-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 38px;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #8b8f96;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
}

.site-icon-btn i {
    font-size: 1rem;
}

.site-icon-btn span {
    display: none;
}

.site-icon-btn small {
    position: absolute;
    top: -7px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--site-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 8px 14px rgba(240, 105, 35, 0.22);
}

.site-header__navrow {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0.7rem;
    min-height: 0;
    padding: 0.2rem 0 0.9rem;
}

.site-category-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.28rem 1.25rem;
    overflow: visible;
    scrollbar-width: none;
}

.site-category-nav::-webkit-scrollbar {
    display: none;
}

.site-category-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 0.15rem;
    border-radius: 8px;
    color: #7b8088;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.site-category-nav a:hover,
.site-category-nav a.is-active {
    background: #f4f4f5;
    color: var(--site-text);
}

.site-location-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.1rem;
}

.site-location-nav select,
.site-location-nav input,
.site-location-nav .site-date-field {
    width: auto;
    max-width: 155px;
    height: 28px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #7b8088;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0;
}

.site-location-nav input,
.site-location-nav .site-date-field {
    max-width: 118px;
}

.site-date-field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.site-date-field__native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.site-date-field__trigger {
    position: absolute;
    top: 50%;
    right: 0.95rem;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: rgba(240, 105, 35, 0.1);
    color: var(--site-accent-dark);
    font-size: 0.92rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.site-date-field__trigger:hover {
    background: rgba(240, 105, 35, 0.16);
}

.site-date-field__trigger:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(240, 105, 35, 0.12);
}

.site-date-field--compact input {
    width: 100%;
    padding-right: 2.35rem;
}

.site-location-nav .site-date-field__trigger {
    right: 0.2rem;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: transparent;
}

.hero-section {
    padding: 1.55rem 0 1rem;
}

.hero-search {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    background: #fff;
    border: 1px solid var(--site-border);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(24, 33, 47, 0.05);
}

.hero-search__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--site-surface);
    color: var(--site-accent-dark);
    font-size: 1rem;
}

.hero-search__input,
.hero-field {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--site-text);
    font-size: 1rem;
    font-weight: 600;
}

.hero-search__button {
    padding: 0.95rem 1.35rem;
    border: 0;
    border-radius: 16px;
    background: var(--site-text);
    color: #fff;
    font-weight: 800;
}

.home-booking-bar,
.catalog-toolbar {
    display: grid;
    align-items: end;
    gap: 0.75rem;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.home-booking-bar {
    grid-template-columns: minmax(240px, 1.7fr) minmax(150px, 0.8fr) minmax(190px, 0.95fr) 88px auto;
}

.home-booking-bar label,
.catalog-field {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
    margin: 0;
}

.home-booking-bar label > span,
.catalog-field > span {
    color: #687384;
    font-size: 0.76rem;
    font-weight: 800;
}

.home-booking-bar input,
.home-booking-bar select,
.catalog-field input,
.catalog-field select {
    width: 100%;
    min-width: 0;
    height: 42px;
    border: 1px solid #e5e9ee;
    border-radius: 8px;
    background: #f6f7f8;
    color: var(--site-text);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 650;
    outline: 0;
    padding: 0 0.85rem;
}

.home-booking-bar__search {
    position: relative;
}

.home-booking-bar__search i {
    position: absolute;
    left: 0.85rem;
    bottom: 13px;
    color: #929ba6;
}

.home-booking-bar__search input {
    padding-left: 2.25rem;
}

.home-booking-bar button,
.catalog-toolbar__button {
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--site-text);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0 1.2rem;
}

.market-catalog-head {
    padding: 2.25rem 0 0.85rem;
    background: #fff;
}

.market-catalog-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.market-catalog-title h1 {
    margin: 0.15rem 0 0;
    color: var(--site-text);
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.market-catalog-total {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: #f6f7f8;
    color: #687384;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.market-filterbar {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(150px, 0.45fr) minmax(190px, 0.55fr) 82px auto;
    align-items: end;
    gap: 0.75rem;
}

.market-filterbar__search,
.market-filterbar__field {
    display: grid;
    gap: 0.32rem;
    min-width: 0;
    margin: 0;
}

.market-filterbar__search {
    position: relative;
}

.market-filterbar__search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3ae;
    font-size: 0.95rem;
}

.market-filterbar__field span {
    color: #747f8d;
    font-size: 0.74rem;
    font-weight: 800;
}

.market-filterbar__search input,
.market-filterbar__field input,
.market-filterbar__field select {
    width: 100%;
    min-width: 0;
    height: 48px;
    border: 1px solid #e5e9ee;
    border-radius: 8px;
    background: #f6f7f8;
    color: var(--site-text);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 650;
    outline: 0;
    padding: 0 0.95rem;
}

.market-filterbar__search input {
    padding-left: 2.6rem;
}

.market-filterbar__search input::placeholder {
    color: #8f98a5;
}

.market-filterbar__button {
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--site-text);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0 1.2rem;
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.25rem 0 1.5rem;
}

.category-row--spaced {
    margin-top: 0;
    margin-bottom: 2rem;
}

.category-pill {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--site-border);
    color: var(--site-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.category-pill--active {
    background: rgba(240, 105, 35, 0.09);
    border-color: rgba(240, 105, 35, 0.3);
    color: var(--site-accent-dark);
}

.hero-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 0.82fr;
    gap: 1.5rem;
    padding: 2rem;
    min-height: 540px;
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(17, 21, 28, 0.72) 0%, rgba(17, 21, 28, 0.42) 45%, rgba(17, 21, 28, 0.18) 100%),
        var(--hero-banner-image, url('/storage/products/gallery/qIv37I3SIZVUkUElrHMltX2Aj3SAeq4OfUAzzcH4.jpg')) center/cover no-repeat;
    box-shadow: var(--site-shadow);
}

.hero-card__content {
    position: relative;
    z-index: 1;
    align-self: end;
    color: #fff;
    max-width: 760px;
}

.hero-card__content h1,
.page-hero__inner h1,
.section-heading h2,
.business-strip h2 {
    margin: 0;
    letter-spacing: 0;
}

.hero-card__content h1 {
    font-size: 2.55rem;
    line-height: 1.08;
    max-width: 16ch;
    font-weight: 800;
    color: #ffffff;
}

.hero-card__content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 62ch;
    margin: 0.9rem 0 0;
}

.hero-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-highlight {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.hero-highlight strong,
.listing-card__meta strong,
.stat-card strong {
    display: block;
}

.hero-highlight span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.84rem;
    line-height: 1.6;
}

.hero-booking {
    position: relative;
    z-index: 1;
    align-self: center;
    padding: 1.6rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 24px 48px rgba(17, 21, 28, 0.18);
}

.hero-booking h3,
.promo-card h3,
.listing-card__body h3,
.vendor-card__body h3,
.info-card h3 {
    margin: 0;
    letter-spacing: 0;
}

.hero-booking h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.hero-booking p,
.promo-card p,
.listing-card__body p,
.vendor-card__body p,
.business-strip p,
.info-card p {
    margin: 0.75rem 0 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.hero-booking p {
    font-size: 0.96rem;
    line-height: 1.65;
}

.hero-booking__fields {
    display: grid;
    gap: 0.78rem;
    margin: 1.25rem 0 1rem;
}

.hero-booking__field {
    display: grid;
    gap: 0.36rem;
}

.hero-booking__date-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 0.78rem;
    align-items: end;
}

.hero-booking__field > span {
    color: #566173;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    padding-left: 0.2rem;
}

.hero-field {
    padding: 0.92rem 3rem 0.92rem 1.2rem;
    border-radius: 18px;
    border: 1px solid #dfe6ee;
    background-color: #ffffff;
    color: var(--site-text);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #1f2937 50%),
        linear-gradient(135deg, #1f2937 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-field:focus {
    border-color: rgba(240, 105, 35, 0.42);
    box-shadow: 0 0 0 4px rgba(240, 105, 35, 0.12);
}

.hero-booking input.hero-field {
    padding-right: 3.4rem;
    background-image: none;
}

.hero-booking .site-date-field__trigger {
    right: 1rem;
}

.hero-booking__link,
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--site-accent-dark);
    font-weight: 800;
}

.hero-booking__link {
    margin-top: 1rem;
}

.promo-section,
.site-section {
    padding: 1.25rem 0 1.6rem;
}

.site-section--catalog {
    padding-top: 0.15rem;
}

.category-browser {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.category-browser__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--site-border);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 251, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(24, 33, 47, 0.05);
}

.category-browser__back,
.category-browser__home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
}

.category-browser__back {
    background: #fff7f1;
    border: 1px solid rgba(240, 105, 35, 0.16);
    color: var(--site-accent-dark);
}

.category-browser__home-link {
    justify-self: end;
    background: #ffffff;
    border: 1px solid var(--site-border);
    color: var(--site-text);
}

.category-browser__summary {
    min-width: 0;
}

.category-browser__summary h1 {
    margin: 0.24rem 0 0;
    color: var(--site-text);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0;
}

.category-browser__summary p {
    margin: 0.42rem 0 0;
    color: var(--site-muted);
    font-size: 0.94rem;
}

.category-browser__switcher {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.category-browser__switcher::-webkit-scrollbar {
    display: none;
}

.category-browser__carousel {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--site-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(24, 33, 47, 0.05);
}

.category-browser__arrow {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(240, 105, 35, 0.2);
    border-radius: 999px;
    background: #fff7f1;
    color: var(--site-accent-dark);
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-browser__arrow:hover,
.category-browser__arrow:focus-visible {
    background: var(--site-accent);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(240, 105, 35, 0.18);
}

.category-browser__arrow:focus-visible {
    outline: none;
}

.category-browser__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.82rem 1.15rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--site-border);
    color: var(--site-muted);
    font-size: 0.93rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(24, 33, 47, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-browser__pill:hover,
.category-browser__pill:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(240, 105, 35, 0.26);
    color: var(--site-accent-dark);
}

.category-browser__pill.is-active {
    background: linear-gradient(135deg, rgba(240, 105, 35, 0.14) 0%, rgba(240, 105, 35, 0.08) 100%);
    border-color: rgba(240, 105, 35, 0.34);
    color: var(--site-accent-dark);
    box-shadow: 0 14px 28px rgba(240, 105, 35, 0.12);
}

.catalog-filters {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
    border: 1px solid var(--site-border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(30, 180, 91, 0.08), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fffaf6 100%);
    box-shadow: 0 16px 34px rgba(24, 33, 47, 0.05);
}

.catalog-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-filters__head h2 {
    margin: 0.2rem 0 0;
    color: var(--site-text);
    font-size: 1.12rem;
    font-weight: 900;
}

.catalog-filters__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.catalog-filters__actions a,
.catalog-filters__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.catalog-filters__actions a {
    border: 1px solid var(--site-border);
    background: #ffffff;
    color: var(--site-text);
}

.catalog-filters__actions button {
    border: 0;
    background: var(--site-accent);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(240, 105, 35, 0.2);
}

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

.catalog-filters__grid label {
    display: grid;
    gap: 0.35rem;
}

.catalog-filters__grid span {
    color: var(--site-text);
    font-size: 0.78rem;
    font-weight: 900;
}

.catalog-filters__grid input {
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border: 1px solid #dce6ee;
    border-radius: 14px;
    background: #ffffff;
    color: var(--site-text);
    font-weight: 800;
    outline: none;
}

.catalog-filters__grid input:focus {
    border-color: rgba(240, 105, 35, 0.65);
    box-shadow: 0 0 0 4px rgba(240, 105, 35, 0.11);
}

.catalog-filters__advanced {
    border-top: 1px solid rgba(225, 233, 240, 0.9);
    padding-top: 0.85rem;
}

.catalog-filters__advanced summary {
    width: fit-content;
    cursor: pointer;
    color: var(--site-accent-dark);
    font-size: 0.88rem;
    font-weight: 900;
}

.catalog-filters__grid--advanced {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0.85rem;
}

.site-section--soft {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(247, 249, 251, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
}

.promo-grid,
.card-grid,
.stats-grid,
.site-footer__grid {
    display: grid;
    gap: 1.25rem;
}

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

.promo-card,
.listing-card,
.vendor-card,
.info-card,
.stat-card,
.business-strip {
    border: 1px solid var(--site-border);
    background: #fff;
    box-shadow: 0 14px 32px rgba(24, 33, 47, 0.04);
}

.promo-card {
    padding: 1.5rem;
    border-radius: 28px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--site-accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading h2,
.business-strip h2,
.page-hero__inner h1 {
    font-size: 2.35rem;
}

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

.card-grid--vendors,
.card-grid--info,
.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-card,
.vendor-card,
.info-card {
    overflow: hidden;
    border-radius: 8px;
}

.listing-card__image {
    position: relative;
    aspect-ratio: 1.1 / 0.9;
    background: var(--site-surface);
}

.listing-card__image img,
.vendor-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-text);
    font-size: 0.8rem;
    font-weight: 800;
}

.listing-card__availability {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.94);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.listing-card__body,
.vendor-card__body,
.info-card {
    padding: 1.35rem;
}

.listing-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.listing-card__stock {
    margin-top: 0.75rem;
    color: #607086;
    font-size: 0.82rem;
    font-weight: 800;
}

.listing-card__meta strong {
    font-size: 1rem;
    font-weight: 800;
}

.listing-card__meta a {
    color: var(--site-text);
    font-weight: 800;
}

.listing-card__cta {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #fff2e9;
    color: var(--site-accent-dark);
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(240, 105, 35, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.listing-card__cta:hover,
.listing-card__cta:focus-visible {
    transform: translateY(-1px);
    background: var(--site-accent);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(240, 105, 35, 0.22);
}

.listing-card__cta:focus-visible {
    outline: none;
}

.listing-card__actions {
    display: grid;
    gap: 0.35rem;
    justify-items: end;
}

.catalog-empty {
    grid-column: 1 / -1;
}

.catalog-empty .site-btn {
    margin-top: 1rem;
}

.market-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.market-pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.market-pagination__button,
.market-pagination__page,
.market-pagination__gap {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--site-border);
    background: #fff;
    color: var(--site-text);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0 0.8rem;
}

.market-pagination__page.is-active {
    background: var(--site-text);
    border-color: var(--site-text);
    color: #fff;
}

.market-pagination__button.is-disabled,
.market-pagination__gap {
    color: #a0a9b5;
    background: #f7f9fb;
    pointer-events: none;
}

.vendor-card__image {
    aspect-ratio: 1.1 / 0.75;
    background: var(--site-surface);
}

.vendor-card__head {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 0.85rem;
}

.vendor-card__logo {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(24, 33, 47, 0.08);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(24, 33, 47, 0.08);
}

.vendor-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.55rem;
}

.vendor-card__summary {
    min-width: 0;
}

.vendor-card__summary .section-eyebrow {
    margin-bottom: 0.28rem;
}

.vendor-card__link {
    display: inline-flex;
    margin-top: 0.9rem;
}

.vendor-card--logo-only {
    display: grid;
    place-items: center;
    min-height: 132px;
    padding: 1rem 1.2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.vendor-card__logo--large {
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 0;
    background: transparent;
    overflow: visible;
    box-shadow: none;
}

.vendor-card__logo--large img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 1000px;
    display: block;
    object-fit: contain;
    padding: 0;
}

.business-strip {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 32px;
}

.stat-card {
    padding: 1.4rem;
    border-radius: 24px;
}

.stat-card strong {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0;
}

.stat-card span {
    color: var(--site-muted);
    font-weight: 700;
}

.page-hero {
    padding: 3rem 0 1rem;
}

.page-hero__inner {
    padding: 1.8rem;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.page-hero--catalog .page-hero__inner {
    display: grid;
    gap: 1.35rem;
}

.catalog-hero__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-count {
    min-width: 110px;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--site-border);
    background: #fff;
    text-align: center;
}

.catalog-count strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 800;
}

.catalog-count span {
    display: block;
    margin-top: 0.25rem;
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.catalog-toolbar {
    grid-template-columns: minmax(230px, 1.4fr) minmax(150px, 0.85fr) minmax(190px, 0.9fr) 86px auto;
}

.catalog-field {
    position: relative;
}

.catalog-field i {
    position: absolute;
    left: 0.85rem;
    bottom: 13px;
    color: #929ba6;
}

.catalog-field--search input {
    padding-left: 2.25rem;
}

.catalog-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0.2rem 0 0.9rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.catalog-status strong,
.catalog-status span {
    display: block;
}

.catalog-status strong {
    font-size: 0.94rem;
}

.catalog-status span {
    margin-top: 0.12rem;
    color: var(--site-muted);
    font-size: 0.82rem;
}

.catalog-status a {
    color: var(--site-accent-dark);
    font-weight: 800;
    white-space: nowrap;
}

.page-hero__inner p {
    margin: 1rem 0 0;
    color: var(--site-muted);
    line-height: 1.8;
    max-width: 60ch;
}

.site-footer {
    padding: 2rem 0 2.6rem;
}

.site-footer__grid {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid var(--site-border);
}

.site-brand--footer {
    min-width: auto;
}

.site-brand--footer .site-brand__logo {
    width: 96px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.site-brand--footer .site-brand__logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 48px;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    justify-content: flex-end;
}

.site-footer__links a {
    color: var(--site-muted);
    font-weight: 700;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 1.25rem;
}

.page-hero--compact {
    padding-bottom: 0.85rem;
}

.cart-section {
    padding-top: 0.8rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.25rem;
    align-items: start;
}

.cart-panel,
.cart-summary,
.cart-empty {
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(24, 33, 47, 0.05);
}

.cart-panel {
    padding: 1.25rem;
}

.cart-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--site-border);
}

.cart-panel__head h2 {
    margin: 0.25rem 0 0;
    color: var(--site-text);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0;
}

.cart-panel__link {
    color: var(--site-accent-dark);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.cart-vendor-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.cart-vendor-card {
    border: 1px solid #edf1f5;
    border-radius: 8px;
    background: #fbfcfd;
    overflow: hidden;
}

.cart-vendor-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-bottom: 1px solid #edf1f5;
}

.cart-vendor-card__head h3 {
    margin: 0.25rem 0 0;
    color: var(--site-text);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
}

.cart-vendor-card__head > span {
    color: var(--site-muted);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.cart-item-list {
    display: grid;
}

.cart-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 92px 128px auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.cart-item + .cart-item {
    border-top: 1px solid #edf1f5;
}

.cart-item__media {
    width: 88px;
    height: 72px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f5f7;
    color: var(--site-accent-dark);
    font-weight: 900;
}

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

.cart-item__details {
    min-width: 0;
}

.cart-item__details h4 {
    margin: 0;
    color: var(--site-text);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.35;
}

.cart-item__details p,
.cart-item__details small,
.cart-item__qty span,
.cart-item__total span {
    color: var(--site-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.cart-item__details p {
    margin: 0.35rem 0 0;
}

.cart-item__details small {
    display: inline-flex;
    margin-top: 0.35rem;
    color: #2f8f5b;
    font-weight: 800;
}

.cart-item__qty,
.cart-item__total {
    display: grid;
    gap: 0.35rem;
}

.cart-item__qty input {
    width: 92px;
    height: 42px;
    border: 1px solid #d7e0ea;
    border-radius: 8px;
    background: #ffffff;
    color: var(--site-text);
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0 0.75rem;
}

.cart-item__total {
    justify-items: end;
    text-align: right;
}

.cart-item__total strong {
    color: var(--site-text);
    font-size: 0.98rem;
    font-weight: 900;
    white-space: nowrap;
}

.cart-item__remove {
    min-height: 38px;
    border: 1px solid #f2d5ca;
    border-radius: 8px;
    background: #fff7f3;
    color: var(--site-accent-dark);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0 0.85rem;
}

.cart-summary {
    position: sticky;
    top: 178px;
    padding: 1.25rem;
}

.cart-summary h2 {
    margin: 0.35rem 0 0;
    color: var(--site-text);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0;
}

.cart-summary p {
    margin: 0.75rem 0 0;
    color: var(--site-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.cart-summary dl {
    display: grid;
    gap: 0.75rem;
    margin: 1.25rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.cart-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-summary dt,
.cart-summary dd {
    margin: 0;
    font-size: 0.9rem;
}

.cart-summary dt {
    color: var(--site-muted);
}

.cart-summary dd {
    color: var(--site-text);
    font-weight: 900;
}

.cart-summary__actions {
    display: grid;
    gap: 0.75rem;
}

.cart-empty {
    max-width: 560px;
    padding: 1.5rem;
}

.cart-empty h3 {
    margin: 0.3rem 0 0;
    color: var(--site-text);
    font-size: 1.25rem;
    font-weight: 800;
}

.cart-empty p {
    margin: 0.75rem 0 1rem;
    color: var(--site-muted);
}

.order-confirmation,
.account-layout {
    display: grid;
    gap: 1.25rem;
}

.order-confirmation__hero,
.order-confirmation__meta,
.order-confirmation__card,
.account-profile,
.account-order-card {
    border: 1px solid var(--site-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(24, 33, 47, 0.05);
}

.order-confirmation__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.35rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.order-confirmation__hero h2,
.account-orders__head h2,
.account-profile h2,
.account-order-card h3,
.order-confirmation__card h3 {
    margin: 0.25rem 0 0;
    color: var(--site-text);
    font-weight: 900;
    letter-spacing: 0;
}

.order-confirmation__hero p,
.account-profile p {
    margin: 0.5rem 0 0;
    color: var(--site-muted);
}

.order-confirmation__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 1.35rem;
}

.order-confirmation__meta span,
.account-order-card__meta span {
    display: block;
    color: var(--site-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.order-confirmation__meta strong,
.account-order-card__meta strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--site-text);
    font-weight: 900;
}

.order-confirmation__list,
.account-orders {
    display: grid;
    gap: 1rem;
}

.order-confirmation__card,
.account-order-card {
    overflow: hidden;
}

.order-confirmation__card-head,
.account-order-card__head,
.account-orders__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--site-border);
}

.order-confirmation__badges,
.account-order-card__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.order-confirmation__badges span,
.account-order-card__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 0.65rem;
    border-radius: 8px;
    background: #eef8f1;
    color: #1f7a4d;
    font-size: 0.8rem;
    font-weight: 900;
}

.order-confirmation__items,
.account-order-card__items {
    padding: 0 1.25rem;
}

.order-confirmation__totals,
.account-order-card__totals {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 1rem 1.25rem;
    background: #f8fbfc;
}

.order-confirmation__totals div,
.account-order-card__totals div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.order-confirmation__totals dt,
.order-confirmation__totals dd,
.account-order-card__totals dt,
.account-order-card__totals dd {
    margin: 0;
}

.order-confirmation__totals dt,
.account-order-card__totals dt {
    color: var(--site-muted);
}

.order-confirmation__totals dd,
.account-order-card__totals dd {
    color: var(--site-text);
    font-weight: 900;
}

.order-confirmation__address {
    margin: 0;
    padding: 1rem 1.25rem;
    color: var(--site-muted);
    border-top: 1px solid var(--site-border);
}

.order-confirmation__actions,
.account-orders__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-confirmation__toolbar {
    display: flex;
    justify-content: flex-end;
}

.order-confirmation__item-row {
    align-items: center;
}

.order-confirmation__item-main {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.order-confirmation__item-photo {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    background: #f8fbfc;
}

.order-confirmation__item-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
}

.account-profile {
    padding: 1.25rem;
    position: sticky;
    top: 178px;
}

.account-profile__avatar {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff2eb;
    color: var(--site-accent-dark);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.account-profile form {
    margin-top: 1.25rem;
}

.account-orders__head {
    padding: 0;
    border: 0;
}

.account-order-card__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--site-border);
}

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

.checkout-span {
    grid-column: 1 / -1;
}

.checkout-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.public-site-body .form-control,
.public-site-body .form-select,
.public-site-body select.form-control,
.public-site-body textarea.form-control {
    width: 100%;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border: 1px solid #d7e0ea;
    border-radius: 16px;
    background: #ffffff;
    color: var(--site-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.public-site-body textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.public-site-body .form-control::placeholder,
.public-site-body textarea.form-control::placeholder {
    color: #9aa6b2;
}

.public-site-body .form-control:focus,
.public-site-body .form-select:focus,
.public-site-body select.form-control:focus,
.public-site-body textarea.form-control:focus {
    border-color: rgba(240, 105, 35, 0.5);
    box-shadow: 0 0 0 4px rgba(240, 105, 35, 0.12);
    background: #ffffff;
    color: var(--site-text);
}

.public-site-body .form-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #5c6a79;
    font-weight: 700;
}

.checkout-vendor + .checkout-vendor {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--site-border);
}

.market-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--site-border);
}

.market-line--compact {
    padding: 0.75rem 0;
}

.market-line__info strong,
.checkout-vendor > strong {
    display: block;
    font-weight: 800;
}

.market-line__info span {
    color: var(--site-muted);
    font-size: 0.92rem;
}

.market-line__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.market-qty {
    width: 100px;
}

.market-summary {
    margin-top: 1.5rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 28px;
    border: 1px solid var(--site-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.market-summary h2 {
    margin: 0.35rem 0 0;
    font-size: 2.1rem;
    letter-spacing: 0;
}

.market-summary p {
    margin: 0.75rem 0 0;
    color: var(--site-muted);
}

.career-opening-card__actions {
    margin-top: 1.25rem;
}

.career-application-card {
    padding: 1.75rem;
}

.career-application-card .site-btn {
    min-width: 220px;
}

.market-summary__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@keyframes site-loader-bounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .catalog-filters__grid,
    .catalog-filters__grid--advanced {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .business-strip,
    .site-footer__grid {
        display: block;
    }

    .site-header__layout {
        grid-template-columns: 150px minmax(0, 1fr);
        min-height: auto;
        gap: 1.25rem;
    }

    .site-brand--header,
    .site-brand--header .site-brand__logo {
        width: 140px;
    }

    .site-brand--header .site-brand__logo {
        height: 86px;
    }

    .site-header__topline {
        grid-template-columns: minmax(220px, 1fr) auto;
    }

    .site-location-nav {
        justify-content: center;
    }

    .hero-card,
    .promo-grid,
    .card-grid--products,
    .card-grid--vendors,
    .card-grid--info,
    .stats-grid,
    .checkout-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 82px minmax(0, 1fr) 90px 116px;
    }

    .cart-item__remove {
        grid-column: 2 / -1;
        justify-self: end;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-profile {
        position: static;
    }

    .home-booking-bar,
    .catalog-toolbar,
    .market-filterbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .category-browser__head {
        grid-template-columns: 1fr;
    }

    .catalog-filters__head {
        flex-direction: column;
        align-items: stretch;
    }

    .category-browser__home-link,
    .catalog-filters__actions {
        justify-self: stretch;
        width: 100%;
    }

    .catalog-filters__actions a,
    .catalog-filters__actions button {
        flex: 1;
    }

    .catalog-filters__grid,
    .catalog-filters__grid--advanced {
        grid-template-columns: 1fr;
    }

    .category-browser__carousel {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        padding: 0.65rem;
    }

    .category-browser__arrow {
        width: 36px;
        height: 36px;
        font-size: 1.45rem;
    }

    .site-container {
        width: min(100% - 24px, 100%);
    }

    .site-header__layout,
    .site-header__main,
    .site-header__topline,
    .site-header__actions,
    .site-header-search,
    .site-location-nav,
    .hero-search,
    .home-booking-bar,
    .catalog-toolbar,
    .market-filterbar,
    .market-catalog-title,
    .catalog-hero__heading,
    .catalog-status,
    .hero-card,
    .hero-highlights,
    .promo-grid,
    .card-grid--products,
    .card-grid--vendors,
    .card-grid--info,
    .stats-grid,
    .site-footer__grid,
    .checkout-grid,
    .checkout-fields,
    .checkout-inline {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-header__layout {
        padding: 0.8rem 0;
        gap: 0.7rem;
    }

    .site-brand--header {
        justify-self: start;
    }

    .site-brand--header,
    .site-brand--header .site-brand__logo {
        width: 124px;
    }

    .site-brand--header .site-brand__logo {
        height: 77px;
    }

    .site-header-search,
    .site-header__actions {
        justify-content: start;
    }

    .site-header__actions {
        display: flex;
        flex-direction: row;
        justify-content: end;
        gap: 0.7rem;
    }

    .site-header-search {
        width: 100%;
        max-width: none;
        grid-template-columns: auto 1fr auto;
    }

    .site-header__topline {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.7rem;
    }

    .site-category-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .site-category-nav a {
        flex: 0 0 auto;
        min-height: 28px;
    }

    .site-location-nav {
        grid-template-columns: minmax(0, 1fr) 130px;
        gap: 0.65rem;
    }

    .site-location-nav select,
    .site-location-nav input,
    .site-location-nav .site-date-field {
        width: 100%;
        max-width: none;
        height: 38px;
        background: #f4f4f5;
        border-radius: 6px;
        padding: 0 0.75rem;
    }

    .site-language-toggle {
        justify-content: start;
    }

    .hero-card {
        padding: 1.35rem;
        border-radius: 28px;
    }

    .hero-card__content h1 {
        font-size: 2rem;
        max-width: none;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

    .hero-booking__date-row {
        grid-template-columns: 1fr;
    }

    .cart-panel,
    .cart-summary,
    .cart-empty {
        border-radius: 8px;
    }

    .cart-panel,
    .cart-summary {
        padding: 1rem;
    }

    .cart-panel__head,
    .cart-vendor-card__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
    }

    .cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .cart-item__media {
        width: 78px;
        height: 68px;
    }

    .cart-item__qty,
    .cart-item__total,
    .cart-item__remove {
        grid-column: 1 / -1;
    }

    .cart-item__qty {
        grid-template-columns: 1fr 96px;
        align-items: center;
    }

    .cart-item__total {
        justify-items: stretch;
        text-align: left;
    }

    .cart-item__total {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cart-item__remove {
        justify-self: stretch;
    }

    .order-confirmation__hero,
    .order-confirmation__meta,
    .account-order-card__meta {
        grid-template-columns: 1fr;
    }

    .order-confirmation__card-head,
    .account-order-card__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-confirmation__badges,
    .account-order-card__badges {
        justify-content: flex-start;
    }

    .hero-search__icon {
        display: none;
    }

    .hero-search__button,
    .home-booking-bar button,
    .catalog-toolbar__button,
    .market-filterbar__button,
    .site-btn {
        width: 100%;
    }

    .market-catalog-head {
        padding-top: 1.35rem;
    }

    .market-catalog-title {
        align-items: start;
    }

    .market-pagination {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .market-pagination__pages {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-heading {
        gap: 0.75rem;
    }

    .market-line,
    .market-summary {
        display: block;
    }

    .market-line__actions,
    .career-opening-card__actions {
        margin-top: 1.25rem;
    }

    .career-application-card {
        padding: 1.75rem;
    }

    .career-application-card .site-btn {
        min-width: 220px;
    }

    .market-summary__actions {
        margin-top: 0.9rem;
    }
}

/* Final typography pass: predictable readable sizes across public pages. */
.site-brand strong,
.hero-card__content h1,
.page-hero__inner h1,
.section-heading h2,
.business-strip h2,
.hero-booking h3,
.promo-card h3,
.listing-card__body h3,
.vendor-card__body h3,
.info-card h3,
.stat-card strong,
.market-summary h2 {
    letter-spacing: 0;
}

.hero-card__content h1 {
    font-size: 2.55rem;
}

.section-heading h2,
.business-strip h2,
.page-hero__inner h1 {
    font-size: 2.35rem;
}

.market-summary h2 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .hero-card__content h1,
    .section-heading h2,
    .business-strip h2,
    .page-hero__inner h1,
    .market-summary h2 {
        font-size: 1.9rem;
        line-height: 1.16;
    }
}

/* Website compact typography. Keep this scoped to the public site only. */
body.public-site-body {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0;
}

.public-site-body .site-nav a,
.public-site-body .site-btn,
.public-site-body .category-pill,
.public-site-body .section-link,
.public-site-body .hero-booking__link {
    font-size: 0.9rem;
}

.public-site-body .section-heading h2,
.public-site-body .business-strip h2,
.public-site-body .page-hero__inner h1,
.public-site-body .hero-card__content h1 {
    font-size: 1.65rem;
    line-height: 1.2;
}

.public-site-body .hero-card__content p,
.public-site-body .page-hero__inner p,
.public-site-body .catalog-status span,
.public-site-body .form-control,
.public-site-body .form-select,
.public-site-body select.form-control,
.public-site-body textarea.form-control {
    font-size: 0.9rem;
}

.public-site-body .section-eyebrow,
.public-site-body .listing-card__badge {
    font-size: 0.78rem;
}

.public-site-body .listing-card__body,
.public-site-body .vendor-card__body,
.public-site-body .info-card {
    padding: 1rem;
}

.public-site-body .card-grid--vendors {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
}

.public-site-body .vendor-card {
    border-radius: 24px;
}

.public-site-body .vendor-card--logo-only {
    flex: 0 0 260px;
    min-height: 220px;
    padding: 1.5rem;
    align-items: center;
}

.public-site-body .vendor-card__logo--large {
    width: 100%;
    height: auto;
}

.public-site-body .vendor-card--logo-only:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(24, 33, 47, 0.1);
}

[dir="rtl"] .public-site-body .card-grid--vendors {
    justify-content: flex-end;
}

.public-site-body .listing-card__body h3,
.public-site-body .vendor-card__body h3,
.public-site-body .promo-card h3,
.public-site-body .info-card h3 {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.public-site-body .listing-card__body p,
.public-site-body .vendor-card__body p,
.public-site-body .promo-card p,
.public-site-body .info-card p,
.public-site-body .market-line__info span {
    font-size: 0.86rem;
    line-height: 1.55;
}

.public-site-body .vendor-card__body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.public-site-body .listing-card__meta {
    align-items: flex-start;
    margin-top: 0.85rem;
}

.public-site-body .listing-card__meta strong,
.public-site-body .listing-card__meta a,
.public-site-body .listing-card__cta {
    font-size: 0.9rem;
    line-height: 1.35;
}

.public-site-body .listing-card__cta {
    text-align: center;
}

.public-site-body .market-summary h2,
.public-site-body .stat-card strong {
    font-size: 1.45rem;
}

.public-site-body .page-hero--about {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.public-site-body .page-hero--about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(240, 105, 35, 0.12), transparent 32%),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.84));
    pointer-events: none;
}

.public-site-body .about-page-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.public-site-body .about-page-intro,
.public-site-body .about-highlight-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.06);
}

.public-site-body .about-page-intro {
    padding: 2rem 2.1rem;
    border-radius: 32px;
}

.public-site-body .about-page-intro h1 {
    margin: 0.35rem 0 1.1rem;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    line-height: 1.05;
}

.public-site-body .about-page-copy {
    max-width: 720px;
    color: #55657a;
    font-size: 1rem;
    line-height: 1.95;
}

.public-site-body .about-page-highlights {
    display: grid;
    gap: 1rem;
    align-self: stretch;
}

.public-site-body .about-highlight-card {
    padding: 1.3rem 1.35rem;
    border-radius: 24px;
}

.public-site-body .about-highlight-card h3 {
    margin: 0.35rem 0 0.55rem;
    font-size: 1.08rem;
    line-height: 1.25;
}

.public-site-body .about-highlight-card p {
    margin: 0;
    color: #607086;
    font-size: 0.92rem;
    line-height: 1.7;
}

[dir="rtl"] .public-site-body .about-page-shell {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
}

[dir="rtl"] .public-site-body .about-page-intro {
    order: 1;
}

[dir="rtl"] .public-site-body .about-page-highlights {
    order: 2;
}

.public-site-body .page-hero--contact {
    position: relative;
    padding: 3rem 0 2.25rem;
    overflow: hidden;
}

.public-site-body .page-hero--contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(240, 105, 35, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.84));
    pointer-events: none;
}

.public-site-body .contact-page-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.public-site-body .contact-page-main,
.public-site-body .contact-map-card,
.public-site-body .contact-support-card {
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.06);
}

.public-site-body .contact-page-main {
    padding: 2rem 2.1rem;
    border-radius: 32px;
}

.public-site-body .contact-page-main h1 {
    margin: 0.3rem 0 0.8rem;
    font-size: clamp(2.2rem, 3.1vw, 3.4rem);
    line-height: 1.04;
}

.public-site-body .contact-page-main > p {
    max-width: 720px;
    color: #5b6a7f;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.35rem;
}

.public-site-body .contact-action-list {
    display: grid;
    gap: 0.9rem;
}

.public-site-body .contact-action-card {
    display: grid;
    gap: 0.18rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.public-site-body .contact-action-card:hover,
.public-site-body .contact-action-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(240, 105, 35, 0.32);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.public-site-body .contact-action-card__meta {
    color: var(--site-accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.public-site-body .contact-action-card strong {
    font-size: 1.02rem;
    line-height: 1.25;
}

.public-site-body .contact-action-card span:last-child {
    color: #66758a;
    font-size: 0.9rem;
}

.public-site-body .contact-socials {
    margin-top: 1.25rem;
}

.public-site-body .contact-socials--panel {
    margin-top: 1rem;
}

.public-site-body .contact-socials__label {
    display: block;
    color: #5b6a7f;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.public-site-body .contact-socials__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.public-site-body .contact-social-icon {
    display: inline-grid;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: var(--site-text);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.public-site-body .contact-social-icon:hover,
.public-site-body .contact-social-icon:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(240, 105, 35, 0.32);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    color: var(--site-accent-dark);
}

.public-site-body .contact-social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.public-site-body .contact-social-icon span {
    font-size: 0.9rem;
    font-weight: 800;
}

.public-site-body .contact-map-card {
    padding: 1.35rem;
    border-radius: 28px;
}

.public-site-body .contact-map-card__top h3 {
    margin: 0.3rem 0 0;
    font-size: 1.2rem;
}

.public-site-body .contact-fact-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.public-site-body .contact-fact-item {
    display: grid;
    gap: 0.24rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.public-site-body .contact-fact-item span {
    color: var(--site-accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.public-site-body .contact-fact-item strong {
    color: #304b78;
    font-size: 0.96rem;
    line-height: 1.7;
}

.public-site-body .contact-map-embed {
    margin-top: 1rem;
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.public-site-body .contact-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 280px;
    border: 0;
}

.public-site-body .contact-map-link {
    display: grid;
    gap: 0.24rem;
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(240, 105, 35, 0.12), rgba(240, 105, 35, 0.06));
    color: inherit;
}

.public-site-body .contact-map-link span {
    color: var(--site-accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.public-site-body .contact-map-link strong {
    color: #304b78;
    font-size: 1rem;
}

.public-site-body .card-grid--contact-support {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-site-body .contact-support-card {
    border-radius: 24px;
}

[dir="rtl"] .public-site-body .contact-page-shell {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

[dir="rtl"] .public-site-body .contact-page-main {
    order: 2;
}

[dir="rtl"] .public-site-body .contact-page-panel {
    order: 1;
}

@media (max-width: 768px) {
    body.public-site-body {
        font-size: 14px;
    }

    .public-site-body .section-heading h2,
    .public-site-body .business-strip h2,
    .public-site-body .page-hero__inner h1,
    .public-site-body .hero-card__content h1,
    .public-site-body .market-summary h2 {
        font-size: 1.45rem;
    }

    .public-site-body .page-hero--about {
        padding: 2rem 0 2.5rem;
    }

    .public-site-body .about-page-shell,
    [dir="rtl"] .public-site-body .about-page-shell {
        grid-template-columns: 1fr;
    }

    .public-site-body .about-page-intro {
        padding: 1.5rem 1.2rem;
        border-radius: 24px;
    }

    .public-site-body .about-page-copy {
        font-size: 0.94rem;
        line-height: 1.8;
    }

    .public-site-body .page-hero--contact {
        padding: 2rem 0 1.5rem;
    }

    .public-site-body .contact-page-shell,
    [dir="rtl"] .public-site-body .contact-page-shell {
        grid-template-columns: 1fr;
    }

    .public-site-body .contact-page-main,
    .public-site-body .contact-map-card {
        padding: 1.4rem 1.1rem;
        border-radius: 24px;
    }

    .public-site-body .card-grid--contact-support {
        grid-template-columns: 1fr;
    }
}

/* Marketplace refresh: cleaner template-like public header and homepage hero. */
.public-site-body .site-container {
    width: min(1320px, calc(100% - 36px));
}

.public-site-body .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.public-site-body .site-header__layout {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1.75rem;
    padding: 0.8rem 0;
}

.public-site-body .site-brand--header,
.public-site-body .site-brand--header .site-brand__logo {
    width: 142px;
}

.public-site-body .site-brand--header .site-brand__logo {
    height: 86px;
}

.public-site-body .site-header__main {
    gap: 0.65rem;
}

.public-site-body .site-header__topline {
    grid-template-columns: minmax(340px, 560px) auto;
    gap: 1rem;
    align-items: center;
}

.public-site-body .site-header-search {
    max-width: 560px;
    height: 44px;
    padding: 0 0.75rem 0 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #8b95a3;
}

.public-site-body .site-header-search input {
    font-size: 0.86rem;
    font-weight: 600;
}

.public-site-body .site-header-search button {
    width: 32px;
    height: 32px;
    border-radius: 10px;
}

.public-site-body .site-header__actions {
    gap: 0.55rem;
}

.public-site-body .site-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #7d8795;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.public-site-body .site-icon-btn:hover {
    background: #f3f4f6;
    color: var(--site-text);
}

.public-site-body .site-icon-btn i {
    font-size: 0.95rem;
}

.public-site-body .site-language-toggle {
    padding: 0.2rem;
    border-radius: 999px;
    background: #f8fafc;
    border-color: #e5e7eb;
}

.public-site-body .site-language-toggle__item {
    min-width: 42px;
    padding: 0.5rem 0.6rem;
    border-radius: 999px;
    font-size: 0.77rem;
}

.public-site-body .site-language-toggle__item.is-active {
    background: #111827;
    box-shadow: none;
}

.public-site-body .site-category-nav {
    justify-content: flex-start;
    gap: 0.25rem 1rem;
    padding-top: 0.1rem;
}

.public-site-body .site-category-nav a {
    position: relative;
    min-height: 28px;
    padding: 0.25rem 0.15rem 0.4rem;
    border-radius: 0;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 700;
}

.public-site-body .site-category-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.1rem;
    height: 2px;
    border-radius: 999px;
    background: transparent;
}

.public-site-body .site-category-nav a:hover,
.public-site-body .site-category-nav a.is-active {
    background: transparent;
    color: var(--site-text);
}

.public-site-body .site-category-nav a:hover::after,
.public-site-body .site-category-nav a.is-active::after {
    background: rgba(240, 105, 35, 0.9);
}

.public-site-body .site-location-nav {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: -0.05rem;
}

.public-site-body .site-location-nav select,
.public-site-body .site-location-nav input,
.public-site-body .site-location-nav .site-date-field {
    max-width: none;
    width: auto;
    height: 30px;
    padding: 0 0.2rem;
    background: transparent;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 700;
}

.public-site-body .site-location-nav select {
    min-width: 110px;
}

.public-site-body .site-location-nav .site-date-field {
    min-width: 118px;
}

.public-site-body .site-location-nav .site-date-field--compact input {
    padding-right: 1.9rem;
}

.public-site-body .site-location-nav .site-date-field__trigger {
    width: 24px;
    height: 24px;
    right: 0;
    border-radius: 999px;
    background: rgba(240, 105, 35, 0.1);
    color: var(--site-accent-dark);
}

.public-site-body .hero-section {
    padding: 1.1rem 0 1.4rem;
}

.public-site-body .hero-card--market {
    min-height: 470px;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
    gap: 1.2rem;
    padding: 2rem;
    border-radius: 30px;
    background:
        linear-gradient(94deg, rgba(15, 23, 42, 0.76) 0%, rgba(15, 23, 42, 0.48) 42%, rgba(15, 23, 42, 0.12) 100%),
        linear-gradient(180deg, rgba(240, 105, 35, 0.18) 0%, rgba(240, 105, 35, 0) 100%),
        var(--hero-banner-image, url('/storage/products/gallery/qIv37I3SIZVUkUElrHMltX2Aj3SAeq4OfUAzzcH4.jpg')) center/cover no-repeat;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.public-site-body .hero-card--market::before {
    content: "";
    position: absolute;
    inset: auto auto 1.3rem 1.3rem;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(240, 105, 35, 0.22) 0%, rgba(240, 105, 35, 0) 70%);
    pointer-events: none;
}

.public-site-body .hero-card__content {
    align-self: end;
    max-width: 640px;
}

.public-site-body .hero-card__content h1 {
    font-size: 2.55rem;
    line-height: 1.04;
    max-width: 12ch;
    color: #ffffff;
}

.public-site-body .hero-card__content p {
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.84);
}

.public-site-body .hero-card__actions {
    margin-top: 1.3rem;
}

.public-site-body .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.public-site-body .hero-highlight {
    min-height: 94px;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.public-site-body .hero-highlight strong {
    font-size: 0.98rem;
    color: #fff;
}

.public-site-body .hero-highlight span {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
}

.public-site-body .hero-booking {
    align-self: center;
    padding: 1.45rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
}

.public-site-body .hero-booking__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(240, 105, 35, 0.1);
    color: var(--site-accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.public-site-body .hero-booking h3 {
    margin-top: 0.7rem;
    font-size: 1.2rem;
}

.public-site-body .hero-booking p {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.6;
}

.public-site-body .hero-booking__fields {
    margin-top: 1rem;
    gap: 0.75rem;
}

.public-site-body .hero-booking__date-row {
    grid-template-columns: minmax(0, 1fr) 120px;
}

.public-site-body .hero-field {
    border-radius: 16px;
    border-color: #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    font-size: 0.92rem;
}

.public-site-body .hero-booking .site-btn--primary {
    min-height: 48px;
    border-radius: 16px;
}

.public-site-body .promo-section {
    padding-top: 0.25rem;
}

.public-site-body .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.public-site-body .promo-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid #eef2f7;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

@media (max-width: 1100px) {
    .public-site-body .site-header__layout {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 1rem;
    }

    .public-site-body .site-brand--header,
    .public-site-body .site-brand--header .site-brand__logo {
        width: 126px;
    }

    .public-site-body .site-brand--header .site-brand__logo {
        height: 78px;
    }

    .public-site-body .site-header__topline {
        grid-template-columns: minmax(220px, 1fr) auto;
    }

    .public-site-body .hero-card--market {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .public-site-body .hero-card__content h1 {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .public-site-body .site-container {
        width: min(100%, calc(100% - 24px));
    }

    .public-site-body .site-header__layout {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .public-site-body .site-brand--header {
        justify-self: center;
    }

    .public-site-body .site-header__topline {
        grid-template-columns: 1fr;
    }

    .public-site-body .site-header__actions {
        justify-content: flex-start;
    }

    .public-site-body .site-location-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .public-site-body .site-location-nav select,
    .public-site-body .site-location-nav .site-date-field {
        width: 100%;
        min-width: 0;
        padding: 0 0.7rem;
        height: 38px;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
    }

    .public-site-body .hero-section {
        padding-top: 0.7rem;
    }

    .public-site-body .hero-card--market {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .public-site-body .hero-card__content h1 {
        font-size: 1.85rem;
    }

    .public-site-body .hero-highlights,
    .public-site-body .promo-grid {
        grid-template-columns: 1fr;
    }
}

.public-site-body .hero-section {
    padding: 1rem 0 1.5rem;
}

.public-site-body .market-hero-shell {
    display: grid;
    gap: 1rem;
}

.public-site-body .market-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 28px;
    background:
        linear-gradient(92deg, rgba(15, 23, 42, 0.74) 0%, rgba(15, 23, 42, 0.44) 38%, rgba(15, 23, 42, 0.08) 100%),
        linear-gradient(180deg, rgba(240, 105, 35, 0.16) 0%, rgba(240, 105, 35, 0) 100%),
        var(--hero-banner-image, url('/storage/products/gallery/qIv37I3SIZVUkUElrHMltX2Aj3SAeq4OfUAzzcH4.jpg')) center/cover no-repeat;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.public-site-body .market-hero-banner::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(240, 105, 35, 0.26) 0%, rgba(240, 105, 35, 0) 72%);
}

.public-site-body .market-hero-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: 2rem;
    max-width: 640px;
}

.public-site-body .market-hero-banner__content h1 {
    margin: 0;
    font-size: 2.8rem;
    line-height: 1.02;
    color: #fff;
    max-width: 12ch;
}

.public-site-body .market-hero-banner__content p {
    margin: 0.9rem 0 0;
    max-width: 56ch;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.public-site-body .market-quickbar {
    display: grid;
    grid-template-columns: minmax(250px, 1.45fr) minmax(190px, 0.95fr) 104px 92px;
    gap: 0.9rem;
    align-items: end;
    padding: 1rem 1.05rem;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.public-site-body .market-quickbar__field {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
    margin: 0;
}

.public-site-body .market-quickbar__field > span {
    color: #6b7280;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.public-site-body .market-quickbar .hero-field {
    height: 48px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    font-size: 0.9rem;
    font-weight: 700;
}

.public-site-body .market-quickbar__button {
    min-height: 48px;
    border-radius: 16px;
}

.public-site-body .market-quickbar .site-date-field__trigger {
    right: 0.9rem;
}

.public-site-body .market-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.public-site-body .market-feature-card {
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.public-site-body .market-feature-card h3 {
    margin: 0.35rem 0 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--site-text);
}

.public-site-body .market-feature-card p {
    margin: 0.45rem 0 0;
    color: #6b7280;
    font-size: 0.84rem;
    line-height: 1.6;
}

.public-site-body .promo-section {
    padding-top: 0.4rem;
}

.public-site-body .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.public-site-body .promo-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid #eef2f7;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

@media (max-width: 1100px) {
    .public-site-body .market-quickbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-site-body .market-quickbar__button {
        grid-column: span 2;
    }

    .public-site-body .market-feature-row,
    .public-site-body .promo-grid {
        grid-template-columns: 1fr;
    }

    .public-site-body .market-hero-banner__content h1 {
        max-width: none;
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .public-site-body .market-hero-banner {
        min-height: 300px;
        border-radius: 24px;
    }

    .public-site-body .market-hero-banner__content {
        min-height: 300px;
        padding: 1.3rem;
    }

    .public-site-body .market-hero-banner__content h1 {
        font-size: 1.9rem;
    }

    .public-site-body .market-quickbar {
        grid-template-columns: 1fr;
        padding: 0.95rem;
        border-radius: 20px;
    }

    .public-site-body .market-quickbar__button {
        grid-column: auto;
    }
}

/* Homepage stage refresh: static page nav + full-width banner + category cards. */
.public-site-body .site-header {
    background: rgb(0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: none;
}

.public-site-body .site-header__topline {
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.public-site-body .site-nav--pages {
    justify-content: flex-start;
    gap: 1.15rem;
    min-width: 0;
}

.public-site-body .site-nav--pages a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
}

.public-site-body .site-nav--pages a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    border-radius: 999px;
    background: transparent;
}

.public-site-body .site-nav--pages a:hover,
.public-site-body .site-nav--pages a.is-active {
    color: #fff;
}

.public-site-body .site-nav--pages a:hover::after,
.public-site-body .site-nav--pages a.is-active::after {
    background: rgba(240, 105, 35, 0.95);
}

.public-site-body .site-header-search {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}

.public-site-body .site-icon-btn,
.public-site-body .site-location-nav select,
.public-site-body .site-location-nav input,
.public-site-body .site-location-nav .site-date-field {
    color: rgba(255, 255, 255, 0.82);
}

.public-site-body .site-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.public-site-body .site-language-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.public-site-body .site-language-toggle__item {
    color: rgba(255, 255, 255, 0.78);
}

.public-site-body .site-language-toggle__item.is-active {
    background: #fff;
    color: #111827;
}

.public-site-body .site-location-nav .site-date-field__trigger {
    background: rgba(240, 105, 35, 0.18);
    color: #ffc29a;
}

.public-site-body .site-location-nav--hero {
    display: grid;
    grid-template-columns: minmax(300px, 520px) 150px 130px;
    align-items: center;
    gap: 1rem;
    margin-top: 0.2rem;
}

.public-site-body .site-header-search--inline {
    max-width: none;
}

.public-site-body .home-stage {
    position: relative;
    margin-top: -165px;
    padding: 8.25rem 0 1.1rem;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.5) 38%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(180deg, rgba(240, 105, 35, 0.16) 0%, rgba(240, 105, 35, 0) 100%),
        var(--hero-banner-image, url('/storage/products/gallery/qIv37I3SIZVUkUElrHMltX2Aj3SAeq4OfUAzzcH4.jpg')) center/cover no-repeat;
}

.public-site-body .home-stage__inner {
    display: grid;
    gap: 1.6rem;
    min-height: 620px;
    padding-top: 8.3rem;
}

.public-site-body .home-stage__content {
    max-width: 680px;
    color: #fff;
    padding-top: 3rem;
}

.public-site-body .home-stage__content h1 {
    margin: 0;
    width: min(100%, 800px);
    max-width: 800px;
    color: #fff;
    font-size: 3.15rem;
    line-height: 1.02;
}

.public-site-body .home-stage__content p {
    margin: 1rem 0 0;
    max-width: 56ch;
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.public-site-body .home-stage__booking {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.9fr) 104px 110px;
    gap: 0.95rem;
    align-items: end;
    max-width: 700px;
}

.public-site-body .home-stage__field {
    display: grid;
    gap: 0.38rem;
    min-width: 0;
    margin: 0;
}

.public-site-body .home-stage__field > span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
}

.public-site-body .home-stage__booking .hero-field {
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.public-site-body .home-stage__booking select.hero-field,
.public-site-body .site-location-nav--hero select {
    color-scheme: light;
}

.public-site-body .home-stage__booking select.hero-field option,
.public-site-body .site-location-nav--hero select option {
    color: #111827;
    background: #ffffff;
}

.public-site-body .home-stage__booking .hero-field::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.public-site-body .home-stage__booking .site-date-field__trigger {
    right: 0.95rem;
    background: rgba(240, 105, 35, 0.2);
    color: #ffc29a;
}

.public-site-body .home-stage__button {
    min-height: 52px;
    border-radius: 18px;
}

.public-site-body .home-stage__categories {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-self: end;
    transform: translateY(52%);
    margin-top: -2.25rem;
    position: relative;
    z-index: 2;
}

.public-site-body .promo-section {
    padding-top: 11.5rem;
}

.public-site-body .hero-category-card {
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    padding: 1rem 0.8rem 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-site-body .hero-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
}

.public-site-body .hero-category-card__image {
    width: 78px;
    height: 60px;
    display: grid;
    place-items: center;
}

.public-site-body .hero-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.public-site-body .hero-category-card__label {
    color: var(--site-text);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

@media (max-width: 1200px) {
    .public-site-body .home-stage__categories {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .public-site-body .site-header__topline {
        grid-template-columns: 1fr;
        justify-content: start;
    }

    .public-site-body .site-location-nav--hero {
        grid-template-columns: 1fr 150px 130px;
    }

    .public-site-body .home-stage {
        margin-top: -145px;
        padding-top: 7rem;
    }

    .public-site-body .home-stage__inner {
        min-height: 0;
        padding-top: 7rem;
    }

    .public-site-body .home-stage__content h1 {
        max-width: none;
        font-size: 2.5rem;
    }

    .public-site-body .home-stage__content {
        padding-top: 2.2rem;
    }

    .public-site-body .home-stage__booking {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-site-body .home-stage__button {
        grid-column: span 2;
    }

    .public-site-body .home-stage__categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        transform: translateY(42%);
    }

    .public-site-body .promo-section {
        padding-top: 8.5rem;
    }
}

@media (max-width: 768px) {
    .public-site-body .site-nav--pages {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
    }

    .public-site-body .site-location-nav--hero {
        grid-template-columns: 1fr;
    }

    .public-site-body .home-stage {
        margin-top: -120px;
        padding: 6.35rem 0 1rem;
    }

    .public-site-body .home-stage__inner {
        padding-top: 5.6rem;
        gap: 1.2rem;
    }

    .public-site-body .home-stage__content h1 {
        font-size: 2rem;
    }

    .public-site-body .home-stage__content {
        padding-top: 1.4rem;
    }

    .public-site-body .home-stage__booking {
        grid-template-columns: 1fr;
    }

    .public-site-body .home-stage__button {
        grid-column: auto;
    }

    .public-site-body .home-stage__categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        transform: translateY(26%);
        margin-top: -1rem;
    }

    .public-site-body .promo-section {
        padding-top: 4.5rem;
    }
}

@media (max-width: 900px) {
    .category-browser__head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .category-browser__back,
    .category-browser__home-link {
        width: fit-content;
    }

    .category-browser__home-link {
        justify-self: start;
    }

    .category-browser__summary h1 {
        font-size: 1.35rem;
    }

    .category-browser__switcher {
        margin-inline: -0.15rem;
        padding-inline: 0.15rem;
    }
}

/* Cart polish: richer product cards without increasing the page scale. */
.public-site-body .cart-section {
    background:
        radial-gradient(circle at 8% 6%, rgba(240, 105, 35, 0.09), transparent 30%),
        radial-gradient(circle at 94% 18%, rgba(30, 180, 91, 0.08), transparent 28%);
}

.public-site-body .cart-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 1rem;
    align-items: start;
}

.public-site-body .cart-panel,
.public-site-body .cart-section .cart-summary,
.public-site-body .cart-empty {
    border-color: rgba(215, 224, 234, 0.95);
    border-radius: 24px;
    box-shadow: 0 22px 52px rgba(24, 33, 47, 0.07);
}

.public-site-body .cart-panel {
    overflow: hidden;
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.public-site-body .cart-panel__head {
    padding: 1.1rem 1.2rem;
    background:
        linear-gradient(90deg, rgba(240, 105, 35, 0.08), transparent 46%),
        #ffffff;
}

.public-site-body .cart-panel__head h2 {
    font-size: 1.1rem;
}

.public-site-body .cart-panel__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 0.9rem;
    border: 1px solid #f2d5ca;
    border-radius: 999px;
    background: #fff7f3;
    color: var(--site-accent-dark);
}

.public-site-body .cart-vendor-list {
    gap: 0.9rem;
    margin: 0;
    padding: 1rem;
}

.public-site-body .cart-vendor-card {
    border-color: #e6edf3;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(24, 33, 47, 0.045);
}

.public-site-body .cart-vendor-card__head {
    padding: 0.9rem 1rem;
    background: #fbfcfd;
}

.public-site-body .cart-vendor-card__head h3 {
    font-size: 0.95rem;
}

.public-site-body .cart-item {
    grid-template-columns: 96px minmax(0, 1fr) 78px 112px auto;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
}

.public-site-body .cart-item__media {
    width: 96px;
    height: 78px;
    border: 1px solid #e3eaf1;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7f3, #f7fbff);
}

.public-site-body .cart-item__details h4 {
    font-size: 0.94rem;
    font-weight: 900;
}

.public-site-body .cart-item__qty input {
    width: 76px;
    height: 40px;
    border-radius: 13px;
    font-size: 0.9rem;
}

.public-site-body .cart-item__total strong {
    color: #10274f;
    font-size: 0.92rem;
}

.public-site-body .cart-item__remove {
    min-height: 36px;
    border-radius: 999px;
}

.public-site-body .cart-section .cart-summary {
    top: 148px;
    padding: 1.1rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(240, 105, 35, 0.12), transparent 34%),
        #ffffff;
}

.public-site-body .cart-section .cart-summary h2 {
    color: #10274f;
    font-size: 1.45rem;
}

.public-site-body .cart-section .cart-summary dl {
    margin: 1rem 0;
}

.public-site-body .cart-summary__actions .site-btn {
    min-height: 46px;
}

@media (max-width: 1100px) {
    .public-site-body .cart-layout {
        grid-template-columns: 1fr;
    }

    .public-site-body .cart-section .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .public-site-body .cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
        align-items: start;
    }

    .public-site-body .cart-item__media {
        width: 78px;
        height: 68px;
    }

    .public-site-body .cart-item__qty,
    .public-site-body .cart-item__total,
    .public-site-body .cart-item__remove {
        grid-column: 2;
        justify-self: stretch;
    }

    .public-site-body .cart-item__total {
        justify-items: start;
        text-align: left;
    }

    .public-site-body .cart-panel__head {
        display: grid;
        align-items: start;
    }

    .public-site-body .cart-panel__link {
        width: fit-content;
    }
}

/* Compact public header: icon search + booking picker modal. */
.public-site-body.site-modal-open {
    overflow: hidden;
}

.public-site-body .site-header__topline {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
}

.public-site-body .site-header__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.public-site-body .site-location-nav--hero {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.1rem;
}

.public-site-body .site-booking-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-height: 34px;
    max-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.public-site-body .site-booking-pill span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 30px;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    font-size: 0.82rem;
    font-weight: 850;
    white-space: nowrap;
}

.public-site-body .site-booking-pill i {
    color: #ffc29a;
    font-size: 0.9rem;
}

.public-site-body .site-booking-pill:hover span,
.public-site-body .site-booking-pill:focus-visible span {
    background: rgba(240, 105, 35, 0.18);
}

.public-site-body .site-booking-pill:focus-visible {
    outline: none;
}

.public-site-body .site-modal[hidden] {
    display: none !important;
}

.public-site-body .site-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: start center;
    padding: 6rem 1.25rem 1.25rem;
    background:
        radial-gradient(circle at 75% 12%, rgba(240, 105, 35, 0.22), transparent 30%),
        rgba(8, 15, 28, 0.68);
    backdrop-filter: blur(10px);
}

.public-site-body .site-modal__panel {
    position: relative;
    width: min(520px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(30, 180, 91, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: 0 34px 80px rgba(8, 15, 28, 0.3);
}

.public-site-body .site-modal__panel--search {
    width: min(620px, 100%);
}

.public-site-body .site-modal__close {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #e0e8ef;
    border-radius: 999px;
    background: #ffffff;
    color: var(--site-text);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
}

.public-site-body .site-modal-search,
.public-site-body .site-booking-form {
    display: grid;
    gap: 0.95rem;
    padding: 1.45rem;
}

.public-site-body .site-modal-search h2,
.public-site-body .site-booking-form h2 {
    margin: 0;
    padding-inline-end: 2.75rem;
    color: #10274f;
    font-size: 1.55rem;
    font-weight: 950;
    line-height: 1.12;
}

.public-site-body .site-modal-search__field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0 1rem;
    border: 1px solid #dce6ee;
    border-radius: 18px;
    background: #ffffff;
}

.public-site-body .site-modal-search__field i {
    color: var(--site-accent-dark);
}

.public-site-body .site-modal-search__field input,
.public-site-body .site-booking-form input,
.public-site-body .site-booking-form select,
.public-site-body .site-booking-form .site-date-field {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border: 1px solid #dce6ee;
    border-radius: 18px;
    background: #ffffff;
    color: var(--site-text);
    font: inherit;
    font-weight: 800;
    outline: none;
}

.public-site-body .site-modal-search__field input {
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.public-site-body .site-booking-form label {
    display: grid;
    gap: 0.4rem;
    margin: 0;
}

.public-site-body .site-booking-form label > span {
    color: var(--site-text);
    font-size: 0.8rem;
    font-weight: 900;
}

.public-site-body .site-booking-form input,
.public-site-body .site-booking-form select {
    padding: 0 1rem;
}

.public-site-body .site-booking-form .site-date-field input {
    border: 0;
    min-height: 52px;
    padding-inline-end: 3rem;
}

.public-site-body .site-booking-form .site-date-field__trigger {
    inset-inline-end: 0.8rem;
    right: 0.8rem;
}

.public-site-body.public-site-body--rtl .site-booking-form .site-date-field__trigger {
    right: auto;
    left: 0.8rem;
}

@media (max-width: 1100px) {
    .public-site-body .site-header__topline {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .public-site-body .site-booking-pill span {
        font-size: 0.76rem;
        padding-inline: 0.5rem;
    }
}

@media (max-width: 768px) {
    .public-site-body .site-header__layout {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .public-site-body .site-brand--header {
        justify-self: start;
    }

    .public-site-body .site-header__topline {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .public-site-body .site-header__actions {
        justify-content: flex-start;
        order: -1;
    }

    .public-site-body .site-booking-pill {
        order: 2;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .public-site-body .site-booking-pill::-webkit-scrollbar {
        display: none;
    }

    .public-site-body .site-booking-pill span {
        font-size: 0.76rem;
        padding: 0.34rem 0.58rem;
    }

    .public-site-body .site-modal {
        padding: 4.5rem 0.8rem 0.8rem;
        place-items: start center;
    }

    .public-site-body .site-modal-search,
    .public-site-body .site-booking-form {
        padding: 1.15rem;
    }

    .public-site-body .site-modal-search h2,
    .public-site-body .site-booking-form h2 {
        font-size: 1.25rem;
    }
}

/* Mobile public navigation drawer. */
.public-site-body .site-menu-toggle {
    display: none;
}

.public-site-body .site-menu-toggle span {
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
    .public-site-body .site-header__topline {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 0.55rem;
    }

    .public-site-body .site-menu-toggle {
        display: inline-grid;
        gap: 3px;
        place-content: center;
    }

    .public-site-body .site-header__actions {
        width: 100%;
        justify-content: flex-end;
        order: 1;
    }

    .public-site-body .site-nav--pages {
        display: grid;
        width: 100%;
        max-height: 0;
        order: 2;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
    }

    .public-site-body .site-header__main.is-menu-open .site-nav--pages {
        max-height: 320px;
        padding: 0.45rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        opacity: 1;
        transform: translateY(0);
    }

    .public-site-body .site-nav--pages a {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0.72rem 0.85rem;
        border-radius: 14px;
    }

    .public-site-body .site-nav--pages a.is-active,
    .public-site-body .site-nav--pages a:hover {
        background: rgba(240, 105, 35, 0.16);
    }

    .public-site-body .site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .public-site-body .site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .public-site-body .site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }
}

body.product-modal-open {
    overflow: hidden;
}

.listing-card__quick-view {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    padding: 0.48rem 0.78rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--site-accent-dark);
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(24, 33, 47, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.listing-card__image[data-product-modal-open] {
    cursor: pointer;
}

.listing-card__quick-view:hover,
.listing-card__quick-view:focus-visible {
    transform: translateY(-1px);
    background: var(--site-accent);
    color: #ffffff;
    outline: none;
}

.listing-card__title-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-align: inherit;
    cursor: pointer;
}

.listing-card__title-button:hover,
.listing-card__title-button:focus-visible {
    color: var(--site-accent-dark);
    outline: none;
}

.listing-card__image .listing-card__quick-view + .listing-card__availability {
    right: 1rem;
}

.product-quick-modal[hidden] {
    display: none !important;
}

.product-quick-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.product-quick-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(240, 105, 35, 0.26), transparent 32%),
        radial-gradient(circle at 90% 85%, rgba(30, 180, 91, 0.18), transparent 30%),
        rgba(7, 13, 24, 0.68);
    backdrop-filter: blur(12px);
}

.product-quick-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    width: min(1120px, 100%);
    height: min(860px, calc(100vh - 2.5rem));
    max-height: min(860px, calc(100vh - 2.5rem));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 34px;
    background:
        radial-gradient(circle at 0% 0%, rgba(240, 105, 35, 0.1), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 38px 95px rgba(7, 13, 24, 0.34);
}

.product-quick-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(224, 232, 239, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--site-text);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(24, 33, 47, 0.12);
    cursor: pointer;
}

.product-quick-modal__scroll-hint {
    position: absolute;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(240, 105, 35, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-accent-dark);
    font-size: 0.74rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(24, 33, 47, 0.1);
}

.product-quick-modal__gallery {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    min-height: 0;
    overflow: auto;
    padding: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 247, 241, 0.9), rgba(241, 249, 245, 0.9)),
        #f7fbf8;
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 105, 35, 0.5) transparent;
}

.product-quick-modal__image {
    display: grid;
    place-items: center;
    min-height: 0;
    height: min(520px, calc(100vh - 8rem));
    overflow: hidden;
    border: 1px solid #e0e9e2;
    border-radius: 28px;
    background: #ffffff;
}

.product-quick-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-quick-modal__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
}

.product-quick-modal__thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 18px;
    background: #ffffff;
    padding: 0;
    cursor: pointer;
}

.product-quick-modal__thumb.is-active {
    border-color: var(--site-accent);
    box-shadow: 0 10px 24px rgba(240, 105, 35, 0.16);
}

.product-quick-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-quick-modal__content {
    min-height: 0;
    height: 100%;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 2rem 2.25rem 5rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 105, 35, 0.72) rgba(24, 33, 47, 0.08);
}

.product-quick-modal__content::-webkit-scrollbar {
    width: 10px;
}

.product-quick-modal__content::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(24, 33, 47, 0.08);
}

.product-quick-modal__content::-webkit-scrollbar-thumb {
    border: 2px solid rgba(248, 251, 255, 0.95);
    border-radius: 999px;
    background: var(--site-accent);
}

.product-quick-modal__content::after {
    content: "";
    position: sticky;
    bottom: -5rem;
    display: block;
    height: 36px;
    margin: 0 -2.25rem -5rem -2rem;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0), rgba(248, 251, 255, 0.96));
}

.product-quick-modal__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-right: 3rem;
}

.product-quick-modal__head h2 {
    margin: 0.35rem 0 0;
    color: var(--site-text);
    font-size: clamp(1.7rem, 2.8vw, 3rem);
    font-weight: 900;
    line-height: 1.06;
}

.product-quick-modal__price {
    min-width: 132px;
    align-self: start;
    padding: 0.8rem 0.95rem;
    border: 1px solid #f2d3c3;
    border-radius: 22px;
    background: #fff5ee;
    text-align: center;
}

.product-quick-modal__price span,
.product-quick-modal__facts span,
.product-quick-modal__spec-grid span {
    display: block;
    color: var(--site-muted);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-quick-modal__price strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--site-accent-dark);
    font-size: 1.2rem;
    font-weight: 950;
}

.product-quick-modal__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.product-quick-modal__facts div {
    min-width: 130px;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e3ebf2;
    border-radius: 18px;
    background: #ffffff;
}

.product-quick-modal__facts strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--site-text);
    font-weight: 950;
}

.product-quick-modal__section {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e8edf2;
}

.product-quick-modal__section h3 {
    margin: 0 0 0.7rem;
    color: var(--site-text);
    font-size: 1rem;
    font-weight: 950;
}

.product-quick-modal__section p {
    margin: 0;
    color: #66728a;
    line-height: 1.82;
}

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

.product-quick-modal__spec-grid div,
.product-quick-modal__requirement-grid div {
    padding: 0.85rem;
    border: 1px solid #dfe9e3;
    border-radius: 18px;
    background: #fbfffc;
}

.product-quick-modal__spec-grid strong {
    display: block;
    margin-top: 0.15rem;
    color: var(--site-text);
    font-size: 1rem;
    font-weight: 950;
}

.product-quick-modal__requirement-grid div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.55rem;
    align-items: center;
}

.product-quick-modal__requirement-grid span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #1fb45b;
    color: #ffffff;
    font-weight: 950;
}

.product-quick-modal__requirement-grid strong {
    color: var(--site-text);
    font-weight: 950;
}

.product-quick-modal__requirement-grid small {
    grid-column: 2;
    color: var(--site-muted);
    font-weight: 800;
}

.product-quick-modal__policy-title {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-quick-modal__policy-title span {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--site-text);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 950;
    line-height: 1;
}

.product-quick-modal__policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}

.product-quick-modal__policy-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    min-height: 62px;
}

.product-quick-modal__policy-grid i {
    color: var(--site-accent);
    font-size: 1.72rem;
    line-height: 1;
}

.product-quick-modal__policy-grid strong {
    display: block;
    color: var(--site-text);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.2;
}

.product-quick-modal__policy-grid span {
    display: block;
    margin-top: 0.18rem;
    color: #526178;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
}

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

.product-quick-modal__safety-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 0.62rem;
    min-height: 48px;
    padding: 0.62rem 0.72rem;
    border: 1px solid #f4d9ca;
    border-radius: 16px;
    background: #fff8f3;
    color: var(--site-text);
    font-weight: 900;
}

.product-quick-modal__safety-grid i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(240, 105, 35, 0.12);
    color: var(--site-accent-dark);
    font-size: 1.05rem;
    line-height: 1;
}

.product-quick-modal__safety-grid span {
    line-height: 1.25;
}

.product-quick-modal__actions {
    margin-top: 1.35rem;
}

.product-quick-modal__submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f05f20 0%, #ff7a35 100%);
    color: #ffffff;
    font-weight: 950;
    box-shadow: 0 18px 36px rgba(240, 105, 35, 0.22);
    cursor: pointer;
}

.product-quick-modal__submit:hover,
.product-quick-modal__submit:focus-visible {
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 22px 44px rgba(240, 105, 35, 0.28);
}

.product-quick-modal__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-quick-modal__submit--soft {
    background: #fff2e9;
    color: var(--site-accent-dark);
}

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

.product-quick-modal__snack-form {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #f3d8c8;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(31, 180, 91, 0.08), transparent 28%),
        #fffaf6;
}

.product-quick-modal__snack-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.product-quick-modal__snack-head h3 {
    margin: 0.1rem 0 0;
    color: var(--site-text);
    font-weight: 950;
}

.product-quick-modal__snack-head strong {
    padding: 0.36rem 0.58rem;
    border-radius: 999px;
    background: #effbf3;
    color: #07943e;
    font-size: 0.78rem;
    font-weight: 950;
    white-space: nowrap;
}

.product-quick-modal__booths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-quick-modal__booth-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.35rem;
    min-height: 132px;
    overflow: hidden;
    padding: 0.65rem;
    border: 1px solid #e3ebf2;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
}

.product-quick-modal__booth-card input {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
}

.product-quick-modal__booth-card img {
    width: 100%;
    height: 138px;
    object-fit: cover;
    border-radius: 13px;
    background: #f7f9fb;
}

.product-quick-modal__booth-card span {
    color: var(--site-text);
    font-size: 0.8rem;
    font-weight: 950;
}

.product-quick-modal__booth-card small {
    color: var(--site-accent-dark);
    font-size: 0.74rem;
    font-weight: 900;
}

.product-quick-modal__booth-card:has(input:checked) {
    border-color: rgba(240, 105, 35, 0.74);
    box-shadow: 0 0 0 4px rgba(240, 105, 35, 0.1);
}

.product-quick-modal__booth-card.is-disabled {
    opacity: 0.48;
    cursor: not-allowed;
}

.product-quick-modal__booth-card.is-empty {
    place-content: center;
    text-align: center;
    background: #fff7ed;
}

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

.product-quick-modal__machine-grid label {
    display: grid;
    gap: 0.35rem;
}

.product-quick-modal__machine-grid span {
    color: var(--site-text);
    font-size: 0.78rem;
    font-weight: 950;
}

.product-quick-modal__machine-grid select {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.75rem;
    border: 1px solid #dce6ee;
    border-radius: 15px;
    background: #ffffff;
    color: var(--site-text);
    font-weight: 850;
}

.product-quick-modal__machine-preview {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
    min-height: 72px;
    padding: 0.55rem;
    border: 1px solid #e2ebf1;
    border-radius: 18px;
    background: #ffffff;
}

.product-quick-modal__machine-preview img {
    width: 56px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    background: #f7f9fb;
}

.product-quick-modal__machine-preview strong {
    display: block;
    color: var(--site-text);
    font-size: 0.82rem;
    font-weight: 950;
    line-height: 1.25;
}

.product-quick-modal__machine-preview small {
    display: block;
    margin-top: 0.16rem;
    color: #07943e;
    font-size: 0.74rem;
    font-weight: 900;
}

.product-quick-modal__machine-preview.is-empty {
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 64px;
    text-align: center;
    background: #f9fbfd;
}

.product-quick-modal__machine-preview.is-empty strong {
    color: var(--site-muted);
    font-size: 0.76rem;
}

.product-quick-modal__preview-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-inline: auto;
    border-radius: 999px;
    background: rgba(240, 105, 35, 0.12);
    color: var(--site-accent-dark);
    font-size: 1.2rem;
    font-weight: 950;
}

.product-quick-modal__empty {
    margin: 0;
    padding: 0.9rem;
    border: 1px solid #f3d4c4;
    border-radius: 18px;
    background: #fff7ed;
    color: var(--site-accent-dark);
    font-weight: 900;
}

.rtl .product-quick-modal__close {
    right: auto;
    left: 1rem;
}

.rtl .product-quick-modal__head {
    padding-right: 0;
    padding-left: 3rem;
}

.rtl .product-quick-modal__booth-card input {
    right: auto;
    left: 0.55rem;
}

.rtl .product-quick-modal__policy-grid article,
.rtl .product-quick-modal__safety-grid article {
    direction: rtl;
}

@media (max-width: 960px) {
    .product-quick-modal {
        padding: 0;
    }

    .product-quick-modal__dialog {
        width: 100%;
        height: 100vh;
        max-height: none;
        grid-template-columns: 1fr;
        border-radius: 0;
        overflow: auto;
    }

    .product-quick-modal__gallery {
        padding: 1rem;
    }

    .product-quick-modal__image {
        height: 330px;
    }

    .product-quick-modal__content {
        height: auto;
        overflow: visible;
        padding: 1.2rem;
    }

    .product-quick-modal__content::after {
        display: none;
    }

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

@media (max-width: 640px) {
    .product-quick-modal__head,
    .product-quick-modal__snack-head {
        display: grid;
    }

    .product-quick-modal__price {
        text-align: start;
    }

    .product-quick-modal__facts,
    .product-quick-modal__spec-grid,
    .product-quick-modal__requirement-grid,
    .product-quick-modal__policy-grid,
    .product-quick-modal__safety-grid,
    .product-quick-modal__booths,
    .product-quick-modal__machine-grid,
    .product-quick-modal__split-actions {
        grid-template-columns: 1fr;
    }

    .product-quick-modal__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-quick-modal__image {
        height: 260px;
    }
}
