:root {
    --green: #103632;
    --green-deep: #0a2522;
    --ink: #171717;
    --muted: #6e6a64;
    --sand: #f4f0ea;
    --paper: #fbf8f3;
    --line: #ddd3c6;
    --gold: #c6a66a;
    --gold-soft: #ead9b5;
    --shadow: 0 22px 70px rgba(25, 20, 14, 0.12);
    --heading: "Playfair Display", Georgia, serif;
    --script: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
}

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

.top-note {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    background: var(--green-deep);
    color: var(--gold-soft);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-note span {
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(251, 248, 243, 0.92);
    border-bottom: 1px solid rgba(221, 211, 198, 0.8);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand span,
.site-footer h2 {
    font-family: var(--heading);
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.12em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.main-nav a,
.site-footer a {
    text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
    color: var(--green);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

button,
select,
input {
    font: inherit;
}

.text-action,
.icon-action {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
    color: var(--green);
    cursor: pointer;
}

.text-action {
    height: 38px;
    min-width: 58px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}

.icon-action {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-action svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.cart-trigger span {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 11px;
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: auto;
    aspect-ratio: 2048 / 682;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    background: #e8dcc9;
    color: var(--paper);
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 36px));
    align-self: end;
    padding: clamp(86px, 12vh, 150px) 0 clamp(44px, 8vh, 80px);
    margin-left: clamp(18px, 7vw, 92px);
}

.banner-copy {
    align-self: center;
    width: min(610px, 43vw);
    padding: 0;
    margin-left: clamp(46px, 8vw, 126px);
    color: var(--paper);
}

.banner-script {
    margin: 0 0 10px;
    color: #d8a84a;
    font-family: var(--script);
    font-size: clamp(44px, 5vw, 76px);
    font-style: italic;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.editorial-copy h2,
.product-detail h1,
.collection-hero h1 {
    font-family: var(--heading);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(58px, 10vw, 132px);
    text-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.banner-copy h1 {
    max-width: 520px;
    color: #ffffff;
    font-family: var(--body);
    font-size: clamp(28px, 2.6vw, 42px);
    font-weight: 500;
    line-height: 1.18;
    text-shadow: none;
}

.hero-text {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(251, 248, 243, 0.86);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.75;
}

.banner-copy .hero-text {
    max-width: 480px;
    margin-top: 10px;
    color: rgba(255, 249, 238, 0.84);
    font-size: clamp(17px, 1.65vw, 25px);
    font-weight: 400;
    line-height: 1.42;
}

.banner-button {
    min-height: 44px;
    margin-top: 26px;
    padding: 0 30px;
    background: #d8a84a;
    color: #082d27;
    border-color: #d8a84a;
    border-radius: 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 24px rgba(118, 75, 28, 0.12);
}

.banner-button:hover {
    background: #f0c86b;
    border-color: #f0c86b;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.button.primary {
    background: var(--gold);
    color: var(--green-deep);
}

.button.secondary {
    border-color: rgba(251, 248, 243, 0.34);
    color: var(--paper);
}

.button.secondary.dark {
    border-color: var(--green);
    color: var(--green);
}

.button.full {
    width: 100%;
}

.hero-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    overflow: hidden;
    background: #e8dcc9;
}

.hero-media::after {
    display: none;
}

.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-media img {
    object-fit: cover;
    object-position: center center;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 34px;
    color: rgba(251, 248, 243, 0.8);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-signals span {
    padding-top: 10px;
    border-top: 1px solid rgba(234, 217, 181, 0.58);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.category-strip a {
    padding: 28px 18px;
    text-align: center;
    text-decoration: none;
    font-family: var(--heading);
    font-size: clamp(22px, 2vw, 32px);
    border-right: 1px solid var(--line);
}

.category-strip a:last-child {
    border-right: 0;
}

.category-strip a:hover {
    background: var(--sand);
}

.feature-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.feature-band div {
    padding: 30px clamp(18px, 4vw, 54px);
    background: var(--sand);
}

.feature-band strong,
.feature-band span {
    display: block;
}

.feature-band strong {
    color: var(--green);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-band span {
    margin-top: 8px;
    color: var(--muted);
}

.shop-section,
.collection-page {
    padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 54px);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    color: var(--green);
}

.shop-tools {
    display: flex;
    align-items: end;
    gap: 12px;
}

.search-field {
    display: grid;
    gap: 6px;
    min-width: 260px;
}

.search-field span,
.search-panel label span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.search-field input,
.shop-tools select,
.search-panel input {
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
    border-radius: 2px;
    padding: 0 14px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.filter-row button {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.filter-row button.active,
.filter-row button:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--paper);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(221, 211, 198, 0.82);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--sand);
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    background: rgba(251, 248, 243, 0.92);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-info {
    padding: 15px 16px 16px;
}

.product-kicker {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-info h3 {
    min-height: 42px;
    margin: 7px 0 12px;
    font-family: var(--heading);
    font-size: 20px;
    line-height: 1.15;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price {
    font-weight: 800;
    color: var(--green);
}

.add-btn {
    min-height: 34px;
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--paper);
    padding: 0 12px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.loading-state,
.empty-state {
    grid-column: 1 / -1;
    padding: 70px 24px;
    text-align: center;
    border: 1px dashed var(--line);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.42);
}

.editorial-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(26px, 6vw, 88px);
    padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 54px);
    background: var(--sand);
}

.editorial-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #dfd4c8;
}

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

.editorial-copy h2 {
    margin: 0;
    color: var(--green);
    font-size: clamp(38px, 5vw, 68px);
}

.editorial-copy p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.uae-brand-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(30px, 6vw, 86px);
    padding: clamp(64px, 8vw, 118px) clamp(18px, 4vw, 54px);
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.uae-brand-copy h2,
.answer-section h2 {
    margin: 0;
    color: var(--green);
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.05;
}

.uae-brand-copy p:not(.eyebrow) {
    max-width: 660px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.uae-brand-points {
    display: grid;
    gap: 1px;
    background: var(--line);
    align-self: start;
}

.uae-brand-points article {
    min-height: 170px;
    padding: clamp(22px, 3vw, 34px);
    background: var(--sand);
}

.uae-brand-points span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.uae-brand-points h3 {
    margin: 16px 0 8px;
    color: var(--green);
    font-family: var(--heading);
    font-size: 28px;
    line-height: 1.1;
}

.uae-brand-points p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.answer-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(58px, 7vw, 96px) clamp(18px, 4vw, 54px);
    background: var(--green-deep);
    color: var(--paper);
}

.answer-section .eyebrow,
.answer-section h2 {
    color: var(--paper);
}

.answer-grid {
    display: grid;
    gap: 12px;
}

.answer-grid details {
    border: 1px solid rgba(234, 217, 181, 0.26);
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 20px;
}

.answer-grid summary {
    cursor: pointer;
    color: #fff9ee;
    font-weight: 700;
}

.answer-grid p {
    margin: 12px 0 0;
    color: rgba(251, 248, 243, 0.74);
    line-height: 1.7;
}

.site-footer {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 28px;
    padding: 54px clamp(18px, 4vw, 54px);
    background: var(--green-deep);
    color: rgba(251, 248, 243, 0.74);
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 12px;
    color: var(--paper);
}

.site-footer h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.drawer,
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(10, 37, 34, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.drawer.active,
.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-panel {
    margin-left: auto;
    width: min(440px, 100%);
    height: 100%;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.drawer.active .drawer-panel {
    transform: translateX(0);
}

.drawer-head,
.cart-footer {
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-head h2 {
    margin: 0;
    font-family: var(--heading);
    color: var(--green);
}

.drawer-head button,
.search-panel button {
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: var(--green);
}

.cart-items {
    overflow: auto;
    padding: 18px 22px;
}

.cart-line {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.cart-line img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: var(--sand);
}

.cart-line h3 {
    margin: 0 0 6px;
    font-family: var(--heading);
    font-size: 18px;
}

.cart-line p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.qty-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.qty-tools button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid var(--line);
    border-bottom: 0;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--green);
}

.search-panel {
    width: min(720px, calc(100% - 32px));
    margin: 80px auto 0;
    padding: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.search-panel label {
    display: grid;
    gap: 8px;
}

.search-results {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.search-result {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    border: 1px solid var(--line);
}

.search-result img {
    width: 58px;
    height: 58px;
    object-fit: cover;
}

.product-detail {
    padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
    max-width: 1380px;
    margin: 0 auto;
}

.detail-media {
    display: grid;
    gap: 14px;
}

.detail-main {
    aspect-ratio: 4 / 5;
    background: var(--sand);
    overflow: hidden;
    cursor: zoom-in;
    width: 100%;
    padding: 0;
    border: 0;
    display: block;
}

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

.thumb-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumb-row button {
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--sand);
    overflow: hidden;
    cursor: pointer;
}

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

.product-detail h1 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: clamp(38px, 4vw, 62px);
}

.detail-price {
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.detail-copy {
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
}

.detail-actions {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.detail-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.detail-panel {
    position: sticky;
    top: 112px;
    padding: clamp(6px, 1vw, 16px) 0;
}

.detail-subtitle {
    margin: -8px 0 18px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-accordions {
    margin-top: 24px;
    border-top: 1px solid var(--line);
}

.detail-accordions details {
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
}

.detail-accordions summary {
    cursor: pointer;
    color: var(--green);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.detail-accordions p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(6, 22, 20, 0.9);
}

.image-lightbox.active {
    display: grid;
}

.image-lightbox img {
    width: auto;
    max-width: min(92vw, 1180px);
    max-height: 86vh;
    object-fit: contain;
    background: var(--sand);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(251, 248, 243, 0.5);
    border-radius: 50%;
    background: rgba(251, 248, 243, 0.08);
    color: var(--paper);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.collection-hero {
    padding: 70px clamp(18px, 4vw, 54px) 20px;
}

.collection-hero h1 {
    margin: 0;
    color: var(--green);
    font-size: clamp(44px, 6vw, 78px);
}

.collection-hero p {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 1000px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .editorial-section,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .detail-panel {
        position: static;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

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

@media (max-width: 680px) {
    .top-note {
        justify-content: flex-start;
        overflow: auto;
        padding: 0 14px;
        gap: 24px;
        scrollbar-width: none;
    }

    .top-note::-webkit-scrollbar {
        display: none;
    }

    .site-header {
        min-height: 68px;
        gap: 12px;
    }

    .brand span {
        display: none;
    }

    .hero {
        aspect-ratio: 1 / 1.05;
    }

    .hero-media img {
        object-position: 64% center;
    }

    .banner-copy {
        width: min(190px, 48vw);
        margin-left: 18px;
        align-self: start;
        padding-top: 34px;
    }

    .banner-script {
        margin-bottom: 6px;
        font-size: 34px;
    }

    .banner-copy h1 {
        max-width: 180px;
        font-size: 20px;
        line-height: 1.18;
    }

    .banner-copy .hero-text {
        max-width: 180px;
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.35;
    }

    .banner-button {
        min-height: 34px;
        margin-top: 14px;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .category-strip,
    .feature-band,
    .product-grid,
    .uae-brand-section,
    .answer-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .category-strip a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .shop-tools {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .search-field {
        min-width: 0;
    }

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

    .product-media {
        aspect-ratio: 4 / 4.7;
    }

    .thumb-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1500px) {
    .shop-section,
    .collection-page,
    .editorial-section,
    .site-footer {
        padding-left: max(54px, calc((100vw - 1440px) / 2));
        padding-right: max(54px, calc((100vw - 1440px) / 2));
    }
}
