/* from 1440 */

html {
    font-size: calc(100vw / 1440);
}

body {
    background: #1E1E1E;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    /* Chrome, Safari */
    -moz-osx-font-smoothing: grayscale;
    /* Firefox на macOS */
    text-rendering: optimizeLegibility;
    /* кернінг + лігатури */
    font-feature-settings: "kern" 1;
}

.cart-popup_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: row;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5rem);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: 150ms all;
}

.cart-popup_wrapper.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-popup {
    margin-left: auto;
    padding: 40rem;
    padding-top: 54rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: fit-content;
    gap: 40rem;
    height: 100%;
    background: #1e1e1e;
}

.cart-panel {
    display: flex;
    flex-direction: column;
    width: 420rem;
    gap: 24rem;
    height: 100%;
}

.cart-panel-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.cart-panel-header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
}

.cart-panel-title-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.cart-panel-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 20rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
}

.cart-panel-close {
    width: 40rem;
    height: auto;
    cursor: pointer;
}

.cart-panel-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 24rem;
    height: fit-content;
    margin-top: auto;
    margin-bottom: auto;
}

.cart-empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
}

.cart-empty-icon {
    width: 56rem;
    height: auto;
}

.cart-empty-text {
    font-family: "Inter";
    font-weight: 500;
    font-size: 24rem;
    line-height: 120%;
    text-align: center;
    color: #9b9b9b;
    width: 100%;
    height: fit-content;
}

.btn-cta,
.btn-cta.single_add_to_cart_button.button {
    padding: 16rem 32rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10rem;
    height: fit-content;
    background: #fe8815;
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 12rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #1e1e1e;
    cursor: pointer;
    border: none;
}

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

.cart-panel-footer {
    padding-top: 40rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    background: #1e1e1e;
    border-top: 1rem solid #252525;
}

.cart-footer-total {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 24rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.timeslot-panel {
    display: flex;
    flex-direction: column;
    width: 420rem;
    overflow: auto;
    gap: 20rem;
    justify-content: space-between;
    height: 100%;
}

.timeslot-panel-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 24rem;
}

.timeslot-header-icon {
    width: 40rem;
    height: auto;
}

.timeslot-header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
}

.timeslot-title-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.timeslot-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 20rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: 295rem;
    height: fit-content;
}

.timeslot-toggle-icon {
    width: 40rem;
    height: auto;
}

.timeslot-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 10rem;
    overflow: auto;
}

.timeslot-label {
    padding: 14rem 15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10rem;
    height: fit-content;
    background: #343434;
    cursor: pointer;
    border-radius: 10rem;
    letter-spacing: -1rem;
}

.timeslot-label.selected {
    background: #ff8f22;
}

.timeslot-text {
    font-family: "Inter";
    font-weight: 400;
    font-size: 24rem;
    line-height: 120%;
    text-align: center;
    color: #fe8815;
    width: 102rem;
    height: fit-content;
}

.timeslot-label.selected .timeslot-text {
    color: #000;
}


.timeslot-panel-footer {
    padding-top: 40rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #1e1e1e;
    border-top: 1rem solid #252525;
}


.cart-page {
    display: flex;
    flex-direction: row;
    width: 1440rem;
    background: #1e1e1e;
}

.cart-content {
    padding: 208rem 120rem 120rem;
    display: flex;
    flex-direction: column;
    width: 1440rem;
    gap: 60rem;
    height: fit-content;
}

.cart-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
}


.cart-columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 24rem;
    height: fit-content;
}


.cart-left {
    display: flex;
    flex-direction: column;
    width: 792rem;
    gap: 28rem;
    height: fit-content;
}


.cart-card {
    padding: 40rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24rem;
    height: fit-content;
    background: #181818;
}

.cart-card-title {
    font-family: "Inter";
    font-weight: 600;
    font-size: 24rem;
    line-height: 139.9%;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: fit-content;
}


.order-info-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.order-info-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.order-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
}

.order-info-icon {
    width: 24rem;
    height: auto;
}

.order-info-label {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 120%;
    color: #9b9b9b;
    width: 100%;
    height: fit-content;
}

.order-info-value {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 120%;
    color: #9b9b9b;
    flex-shrink: 0;
}


.cart-items {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24rem;
    overflow: auto;
}

.cart-popup_wrapper .cart-items {
    height: 76dvh;
}

.cart-items:has(.cart-empty) {
    height: 100%;
}

.cart-item {
    padding-bottom: 24rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24rem;
    height: fit-content;
    border-bottom: 1rem solid #252525;
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item-bottom {
    display: flex;
    flex-direction: column;
    gap: 16rem;
}

.cart-item-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 24rem;
    height: fit-content;
}


.cart-item-img-wrap {
    display: flex;
    flex-direction: column;
    width: 201.7rem;
    height: fit-content;
    position: relative;
    max-width: unset;
}

.cart-item-img {
    width: 161.7rem;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cart-item-badge {
    width: 201.7rem;
    height: auto;
}


.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 16rem;
}

.cart-item-name {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 16rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: 100%;
    height: fit-content;
}

.cart-item-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}


.qty-stepper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: fit-content;
    height: fit-content;
}

.qty-btn {
    padding: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44rem;
    height: 44rem;
    background: #343434;
    cursor: pointer;
}

.qty-btn-icon {
    width: 24rem;
    height: auto;
}

.qty-input {
    padding: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80rem;
    height: 44rem;
    border: 1rem solid #343434;
    background: transparent;
    font-family: "Inter";
    font-weight: 500;
    font-size: 24rem;
    line-height: 139.9%;
    color: #e5e5e5;
    text-align: center;
}

.cart-item-price {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 24rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    width: fit-content;
    height: fit-content;
}


.cart-item-options {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32rem;
    height: fit-content;
}

.cart-item-options-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8rem;
    height: fit-content;
}

.cart-item-options-label {
    font-family: "Inter";
    font-weight: 600;
    font-size: 16rem;
    line-height: 139.9%;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: fit-content;
}


.cart-options-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4rem;
    height: fit-content;
}

.cart-option-row {
    padding-left: 25rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.cart-option-row::before {
    content: "•";
    position: absolute;
    left: 8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16rem;
    line-height: 1;
    color: #A3A3A3;
}

.cart-option-name {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    color: #A3A3A3;
    height: fit-content;
}

.cart-option-price {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 140%;
    color: #8f8c8f;
    white-space: nowrap;
    height: fit-content;
}

.cart-option-price--highlight {
    color: #fe8815;
}


.cart-option-row--free .cart-option-name {
    width: 100%;
}

/* Custom radio circle for dynamically generated WPC option variants */
.option-row-circle {
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    border: 1rem solid #474747;
    position: relative;
    margin-left: auto;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.option-row-circle.checkbox {
    border-radius: 4rem;
}

.option-row.selected .option-row-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14rem;
    height: 14rem;
    background-color: #FE8815;
    border-radius: 50%;
}

.option-row.selected .option-row-circle.checkbox:after {
    background: 0;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjY3MTkgMC43NDA3MjNMNC44NTA0NSA4Ljc0MDcyTDAuNjcxODc1IDQuOTUxMjUiIHN0cm9rZT0iI0ZFODgxNSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
    width: 14.5rem;
    height: 10rem;
}


.nested-option-group {
    padding-left: 24rem;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.nested-option-group .option-group-title-row {
    margin-bottom: 8rem;
}

.nested-option-group .option-group-label {
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.6);
}


/* ========================================================
   Linked Variation Switcher (WPC Linked Variation)
   ======================================================== */

.linked-variation-switcher {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8rem;
    margin-bottom: 24rem;
}

.lv-radio-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12rem;
    padding: 12rem 16rem;
    background: #252525;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    border: 1rem solid transparent;
    position: relative;
}

.lv-radio-row:hover {
    background: #2e2e2e;
    border-color: #3a3a3a;
}

.lv-radio-row--active {
    background: #2a2a2a;
    border-color: #fe8815;
}

/* Hide native radio visually but keep it accessible */
.lv-radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.lv-radio-circle {
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    border: 1.5rem solid #474747;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
}

.lv-radio-row--active .lv-radio-circle {
    border-color: #fe8815;
}

.lv-radio-row--active .lv-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: #fe8815;
}

.lv-radio-name {
    font-family: "Inter";
    font-weight: 500;
    font-size: 14rem;
    line-height: 140%;
    color: #e5e5e5;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lv-radio-row--active .lv-radio-name {
    color: #fff;
}

.lv-radio-price {
    font-family: "Inter";
    font-weight: 600;
    font-size: 14rem;
    line-height: 140%;
    color: #fe8815;
    white-space: nowrap;
    flex-shrink: 0;
}

.lv-radio-price .woocommerce-Price-amount {
    color: inherit;
}

/* ======================================================== */

.cart-summary {
    padding: 40rem;
    display: flex;
    flex-direction: column;
    width: 384rem;
    gap: 24rem;
    height: fit-content;
    background: #fe8815;
}

.cart-summary-title {
    font-family: "Inter";
    font-weight: 600;
    font-size: 24rem;
    line-height: 139.9%;
    text-transform: uppercase;
    color: #1e1e1e;
    width: 100%;
    height: fit-content;
}

.cart-summary-totals {
    padding-bottom: 32rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
    border-bottom: 1rem solid #e77d16;
}

.cart-summary-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.cart-summary-label {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 120%;
    color: rgba(30, 30, 30, 0.8);
    width: 100%;
    height: fit-content;
}

.cart-summary-value {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 140%;
    color: #1e1e1e;
    width: fit-content;
    height: fit-content;
}

.cart-summary-total {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.btn-pay {
    padding: 16rem 32rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
    background: #1e1e1e;
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 12rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    border: none;
}




.collections-page {
    padding: 208rem 120rem 120rem;
    display: flex;
    flex-direction: column;
    width: 1440rem;
    gap: 10rem;
    height: fit-content;
    background: #1e1e1e;
}


.collections-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 80rem;
    height: fit-content;
}


.category-tabs-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 160rem;
    gap: 40rem;
}

.category-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 1200rem;
    gap: 16rem;
    height: fit-content;
}


.category-tab {
    padding: 8rem;
    padding-right: 18rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10rem;
    height: fit-content;
    box-shadow: inset 0 0 0 6rem #2e2c2e;
    cursor: pointer;
    width: fit-content;
    min-width: 186rem;
}

.category-tab.active {
    box-shadow: inset 0 0 0 6rem #fe8815;
    background: #fe8815;
}

.category-tab-icon {
    width: 48rem;
    height: auto;
}

.category-tab-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    height: fit-content;
}

.category-tab-name {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 20rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: fit-content;
}

.category-tab.active .category-tab-name {
    color: #000;
}


.collections-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: 379rem;
    height: 56rem;
}




.contact-page {
    font-family: "Inter", sans-serif;
    padding: 208rem 120rem 120rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60rem;
    min-height: 100vh;
    background: #1e1e1e;
    width: 100%;
}

.page-title {
    font-family: "Bowlby One", cursive;
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    color: #fe8815;
    text-transform: uppercase;
}

.contact-card {
    padding: 40rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 792rem;
    gap: 32rem;
    background: #181818;
}

.contact-description {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16rem;
    line-height: 140%;
    color: #ffffff;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.form-label {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    color: #ffffff;
}

.form-input {
    width: 100%;
    padding: 21rem 23rem;
    border: 1rem solid #fe8815;
    font-family: Inter, sans-serif;
    font-size: 16rem;
    color: #1e1e1e;
    outline: none;
    background: transparent;
}

.form-input::placeholder {
    color: #747474;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1rem solid #fe8815;
    padding: 4rem;
    gap: 16rem;
}

.phone-prefix-group {
    display: flex;
    align-items: center;
    padding: 14rem 20rem;
    gap: 8rem;
    background: #343434;
    color: #ffffff;
    height: 100%;
}

.phone-prefix {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16rem;
}

.prefix-arrow {
    width: 24rem;
    height: auto;
}

.phone-field {
    flex: 1;
    background: transparent;
    border: none;
    font-family: Inter, sans-serif;
    font-size: 16rem;
    color: #1e1e1e;
    outline: none;
}

.age-disclaimer {
    font-family: "Inter", sans-serif;
    font-size: 16rem;
    line-height: 140%;
    color: #747474;
}

.newsletter-label {
    display: flex;
    align-items: center;
    gap: 16rem;
    cursor: pointer;
}

.newsletter-input:checked~.checkbox-box .icon-on {
    display: block;
}

.newsletter-input:not(:checked)~.checkbox-box .icon-on {
    display: none;
}

.newsletter-input:checked~.checkbox-box .icon-off {
    display: none;
}

.newsletter-input:not(:checked)~.checkbox-box .icon-off {
    display: block;
}

.checkbox-box {
    width: 24rem;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-icon {
    width: 24rem;
    height: auto;
}

.newsletter-text {
    font-family: "Inter", sans-serif;
    font-size: 16rem;
    line-height: 140%;
    color: #D1D1D1;
}

.submit-button {
    padding: 16rem 32rem;
    background: #fe8815;
    border: none;
    font-family: 'Bowlby One', cursive;
    font-weight: 400;
    font-size: 12rem;
    line-height: 96.9%;
    color: #1e1e1e;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.submit-button:hover {
    opacity: 0.9;
}

.terms-disclaimer {
    font-family: "Inter", sans-serif;
    font-size: 16rem;
    line-height: 140%;
    color: #747474;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    width: 1440rem;
    height: fit-content;
    background: #1e1e1e;
}

.hero-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    position: relative;
}

.hero-section:after,
.hero-section:before {
    content: "";
    width: 72rem;
    height: 100%;
    position: absolute;
    top: 0;
    background-size: auto 25rem;
    background-repeat: repeat;
    background-position: bottom left;
    z-index: 1;
}

.hero-section:after {
    left: 0;
}

.hero-section:before {
    right: 0;
    background-position: -1rem bottom;
}

.hero-side-img {
    width: 72rem;
    height: auto;
}

.hero-content {
    padding: 138rem 141rem 315rem;
    display: flex;
    flex-direction: column;
    width: 1296rem;
    gap: 10rem;
    height: fit-content;
    background: #1e1e1e;
    position: relative;
    margin: 0 auto;
}

.hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 3rem;
    height: fit-content;
}

.hero-title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 996rem;
    height: fit-content;
}

.hero-title-top {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 120rem;
    line-height: 90%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.hero-crown-img {
    width: 120rem;
    height: auto;
}

.hero-title-main {
    font-family: "Bebas Neue";
    font-weight: 400;
    font-size: 230rem;
    line-height: 79%;
    text-transform: uppercase;
    text-align: center;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
    letter-spacing: -2.5%;
}

.hero-title-sub {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 100rem;
    line-height: 70%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    width: fit-content;
    height: fit-content;
    letter-spacing: -2.5%;
}

.hero-separator-img {
    width: 991rem;
    height: auto;
    position: absolute;
    top: calc(100% - 264rem);
    z-index: 2;
}

.about-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
}

.about-banner-img {
    width: 1440rem;
    height: auto;
}

.about-content {
    padding: 210rem 120rem 192rem 120rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10rem;
    height: fit-content;
    background: #fe8815;
    position: relative;
}

.about-content:after,
.about-content:before {
    content: "";
    height: 72rem;
    width: 100%;
    background-size: 48rem auto;
    position: absolute;
    left: 0;
}

.about-content:after {
    top: 0;
}

.about-content:before {
    bottom: 0;
}

.about-card {
    padding: 68rem 102rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 126rem;
    height: fit-content;
    background: #fe8815;
    border: 4rem solid #1e1e1e;
}

.about-card-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #1e1e1e;
    width: 485rem;
    height: fit-content;
}

.about-card-right {
    display: flex;
    flex-direction: column;
    width: 384rem;
    gap: 18rem;
    height: fit-content;
}

.about-card-text {
    font-family: "Inter";
    font-weight: 500;
    font-size: 24rem;
    line-height: 139.9%;
    color: #1e1e1e;
    width: 100%;
    height: fit-content;
}

.btn-order {
    padding: 21rem 13rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10rem;
    height: fit-content;
    background: #e9e3dc;
    border: 4rem solid #1e1e1e;
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 18rem;
    line-height: 96.9%;
    text-transform: uppercase;
    text-align: center;
    color: #1e1e1e;
    /* Rectangle 5 */

    box-sizing: border-box;
    box-shadow: 4rem 4rem 0rem #000000;
}


.categories-section {
    padding: 120rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 80rem;
    height: fit-content;
}

.section-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: 100%;
    height: fit-content;
}

.category-cards-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 24rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    border: 4rem solid #e9e3dc;
    position: relative;
    aspect-ratio: 384/540;
    padding: 24rem;
}

.category-card-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-body {
    padding: 32rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
    background: #1e1e1e;
    z-index: 2;
}

.category-card-info {
    display: flex;
    flex-direction: column;
    width: 264rem;
    gap: 7rem;
    height: fit-content;
}

.category-card-name {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 30rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #e9e3dc;
    width: 100%;
    height: fit-content;
}

.category-card-link {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 20rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fe8815;
    width: 100%;
    height: fit-content;
    text-wrap: wrap;
}


.menu-section {
    padding: 120rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 84rem;
    height: fit-content;
}

.menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.menu-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
}

.btn-order-white {
    padding: 10rem 16rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10rem;
    height: 60rem;
    background: #fff;
    border: 4rem solid #000;
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 18rem;
    line-height: 96.9%;
    text-transform: uppercase;
    text-align: center;
    color: #1e1e1e;
    box-shadow: 4rem 4rem 0rem #000000;
}

.menu-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    margin-top: 40rem;
}

.menu-item {
    position: relative;
    padding: 19.5rem;
    display: flex;
    flex-direction: column;
    width: 400rem;
    gap: 25rem;
    border-right: 1rem solid #353535;
    border-bottom: 1rem solid #353535;
}

/* Remove right border for the last item in every row */
.menu-item:nth-child(3n) {
    border-right: none;
}

/* Dynamic JS border class for bottom row */
.menu-item.no-bottom-border {
    border-bottom: none;
}

.menu-item:hover {
    background: #fe8815;
}

.menu-item:hover .menu-item_image-container {
    background: none;
}

.menu-item_image-container {
    width: 360rem;
    height: auto;
    aspect-ratio: 360/241;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-item-new-label {
    position: absolute;
    top: 0;
    right: -17rem;
    z-index: 10;
    width: 104rem;
    height: 104rem;
}

.menu-item-img {
    width: 340rem;
    height: 222rem;
    top: 10rem;
    left: 10rem;
    object-fit: contain;
    position: absolute;
}

.menu-item-body {
    padding: 16rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 16rem;
    height: fit-content;
    background: #1e1e1e;
}

.menu-item-name {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 24rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #e9e3dc;
    width: 100%;
    height: fit-content;
}

.menu-item-price {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 16rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fe8815;
    width: 100%;
    height: fit-content;
}

.horizontal-splitter-big {
    width: 100%;
    height: auto;
}

.page-splitter {
    height: 72rem;
    background-size: 22.9rem auto;
    background-position-y: 1.45rem;
}

.gallery-section {
    padding: 120rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10rem;
    height: 720rem;
    /* Swiper Setup */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    z-index: 1;
}

.gallery-row {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    gap: 60rem;
    transition-property: transform;
    box-sizing: content-box;
    align-items: center;
    /* keep items nicely aligned */
}

.gallery-row .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-row .swiper-slide {
    width: 360rem;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 360/480;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}


.order-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: fit-content;
    background: #fe8815;
    position: relative;
}

.order-cta-content {
    padding: 120rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1157rem;
    gap: 32rem;
    height: fit-content;
    position: relative;
}

.order-cta-splitter {
    width: 100%;
    height: auto;
}

.order-cta-icon {
    height: auto;
    position: absolute;
}

.icon-1 {
    width: 136.6rem;
    left: 81rem;
    top: 142rem;
}

.icon-2 {
    width: 122.5rem;
    top: 117rem;
    right: 152rem;
}

.icon-3 {
    width: 62rem;
    left: 430rem;
    bottom: 117rem;
}

.order-cta-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 70rem;
    line-height: 101.9%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    width: 100%;
    height: fit-content;
}


.footer {
    padding: 76rem 120rem 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 105rem;
    height: fit-content;
}

.footer-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 127rem;
    height: fit-content;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    width: 179rem;
    gap: 24rem;
    height: fit-content;
}

.footer-logo {
    width: 179rem;
    height: auto;
}

.footer-social-links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.footer-social-icon {
    width: 20rem;
    height: auto;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    width: 894rem;
    gap: 24rem;
    height: fit-content;
}

.footer-col {
    display: flex;
    flex-direction: column;
    width: 180rem;
    gap: 24rem;
    height: fit-content;
}

.footer-col-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 18rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    height: fit-content;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
}

.footer-nav-link {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 160%;
    color: #fe8815;
    width: 112rem;
    height: fit-content;
}

.footer-info-col {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 24rem;
    height: fit-content;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.footer-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
}

.footer-info-icon {
    width: 24rem;
    height: auto;
}

.footer-info-text {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 120%;
    color: #9b9b9b;
    width: fit-content;
    height: fit-content;
}

.footer-info-text--wide {
    width: 100%;
}

.footer-legal-col {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 24rem;
    height: fit-content;
}

.footer-legal-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 18rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    width: 148rem;
    height: fit-content;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
}

.footer-legal-link {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 160%;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
}

.footer-bottom {
    padding: 32rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    border-top: 1rem solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: "Inter";
    font-weight: 500;
    font-size: 14rem;
    line-height: 164.4%;
    color: #9b9b9b;
    width: fit-content;
    height: fit-content;
}

.footer-credit {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16rem;
    line-height: 24rem;
    width: fit-content;
    height: fit-content;
    color: #9B9B9B;
}

.footer-credit a {
    color: #FE8814;
}


.navbar {
    padding: 39rem 120rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 1440rem;
    gap: 10rem;
    height: fit-content;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
}

.navbar.scrolled {
    background: rgba(30, 30, 30, 0.96);
    backdrop-filter: blur(15rem);
}

.navbar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 1200rem;
    height: fit-content;
}

.navbar-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 40rem;
    height: 32rem;
}

.navbar-link {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 16rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #e9e3dc;
    width: fit-content;
    height: fit-content;
}

.navbar-link.active {
    color: #fe8815;
}

.navbar-cart {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10rem;
    height: fit-content;
    cursor: pointer;
    position: relative;
}

.navbar-cart-mobile-counter {
    display: none;
    position: absolute;
    right: -3rem;
    top: -3rem;
    background: #FE8815;
    border-radius: 80rem;
    width: 18rem;
    height: 18rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12rem;
    line-height: 120%;
    color: #1E1E1E;
    justify-content: center;
    align-items: center;
}

@media (max-width: 772px) {
    .navbar-cart-mobile-counter {
        display: flex;
    }
}

.navbar-cart-icon {
    width: 48rem;
    height: auto;
}

.navbar-cart-info {
    flex-direction: column;
    width: 100%;
    height: fit-content;
}

.navbar-cart.active svg rect {
    fill: #FE8815;
}

.navbar-cart.active svg path {
    fill: #FE8815;
}

.navbar-cart-text {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
}

.navbar-cart-amount {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 120%;
    color: #fff;
    width: 100%;
    height: fit-content;
}

.navbar-cart-label {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 120%;
    color: #fe8815;
    width: 100%;
    letter-spacing: -0.5rem;
    height: fit-content;
}

.navbar-burger {
    display: none;
}

a:has(.navbar-logo) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.navbar-logo {
    width: 175rem;
    height: auto;
    transition: .2s;
}




/* ─── Product Popup Overlay ─── */
body.popup-open {
    overflow: hidden !important;
}

.product-popup-overlay {
    display: flex;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 40rem 20rem;
}

.product-popup-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    padding: 80rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 1360rem;
    gap: 40rem;
    height: fit-content;
    background: #1e1e1e;
    position: relative;
}


.popup-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10rem;
    height: fit-content;
}

.popup-header-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.popup-footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 24rem;
}

.popup-submit {
    min-width: 240rem;
}

.popup-header-qty {
    font-family: "Inter";
    font-weight: 500;
    font-size: 18rem;
    color: #fe8815;
    margin-top: -8rem;
}

.js-popup-qty-value {
    font-weight: 600;
}

.popup-header-info .breadcrumb-sep {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 24rem;
    height: 24rem;
}

.breadcrumb-sep-icon {
    width: 7.4rem;
    height: 12rem;
    background: #8f8c8f;
}


.popup-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
}


.popup-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.popup-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 588rem;
    height: 401rem;
}


.popup-form {
    display: flex;
    flex-direction: column;
    width: 588rem;
    gap: 32rem;
    height: fit-content;
}


.option-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8rem;
    height: fit-content;
    margin-top: 8rem;
}

.option-group-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
}

.option-group-title-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 8rem;
    height: fit-content;
}

.option-group-label {
    font-family: "Inter";
    font-weight: 600;
    font-size: 16rem;
    line-height: 139.9%;
    text-transform: uppercase;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.option-group-label--required {
    color: #d84c2b;
}

.option-group-hint {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 4rem;
    height: fit-content;
}

.option-group-hint-icon {
    width: 16rem;
    height: auto;
}

.option-group-hint-text {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14rem;
    line-height: 140%;
    color: #5e5e5e;
    width: fit-content;
    height: fit-content;
}


.option-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
}


.option-row {
    padding: 16rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    border-bottom: 1rem solid #252525;
    cursor: pointer;
    transition: .2s;
    gap: 24rem;
}

.option-row.selected {
    background: #181818;
    border-color: #181818;
}

.option-row.selected .option-row-price {
    color: #FE8815;
}

.option-row-left {
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 24rem;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-template-columns: auto 1fr;
    row-gap: 4rem;
}

.option-row-description {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    /* or 22px */
    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.2;
    grid-column: 1/3;
}

.option-row-name {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20rem;
    line-height: 140%;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.option-row-price {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 140%;
    color: #8f8c8f;
    width: fit-content;
    height: fit-content;
}


.option-row-price.active {
    color: #fe8815;
}

.option-row-icon {
    width: 24rem;
    height: auto;
}


.option-group-expandable {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8rem;
    height: fit-content;
}

.option-group-toggle {
    padding: 16rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    background: #181818;
    border: 1rem solid #252525;
    cursor: pointer;
}

.option-group-toggle-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 24rem;
    height: fit-content;
}

.option-group-toggle-name {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20rem;
    line-height: 140%;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.option-group-toggle-icon {
    width: 24rem;
    height: auto;
}


.option-suboptions {
    padding-left: 24rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
}

.option-subrow {
    padding: 16rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 24rem;
    height: fit-content;
    border: 1rem solid #252525;
    cursor: pointer;
}

.option-subrow:nth-child(odd) {
    background: #181818;
}

.option-subrow.selected,
.option-subrow:has(input:checked) {
    border-color: #fe8815;
}

.option-subrow-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4rem;
    height: fit-content;
}

.option-subrow-title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 24rem;
    height: fit-content;
}

.option-subrow-name {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20rem;
    line-height: 140%;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.option-subrow-price {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 140%;
    color: #8f8c8f;
    width: fit-content;
    height: fit-content;
}

.option-subrow-price.active {
    color: #fe8815;
}

.option-subrow-desc {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    color: #4B4B4B;
    width: 100%;
    height: fit-content;
}

.option-subrow-icon {
    width: 24rem;
    height: auto;
}


.popup-close {
    width: fit-content;
    height: auto;
    position: absolute;
    right: 80rem;
    top: 80rem;
}



.product-page {
    display: flex;
    flex-direction: row;
    width: 1440rem;
    background: #1e1e1e;
}


.product-content {
    padding: 208rem 120rem 120rem;
    display: flex;
    flex-direction: column;
    width: 1440rem;
    gap: 80rem;
    height: fit-content;
}


.product-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 80rem;
    height: fit-content;
}


.product-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1200rem;
    gap: 16rem;
    height: 96rem;
}

.breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: fit-content;
    gap: 8rem;
    height: fit-content;
}

.breadcrumb-link {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16rem;
    line-height: 139.9%;
    color: #fff;
    width: fit-content;
    height: fit-content;
    text-transform: capitalize;
}

.breadcrumb-link.current {
    color: #5e5e5e;
}

.breadcrumb-sep {
    width: 24rem;
    height: auto;
}

.product-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 56rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fe8815;
    width: fit-content;
    height: fit-content;
}


.product-body {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 24rem;
    height: fit-content;
}


.product-gallery {
    display: flex;
    flex-direction: column;
    width: 588rem;
    gap: 10rem;
    height: fit-content;
    position: relative;
    flex-shrink: 0;
}

.product-gallery-main {
    width: 586rem;
    height: auto;

}

.product-gallery-thumb {
    width: 454rem;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    gap: 91rem;
}


.product-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16rem;
    height: fit-content;
}

.product-info-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8rem;
    height: fit-content;
}

.product-info-label {
    font-family: "Inter";
    font-weight: 600;
    font-size: 16rem;
    line-height: 139.9%;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: fit-content;
}

.product-info-value {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    color: #787878;
    width: 100%;
    height: fit-content;
    letter-spacing: -0.3rem;
}


.product-order {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40rem;
    height: fit-content;
}

.product-price {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 40rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #fff;
    width: fit-content;
    height: fit-content;
}

.product-order-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

.product-order-row::after,
.product-order-row::before {
    display: none !important;
}


.qty-stepper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: fit-content;
    height: fit-content;
}

.qty-btn {
    padding: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44rem;
    height: 44rem;
    background: #343434;
    cursor: pointer;
}

.qty-btn-icon {
    width: 24rem;
    height: auto;
}

.qty-input {
    padding: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80rem;
    height: 44rem;
    border: 1rem solid #343434;
    background: transparent;
    font-family: "Inter";
    font-weight: 500;
    font-size: 24rem;
    line-height: 139.9%;
    color: #e5e5e5;
    text-align: center;
}



.recent-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40rem;
}

.recent-title {
    font-family: "Bowlby One";
    font-weight: 400;
    font-size: 36rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: fit-content;
}


body.woocommerce-cart {
    background: #1e1e1e;
}

body.woocommerce-cart #primary {
    display: flex;
    justify-content: center;
    width: 100%;
}

body.woocommerce-cart .entry-header {
    display: none;
}

body.woocommerce-cart .entry-content {
    max-width: none;
    padding: 0;
    margin: 0;
}

.runline-line {
    display: flex;
    width: max-content;
    overflow: visible;
}

.runline-splitter {
    background-repeat: repeat;
    background-size: auto 72rem;
    width: 100%;
    height: 72rem;
}

.runline-splitter.gray {
    background-size: auto 24rem;
}

.runline_runline {
    padding: 20rem 0 10rem 0;
    background: #FE8814;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.runline_runline-wrapper {
    position: relative;
    display: flex;
    width: fit-content;
    gap: 24rem;
}

.runline_runline-wrapper img {
    height: 87rem;
    width: auto;
}

.swiper-notification {
    display: none;
}

.cf-title {
    font-family: 'Bowlby One';
    font-weight: 400;
    font-size: 56rem;
    /* identical to box height, or 56px */
    letter-spacing: -0.2rem;
    color: #FE8815;
    text-transform: uppercase;
}

.cf-card {
    background: #181818;
    padding: 40rem;
    max-width: 792rem;
}

.cf-subtitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16rem;
    line-height: 139.9%;
    letter-spacing: -0.2rem;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 32rem;
}

.cf-form-message {
    color: #FF6B00;
    font-size: 13rem;
    margin-bottom: 16rem;
    padding: 10rem 14rem;
    background: rgba(255, 107, 0, 0.08);
    border-left: 3rem solid #FF6B00;
    border-radius: 2rem;
}

.cf-form-message--error {
    color: #ff4444;
    border-left-color: #ff4444;
    background: rgba(255, 68, 68, 0.08);
}

.cf-group {
    margin-bottom: 24rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.cf-label {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
}

.cf-input {
    width: 100%;
    background: transparent;
    padding: 19rem 23rem;
    border: 1rem solid #FE8815;
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    transition: border-color 0.2s, color 0.2s;
    box-sizing: border-box;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
}

.cf-input:focus {
    border-color: #FF8C00;
    color: #ffffff;
}

.cf-input::placeholder {
    color: #666666;
}

/* ── Phone row ── */
.cf-phone-row {
    width: 100%;
    background: transparent;
    padding: 4rem;
    border: 1rem solid #FE8815;
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    transition: border-color 0.2s, color 0.2s;
    box-sizing: border-box;
    display: flex;
}

.cf-phone-code {
    background: #2a2a2a;
    padding: 14rem 20rem;
    gap: 8rem;
    display: flex;
    align-items: center;
}

.cf-phone-code:hover {
    background: #333333;
}

.cf-phone-flag {
    font-size: 16rem;
    line-height: 1;
}

.cf-phone-code-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
}

.cf-phone-code-arrow {
    width: 24rem;
    height: 24rem;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.cf-phone-code[aria-expanded="true"] .cf-phone-code-arrow {
    transform: rotate(180deg);
}

.cf-phone-num {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
    padding: 16rem 15rem;
    background: transparent;
    outline: none;
    border: none;
    min-width: 103rem;
}

.cf-phone-num:focus {
    border-color: #FF8C00;
    color: #ffffff;
}

.cf-phone-num::placeholder {
    color: #666666;
}

/* ── Country dropdown ── */
.cf-country-dropdown {
    position: absolute;
    top: calc(100% + 4rem);
    left: 0;
    width: 320rem;
    background: #222222;
    border: 1.5rem solid #FE8815;
    z-index: 5;
    box-shadow: 0 8rem 32rem rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.cf-country-dropdown.open {
    display: flex;
}

.cf-country-search-wrap {
    padding: 10rem 12rem;
    border-bottom: 1rem solid #333333;
}

.cf-country-search {
    width: 100%;
    background: #2a2a2a;
    border: 1rem solid #444444;
    border-radius: 3rem;
    padding: 8rem 10rem;
    color: #ffffff;
    font-size: 13rem;
    font-family: Arial, sans-serif;
    outline: none;
    box-sizing: border-box;
}

.cf-country-search::placeholder {
    color: #666666;
}

.cf-country-search:focus {
    border-color: #FF6B00;
}

.cf-country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #FF6B00 #2a2a2a;
}

.cf-country-list::-webkit-scrollbar {
    width: 4rem;
}

.cf-country-list::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.cf-country-list::-webkit-scrollbar-thumb {
    background: #FF6B00;
    border-radius: 2rem;
}

.cf-country-item {
    display: flex;
    align-items: center;
    gap: 10rem;
    padding: 10rem 14rem;
    cursor: pointer;
    transition: background 0.12s;
}

.cf-country-item:hover {
    background: #2e2e2e;
}

.cf-ci-flag {
    font-size: 18rem;
    line-height: 1;
    flex-shrink: 0;
}

.cf-ci-name {
    flex: 1;
    font-size: 13rem;
    color: #cccccc;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-ci-dial {
    font-size: 12rem;
    color: #FF6B00;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

/* ── Disclaimer & legals ── */
.cf-disclaimer {
    margin-bottom: 24rem;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
    opacity: 0.4;
}

/* ── Checkbox ── */
.cf-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 16rem;
    margin-bottom: 24rem;
}

.cf-checkbox-custom {
    width: 24rem;
    height: 24rem;
    border: 1rem solid #474747;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.cf-checkbox-custom svg {
    width: 24rem;
    height: 24rem;
    opacity: 1;
    transition: opacity 0.15s;
}

.cf-checkbox-native {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cf-checkbox-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
    opacity: 0.8;
    cursor: pointer;
}

/* ── Submit button ── */
.cf-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16rem 32rem;
    background: #FE8815;

    font-family: 'Bowlby One';
    font-style: normal;
    font-weight: 400;
    font-size: 12rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #1E1E1E;

    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}

.cf-btn:hover {
    background: #e05e00;
}

.cf-btn:active {
    transform: scale(0.99);
}

/* ── Footer note ── */
.cf-footer-note {
    margin-top: 24rem;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;

    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.4;
}

.cf-footer-note a {
    color: #888888;
    text-decoration: underline;
}

.cf-footer-note a:hover {
    color: #FF6B00;
}

/* =========================================================================
   WPC Product Options - Custom Styling to Match Theme
   ========================================================================= */

/* Container overrides */
.wpcpo-wrapper .wpcpo-options {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}

/* Equivalent to .option-group */
.wpcpo-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent !important;
    border: none !important;
}

/* Equivalent to .option-group-header */
.wpcpo-option-name {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0 !important;
}

/* Equivalent to .option-group-label */
.wpcpo-option-name strong {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16rem;
    line-height: 139.9%;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    color: #FFFFFF;
}

/* Required asterisk */
.wpcpo-option.wpcpo-required .wpcpo-option-name strong::after {
    content: " *";
    color: #fe8815;
}

/* Equivalent to .option-group-hint (Description in WPC) */
.wpcpo-option-description {
    display: flex;
    align-items: center;
    gap: 6rem;
    color: #8c8c8c;
}

/* Add custom hint icon via CSS before pseudo-element */
.wpcpo-option-description::before {
    content: "";
    display: inline-block;
    width: 16rem;
    height: 16rem;
    background-image: url('../img/b0ebe8c568.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wpcpo-option-description p {
    font-family: "Inter";
    font-weight: 500;
    font-size: 14rem;
    line-height: 140%;
    color: #8c8c8c;
    margin: 0;
}

/* Form structure */
.wpcpo-option-form {
    width: 100%;
}

.wpcpo-option-form p.form-row,
.wpcpo-option-form ul.wpcpo-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    list-style: none;
}

.wpcpo-option-form ul.wpcpo-list li {
    margin: 0;
    padding: 0;
}

/* Checkbox and Radio Options -> mapped to .option-row */
.wpcpo-option-form label {
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 16rem 24rem;
    background: #1e1e1e;
    border: 1rem solid rgba(229, 229, 229, 0.1);
    border-radius: 8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: "Inter";
    font-weight: 600;
    font-size: 16rem;
    color: #e5e5e5;
    margin: 0;
}

/* Hover state */
.wpcpo-option-form label:hover {
    border-color: rgba(229, 229, 229, 0.3);
}

/* Checked state */
.wpcpo-option-form label:has(input:checked) {
    background: #e5e5e5;
    color: #1e1e1e;
    border-color: #e5e5e5;
}

/* Target internal native input styling */
.wpcpo-option-field {
    width: 18rem;
    height: 18rem;
    margin: 0;
    accent-color: #fe8815;
    cursor: pointer;
}

.wpcpo-option-form label:has(input:checked) input.wpcpo-option-field {
    accent-color: #1e1e1e;
}

/* Target internal prices inside labels */
.wpcpo-option-form label span.wpcpo-price {
    font-family: "Inter";
    font-weight: 500;
    font-size: 14rem;
    color: #8c8c8c;
    margin-left: auto;
    margin-right: 12rem;
}

.wpcpo-option-form label span.wpcpo-price:empty {
    display: none;
}

.wpcpo-option-form label:has(input:checked) span.wpcpo-price {
    color: #fe8815;
    font-weight: 600;
}

/* Specific fix: Option image styling */
.wpcpo-option-form label img {
    height: 24rem;
    width: auto;
    object-fit: contain;
    margin-right: 16rem;
}

/* Total summary box that WPC generates */
.wpcpo-total {
    display: none !important;
}

/* ═══════════════════════════════════════════════
   CONTACTS PAGE
   ═══════════════════════════════════════════════ */

.cf-page-wrap {
    background: #1a1a1a;
    min-height: calc(100vh - 80rem);
    /* account for navbar */
    padding: 208rem 120rem 80rem 120rem;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 60rem;
}

.cf-title {
    font-family: 'Bowlby One';
    font-weight: 400;
    font-size: 56rem;
    /* identical to box height, or 56px */
    letter-spacing: -0.2rem;
    color: #FE8815;
    text-transform: uppercase;
}

.cf-card {
    background: #181818;
    padding: 40rem;
    max-width: 792rem;
}

.cf-subtitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16rem;
    line-height: 139.9%;
    letter-spacing: -0.2rem;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 32rem;
}

.cf-form-message {
    color: #FF6B00;
    font-size: 13rem;
    margin-bottom: 16rem;
    padding: 10rem 14rem;
    background: rgba(255, 107, 0, 0.08);
    border-left: 3rem solid #FF6B00;
    border-radius: 2rem;
}

.cf-form-message--error {
    color: #ff4444;
    border-left-color: #ff4444;
    background: rgba(255, 68, 68, 0.08);
}

.cf-group {
    margin-bottom: 24rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.cf-label {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
}

.cf-input {
    width: 100%;
    background: transparent;
    padding: 19rem 23rem;
    border: 1rem solid #FE8815;
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    transition: border-color 0.2s, color 0.2s;
    box-sizing: border-box;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
}

.cf-input:focus {
    border-color: #FF8C00;
    color: #ffffff;
}

.cf-input::placeholder {
    color: #666666;
}

/* ── Phone row ── */
.cf-phone-row {
    width: 100%;
    background: transparent;
    padding: 4rem;
    border: 1rem solid #FE8815;
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    transition: border-color 0.2s, color 0.2s;
    box-sizing: border-box;
    display: flex;
}

.cf-phone-code {
    background: #2a2a2a;
    padding: 14rem 20rem;
    gap: 8rem;
    display: flex;
    align-items: center;
}

.cf-phone-code:hover {
    background: #333333;
}

.cf-phone-flag {
    font-size: 16rem;
    line-height: 1;
}

.cf-phone-code-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
}

.cf-phone-code-arrow {
    width: 24rem;
    height: 24rem;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.cf-phone-code[aria-expanded="true"] .cf-phone-code-arrow {
    transform: rotate(180deg);
}

.cf-phone-num {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
    padding: 16rem 15rem;
    background: transparent;
    outline: none;
    border: none;
    min-width: 103rem;
}

.cf-phone-num:focus {
    border-color: #FF8C00;
    color: #ffffff;
}

.cf-phone-num::placeholder {
    color: #666666;
}

/* ── Country dropdown ── */
.cf-country-dropdown {
    position: absolute;
    top: calc(100% + 4rem);
    left: 0;
    width: 320rem;
    background: #222222;
    border: 1.5rem solid #FE8815;
    z-index: 5;
    box-shadow: 0 8rem 32rem rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.cf-country-dropdown.open {
    display: flex;
}

.cf-country-search-wrap {
    padding: 10rem 12rem;
    border-bottom: 1rem solid #333333;
}

.cf-country-search {
    width: 100%;
    background: #2a2a2a;
    border: 1rem solid #444444;
    border-radius: 3rem;
    padding: 8rem 10rem;
    color: #ffffff;
    font-size: 13rem;
    font-family: Arial, sans-serif;
    outline: none;
    box-sizing: border-box;
}

.cf-country-search::placeholder {
    color: #666666;
}

.cf-country-search:focus {
    border-color: #FF6B00;
}

.cf-country-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #FF6B00 #2a2a2a;
}

.cf-country-list::-webkit-scrollbar {
    width: 4rem;
}

.cf-country-list::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.cf-country-list::-webkit-scrollbar-thumb {
    background: #FF6B00;
    border-radius: 2rem;
}

.cf-country-item {
    display: flex;
    align-items: center;
    gap: 10rem;
    padding: 10rem 14rem;
    cursor: pointer;
    transition: background 0.12s;
}

.cf-country-item:hover {
    background: #2e2e2e;
}

.cf-ci-flag {
    font-size: 18rem;
    line-height: 1;
    flex-shrink: 0;
}

.cf-ci-name {
    flex: 1;
    font-size: 13rem;
    color: #cccccc;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-ci-dial {
    font-size: 12rem;
    color: #FF6B00;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

/* ── Disclaimer & legals ── */
.cf-disclaimer {
    margin-bottom: 24rem;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
    opacity: 0.4;
}

/* ── Checkbox ── */
.cf-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 16rem;
    margin-bottom: 24rem;
}

.cf-checkbox-custom {
    width: 24rem;
    height: 24rem;
    border: 1rem solid #474747;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.cf-checkbox-custom svg {
    width: 24rem;
    height: 24rem;
    opacity: 1;
    transition: opacity 0.15s;
}

.cf-checkbox-native {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cf-checkbox-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;
    letter-spacing: -0.2rem;
    color: #FFFFFF;
    opacity: 0.8;
    cursor: pointer;
}

/* ── Submit button ── */
.cf-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16rem 32rem;
    background: #FE8815;

    font-family: 'Bowlby One';
    font-style: normal;
    font-weight: 400;
    font-size: 12rem;
    line-height: 96.9%;
    text-transform: uppercase;
    color: #1E1E1E;

    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}

.cf-btn:hover {
    background: #e05e00;
}

.cf-btn:active {
    transform: scale(0.99);
}

/* ── Footer note ── */
.cf-footer-note {
    margin-top: 24rem;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16rem;
    line-height: 140%;

    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.4;
}

.cf-footer-note a {
    color: #888888;
    text-decoration: underline;
}

.cf-footer-note a:hover {
    color: #FF6B00;
}

.cart-item-new-label {
    position: absolute;
    left: 10rem;
    top: 10rem;
    width: 40rem;
    height: 40rem;
    z-index: 10;
    pointer-events: none;
}

.product-gallery-new-label {
    position: absolute;
    left: 8rem;
    top: 8rem;
    width: 104rem;
    height: 104rem;
    z-index: 10;
    pointer-events: none;
}

.woocommerce-notices-wrapper,
.woocommerce-form-coupon-toggle {
    display: none;
}


@media (max-width: 772px) {

    /* from 390 */

    html {
        font-size: calc(100vw / 390);
    }
    .page,
    .page-wrapper,
    .cart-page,
    .cart-content,
    .collections-page,
    .product-page,
    .product-content {
        width: 100%;
        min-width: 0;
    }

    .cart-content {
        padding: 136rem 32rem 40rem;
        gap: 40rem;
    }

    .collections-page {
        padding: 136rem 32rem 40rem;
    }

    .collections-content {
        gap: 40rem;
    }

    .product-content {
        padding: 136rem 32rem 40rem;
        gap: 40rem;
    }

    body:has(.site-main) .navbar {
        padding-left: 57rem;
        padding-right: 57rem;
    }

    body:has(.site-main) .navbar-logo {
        width: 128rem;
        height: auto;
    }

    body:has(.site-main) .navbar.scrolled,
    .navbar {
        padding: 24rem 32rem;
        padding-bottom: 10rem;
        width: 100%;
        transition: .15s linear;
    }

    .navbar.scrolled {
        padding: 24rem 32rem;
    }

    body:has(.site-main) .navbar.scrolled .navbar-logo {
        width: 172rem;
    }

    .navbar:has(.navbar-burger.active) {}

    .navbar-inner {
        width: 100%;
        gap: 16rem;
    }

    .navbar-cart {
        margin-left: auto;
    }

    .navbar-cart-amount,
    .navbar-cart-label {
        font-size: 12rem;
        text-align: right;
    }

    .navbar-links {
        display: flex;
        flex-direction: column;
        gap: 8rem;
        align-items: flex-start;
        background: rgba(30, 30, 30, 0.96);
        backdrop-filter: blur(15rem);
        position: absolute;
        height: calc(100dvh - 82rem);
        width: 100vw;
        left: 0;
        top: 82rem;
        padding: 124rem 56rem;
        opacity: 0;
        transition: opacity 0.2s;
        pointer-events: none;
    }

    .navbar:has(.navbar-burger.active) .navbar-links {
        opacity: 1;
        pointer-events: all;
    }

    a:has(.navbar-logo) {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
    }

    .navbar-cart-icon {
        width: 48rem;
        height: 48rem;
    }

    .navbar-cart-info {
        display: none;
    }

    .navbar-burger {
        display: block;
        height: 40rem;
        width: 40rem;
        background-size: cover;
        flex-shrink: 0;
    }

    .navbar-links {
        gap: 40rem
    }

    .navbar-link {
        font-size: 24rem;
        line-height: 100%;
    }

    .navbar-cart-text {
        display: none;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-section:after,
    .hero-section:before {
        width: 32rem;
        background-size: 10.7rem;
    }

    .hero-section:before {
        background-position: -0.6rem bottom;
    }

    .hero-side-img {
        display: none;
    }

    .hero-content {
        padding: 80rem 16rem 120rem;
        width: 100%;
    }

    .hero-title-row {
        width: 100%;
        gap: 8rem;
        justify-content: center;
    }

    .hero-title-top {
        font-size: 33rem;
        letter-spacing: -2%;
    }

    .hero-title-main {
        font-size: 63rem;
        letter-spacing: -2.5%;
    }

    .hero-title-sub {
        font-size: 27rem;
        letter-spacing: -2%;
    }

    .hero-crown-img {
        width: 33rem;
    }

    .hero-separator-img {
        width: 340rem;
        top: calc(100% - 93rem);
        left: 50%;
        transform: translate(-50%, 0);
    }



    .about-banner-img {
        width: 100%;
    }

    .about-content {
        padding: 64rem 32rem;
    }

    .about-content:after,
    .about-content:before {
        height: 32rem;
        background-size: 21rem auto;
    }

    .about-card {
        flex-direction: column;
        padding: 20rem;
        gap: 11rem;
        width: 100%;
    }

    .about-card-title {
        font-size: 24rem;
        width: 100%;
        letter-spacing: -2.8%;
    }

    .about-card-right {
        width: 100%;
        gap: 16rem;
    }

    .about-card-text {
        font-size: 14rem;
        letter-spacing: -2.5%;
    }

    .categories-section,
    .menu-section,
    .gallery-section {
        padding: 40rem 32rem;
        gap: 24rem;
    }

    .section-title,
    .menu-title,
    .collections-title {
        font-size: 20rem;
        line-height: 32rem;
        width: 100%;
        height: auto;
    }

    .category-cards-row {
        flex-direction: column;
        gap: 24rem;
    }

    .category-card {
        width: 100%;
        aspect-ratio: 326/322;
        padding: 24rem
    }

    .category-card-link {
        font-size: 15rem;
    }

    .category-card-body {
        padding: 24rem;
    }

    .category-card-name {
        font-size: 24rem;
    }

    .menu-header {
        flex-direction: column;
        gap: 16rem;
        align-items: flex-start;
    }

    .menu-grid {
        flex-direction: column;
        gap: 24rem;
        margin-top: 0;
    }

    .menu-item-img {
        width: 274rem;
        height: 182rem;
    }

    .menu-item {
        width: 100%;
        gap: 16rem;
        border-right: none;
        border-bottom: none;
        padding: 20rem;
        padding-top: 13rem;
    }

    .menu-item_image-container {
        width: 100%;
    }

    .menu-item-name {
        font-size: 20rem;
    }

    .menu-item-price {
        font-size: 15rem;
    }

    .menu-item-new-label {
        right: 0;

    }

    .gallery-section {
        height: auto;
        padding-top: 40rem;
        padding-bottom: 40rem;
    }

    .gallery-row {
        /* let Swiper handle flex and layout smoothly */
        flex-direction: row;
    }

    .gallery-img {
        width: 100%;
    }

    .order-cta-content {
        padding: 90rem 32rem 95rem 32rem;
        width: 100%;
    }

    .order-cta-title {
        font-size: 36rem;
    }

    .icon-1 {
        top: 48rem;
        left: 7rem;
        width: 65rem;
        height: 65rem;
    }

    .icon-2 {
        width: 60rem;
        height: 60rem;
        top: 50rem;
        right: 22rem;
    }

    .icon-3 {
        left: 113rem;
        bottom: 50rem;
        width: 36rem;
    }


    .category-tabs-row {
        height: auto;
        gap: 24rem;
    }

    .category-tabs {
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0rem;
    }

    .category-tabs:not(.is-open) .category-tab:not(.active) {
        display: none;
    }

    .category-tab {
        width: 100%;
        border-width: 3rem;
        justify-content: flex-start;
    }

    .category-tab.active {
        order: -1;
        position: relative;
    }

    .category-tab.active::after {
        content: "";
        margin-left: auto;
        width: 24rem;
        height: 24rem;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMzkwNjIgMTcuNzIzNkwxMC4yNzYgMTkuNjA4OUwxNiAxMy44ODQ5TDIxLjcyNCAxOS42MDg5TDIzLjYwOTMgMTcuNzIzNkwxNiAxMC4xMTQzTDguMzkwNjIgMTcuNzIzNloiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=");
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .category-tabs.is-open .category-tab.active::after {
        transform: rotate(0deg);
    }

    .category-tab-icon {}

    .category-tab-name {}

    .category-card-info {
        width: 100%;
    }

    .cart-title {
        font-size: 28rem;
    }

    .cart-columns {
        flex-direction: column;
        gap: 16rem;
    }

    .cart-left {
        width: 100%;
        gap: 40rem;
    }

    .cart-card {
        padding: 24rem;
        gap: 24rem;
    }

    .cart-card-title {
        font-size: 24rem;
        line-height: 140%;
    }

    .cart-summary {
        padding: 24rem 32rem;
        width: calc(100% + 64rem);
        position: sticky;
        bottom: 0;
        z-index: 10;
        margin-top: auto;
        margin-left: -32rem;
        margin-right: -32rem;
    }

    .cart-summary-title {
        font-size: 24rem;
        line-height: 140%;
    }

    .cart-popup_wrapper .cart-item-row {
        flex-direction: row;
        gap: 16rem;
    }

    .cart-item-row {
        flex-direction: column;
        gap: 12rem;
    }

    .cart-popup_wrapper .cart-item-img-wrap {
        width: 155rem;
        flex-shrink: 0;
    }

    .cart-popup_wrapper .cart-item-info {
        gap: 6.8rem;
    }

    .cart-popup_wrapper .cart-item-name {
        font-size: 16rem;
        line-height: 100%;
    }

    .cart-item-price {
        font-size: 24rem;
        line-height: 97%;
    }

    .cart-popup_wrapper .cart-panel {
        height: 86dvh;
    }

    .cart-item-img-wrap {
        width: 100%;
    }

    .cart-item-badge {
        width: 100%;
    }

    .cart-item-img {
        width: 215rem;
        height: 154rem;
    }

    .cart-popup .cart-item-img {
        width: 140rem;
    }

    .cart-item-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16rem;
    }

    .cart-item-footer .qty-stepper,
    .cart-item-footer .qty-input {
        width: 100%;
    }

    .cart-footer-total {
        font-size: 18rem;
    }

    .cart-popup_wrapper .cart-items {
        height: 100%;
    }

    .cart-popup_wrapper .qty-input {
        width: 100%;
    }

    .order-info-row {
        flex-direction: row;
        align-items: center;
        gap: 10rem;
    }

    .checkout-dummy>div {
        display: flex;
        flex-direction: column;
        gap: 40rem;
    }


    .cart-popup {
        padding: 16rem 32rem 40rem 32rem;
        flex-direction: column;
        width: 100%;
        gap: 20rem;
    }

    .cart-panel-title {
        font-size: 20rem;
        line-height: 100%;
        letter-spacing: -0.2rem;
    }

    .cart-panel {
        width: 100%;
    }

    .cart-panel-footer {
        padding-top: 20rem;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10rem;
    }

    .timeslot-panel {
        width: 100%;
        gap: 24rem;
    }

    .timeslot-panel-header {
        gap: 16rem;
    }

    .timeslot-title {
        font-size: 20rem;
        letter-spacing: -2%;
        line-height: 100%;
        width: 100%;
    }

    .timeslot-text {
        font-size: 16rem;
        width: auto;
    }

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

    .timeslot-label {
        width: auto;
    }

    .product-header {
        width: 100%;
        height: auto;
    }

    .product-title {
        font-size: 32rem;
    }

    .product-body {
        flex-direction: column;
        gap: 24rem;
    }

    .product-gallery {
        width: 100%;
    }

    .product-gallery-main {
        width: 100%;
    }

    .product-gallery-thumb {
        width: 80%;
    }

    .product-gallery-new-label {
        width: 48rem;
        height: 48rem;
    }

    .product-details {
        gap: 32rem;
    }

    .product-price {
        font-size: 28rem;
    }

    .product-order-row {
        flex-wrap: wrap;
        gap: 16rem;
    }

    .recent-title {
        font-size: 24rem;
    }



    .popup {
        padding: 48rem 16rem 24rem;
        width: 100%;
        gap: 24rem;
    }

    .popup-title {
        font-size: 28rem;
    }

    .popup-body {
        flex-direction: column;
        gap: 24rem;
    }

    .popup-image {
        width: 100%;
        height: auto;
    }

    .popup-form {
        width: 100%;
    }

    .popup-close {
        right: 16rem;
        top: 16rem;
    }

    .option-row-name,
    .option-group-toggle-name,
    .option-subrow-name {
        font-size: 15rem;
    }

    .option-suboptions {
        padding-left: 12rem;
    }



    .contact-page {
        padding: 100rem 16rem 60rem;
        gap: 32rem;
    }

    .page-title {
        font-size: 32rem;
    }

    .contact-card {
        padding: 20rem 16rem;
        width: 100%;
        gap: 20rem;
    }


    .footer {
        padding: 32rem;
        gap: 48rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 32rem;
    }

    .footer-brand {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-logo {
        width: 179rem;
    }

    .footer-columns {
        width: 100%;
        flex-wrap: wrap;
        gap: 32rem;
    }

    .footer-col {
        width: calc(50% - 16rem);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8rem;
        padding: 24rem 0;
        padding-bottom: 0;
    }

    .btn-order {
        font-size: 14rem;
        padding: 21rem 11rem;
        line-height: 70%;
    }

    .btn-cta,
    .btn-cta.single_add_to_cart_button.button,
    .btn-pay,
    .btn-order,
    .btn-order-white,
    .submit-button {
        width: 100%;
        text-align: center;
        font-size: 12rem;
        line-height: 97%;
        padding: 16rem 16rem;
    }

    .runline_runline-wrapper {
        gap: 6.5rem;
    }

    .runline_runline {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .runline-splitter {
        height: 32rem;
        background-size: auto 32rem;
    }

    .runline-splitter.gray {
        background-size: auto 10.5rem;
    }

    .runline_runline-wrapper img {
        height: 24rem;
    }

    .gallery-section {
        padding: 28rem 32rem 40rem 32rem;
    }

    .gallery-row .swiper-slide {
        width: 150rem;
    }

    .gallery-row.swiper-wrapper {
        gap: 25rem;
    }

    .cf-page-wrap {
        background: #1a1a1a;
        min-height: calc(100vh - 80rem);
        /* account for navbar */
        padding: 208rem 120rem 80rem 120rem;
        font-family: Arial, sans-serif;
        display: flex;
        flex-direction: column;
        gap: 60rem;
        min-height: calc(100vh - 300rem);
    }

    .cf-page-wrap {
        padding: 136rem 32rem 40rem 32rem;
        gap: 40rem;
    }

    .cf-title {
        font-size: 28rem;
        line-height: 100%;
        letter-spacing: -0.45rem;
    }

    .cf-card {
        padding: 24rem;
    }

    .cf-subtitle {
        letter-spacing: -0.45rem;
    }

    .cf-disclaimer {
        letter-spacing: -0.2%;
    }

    .page-splitter {
        height: 32rem;
        background-size: 10.1rem auto;
        background-position-y: 0.95rem;
    }
}



/* ── Responsive ── */
@media (max-width: 768px) {

    .cf-country-dropdown {
        width: 100%;
    }
}