*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Inter", Helvetica, Arial, sans-serif;
    width: 100%;
    overflow-x: hidden;
    background-color: #f7f4ef;
    color: #171717;
    line-height: 1.5;
    scroll-padding-top: 150px;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 430;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(4px);
}

a {
    color: inherit;
}

a[data-placeholder-link="true"] {
    cursor: default;
}

a[data-placeholder-link="true"]:focus-visible {
    outline: 2px solid rgba(243, 156, 18, 0.32);
    outline-offset: 3px;
}

a[data-placeholder-link="true"][aria-disabled="true"] {
    text-decoration: none;
}

a,
button,
label,
input,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
}

a,
button,
[role="button"] {
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 999px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/*==================== HEADER ====================*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    width: 100%;
    min-height: 72px;
    background-color: #0f0f0f;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
    display: flex;
    align-items: center;
    margin-left: 50px;
    text-decoration: none;
}

#header img {
    height: auto;
    width: clamp(54px, 8vw, 78px);
    aspect-ratio: 2.06 / 1;
    max-width: none;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.search-icon {
    order: 1;
}

.favourites-icon {
    order: 2;
}

.cart-icon {
    order: 3;
}

.account-icon {
    order: 4;
}

#header i {
    color: white;
    font-size: 19px;
}

#header a:hover i,
#header a:focus-visible i {
    color: #f39c12;
}

.header-icon:hover,
.header-icon:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.header-icon[data-placeholder-link="true"] {
    opacity: 0.82;
}

.header-icon[data-placeholder-link="true"]:hover,
.header-icon[data-placeholder-link="true"]:focus-visible {
    transform: none;
}

.search-modal-open {
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-search-modal[hidden] {
    display: none;
}

.site-search-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: stretch;
    padding: 0;
    background: #fffaf3;
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 250, 243, 0.98);
}

.site-search-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    width: 100%;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fffaf3;
    box-shadow: none;
}

.site-search-header {
    display: grid;
    grid-template-columns: minmax(36px, 1fr) minmax(0, 760px) minmax(36px, 1fr);
    align-items: center;
    gap: clamp(8px, 1.8vw, 14px);
    width: 100%;
    min-height: 72px;
    padding: 10px clamp(12px, 4vw, 38px);
    background: #0f0f0f;
    box-shadow: 0 12px 24px rgba(15, 15, 15, 0.18);
}

.site-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: end;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-search-close:hover,
.site-search-close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
    outline: none;
}

.site-search-form {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    grid-column: 2;
    min-height: 40px;
    padding: 0 clamp(10px, 2.2vw, 16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #9b5a0b;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.site-search-form i {
    color: #9b5a0b;
    font-size: 16px;
}

.site-search-form input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #191919;
    font: inherit;
    font-size: clamp(0.82rem, 2.9vw, 1rem);
    font-weight: 700;
    text-overflow: ellipsis;
}

.site-search-form input::placeholder {
    color: #817a70;
    opacity: 1;
    font-size: clamp(0.82rem, 2.9vw, 1rem);
}

.site-search-results {
    display: grid;
    gap: 10px;
    align-content: start;
    width: min(100%, 920px);
    margin-inline: auto;
    max-height: none;
    overflow-y: auto;
    padding: clamp(14px, 3vw, 24px) clamp(14px, 4vw, 42px) clamp(28px, 5vw, 54px);
}

.site-search-result {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid #f0e7dc;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
    transform: translateY(-1px);
    border-color: #d9ba8b;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
    outline: none;
}

.site-search-result img {
    width: 72px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    background: #f3ede4;
}

.site-search-result-info {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.site-search-result-info strong,
.site-search-result-info span,
.site-search-result-info em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-search-result-info strong {
    color: #191919;
    font-size: 0.95rem;
    line-height: 1.25;
}

.site-search-result-info span {
    color: #71695f;
    font-size: 0.82rem;
    font-weight: 700;
}

.site-search-result-info em {
    color: #9b5a0b;
    font-style: normal;
    font-weight: 900;
}

.site-search-empty {
    margin: 0;
    padding: 28px 12px;
    color: #625d56;
    text-align: center;
    font-weight: 700;
}

.vapes-age-gate-open {
    overflow: hidden;
}

.vapes-age-gate {
    position: fixed;
    inset: 0;
    z-index: 4200;
    display: grid;
    place-items: center;
    padding: clamp(18px, 5vw, 42px);
}

.vapes-age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.78);
    backdrop-filter: blur(8px);
}

.vapes-age-gate-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    width: min(100%, 440px);
    padding: clamp(22px, 5vw, 34px);
    border: 1px solid rgba(234, 223, 206, 0.92);
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    text-align: center;
}

.vapes-age-gate-card h2,
.vapes-age-gate-card p {
    margin: 0;
}

.vapes-age-gate-card h2 {
    color: #151515;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.08;
}

.vapes-age-gate-card > p:not(.section-kicker):not(.vapes-age-gate-status) {
    color: #625d56;
    font-weight: 700;
    line-height: 1.45;
}

.vapes-age-gate-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.vapes-age-gate-actions button,
.vapes-age-gate-status a {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
}

.vapes-age-gate-actions button {
    border: 1px solid #181818;
    cursor: pointer;
}

.vapes-age-gate-yes {
    background: #181818;
    color: #fff;
}

.vapes-age-gate-no {
    background: #fff;
    color: #181818;
}

.vapes-age-gate-actions button:hover,
.vapes-age-gate-actions button:focus-visible,
.vapes-age-gate-status a:hover,
.vapes-age-gate-status a:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.vapes-age-gate-status {
    min-height: 1.3em;
    color: #9b3d2d;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.35;
}

.vapes-age-gate-status a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 0 18px;
    background: #181818;
    color: #fff;
    text-decoration: none;
}

.account-modal-open {
    overflow: hidden;
}

.account-details-modal[hidden] {
    display: none;
}

.account-details-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: stretch;
    padding: 0;
    background:
        linear-gradient(180deg, #fff7ec 0%, #fffaf3 38%, #f6efe4 100%);
}

.account-details-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 8%, rgba(207, 154, 85, 0.12), transparent 34%),
        radial-gradient(circle at 12% 88%, rgba(15, 15, 15, 0.04), transparent 28%),
        linear-gradient(180deg, #fff8ee 0%, #fffaf5 52%, #f7efe4 100%);
}

.account-details-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.account-details-header {
    display: grid;
    grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 10px clamp(14px, 4vw, 42px);
    background: #0f0f0f;
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 15, 15, 0.18);
}

.account-details-header img {
    grid-column: 2;
    width: clamp(54px, 8vw, 78px);
    height: auto;
    aspect-ratio: 2.06 / 1;
}

.account-details-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: end;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.account-details-close:hover,
.account-details-close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    outline: none;
}

.account-auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100% - 20px, 560px);
    margin: 0 auto 14px;
    padding: 0;
    background: transparent;
}

.account-auth-tab {
    min-height: 40px;
    border: 1px solid #eadfce;
    border-radius: 999px;
    background: #fff;
    color: #514b43;
    cursor: pointer;
    font-weight: 900;
}

.account-auth-tab.is-active {
    border-color: #0f0f0f;
    background: #0f0f0f;
    color: #fff;
}

.account-auth-tab:focus-visible,
.account-password-field button:focus-visible,
.account-logout-button:focus-visible {
    outline: 3px solid rgba(207, 154, 85, 0.28);
    outline-offset: 2px;
}

.account-details-body {
    overflow-y: auto;
    padding: clamp(14px, 3vw, 24px) 0 clamp(34px, 6vw, 64px);
    scrollbar-gutter: stable;
    background: transparent;
}

.account-profile-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    width: min(100% - 34px, 760px);
    margin: 0 auto 18px;
    padding: clamp(12px, 3vw, 20px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.account-profile-card[hidden] {
    display: none;
}

.account-avatar-control {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.account-profile-hero {
    display: grid;
    justify-items: center;
    padding-top: 4px;
}

.account-profile-avatar {
    position: relative;
    display: grid;
    place-items: center;
    width: 104px;
    height: 104px;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.22), transparent 28%),
        #0f0f0f;
    color: #fff;
    font-size: 2.15rem;
    font-weight: 950;
    background-size: cover;
    background-position: center;
    box-shadow:
        0 0 0 6px #fff,
        0 0 0 8px rgba(207, 154, 85, 0.22),
        0 18px 34px rgba(17, 17, 17, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-profile-avatar:hover,
.account-profile-avatar:focus-within {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 6px #fff,
        0 0 0 8px rgba(207, 154, 85, 0.42),
        0 22px 38px rgba(17, 17, 17, 0.18);
}

.account-avatar-control > p {
    width: min(100%, 320px);
    margin: 0;
    color: #7b7166;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.35;
}

.account-profile-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
    justify-items: center;
    text-align: center;
}

.account-profile-copy p,
.account-profile-copy h2 {
    margin: 0;
}

.account-profile-kicker {
    color: #9b5a0b;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-profile-copy h2 {
    color: #191919;
    font-size: clamp(1.1rem, 2.8vw, 1.45rem);
    line-height: 1.15;
    text-wrap: balance;
}

.account-profile-copy p:not(.account-profile-kicker) {
    overflow: hidden;
    color: #625a50;
    font-size: 0.88rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-verification-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: min(100%, 680px);
    margin-inline: auto;
    padding: 14px;
    border: 1px solid rgba(207, 154, 85, 0.34);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(207, 154, 85, 0.12), transparent 46%),
        linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 247, 236, 0.92) 100%);
    box-shadow: 0 12px 26px rgba(17, 17, 17, 0.065);
}

.account-verification-panel[hidden] {
    display: none;
}

.account-verification-panel > div:first-child {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.account-verification-panel strong,
.account-verification-panel p {
    margin: 0;
}

.account-verification-panel strong {
    color: #191919;
    font-size: clamp(0.96rem, 2.2vw, 1.08rem);
    font-weight: 950;
}

.account-verification-panel p:not(.account-profile-kicker) {
    color: #6f6255;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.45;
}

.account-verification-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.account-verification-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 13px;
    border: 1px solid #eadfce;
    border-radius: 999px;
    background: #fff;
    color: #3d3730;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 950;
    line-height: 1.1;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-verification-actions button:first-child {
    background: #0f0f0f;
    border-color: #0f0f0f;
    color: #fff;
}

.account-verification-actions button:hover,
.account-verification-actions button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(207, 154, 85, 0.52);
    background: #fff8ef;
    color: #3d3730;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
    outline: none;
}

.account-verification-actions button:first-child:hover,
.account-verification-actions button:first-child:focus-visible {
    background: #2a2118;
    color: #fff;
}

.account-profile-summary {
    display: grid;
    gap: 10px;
    width: min(100%, 620px);
    margin-inline: auto;
    justify-items: center;
}

.account-profile-summary article {
    display: grid;
    justify-items: center;
    gap: 8px;
    align-items: center;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(234, 223, 206, 0.92);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 243, 0.88) 100%);
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.055);
    text-align: center;
}

.account-shipping-summary {
    width: 100%;
}

.account-profile-summary i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff5e8;
    color: #9b5a0b;
    font-size: 1rem;
}

.account-profile-summary span {
    color: #81766a;
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-profile-summary strong {
    min-width: 0;
    color: #191919;
    font-size: clamp(0.92rem, 2.3vw, 1.05rem);
    font-weight: 900;
    line-height: 1.35;
    white-space: normal;
}

.account-profile-actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    justify-self: center;
    width: min(100%, 680px);
    margin-inline: auto;
}

.account-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    min-height: 44px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid #eadfce;
    border-radius: 14px;
    background: #fff;
    color: #3d3730;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-action-link:hover,
.account-action-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(207, 154, 85, 0.52);
    background: #fff8ef;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
    outline: none;
}

.account-action-link i {
    color: #cf9a55;
}

.account-profile-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 560px);
    margin-inline: auto;
}

.account-profile-benefits span,
.account-profile-benefits .account-edit-toggle {
    display: inline-flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
    border: 1px solid rgba(234, 223, 206, 0.92);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(207, 154, 85, 0.1), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 250, 243, 0.86) 100%);
    color: #514b43;
    font-size: clamp(0.68rem, 1.7vw, 0.78rem);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.055);
    backdrop-filter: blur(8px);
    cursor: default;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-profile-benefits i,
.account-profile-benefits .account-edit-toggle i {
    color: #cf9a55;
    font-size: 0.98rem;
}

.account-profile-benefits .account-edit-toggle {
    grid-column: auto;
    width: 100%;
    cursor: pointer;
    appearance: none;
    font: inherit;
}

.account-profile-benefits span:hover,
.account-profile-benefits .account-edit-toggle:hover,
.account-profile-benefits .account-edit-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(207, 154, 85, 0.48);
    background:
        radial-gradient(circle at top, rgba(207, 154, 85, 0.16), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 236, 0.92) 100%);
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.account-profile-benefits .account-edit-toggle:focus-visible {
    outline: 3px solid rgba(207, 154, 85, 0.24);
    outline-offset: 2px;
}

.account-edit-toggle,
.account-logout-button,
.account-edit-save,
.account-edit-cancel {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid #eadfce;
    border-radius: 999px;
    background: #fff;
    color: #3d3730;
    cursor: pointer;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-edit-toggle {
    background: #fff8ef;
    color: #8a5a1d;
}

.account-logout-button {
    color: #9b3d2d;
}

.account-edit-toggle:hover,
.account-edit-toggle:focus-visible,
.account-logout-button:hover,
.account-logout-button:focus-visible,
.account-edit-save:hover,
.account-edit-save:focus-visible,
.account-edit-cancel:hover,
.account-edit-cancel:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(207, 154, 85, 0.52);
    background: #fff5f2;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
}

.account-profile-benefits .account-edit-toggle:hover,
.account-profile-benefits .account-edit-toggle:focus-visible {
    color: #514b43;
}

.account-profile-benefits > span,
.account-profile-benefits > .account-edit-toggle {
    box-sizing: border-box;
    width: 100%;
    min-height: 58px;
    padding: 10px 8px;
    border: 1px solid rgba(234, 223, 206, 0.92);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(207, 154, 85, 0.1), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 250, 243, 0.86) 100%);
    color: #514b43;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.055);
}

.account-profile-benefits > span i,
.account-profile-benefits > .account-edit-toggle i {
    color: #cf9a55;
}

.account-profile-benefits > .account-edit-toggle span {
    color: inherit;
}

.account-edit-form {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #eadfce;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.account-edit-form[hidden] {
    display: none;
}

.account-edit-form label {
    display: grid;
    gap: 6px;
    color: #514b43;
    font-size: 0.84rem;
    font-weight: 900;
}

.account-edit-form input,
.account-edit-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #eadfce;
    border-radius: 12px;
    background: #fff;
    color: #191919;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    padding: 12px 13px;
    outline: none;
}

.account-edit-form input:focus,
.account-edit-form textarea:focus {
    border-color: #cf9a55;
    box-shadow: 0 0 0 3px rgba(207, 154, 85, 0.18);
}

.account-edit-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.account-edit-save {
    border: 0;
    background: #0f0f0f;
    color: #fff;
}

.account-edit-cancel {
    background: #fff;
    color: #5f574d;
}

.account-profile-actions {
    display: grid;
    gap: 8px;
    width: min(100%, 320px);
    margin: 4px auto 0;
}

.account-profile-status {
    text-align: center;
}

@media only screen and (min-width: 900px) {
    .account-details-body {
        padding-block: 30px 72px;
    }

    .account-profile-card {
        width: min(100% - 72px, 980px);
        gap: 22px;
        padding: 24px 28px 30px;
    }

    .account-profile-avatar {
        width: 116px;
        height: 116px;
        font-size: 2.35rem;
    }

    .account-profile-copy h2 {
        font-size: 1.5rem;
    }

    .account-profile-summary {
        width: min(100%, 620px);
    }

    .account-verification-panel {
        width: min(100%, 720px);
    }

    .account-profile-summary article {
        min-height: 108px;
        padding: 18px 22px;
    }

    .account-profile-actions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        width: min(100%, 720px);
    }

    .account-profile-actions-grid .account-edit-toggle {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 260px);
    }

    .account-action-link {
        min-height: 58px;
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 0.9rem;
    }

}

.account-icon.is-signed-in {
    color: transparent;
}

.account-icon.is-signed-in::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border: 2px solid #0f0f0f;
    border-radius: 50%;
    background: #25d366;
}

.account-icon-initials {
    position: absolute;
    inset: 5px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f6c57b;
    color: #0f0f0f;
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0;
}

.account-details-form {
    display: grid;
    gap: 12px;
    align-content: start;
    width: min(100% - 48px, 560px);
    margin: 0 auto;
    padding: 0 10px;
}

.account-auth-view[hidden] {
    display: none;
}

.account-name-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-details-form label {
    display: grid;
    gap: 6px;
    color: #514b43;
    font-size: 0.84rem;
    font-weight: 900;
}

.account-details-form input,
.account-details-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #eadfce;
    border-radius: 12px;
    background: #fff;
    color: #191919;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    padding: 12px 13px;
    outline: none;
}

.account-details-form textarea {
    resize: vertical;
}

.account-password-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    border: 1px solid #eadfce;
    border-radius: 12px;
    background: #fff;
}

.account-password-field input {
    border: 0;
    border-radius: 12px 0 0 12px;
    background: transparent;
}

.account-password-field input:focus {
    box-shadow: none;
}

.account-password-field button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0 12px 12px 0;
    background: transparent;
    color: #9b5a0b;
    cursor: pointer;
}

.account-forgot-password {
    justify-self: end;
    width: fit-content;
    border: 0;
    background: transparent;
    color: #9b5a0b;
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
}

.account-forgot-password:hover,
.account-forgot-password:focus-visible {
    color: #5f3608;
    text-decoration: underline;
    outline: none;
}

.account-details-form input:focus,
.account-details-form textarea:focus,
.account-password-field:focus-within {
    border-color: #cf9a55;
    box-shadow: 0 0 0 3px rgba(207, 154, 85, 0.18);
}

.account-details-status {
    min-height: 1.2em;
    margin: 0;
    color: #5f574d;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
}

.account-details-status.is-error {
    color: #9b3d2d;
}

.account-details-save {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: #0f0f0f;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
}

.account-details-save:hover,
.account-details-save:focus-visible {
    background: #2a241d;
    outline: none;
}

.account-terms-note {
    width: min(100%, 520px);
    margin: -2px auto 0;
    color: #6c6257;
    font-size: clamp(0.76rem, 2.5vw, 0.86rem);
    font-weight: 750;
    line-height: 1.45;
    text-align: center;
}

.account-terms-note a {
    color: #9b5a0b;
    font-weight: 950;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.info-shell {
    gap: clamp(22px, 4vw, 36px);
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 18px;
}

.info-card {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid #ece3d8;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
    color: #514b43;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.info-card h2,
.info-card p {
    margin: 0;
}

.info-card h2 {
    color: #181818;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.15;
}

.info-card p {
    color: #625d56;
    font-weight: 700;
    line-height: 1.55;
}

.contact-card {
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    min-height: 230px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(155, 90, 11, 0.1), transparent 34%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateY(-2px);
    border-color: #d9ba8b;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.09);
    outline: none;
}

.contact-card:hover::before,
.contact-card:focus-visible::before {
    opacity: 1;
}

.contact-card i {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #7b4f17;
    font-size: 19px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 236, 0.98) 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), transparent 45%);
    border: 1px solid rgba(217, 186, 139, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 20px rgba(17, 17, 17, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-card .fa-whatsapp {
    color: #128c7e;
}

.contact-card .fa-envelope {
    color: #9b5a0b;
}

.contact-card .fa-instagram {
    color: #c13584;
}

.contact-card .fa-phone {
    color: #2f2c28;
}

.contact-card:hover i,
.contact-card:focus-visible i {
    transform: translateY(-1px);
    border-color: rgba(207, 154, 85, 0.58);
    background: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 12px 22px rgba(17, 17, 17, 0.13);
}

.contact-card strong {
    color: #9b5a0b;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

/*==================== NAVIGATION BAR ====================*/

.menu-toggle-wrapper {
    display: flex;
    align-items: center;
}

.slide {
    height: calc(100svh - 72px);
    max-width: 320px;
    width: min(78vw, 320px);
    position: fixed;
    background-color: #111;
    transition: transform 0.35s ease;
    transform: translateX(-100%);
    top: 72px;
    left: 0;
    z-index: 500;
    border-top: 1px solid #f39c12;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.24);
}

.slide ul {
    padding: 0;
    list-style: none;
    margin: 20px 0 0;
    display: block;
}

.slide ul li {
    padding: 0 30px;
}

.slide ul li a {
    color: #fff;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    text-transform: capitalize;
    text-decoration: none;
    transition: 0.2s ease-out;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.4;
    margin: 4px 0;
    border-bottom: 1px solid #232323;
}

.slide ul li a[data-placeholder-link="true"] {
    color: rgba(255, 255, 255, 0.72);
}

.slide ul li:hover a,
.slide ul li a:focus-visible {
    color: #f39c12;
}

.slide ul li a[data-placeholder-link="true"]:hover,
.slide ul li a[data-placeholder-link="true"]:focus-visible {
    color: rgba(255, 255, 255, 0.72);
}

.slide ul li a.active-page,
.slide ul li a[aria-current="page"] {
    border-left: 4px solid #f39c12;
    padding-left: 15px;
    background-color: rgba(243, 156, 18, 0.1);
}

#menu-toggle {
    display: none;
    visibility: hidden;
}

.toggle {
    position: absolute;
    height: 32px;
    width: 32px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.toggle:hover,
.toggle:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
}

.toggle .common {
    position: absolute;
    height: 2px;
    width: 20px;
    background-color: white;
    border-radius: 50px;
    transition: 0.3s ease;
}

.toggle .top_line {
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle .middle_line {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle .bottom_line {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#menu-toggle:checked ~ .toggle .top_line {
    left: 4px;
    top: 15px;
    width: 24px;
    transform: rotate(45deg);
}

.menu-toggle-wrapper.is-open .toggle .top_line {
    left: 4px;
    top: 15px;
    width: 24px;
    transform: rotate(45deg);
}

#menu-toggle:checked ~ .toggle .middle_line {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle-wrapper.is-open .toggle .middle_line {
    opacity: 0;
    transform: translateX(20px);
}

#menu-toggle:checked ~ .toggle .bottom_line {
    left: 4px;
    top: 15px;
    width: 24px;
    transform: rotate(-45deg);
}

.menu-toggle-wrapper.is-open .toggle .bottom_line {
    left: 4px;
    top: 15px;
    width: 24px;
    transform: rotate(-45deg);
}

#menu-toggle:checked ~ .slide {
    transform: translateX(0);
}

.menu-toggle-wrapper.is-open .slide {
    transform: translateX(0);
}

/*==================== TOP TABS ====================*/

#tabs-top-container {
    position: sticky;
    top: 72px;
    z-index: 400;
    margin-top: 72px;
    background-color: rgba(255, 255, 255, 0.96);
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

#tabs-top {
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 56px;
    will-change: scroll-position;
}

#tabs-top::-webkit-scrollbar {
    display: none;
}

#tabs-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-height: 56px;
    font-weight: 600;
    color: #333;
    text-align: center;
    text-decoration: none;
    padding: 14px clamp(16px, 2vw, 28px);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.4;
    transition: color 0.2s ease;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

#tabs-top a[data-placeholder-link="true"] {
    opacity: 0.72;
}

#tabs-top a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 9px;
    width: 0;
    height: 3px;
    background-color: #f39c12;
    transition: width 0.3s ease;
    transform: translateX(-50%);
    border-radius: 5px;
}

#tabs-top a.active-tab::after,
#tabs-top a[aria-current="page"]::after {
    width: 60%;
}

#tabs-top a:active {
    color: #f39c12;
}

#tabs-top a:hover,
#tabs-top a:focus-visible {
    color: #f39c12;
}

#tabs-top a[data-placeholder-link="true"]:hover,
#tabs-top a[data-placeholder-link="true"]:focus-visible {
    color: #333;
}

.scroll-arrow,
.scroll-arrow-left,
.scroll-arrow-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-arrow i,
.scroll-arrow-left i,
.scroll-arrow-right i {
    transition: transform 0.2s ease;
}

.scroll-arrow:hover i,
.scroll-arrow-left:hover i,
.scroll-arrow-right:hover i {
    color: #e67e22;
    transform: scale(1.15);
}

.scroll-arrow.show,
.scroll-arrow-left.show,
.scroll-arrow-right.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-arrow-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0));
}

.scroll-arrow-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0));
}

.active-page {
    color: #f39c12;
    font-weight: 800;
}

/*==================== HOME PAGE ====================*/

#main-content {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 5px;
}

.catalog-shell {
    display: grid;
    gap: 24px;
    padding-bottom: 28px;
}

.page-hero {
    display: grid;
    gap: 14px;
    padding: clamp(24px, 5vw, 38px);
    background:
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.16), transparent 30%),
        linear-gradient(135deg, #fffdf9 0%, #f4eee4 100%);
    border: 1px solid rgba(204, 186, 159, 0.55);
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.06);
    position: relative;
    overflow: hidden;
}

body.catalog-page:not(.product-detail-page):not(.contact-page) .page-hero {
    justify-items: center;
    text-align: center;
}

.contact-page .page-hero {
    justify-items: center;
    text-align: center;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(155, 90, 11, 0.35), transparent);
}

.page-hero h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.05;
    color: #121212;
}

body.catalog-page:not(.product-detail-page):not(.contact-page) .page-hero h1,
body.catalog-page:not(.product-detail-page):not(.contact-page) .page-hero-copy {
    margin-inline: auto;
}

.contact-page .page-hero h1,
.contact-page .page-hero-copy {
    margin-inline: auto;
}

.page-hero p {
    margin: 0;
}

.page-hero-copy {
    max-width: 70ch;
    color: #47433e;
    font-size: clamp(15px, 1.6vw, 18px);
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(191, 176, 151, 0.6);
    font-weight: 600;
    color: #1b1b1b;
}

.vapes-page .page-hero-meta {
    width: fit-content;
    flex-direction: column;
    align-items: stretch;
}

.vapes-page .page-hero-meta span {
    width: 100%;
    justify-content: center;
}

.home-intro {
    display: grid;
    gap: 16px;
    padding: clamp(24px, 5vw, 42px);
    background:
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.18), transparent 28%),
        linear-gradient(135deg, #fffdf9 0%, #f4eee4 100%);
    border: 1px solid rgba(204, 186, 159, 0.55);
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.06);
}

.home-page .home-intro {
    width: 100%;
    margin: 0 auto;
    justify-items: center;
    text-align: center;
}

.eyebrow,
.section-kicker,
.banner-card-tag {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9b5a0b;
}

.home-intro h1,
.section-heading h2 {
    margin: 0;
    line-height: 1.05;
    color: #121212;
    align-content: center;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home-intro h1 {
    font-size: clamp(2rem, 5vw, 3.9rem);
    max-width: 12ch;
}

.home-page .home-intro h1 {
    margin-inline: auto;
}

@media only screen and (min-width: 961px) {
    .home-page .home-intro {
        min-height: 270px;
        align-content: center;
        gap: 12px;
        padding: clamp(26px, 3vw, 34px) clamp(24px, 3.4vw, 40px);
    }

    .home-page .home-intro h1 {
        max-width: 18ch;
    }

    .home-page .intro-highlights {
        width: min(100%, 960px);
        gap: 12px;
    }

    .home-page .intro-highlights p {
        padding: 16px 18px;
        border-radius: 20px;
    }
}

.intro-copy {
    margin: 0;
    max-width: 70ch;
    color: #47433e;
    font-size: clamp(15px, 1.6vw, 18px);
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.intro-highlights p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(191, 176, 151, 0.6);
    background-color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    color: #1b1b1b;
}

.home-page .intro-highlights p {
    text-align: center;
}

.section-heading {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
}

.favourites-count {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #cf9a55;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.favourites-count:empty,
.favourites-count[hidden] {
    display: none;
}

#main-home > .section-heading {
    width: min(100%, 980px);
    margin: 0 0 4px;
    padding-left: 0;
    text-align: center;
    justify-items: center;
    justify-self: center;
}

.all-products-showcase {
    display: grid;
    gap: clamp(18px, 2.5vw, 26px);
}

.all-business-section {
    display: grid;
    gap: 14px;
    padding: clamp(16px, 2.4vw, 22px);
    background:
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.1), transparent 32%),
        linear-gradient(180deg, #fffdf9 0%, #fff8ee 100%);
    border: 1px solid #e8dfd4;
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.06);
    overflow: hidden;
}

.all-business-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.all-business-heading > div {
    grid-column: 2;
    justify-self: center;
}

.all-business-heading h3 {
    margin: 4px 0 0;
    color: #121212;
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    line-height: 1.08;
}

.all-business-heading span {
    grid-column: 3;
    justify-self: end;
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid rgba(191, 176, 151, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #6a5a45;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.all-product-rail {
    --all-rail-gap: 12px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 6);
    gap: var(--all-rail-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 2px 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
}

@media (hover: hover) and (pointer: fine) {
    .all-product-rail {
        padding-top: 12px;
    }
}

.all-product-rail::-webkit-scrollbar {
    display: none;
}

.all-product-card {
    min-width: 0;
    max-width: none;
    scroll-snap-align: start;
}

.all-product-card,
.all-view-all-card {
    align-self: stretch;
    box-sizing: border-box;
    height: 100%;
}

body.catalog-page .all-product-card {
    align-self: stretch;
}

.all-product-card .product-info {
    padding: 10px 9px;
}

.all-product-card .name {
    min-height: 2.6em;
    font-size: 0.84rem;
    line-height: 1.3;
}

.all-product-card .brand {
    font-size: 0.66rem;
}

.all-product-card .price {
    margin-top: 8px;
    font-size: 0.9rem;
}

.all-view-all-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    box-sizing: border-box;
    min-width: 0;
    max-width: none;
    min-height: 100%;
    margin-block: 0;
    align-self: stretch;
    padding: 16px 12px;
    border: 1px solid rgba(207, 154, 85, 0.6);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(243, 156, 18, 0.16), transparent 38%),
        linear-gradient(180deg, #1d1d1d 0%, #111 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    scroll-snap-align: start;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.all-rail-controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    margin-top: -2px;
    padding-inline: 2px;
}

.all-rail-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(207, 154, 85, 0.48);
    border-radius: 50%;
    background: #fff;
    color: #9b5a0b;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.08);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.all-rail-arrow.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.all-rail-arrow:hover,
.all-rail-arrow:focus-visible {
    transform: translateY(-2px);
    border-color: #cf9a55;
    outline: none;
}

.all-rail-scrollbar {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(232, 223, 210, 0.95) 0%, rgba(244, 237, 227, 0.98) 100%);
    box-shadow: inset 0 1px 2px rgba(115, 88, 53, 0.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow: hidden;
}

.all-rail-scrollbar.is-visible {
    opacity: 1;
    visibility: visible;
}

.all-rail-scrollbar-thumb {
    position: absolute;
    top: 1px;
    left: 0;
    width: 42px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ddab64 0%, #bb6f1a 100%);
    box-shadow: 0 3px 10px rgba(113, 66, 17, 0.22);
    transform: translate3d(0, 0, 0);
    will-change: transform, width;
    backface-visibility: hidden;
}

.all-view-all-card span {
    color: #f3c06f;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.all-view-all-card strong {
    align-self: center;
    font-size: 0.95rem;
    line-height: 1.25;
}

.all-view-all-card i {
    color: #f39c12;
}

.all-view-all-card:hover,
.all-view-all-card:focus-visible {
    transform: translateY(-5px);
    border-color: #e4c89b;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.09);
    outline: none;
}

.section-heading-centered {
    text-align: center;
    justify-items: center;
}

#main-home {
    margin-top: 26px;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    background-color: transparent;
}

.banner-card {
    grid-column: span 4;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8dfd4;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease;
}

.banner-card-featured {
    grid-column: span 4;
    display: block;
}

.banner-media {
    position: relative;
    background-color: #efe8dc;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.banner-card-featured .banner-media {
    aspect-ratio: 16 / 11;
    min-height: auto;
}

.banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.45s ease;
}

.banner-card-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.banner-card-copy h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    line-height: 1.1;
    color: #121212;
}

.banner-card-copy p {
    margin: 0;
    color: #4f4b46;
}

.banner-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    font-weight: 700;
    color: #111;
}

.banner-card-status {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.18);
    font-weight: 700;
    color: #9b5a0b;
}

.banner-card:hover,
.banner-card:focus-visible {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 26px 50px rgba(17, 17, 17, 0.12);
}

.banner-card:hover .banner-media img,
.banner-card:focus-visible .banner-media img {
    transform: scale(1.04);
}

/*==================== SHOP BY LOGO ====================*/

#shop-by-logo {
    margin-top: 32px;
    padding: 34px clamp(18px, 4vw, 32px);
    width: 100%;
    background-color: #fff;
    border: 1px solid #e8dfd4;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
}

#why-plug {
    margin-top: 32px;
    padding: clamp(22px, 4vw, 34px);
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.12), transparent 30%),
        linear-gradient(135deg, #fffdf9 0%, #fff7eb 100%);
    border: 1px solid #e8dfd4;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
}

#why-plug .section-heading {
    width: min(100%, 820px);
    margin-inline: auto;
    justify-items: center;
    text-align: center;
}

#why-plug .section-lead {
    max-width: 72ch;
    margin: 0 auto;
    text-align: center;
}

.trust-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    justify-content: center;
}

.trust-card {
    padding: 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(191, 176, 151, 0.56);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
    text-align: center;
}

.trust-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: #121212;
}

.trust-card p {
    margin: 0;
    color: #4f4b46;
}

.logo-scroll-container {
    --logo-columns: 6;
    --logo-gap: 16px;
    --logo-edge-pad: 0px;
    --logo-rail-pad-top: 18px;
    --logo-rail-pad-bottom: 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 18px;
    row-gap: 10px;
    margin: 0 auto;
    width: min(100%, 1320px);
    max-width: 100%;
}

.logo-track-shell {
    grid-column: 1 / -1;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
    padding: calc(var(--logo-rail-pad-top) + 2px) var(--logo-edge-pad) calc(var(--logo-rail-pad-bottom) + 2px);
}

.logo-track {
    display: flex;
    gap: var(--logo-gap);
    width: 100%;
    overflow-x: auto;
    padding: 2px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0;
    align-items: stretch;
}

.logo-track.active {
    cursor: grabbing;
}

.logo-track img {
    pointer-events: none;
}

.logo-track::-webkit-scrollbar {
    display: none;
}

#shop-by-logo a {
    flex: 0 0 calc((100% - (var(--logo-gap) * (var(--logo-columns) - 1))) / var(--logo-columns));
    width: calc((100% - (var(--logo-gap) * (var(--logo-columns) - 1))) / var(--logo-columns));
    min-width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: clamp(6px, 1vw, 10px);
    border: 1px solid #e2dad0;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    touch-action: manipulation;
    flex-shrink: 0;
}

#shop-by-logo a:hover,
#shop-by-logo a:focus-visible,
#shop-by-logo a:active {
    border-color: rgba(201, 119, 20, 0.55);
    box-shadow: 0 16px 26px rgba(17, 17, 17, 0.09);
    background: linear-gradient(180deg, #fff 0%, #fff5e7 100%);
}

#shop-by-logo a[data-placeholder-link="true"] {
    opacity: 0.76;
}

#shop-by-logo a[data-placeholder-link="true"]:hover,
#shop-by-logo a[data-placeholder-link="true"]:focus-visible,
#shop-by-logo a[data-placeholder-link="true"]:active {
    border-color: #e2dad0;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
    background: #fff;
}

#shop-by-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

#shop-by-logo a:hover img,
#shop-by-logo a:focus-visible img,
#shop-by-logo a:active img {
    transform: scale(1.04);
    filter: saturate(1.03);
}

#shop-by-logo a[data-placeholder-link="true"]:hover img,
#shop-by-logo a[data-placeholder-link="true"]:focus-visible img,
#shop-by-logo a[data-placeholder-link="true"]:active img {
    transform: none;
    filter: none;
}

.logo-scroll-arrow {
    grid-row: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 119, 20, 0.18);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 232, 0.96) 100%);
    color: #b56e19;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo-scroll-arrow.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.logo-scroll-arrow-left {
    grid-column: 1;
    justify-self: start;
}

.logo-scroll-arrow-right {
    grid-column: 3;
    justify-self: end;
}

.logo-scroll-arrow:hover,
.logo-scroll-arrow:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(201, 119, 20, 0.45);
    box-shadow: 0 16px 28px rgba(17, 17, 17, 0.12);
}

.logo-scrollbar {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    width: auto;
    height: 10px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(232, 223, 210, 0.95) 0%, rgba(244, 237, 227, 0.98) 100%);
    box-shadow: inset 0 1px 2px rgba(115, 88, 53, 0.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    contain: layout paint;
}

.logo-scrollbar.is-visible {
    opacity: 1;
    visibility: visible;
}

.logo-scrollbar-thumb {
    position: absolute;
    top: 1px;
    left: 0;
    height: 8px;
    min-width: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ddab64 0%, #bb6f1a 100%);
    box-shadow: 0 3px 10px rgba(113, 66, 17, 0.26);
    transition: none;
    will-change: transform, width;
    backface-visibility: hidden;
}

.logo-scrollbar-thumb:hover {
    box-shadow: 0 5px 14px rgba(113, 66, 17, 0.32);
}

/*==================== MAIN HOME STREETWEAR LOGOS ====================*/

#main-home-streetwear-logos {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    background-color: #fcfcfc;
}

#main-home-streetwear-logos a {
    flex: 1 1 40%;
    min-width: 200px;
    max-width: 450px;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, z-index 0s;
    z-index: 1;
    outline: 2px solid #ddd;
    border-radius: 12px;
}

#main-home-streetwear-logos a img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

#main-home-streetwear-logos a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

body.catalog-page #main-home-streetwear-logos {
    margin-top: 0;
    padding: clamp(14px, 4vw, 24px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
    justify-content: center;
    gap: clamp(12px, 3vw, 18px);
    background: #fff;
    border: 1px solid #e8dfd4;
    border-radius: clamp(18px, 5vw, 28px);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
    overflow: visible;
}

body.catalog-page #main-home-streetwear-logos a {
    background: #fff;
    border: 1px solid #e2dad0;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
    overflow: hidden;
    outline: none;
}

body.catalog-page #main-home-streetwear-logos a.storefront-logo-card {
    width: 100%;
    max-width: 240px;
    min-width: 0;
    min-height: 0;
    justify-self: center;
    aspect-ratio: 1 / 1;
    padding: clamp(8px, 2vw, 14px);
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top, rgba(243, 156, 18, 0.08), transparent 34%),
        linear-gradient(180deg, #fffefb 0%, #fff8f0 100%);
    border: 1px solid rgba(229, 219, 206, 0.95);
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

body.catalog-page #main-home-streetwear-logos a.storefront-logo-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: none;
    transition: transform 0.35s ease;
}

body.catalog-page #main-home-streetwear-logos a.storefront-logo-card:hover,
body.catalog-page #main-home-streetwear-logos a.storefront-logo-card:focus-visible {
    transform: translateY(-4px);
    border-color: #e0c39a;
    box-shadow: 0 20px 34px rgba(17, 17, 17, 0.09);
    background:
        radial-gradient(circle at top, rgba(243, 156, 18, 0.12), transparent 34%),
        linear-gradient(180deg, #fffefb 0%, #fff6eb 100%);
}

body.catalog-page #main-home-streetwear-logos a.storefront-logo-card:hover img,
body.catalog-page #main-home-streetwear-logos a.storefront-logo-card:focus-visible img {
    transform: scale(1.03);
}

body.catalog-page #main-home-streetwear-logos a.storefront-logo-card-coming-soon {
    opacity: 0.88;
}

@media only screen and (max-width: 380px) {
    body.catalog-page #main-home-streetwear-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.catalog-page #main-home-streetwear-logos a.storefront-logo-card {
        max-width: none;
    }
}

@media only screen and (min-width: 520px) and (max-width: 899px) {
    body.catalog-page #main-home-streetwear-logos {
        grid-template-columns: repeat(2, minmax(0, 220px));
    }
}

@media only screen and (min-width: 900px) {
    body.catalog-page #main-home-streetwear-logos {
        grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    }
}

/*==================== MAIN HOME PRODUCTS ====================*/

#main-home-products {
    margin-top: 20px;
    padding: 15px;
    background-color: #fcfcfc;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

#main-home-products h3 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
    font-weight: 700;
}

.product-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 250px;
    max-width: 450px;
    text-align: left;
    background: white;
    padding: 10px;
    border-radius: 12px;
    outline: 2px solid #ddd;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.product-card > a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

body.catalog-page #main-home-products {
    margin-top: 0;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e8dfd4;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
}

body.catalog-page .catalog-showcase #main-home-products {
    margin-top: 0;
}

.catalog-showcase {
    display: grid;
    gap: 20px;
}

body.catalog-page .catalog-showcase {
    padding: clamp(20px, 3vw, 28px);
    background:
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.14), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, #fff8ee 100%);
    border: 1px solid #e8dfd4;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
    position: relative;
    overflow: hidden;
}

body.catalog-page:not(.product-detail-page) .catalog-showcase {
    gap: clamp(12px, 1.8vw, 16px);
}

body.catalog-page .catalog-showcase::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(155, 90, 11, 0.35), transparent);
}

body.catalog-page .catalog-showcase .section-heading {
    gap: 10px;
    position: relative;
    z-index: 1;
}

body.catalog-page:not(.product-detail-page) .catalog-showcase .section-heading {
    width: min(100%, 820px);
    margin-inline: auto;
    justify-items: center;
    text-align: center;
}

body.catalog-page:not(.product-detail-page) .catalog-showcase .section-lead {
    max-width: 72ch;
    margin-inline: auto;
    text-align: center;
}

.product-sort-controls {
    position: relative;
    margin-left: auto;
}

.product-sort-toggle {
    width: 40px;
    min-width: 40px;
    padding: 0;
}

.product-sort-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    display: grid;
    gap: 6px;
    min-width: 168px;
    padding: 8px;
    border: 1px solid #dfd2c3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.12);
}

.product-sort-menu[hidden] {
    display: none;
}

.product-sort-controls button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #dfd2c3;
    border-radius: 999px;
    background: #fff;
    color: #232323;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.product-sort-controls button:hover,
.product-sort-controls button:focus-visible,
.product-sort-controls button.is-active {
    border-color: #cf9a55;
    background: #fff2dc;
    color: #9b5a0b;
}

.product-sort-controls .product-sort-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.catalog-page #main-home-products h3,
body.catalog-page .catalog-showcase > h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

body.catalog-page #main-home-products h3::after,
body.catalog-page .catalog-showcase > h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(to right, #f39c12, #ffd08a);
}

body.catalog-page #main-home-products h3:not(:first-child) {
    margin-top: 18px;
}

body.catalog-page .product-card {
    border: 1px solid #ece3d8;
    outline: none;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
    padding: 12px;
    background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
    height: auto;
    min-width: 0;
    align-self: start;
}

body.catalog-page .product-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background-color: #f3ede4;
    transition: transform 0.45s ease;
}

body.catalog-page .product-card:hover img,
body.catalog-page .product-card:focus-within img {
    transform: scale(1.03);
}

body.catalog-page .product-info {
    display: grid;
    gap: 4px;
    padding: 12px 2px 2px;
}

body.catalog-page .product-info br {
    display: none;
}

body.catalog-page .product-info .brand {
    order: 1;
}

body.catalog-page .product-info .name {
    order: 2;
    font-size: 15px;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
    max-height: calc(1.35em * 2);
    height: auto;
}

body.catalog-page .product-info .price {
    order: 3;
    margin-top: 2px;
}

body.catalog-page .product-card:hover {
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.09);
    border-color: #e4c89b;
}

.product-info {
    padding-top: 10px;
    font-family: "Inter", sans-serif;
}

.product-info .brand {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin: 0;
    font-weight: 700;
    display: block;
    white-space: normal;
}

.product-info .name {
    font-size: 14px;
    color: #222;
    margin: 4px 0;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
    height: 2.4em;
}

.product-info .price {
    font-size: 15px;
    color: #f39c12;
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

body.catalog-page .product-info .brand {
    color: #8f7658;
    letter-spacing: 0.12em;
}

body.catalog-page .product-info .price {
    color: #9b5a0b;
    font-size: 16px;
}

body.catalog-page #main-home-products,
body.catalog-page #main-home-streetwear-logos {
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.catalog-page #main-home-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

body.catalog-page #main-home-products h3 {
    grid-column: 1 / -1;
}

body.catalog-page #main-home-streetwear-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
    gap: clamp(12px, 3vw, 18px);
    align-items: center;
    justify-content: center;
    overflow: visible;
}

body.catalog-page #main-home-streetwear-logos a {
    width: 100%;
    max-width: 240px;
    min-width: 0;
    min-height: 0;
    justify-self: center;
    aspect-ratio: 1 / 1;
    padding: clamp(8px, 2vw, 14px);
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff 0%, #fff9f1 100%);
}

body.catalog-page #main-home-streetwear-logos a img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: none;
}

/*==================== PRODUCT DETAIL ====================*/

.product-detail-shell {
    display: grid;
    gap: 12px;
    padding: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(circle at top right, rgba(243, 156, 18, 0.1), transparent 30%),
        linear-gradient(180deg, #fffdf9 0%, #fff6ec 100%);
    border: 1px solid #e8dfd4;
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 18px;
    align-items: start;
}

.product-gallery-card,
.product-detail-card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(232, 223, 212, 0.96);
    border-radius: 28px;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.05);
    backdrop-filter: blur(8px);
}

.product-gallery-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.product-gallery-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #f3ede4;
    min-width: 0;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
}

.product-gallery-hero img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 119, 20, 0.18);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 232, 0.96) 100%);
    color: #b56e19;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-gallery-arrow:hover,
.product-gallery-arrow:focus-visible {
    transform: translateY(calc(-50% - 1px));
    box-shadow: 0 16px 26px rgba(17, 17, 17, 0.1);
}

.product-gallery-arrow-left {
    left: 14px;
}

.product-gallery-arrow-right {
    right: 14px;
}

.product-gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(155, 90, 11, 0.22);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.product-gallery-dot.is-active {
    background: #9b5a0b;
    transform: scale(1.15);
}

.product-gallery-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-gallery-choice {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #dfd2c3;
    background: #fff;
    color: #232323;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-gallery-choice:hover,
.product-gallery-choice:focus-visible {
    transform: translateY(-1px);
    border-color: #d9ba8b;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
}

.product-gallery-choice.is-active {
    border-color: #cf9a55;
    background: linear-gradient(180deg, #fff8ec 0%, #fff2dc 100%);
    color: #9b5a0b;
}

.product-detail-card {
    padding: clamp(22px, 3vw, 30px);
    display: grid;
    gap: 16px;
    position: sticky;
    top: 144px;
    background: linear-gradient(180deg, rgba(255, 254, 251, 0.96) 0%, rgba(255, 247, 238, 0.98) 100%);
}

.product-detail-intro,
.product-detail-selection,
.product-detail-meta {
    display: grid;
    gap: 14px;
}

.product-detail-intro {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(223, 210, 195, 0.9);
}

.product-detail-brand {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9b5a0b;
}

.product-detail-sold-by {
    margin: -6px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: #5f5346;
}

.product-detail-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.product-detail-heading h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.02;
    color: #121212;
    max-width: 12ch;
}

.product-favourite-button {
    width: 48px;
    height: 48px;
    border: 1px solid #eadfce;
    border-radius: 50%;
    background: #fff;
    color: #9b5a0b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

.product-favourite-button:hover,
.product-favourite-button:focus-visible {
    transform: translateY(-2px);
    border-color: #d9ba8b;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.favourites-showcase {
    min-height: 320px;
}

.favourites-page .page-hero-meta {
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
}

.favourites-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.favourites-grid[hidden],
.favourites-empty[hidden] {
    display: none;
}

.favourite-product-card {
    position: relative;
}

.remove-favourite-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #eadfce;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #9b3d2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.1);
}

.favourites-empty {
    padding: clamp(36px, 8vw, 72px) 20px;
    text-align: center;
}

.favourites-empty i {
    margin-bottom: 16px;
    color: #cf9a55;
    font-size: 36px;
}

.favourites-empty h2,
.favourites-empty p {
    margin: 0;
}

.favourites-empty p {
    margin-top: 8px;
    color: #625d56;
}

.cart-showcase {
    min-height: 360px;
}

.cart-page .page-hero-meta {
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
}

.cart-groups {
    display: grid;
    gap: 22px;
}

.cart-groups[hidden],
.cart-empty[hidden] {
    display: none;
}

.cart-business-group {
    display: grid;
    gap: 16px;
    padding: clamp(16px, 3vw, 22px);
    border: 1px solid #ece3d8;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.cart-business-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #eadfce;
    padding-bottom: 14px;
}

.cart-business-heading h3,
.cart-business-heading p {
    margin: 0;
}

.cart-business-heading h3 {
    color: #191919;
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.cart-checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    justify-self: end;
    min-height: 42px;
    padding: 11px 20px;
    border: 0;
    border-radius: 999px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #111 0%, #1f352b 56%, #128c7e 100%);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.cart-checkout-button i {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.95rem;
}

.cart-checkout-button:not(:disabled):hover,
.cart-checkout-button:not(:disabled):focus-visible {
    transform: translateY(-2px);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #111 0%, #16765f 46%, #25d366 100%);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.2);
    outline: none;
}

.cart-checkout-button.is-opening {
    filter: saturate(1.08);
}

.cart-checkout-button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
    box-shadow: none;
}

.cart-business-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eadfce;
    border-radius: 14px;
    background: #fff;
    color: #5f574d;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
}

.cart-business-total strong {
    color: #9b5a0b;
    font-size: 1rem;
    font-weight: 900;
    white-space: nowrap;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 40px;
    align-items: start;
    gap: 14px;
    padding: 12px;
    border: 1px solid #f0e7dc;
    border-radius: 14px;
    background: #fff;
}

.cart-item img {
    width: 92px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
    background: #f3ede4;
}

.cart-item-info {
    display: grid;
    align-content: start;
    gap: 5px;
    min-width: 0;
    padding-top: 2px;
}

.cart-item-info p {
    margin: 0;
}

.cart-item-info .name {
    color: #191919;
    font-weight: 800;
    line-height: 1.25;
}

.cart-item-info .brand {
    color: #71695f;
    font-size: 0.88rem;
    font-weight: 700;
}

.cart-item-info .price {
    color: #9b5a0b;
    font-weight: 900;
}

.cart-item-options {
    display: grid;
    gap: 3px;
    margin: 3px 0 0;
    color: #5f574d;
    font-size: 0.78rem;
}

.cart-item-options div {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cart-item-options dt,
.cart-item-options dd {
    margin: 0;
}

.cart-item-options dt {
    font-weight: 900;
}

.cart-item-options dt::after {
    content: ":";
}

.cart-quantity-control {
    display: inline-grid;
    grid-template-columns: 32px minmax(32px, auto) 32px;
    align-items: center;
    justify-self: start;
    width: fit-content;
    margin-top: 4px;
    overflow: hidden;
    border: 1px solid #eadfce;
    border-radius: 999px;
    background: #fffaf3;
}

.cart-quantity-control button,
.cart-quantity-control span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #232323;
    font-weight: 900;
}

.cart-quantity-control button {
    cursor: pointer;
}

.cart-quantity-control button:hover,
.cart-quantity-control button:focus-visible {
    background: #fff2dc;
    color: #9b5a0b;
    outline: none;
}

.cart-quantity-control span {
    min-width: 34px;
    border-inline: 1px solid #eadfce;
    color: #9b5a0b;
}

.remove-cart-item-button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #eadfce;
    border-radius: 999px;
    background: #fff;
    color: #9b3d2d;
    cursor: pointer;
    align-self: start;
}

.product-action-button.is-added-to-cart {
    border-color: #cf9a55;
    background: linear-gradient(180deg, #fff8ec 0%, #fff2dc 100%);
    color: #9b5a0b;
}

.product-cart-action-status {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    margin: 2px 0 0;
    padding-inline: 10px;
    color: #5f574d;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
}

.product-cart-action-status.is-error {
    color: #9b3d2d;
}

.product-favourite-button.is-favourite {
    border-color: #cf9a55;
    background: #fff2dc;
    color: #b4523d;
}

.product-favourite-button i {
    font-size: 18px;
}

.product-detail-price {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    color: #9b5a0b;
}

.product-detail-price-note {
    margin: -2px 0 0;
    color: #7a5c38;
    font-size: clamp(0.72rem, 1.1vw, 0.82rem);
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-detail-price-note-wrap {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.product-detail-notice {
    margin: -4px 0 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 248, 236, 0.92);
    border: 1px solid rgba(224, 195, 154, 0.9);
    color: #8d5718;
    font-size: 14px;
    font-weight: 700;
}

.product-detail-copy,
.product-detail-info-block p {
    margin: 0;
    color: #4f4b46;
}

.product-detail-selection {
    padding: 2px 0;
    display: grid;
    gap: 14px;
    justify-items: center;
    width: 100%;
}

.product-detail-option-group {
    display: grid;
    gap: 12px;
    justify-items: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.category-hero-eyebrow-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: fit-content;
}

.category-back-button {
    width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border: 1px solid rgba(155, 90, 11, 0.22);
    border-radius: 999px;
    color: #7b4a12;
    background: linear-gradient(180deg, #fff 0%, #fff4e4 100%);
    box-shadow: 0 10px 22px rgba(75, 47, 17, 0.1);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.category-back-button:hover,
.category-back-button:focus-visible {
    color: #0f0f0f;
    border-color: rgba(155, 90, 11, 0.42);
    box-shadow: 0 14px 28px rgba(75, 47, 17, 0.16);
    text-decoration: none;
    transform: translateX(-2px);
    outline: none;
}

.category-back-button i {
    font-size: 14px;
    line-height: 1;
}

.product-detail-mini-heading {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7b6851;
}

.product-option-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(100%, 420px);
    justify-content: center;
    margin: 0 auto;
}

.product-option-chips .option-chip {
    flex: 0 1 calc(50% - 5px);
    min-width: 0;
}

.custom-colour-input-wrap,
.letter-input-wrap {
    display: grid;
    gap: 6px;
    width: min(100%, 220px);
    margin: -2px auto 0;
    color: #7b6851;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.custom-colour-input-wrap[hidden],
.letter-input-wrap[hidden] {
    display: none;
}

.custom-colour-input-wrap input,
.letter-input-wrap input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #dfd2c3;
    border-radius: 999px;
    background: #fff;
    color: #232323;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
}

.custom-colour-input-wrap input:focus,
.letter-input-wrap input:focus {
    border-color: #d9ba8b;
    box-shadow: 0 0 0 3px rgba(217, 186, 139, 0.22);
    outline: none;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #cf9a55;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.cart-count:empty,
.cart-count[hidden] {
    display: none;
}

.custom-choice-save-button {
    justify-self: center;
    min-height: 34px;
    min-width: 82px;
    padding: 8px 16px;
    border: 0;
    border-radius: 999px;
    background: #181818;
    color: #fff;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-choice-save-button:hover,
.custom-choice-save-button:focus-visible {
    background: #9b5a0b;
    box-shadow: 0 10px 20px rgba(50, 31, 12, 0.14);
    outline: none;
    transform: translateY(-1px);
}

.option-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #dfd2c3;
    background: #fff;
    color: #232323;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.option-chip.has-saved-choice-value {
    min-height: 42px;
    line-height: 1.15;
    white-space: normal;
    overflow: visible;
    overflow-wrap: anywhere;
    text-align: center;
}

.option-chip.has-letter-choice-value {
    min-height: 40px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    overflow-wrap: normal;
    text-align: center;
    text-overflow: clip;
}

.product-option-chips-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(100%, 420px);
    justify-content: center;
    max-width: 420px;
}

.product-option-chips-colors .option-chip {
    flex: 1 1 calc(50% - 10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 10px 16px;
    font-size: clamp(0.78rem, 0.72rem + 0.22vw, 1rem);
    line-height: 1.15;
    font-weight: 700;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
    appearance: none;
}

.inside-customization-editor {
    width: min(100%, 420px);
    margin: 0 auto;
}

.cake-customization-toggle.has-customization-value {
    border-color: #cf9a55;
    background: linear-gradient(180deg, #fff8ec 0%, #fff2dc 100%);
    color: #9b5a0b;
}

.cake-customization-toggle [data-custom-date-display] {
    display: inline-block;
    min-width: 74px;
    white-space: nowrap;
    line-height: 1;
}

.product-size-chips.product-size-chips-single.cake-customization-chips {
    grid-template-columns: minmax(190px, 220px);
    width: min(100%, 220px);
}

.cake-customization-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: 220px;
    padding-inline: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    line-height: 1;
}

.cake-customization-toggle.has-text-customization-value {
    min-height: 44px;
    line-height: 1.15;
    white-space: normal;
    overflow: visible;
    overflow-wrap: anywhere;
    text-align: center;
}

.inside-customization-field {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(223, 210, 195, 0.72);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 248, 236, 0.96) 100%);
    box-shadow: 0 12px 28px rgba(50, 31, 12, 0.06);
    color: #5f4c35;
    font-size: 13px;
    font-weight: 800;
}

.inside-customization-field[hidden] {
    display: none;
}

.inside-customization-field textarea,
.inside-customization-field input[type="text"],
.inside-customization-field input[type="date"] {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid #dfd2c3;
    border-radius: 12px;
    background: #fff;
    color: #232323;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.inside-customization-field textarea {
    min-height: 110px;
    resize: vertical;
}

.inside-customization-field textarea:focus,
.inside-customization-field input[type="text"]:focus,
.inside-customization-field input[type="date"]:focus {
    border-color: #cf9a55;
    box-shadow: 0 0 0 3px rgba(217, 186, 139, 0.22);
    outline: none;
}

.inside-customization-field small {
    justify-self: end;
    color: #847461;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
}

.burning-bouquet-text-field > span,
.burning-bouquet-text-field small {
    justify-self: center;
    width: 100%;
    text-align: center;
}

.burning-bouquet-image-field .inside-customization-status {
    justify-self: stretch;
    width: 100%;
    text-align: center;
}

.burning-bouquet-text-field > span,
.burning-bouquet-text-field small {
    justify-self: stretch;
    width: 100%;
    text-align: center;
}

.cake-text-customization-field > span {
    justify-self: center;
    width: 100%;
    text-align: center;
}

.cake-text-customization-field small {
    justify-self: stretch;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-inline: clamp(4px, 2vw, 10px);
    box-sizing: border-box;
    font-size: clamp(8.5px, 2.25vw, 11px);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.cake-text-customization-field input[type="text"] {
    text-align: center;
}

.cake-text-customization-field input[type="text"]::placeholder {
    text-align: center;
}

.cake-customization-save {
    justify-self: center;
    min-height: 38px;
    min-width: 92px;
    padding: 9px 18px;
    border: 0;
    border-radius: 999px;
    background: #181818;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cake-customization-save:hover,
.cake-customization-save:focus-visible {
    background: #9b5a0b;
    box-shadow: 0 10px 20px rgba(50, 31, 12, 0.16);
    outline: none;
    transform: translateY(-1px);
}

.cake-date-field {
    justify-items: stretch;
}

.cake-date-field > span {
    text-align: center;
}

.cake-month-picker {
    display: grid;
    gap: 6px;
    justify-items: center;
    width: 100%;
}

.cake-month-picker span {
    color: #7b6851;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cake-month-picker select {
    width: min(100%, 150px);
    justify-self: center;
    min-height: 42px;
    padding-inline: 22px 14px;
    border: 1px solid #dfd2c3;
    border-radius: 12px;
    background: #fff;
    color: #232323;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-align-last: center;
    text-indent: 4px;
}

.cake-month-picker select:focus {
    border-color: #cf9a55;
    box-shadow: 0 0 0 3px rgba(217, 186, 139, 0.22);
    outline: none;
}

.cake-day-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.cake-day-button {
    min-width: 0;
    min-height: 34px;
    padding: 0;
    border: 1px solid #eadfce;
    border-radius: 10px;
    background: #fff;
    color: #4f4b46;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.cake-day-button:hover,
.cake-day-button:focus-visible {
    border-color: #cf9a55;
    background: #fff8ec;
    outline: none;
    transform: translateY(-1px);
}

.cake-day-button.is-selected {
    border-color: #cf9a55;
    background: linear-gradient(180deg, #fff8ec 0%, #fff2dc 100%);
    color: #9b5a0b;
}

.cake-calendar-actions {
    display: contents;
}

.cake-calendar-save {
    grid-column: 7;
    justify-self: stretch;
    min-width: 0;
    min-height: 34px;
    width: 100%;
    padding: 0;
    border: 1px solid #cf9a55;
    border-radius: 10px;
    background: linear-gradient(180deg, #9b5a0b 0%, #c9822f 100%);
    color: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cake-calendar-save:hover,
.cake-calendar-save:focus-visible {
    transform: translateY(-1px);
    border-color: #7b4a12;
    box-shadow: 0 10px 20px rgba(75, 47, 17, 0.12);
    outline: none;
}

.cake-image-customization-field {
    gap: 12px;
}

.inside-customization-field .cake-image-upload-note {
    justify-self: stretch;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(6px, 2.5vw, 12px);
    box-sizing: border-box;
    font-size: clamp(10px, 2.6vw, 13px);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow: visible;
    overflow-wrap: normal;
    text-overflow: clip;
    text-wrap: balance;
}

.cake-image-customization-field .inside-customization-status {
    justify-self: stretch;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding-inline: clamp(6px, 2.5vw, 12px);
    box-sizing: border-box;
    color: #6f614f;
    font-size: clamp(8.5px, 2.3vw, 12px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    overflow-wrap: normal;
    text-overflow: clip;
}

.inside-customization-field .cake-image-upload-note[hidden] {
    display: none;
}

.image-upload-button {
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #dfd2c3;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.image-upload-button:hover,
.image-upload-button:focus-within {
    border-color: #cf9a55;
    background: #fff8ec;
}

.image-upload-button input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.cake-image-slot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    align-items: stretch;
}

.image-upload-slot {
    min-height: 64px;
    width: 100%;
    padding: 10px 8px;
    border-style: dashed;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    overflow: hidden;
}

.image-upload-slot i {
    color: #9b5a0b;
    font-size: 16px;
}

.image-upload-slot:hover,
.image-upload-slot:focus-within {
    transform: translateY(-1px);
    border-style: solid;
}

.image-upload-slot.has-image {
    border-style: solid;
    border-color: #cf9a55;
    background: linear-gradient(180deg, #fff8ec 0%, #fff2dc 100%);
    color: #9b5a0b;
}

.image-upload-slot.has-image i {
    color: #cf7f1c;
}

.inside-image-preview {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e5d9ca;
    border-radius: 12px;
    background: #fff;
}

.inside-image-preview-empty {
    min-height: 58px;
    grid-template-columns: 1fr;
    justify-items: center;
    color: #9a8a76;
    background: #fffaf3;
    border-style: dashed;
}

.inside-image-preview[hidden] {
    display: none;
}

.inside-image-preview-list {
    display: grid;
    gap: 10px;
}

.inside-image-preview-list:empty {
    display: none;
}

.inside-image-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.inside-image-preview p,
.inside-customization-status {
    margin: 0;
    overflow-wrap: anywhere;
}

.inside-image-placeholder {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.remove-uploaded-image {
    min-width: 38px;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid #eadfce;
    border-radius: 999px;
    background: #fff;
    color: #9b3d2d;
    cursor: pointer;
}

.remove-uploaded-image span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.inside-customization-status {
    color: #6f614f;
    font-size: 12px;
    font-weight: 700;
}

.option-chip:hover,
.option-chip:focus-visible {
    transform: translateY(-1px);
    border-color: #d9ba8b;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
}

.option-chip-active {
    border-color: #cf9a55;
    background: linear-gradient(180deg, #fff8ec 0%, #fff2dc 100%);
    color: #9b5a0b;
}

.product-option-chips-colors .option-chip:last-child:nth-child(odd) {
    flex-basis: calc(50% - 5px);
    width: auto;
}

.product-size-chips .option-chip {
    flex: initial;
    min-width: 0;
    min-height: 40px;
    padding: 9px 10px;
    font-size: clamp(0.78rem, 0.73rem + 0.16vw, 0.94rem);
    line-height: 1;
}

.product-size-chips {
    grid-template-columns: repeat(5, minmax(0, 64px));
    gap: 8px;
    width: min(100%, 360px);
    justify-content: center;
}

.product-size-chips.product-size-chips-single {
    grid-template-columns: minmax(180px, 240px);
    width: min(100%, 240px);
}

.product-size-chips.product-size-chips-single .option-chip {
    padding-inline: 14px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-action-button {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid #e0c39a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-action-button:hover,
.product-action-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
}

.product-action-button-primary {
    background: #121212;
    color: #fff;
    border-color: #121212;
    flex: 1 1 220px;
}

.product-action-button-secondary {
    background: #fff;
    color: #121212;
    flex: 1 1 190px;
}

.product-detail-meta {
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(223, 210, 195, 0.9);
}

.product-detail-info-block {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(223, 210, 195, 0.85);
}

.product-detail-info-block h2 {
    margin: 0;
    font-size: 1rem;
    color: #171717;
}

.product-detail-info-toggle {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.product-detail-info-toggle i {
    color: #9b5a0b;
    transition: transform 0.25s ease;
}

.product-detail-info-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.product-detail-info-panel {
    display: grid;
    gap: 8px;
    padding-top: 10px;
}

.product-detail-info-panel[hidden] {
    display: none;
}

.product-detail-info-panel > p {
    padding: 10px 0;
    border-bottom: 1px solid rgba(223, 210, 195, 0.72);
    line-height: 1.5;
}

.product-detail-info-panel > p:last-child {
    border-bottom: 0;
}

.product-detail-info-panel > p:only-child {
    padding: 0;
}

.product-detail-spec-list {
    margin: 0;
    display: grid;
    border: 1px solid #e5d9ca;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-detail-spec-list > div {
    display: grid;
    grid-template-columns: minmax(110px, 0.38fr) minmax(0, 0.62fr);
    border-bottom: 1px solid #e5d9ca;
}

.product-detail-spec-list > div:last-child {
    border-bottom: 0;
}

.product-detail-spec-list dt,
.product-detail-spec-list dd {
    margin: 0;
    padding: 12px 14px;
    line-height: 1.45;
}

.product-detail-spec-list dt {
    background: #faf5ed;
    color: #5f4c35;
    font-weight: 800;
    border-right: 1px solid #e5d9ca;
}

.product-detail-spec-list dd {
    color: #383530;
    overflow-wrap: anywhere;
}

.product-detail-flower-note {
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #e2c18f;
    border-radius: 10px;
    background: #fff7e8;
    color: #7d4d13;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.4;
}

.you-may-also-like {
    margin-top: 28px;
    padding-block: 24px 34px;
}

.recommendation-carousel {
    display: grid;
    gap: 12px;
    overflow: visible;
}

.recommendation-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding: 14px 4px 18px;
    scrollbar-width: none;
}

.recommendation-track::-webkit-scrollbar {
    display: none;
}

.recommendation-track .product-card {
    flex: 0 0 calc((100% - 80px) / 6);
    max-width: calc((100% - 80px) / 6);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.silk-and-satin-product-page .you-may-also-like .recommendation-carousel:not(.is-extras-carousel) .product-info .price {
    display: none;
}

.recommendation-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.recommendation-scroll-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid #dfd2c3;
    border-radius: 50%;
    background: #fff;
    color: #9b5a0b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.recommendation-scroll-arrow.show {
    opacity: 1;
    pointer-events: auto;
}

.recommendation-scroll-arrow:hover,
.recommendation-scroll-arrow:focus-visible {
    transform: translateY(-1px);
    border-color: #cf9a55;
}

.recommendation-scrollbar {
    width: min(100%, 260px);
    height: 6px;
    border-radius: 999px;
    background: rgba(223, 210, 195, 0.9);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.recommendation-scrollbar.is-visible {
    opacity: 1;
}

.recommendation-scrollbar-thumb {
    width: 42px;
    height: 100%;
    border-radius: inherit;
    background: #9b5a0b;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.seller-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.seller-social-links a {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #eadfce;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #232323;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seller-social-links a:hover,
.seller-social-links a:focus-visible {
    transform: translateY(-2px);
    border-color: #d9ba8b;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
}

.seller-social-links a:hover i,
.seller-social-links a:focus-visible i {
    transform: scale(1.05);
}

.seller-social-links a[href*="instagram"] i {
    color: #c13584;
}

.seller-social-links a[href*="facebook"] i {
    color: #1877f2;
}

.seller-social-links a[href*="wa.me"] i {
    color: #128c7e;
}

.seller-social-links a[href*="tiktok"] i {
    color: #111;
}

.seller-social-links a:hover i,
.seller-social-links a:focus-visible i {
    transform: scale(1.14);
}

body.catalog-page .catalog-extra-card,
.is-extras-carousel .product-card {
    transform: none;
}

body.catalog-page .catalog-extra-card:hover,
body.catalog-page .catalog-extra-card:focus-within,
.is-extras-carousel .product-card:hover,
.is-extras-carousel .product-card:focus-within {
    transform: none;
}

.seller-social-links a[data-placeholder-link="true"] {
    opacity: 0.78;
}

.seller-social-links a[data-placeholder-link="true"]:hover,
.seller-social-links a[data-placeholder-link="true"]:focus-visible {
    transform: none;
    border-color: #eadfce;
    box-shadow: none;
}

.seller-social-links i {
    color: #9b5a0b;
    font-size: 17px;
    transition: transform 0.25s ease, color 0.25s ease;
}

/*==================== VIEW MORE HYPERLINK ====================*/

.more-products-container {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 0 15px;
}

.view-more-link {
    font-size: clamp(14px, 2vw, 16px);
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: black;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid black;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-more-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-more-link:hover {
    background-color: black;
    color: #f39c12;
}

.view-more-link:hover i {
    transform: translateX(5px);
}

/*==================== BOTTOM TABS ====================*/

#tabs-bottom {
    margin: 56px auto 0;
    width: min(1100px, calc(100% - 32px));
    display: flex;
    justify-content: space-around;
    padding: 0;
    align-items: stretch;
    gap: 12px;
}

#tabs-bottom a {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    color: #505050;
    text-decoration: none;
    text-align: center;
    font-size: clamp(11px, 1.6vw, 14px);
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 76px;
    padding: 12px;
    background-color: #fff;
    border-radius: 18px;
    border: 1px solid #e4ddd3;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

#tabs-bottom a[data-placeholder-link="true"] {
    opacity: 0.74;
}

#tabs-bottom a:hover,
#tabs-bottom a:focus-visible {
    color: #f39c12;
    border-color: #f39c12;
    transform: translateY(-2px);
}

#tabs-bottom a[aria-current="page"] {
    color: #9b5a0b;
    border-color: rgba(207, 154, 85, 0.78);
    background:
        radial-gradient(circle at 50% 0%, rgba(243, 156, 18, 0.14), transparent 42%),
        linear-gradient(180deg, #fff9ef 0%, #fffefb 100%);
    box-shadow: 0 12px 24px rgba(155, 90, 11, 0.13);
    transform: translateY(-1px);
}

#tabs-bottom a[data-placeholder-link="true"]:hover,
#tabs-bottom a[data-placeholder-link="true"]:focus-visible {
    color: #505050;
    border-color: #e4ddd3;
    transform: none;
}

#tabs-bottom a i {
    font-size: 18px;
    transition: color 0.25s ease, transform 0.25s ease;
}

#tabs-bottom a[aria-current="page"] i {
    color: #cf9a55;
    transform: translateY(-1px);
}

/*==================== FOOTER ====================*/

#footer {
    margin-top: 24px;
    padding: 22px;
    text-align: center;
    background-color: #171717;
    color: #d0d0d0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

/*==================== SOCIAL MEDIA ====================*/

#social-media-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.8vw, 12px);
    margin-top: 24px;
    padding: 0 16px;
    text-align: center;
}

#social-media-icons a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 6vw, 42px);
    height: clamp(36px, 6vw, 42px);
    border: 1px solid rgba(226, 218, 208, 0.95);
    border-radius: 50%;
    color: #9b5a0b;
    font-size: clamp(15px, 3vw, 18px);
    background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.07);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

#social-media-icons a[href*="instagram"] {
    color: #c13584;
}

#social-media-icons a[href*="wa.me"] {
    color: #128c7e;
}

#social-media-icons a[href^="mailto:"] {
    color: #9b5a0b;
}

#social-media-icons a[href^="tel:"] {
    color: #2f2c28;
}

#social-media-icons a:hover,
#social-media-icons a:focus-visible {
    border-color: rgba(207, 154, 85, 0.6);
    background: #fff;
    box-shadow: 0 12px 22px rgba(17, 17, 17, 0.11);
    outline: none;
    transform: translateY(-2px);
}

/*==================== MEDIA QUERY ====================*/

@media only screen and (max-width: 960px) {
    .intro-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banner-card-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .banner-card {
        grid-column: span 6;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-card {
        position: static;
    }

}

@media only screen and (max-width: 600px) {
    .inside-customization-field .cake-image-upload-note {
        font-size: clamp(9.5px, 2.85vw, 11px);
        padding-inline: 6px;
    }

    .product-detail-spec-list > div {
        grid-template-columns: minmax(92px, 0.42fr) minmax(0, 0.58fr);
    }

    .product-detail-spec-list dt,
    .product-detail-spec-list dd {
        padding: 10px;
        font-size: 12px;
    }

    .favourites-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .remove-favourite-button {
        top: 18px;
        right: 18px;
        width: 34px;
        height: 34px;
    }

    .cart-checkout-button {
        width: 100%;
        justify-self: stretch;
    }

    .cart-item {
        grid-template-columns: 72px minmax(0, 1fr) 34px;
        gap: 10px;
        padding: 10px;
    }

    .cart-item img {
        width: 72px;
    }

    .remove-cart-item-button {
        width: 34px;
        height: 34px;
    }

    .recommendation-track .product-card {
        flex-basis: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }

    body {
        scroll-padding-top: 132px;
    }

    #header {
        min-height: 64px;
        padding: 10px 14px 10px 12px;
    }

    .brand-mark {
        margin-left: 30px;
    }

    #header > img#logo {
        margin-left: 42px;
    }

    #header img {
        width: clamp(46px, 18vw, 62px);
    }

    .header-actions {
        gap: 4px;
    }

    .header-icon {
        width: 36px;
        height: 36px;
    }

    .site-search-modal {
        padding: 0;
    }

    .site-search-panel {
        height: 100dvh;
        max-height: none;
        margin-top: 0;
        border-radius: 0;
        padding: 0;
    }

    .site-search-header {
        grid-template-columns: minmax(0, 1fr) 36px;
        gap: 8px;
        min-height: 64px;
        padding: 8px 10px;
    }

    .site-search-form {
        grid-template-columns: 16px minmax(0, 1fr);
        gap: 7px;
        grid-column: 1;
        min-height: 40px;
        padding-inline: 10px;
    }

    .site-search-form input {
        font-size: 16px;
        font-weight: 700;
    }

    .site-search-form input::placeholder {
        font-size: clamp(0.68rem, 3vw, 0.82rem);
    }

    .site-search-form i {
        display: inline-block;
        font-size: 15px;
    }

    .site-search-results {
        padding: 12px 12px 28px;
    }

    .site-search-close {
        grid-column: 2;
        width: 36px;
        height: 36px;
    }

    .site-search-result {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 10px;
        padding: 9px;
    }

    .site-search-result img {
        width: 62px;
    }

    .account-details-modal {
        padding: 0;
    }

    .account-details-panel {
        height: 100dvh;
        max-height: none;
    }

    .account-details-header {
        min-height: 64px;
        padding: 8px 10px;
    }

    .account-details-header img {
        width: clamp(46px, 18vw, 62px);
    }

    .account-auth-tabs {
        width: min(100% - 24px, 560px);
    }

    .account-profile-card {
        width: min(100% - 24px, 560px);
        gap: 15px;
    }

    .account-profile-summary,
    .account-profile-actions-grid {
        grid-template-columns: 1fr;
    }

    .account-verification-panel {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .account-verification-actions {
        justify-content: center;
        width: 100%;
    }

    .account-verification-actions button {
        flex: 1 1 150px;
    }

    .account-profile-summary strong {
        white-space: normal;
    }

    .account-profile-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .account-profile-benefits span,
    .account-profile-benefits .account-edit-toggle {
        min-height: 58px;
        padding-inline: 8px;
    }

    .account-details-form {
        width: min(100% - 28px, 560px);
        gap: 10px;
        padding-inline: 6px;
    }

    .account-name-grid {
        grid-template-columns: 1fr;
    }

    .account-forgot-password {
        justify-self: center;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-page .page-hero-meta {
        width: fit-content;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-page .page-hero-meta span {
        width: min(100%, 260px);
        justify-content: flex-start;
    }

    #header i {
        font-size: 17px;
    }

    .toggle {
        left: 10px;
        top: 34px;
    }

    .slide {
        width: min(82vw, 280px);
        max-width: 280px;
        top: 64px;
        height: calc(100svh);
    }

    .slide ul li {
        padding: 0 24px;
    }

    .slide ul li a {
        font-size: 16px;
        margin: 8px 0;
    }

    #tabs-top-container {
        top: 64px;
        margin-top: 64px;
    }

    #tabs-top {
        height: auto;
        padding: 0 6px;
    }

    #tabs-top a {
        min-height: 50px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .scroll-arrow,
    .scroll-arrow-left,
    .scroll-arrow-right {
        width: 36px;
        opacity: 0;
        visibility: hidden;
    }

    .scroll-arrow-left,
    .scroll-arrow-right {
        background-size: 100% 100%;
    }

    .scroll-arrow-left i,
    .scroll-arrow-right i {
        font-size: 15px;
    }

    #main-content {
        width: min(100%, calc(100% - 20px));
        padding-top: 20px;
    }

    .home-intro {
        gap: 14px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .page-hero {
        gap: 12px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .page-hero h1 {
        max-width: 11ch;
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .page-hero-copy {
        font-size: 15px;
    }

    .home-intro h1 {
        max-width: 11ch;
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .intro-copy,
    .section-lead {
        font-size: 15px;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    #main-home {
        margin-top: 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #main-home > .section-heading {
        padding-inline: 18px;
        text-align: center;
        justify-items: center;
    }

    .all-business-section {
        padding: 16px 12px;
        border-radius: 20px;
    }

    .all-business-heading {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
    }

    .all-business-heading > div,
    .all-business-heading span {
        grid-column: 1;
        justify-self: center;
    }

    .all-product-rail {
        --all-rail-gap: 10px;
        grid-auto-columns: calc((100% - 10px) / 2);
        gap: 10px;
        padding-bottom: 10px;
    }

    .all-view-all-card {
        height: calc(100% - 1px);
        min-height: 100%;
        margin-top: 2px;
        margin-bottom: 0;
    }

    .banner-card,
    .banner-card-featured {
        grid-column: 1 / -1;
        display: block;
    }

    .banner-media,
    .banner-card-featured .banner-media {
        aspect-ratio: 4 / 3;
        min-height: auto;
    }

    .banner-card-copy {
        padding: 18px;
    }

    #shop-by-logo {
        margin-top: 24px;
        padding: 28px 14px;
        border-radius: 22px;
    }

    #why-plug {
        margin-top: 24px;
        padding: 24px 16px;
        border-radius: 22px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 18px;
    }

    .trust-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    body.catalog-page #main-home-products,
    body.catalog-page #main-home-streetwear-logos,
    body.catalog-page .catalog-showcase {
        padding: 18px 14px;
        border-radius: 22px;
    }

    .logo-track {
        --logo-gap: 12px;
    }

    .logo-scroll-container {
        --logo-columns: 3;
        --logo-gap: 8px;
        --logo-edge-pad: 0px;
        --logo-rail-pad-top: 14px;
        --logo-rail-pad-bottom: 12px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        column-gap: 10px;
    }

    .logo-track-shell {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-inline: var(--logo-edge-pad);
    }

    #shop-by-logo a {
        flex-basis: calc((100% - (var(--logo-gap) * (var(--logo-columns) - 1))) / var(--logo-columns));
        width: calc((100% - (var(--logo-gap) * (var(--logo-columns) - 1))) / var(--logo-columns));
        min-width: 0;
        height: auto;
        border-radius: 16px;
        padding: clamp(5px, 1.8vw, 8px);
    }

    .logo-scroll-arrow {
        display: inline-flex;
        width: 32px;
        height: 32px;
    }

    .logo-scrollbar {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        margin-top: 0;
    }

    #main-home-products {
        gap: 10px;
        padding: 10px;
    }

    .product-card {
        min-width: 140px;
        margin-top: 5px;
    }

    body.catalog-page .product-card {
        padding: 10px;
        border-radius: 16px;
    }

    body.catalog-page .product-card img {
        aspect-ratio: 1 / 1;
    }

    #main-home-streetwear-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    #main-home-streetwear-logos a {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
        max-width: 100%;
        margin: 0;
    }

    body.catalog-page #main-home-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        align-items: start;
    }

    body.catalog-page #main-home-streetwear-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        gap: 14px;
    }

    body.catalog-page #main-home-streetwear-logos a {
        width: 100%;
        max-width: none;
        min-height: 0;
        aspect-ratio: 1 / 1;
        padding: clamp(7px, 2.4vw, 10px);
    }

    body.catalog-page #main-home-streetwear-logos a.storefront-logo-card {
        min-height: 0;
        padding: clamp(7px, 2.4vw, 10px);
        border-radius: 22px;
    }

    body.catalog-page #main-home-streetwear-logos a.storefront-logo-card img {
        border-radius: 16px;
    }

    #main-home-streetwear-logos a img {
        width: 100%;
        display: block;
    }

    .product-info .name {
        font-size: 12px;
        height: 2.4em;
    }

    body.catalog-page .product-info .name {
        font-size: clamp(12px, 3.25vw, 13px);
        line-height: 1.28;
        min-height: calc(1.28em * 2);
        max-height: calc(1.28em * 2);
        height: auto;
    }

    body.catalog-page .product-info {
        gap: 3px;
        padding: 10px 2px 1px;
    }

    body.catalog-page .product-info .brand {
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    body.catalog-page .product-info .price {
        margin-top: 0;
        font-size: 14px;
    }

    .product-detail-shell {
        padding: 16px;
        border-radius: 24px;
        gap: 10px;
    }

    .product-gallery-card,
    .product-detail-card {
        border-radius: 22px;
    }

    .product-gallery-card {
        padding: 14px;
    }

    .product-gallery-arrow {
        width: 34px;
        height: 34px;
    }

    .product-gallery-dots {
        gap: 7px;
    }

    .product-detail-card {
        padding: 18px 16px;
        gap: 16px;
    }

    .product-detail-layout {
        gap: 14px;
    }

    .product-detail-intro {
        padding-bottom: 16px;
    }

    .product-detail-heading h1 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        max-width: 100%;
    }

    .product-favourite-button {
        width: 44px;
        height: 44px;
    }

    .product-gallery-choice {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .product-option-chips {
        width: 100%;
        max-width: 340px;
        gap: 8px;
    }

    .product-option-chips .option-chip {
        flex-basis: calc(50% - 4px);
    }

    .product-option-chips-colors {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .product-option-chips-colors .option-chip {
        flex: 0 1 calc(50% - 4px);
        justify-content: center;
        min-height: 42px;
        padding: 10px 16px;
        min-width: 0;
        font-size: clamp(0.74rem, 2.5vw, 0.95rem);
        line-height: 1.12;
    }

    .product-size-chips {
        grid-template-columns: repeat(5, minmax(0, 56px));
        gap: 8px;
        width: min(100%, 320px);
        justify-content: center;
    }

    .product-size-chips .option-chip {
        min-height: 38px;
        padding: 8px 8px;
        font-size: clamp(0.72rem, 2.3vw, 0.86rem);
    }

    .product-size-chips.product-size-chips-single {
        grid-template-columns: minmax(140px, 170px);
        width: min(100%, 170px);
    }

    .product-size-chips.product-size-chips-single.cake-customization-chips {
        grid-template-columns: minmax(180px, 220px);
        width: min(100%, 220px);
    }

    .product-detail-info-block {
        padding: 16px;
        border-radius: 18px;
    }

    .product-detail-notice {
        font-size: 13px;
        line-height: 1.4;
    }

    .product-action-button {
        width: 100%;
        flex-basis: 100%;
    }

    .seller-social-links {
        grid-template-columns: 1fr;
    }

    .seller-social-links a span {
        font-size: 14px;
    }

    #tabs-bottom {
        width: min(100%, calc(100% - 20px));
        gap: 10px;
    }

    #tabs-bottom a {
        min-height: 68px;
        padding: 10px 8px;
        font-size: 11px;
    }

    #tabs-bottom a i {
        font-size: 17px;
    }

    #social-media-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0;
    }

    .view-more-link {
        width: 100%;
        padding: 15px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .favourites-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-page .intro-highlights p:last-child,
    .home-page .trust-grid .trust-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 460px);
    }

    .recommendation-track .product-card {
        flex-basis: calc((100% - 48px) / 4);
        max-width: calc((100% - 48px) / 4);
    }

    .slide {
        width: min(44vw, 320px);
        max-width: 320px;
    }

    #header img {
        width: clamp(50px, 8vw, 70px);
    }

    #tabs-top a {
        padding: 14px 18px;
        font-size: 15px;
    }

    .logo-scroll-container {
        --logo-columns: 4;
        --logo-gap: 14px;
        --logo-edge-pad: 5px;
        --logo-rail-pad-top: 17px;
        --logo-rail-pad-bottom: 13px;
        column-gap: 16px;
    }

    body.catalog-page #main-home-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .all-product-rail {
        --all-rail-gap: 12px;
        grid-auto-columns: calc((100% - 36px) / 4);
    }

    .info-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #tabs-bottom a {
        font-size: 13px;
    }
}

/*==================== RESPONSIVE REFINEMENTS ====================*/

#tabs-top,
#tabs-bottom,
.cart-business-group,
.product-detail-actions,
.inside-image-preview,
.image-upload-slot {
    min-width: 0;
}

#tabs-top {
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
}

#tabs-top a {
    max-width: min(42vw, 180px);
    overflow-wrap: anywhere;
}

#tabs-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#tabs-bottom a {
    min-width: 0;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.cart-checkout-button span,
.product-action-button span,
.image-upload-slot span,
.remove-uploaded-image span {
    min-width: 0;
}

.cart-item-info,
.cart-item-options,
.cart-item-options div,
.product-detail-card,
.product-detail-selection,
.inside-customization-field,
.inside-image-preview p {
    min-width: 0;
}

.inside-image-preview p,
.cart-item-options dd {
    overflow-wrap: anywhere;
}

.product-cart-action-status {
    flex-basis: 100%;
    margin: 0;
    color: #5f574d;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-cart-action-status.is-error {
    color: #9f241e;
}

@media only screen and (max-width: 600px) {
    #tabs-top {
        padding-inline: 8px;
    }

    #tabs-top a {
        max-width: 38vw;
        min-height: 48px;
        white-space: normal;
        text-wrap: balance;
    }

    #tabs-bottom {
        width: min(100%, calc(100% - 18px));
        gap: 8px;
    }

    #tabs-bottom a {
        min-height: 64px;
        padding: 9px 6px;
        font-size: clamp(10px, 2.75vw, 11px);
    }

    .cart-business-heading {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cart-business-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-checkout-button {
        border-radius: 14px;
        white-space: normal;
    }

    .inside-image-preview {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .inside-image-preview .remove-uploaded-image {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media only screen and (max-width: 380px) {
    body.catalog-page #main-home-streetwear-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.catalog-page #main-home-streetwear-logos a,
    body.catalog-page #main-home-streetwear-logos a.storefront-logo-card {
        max-width: none;
    }

    #tabs-bottom {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    #tabs-bottom a {
        min-height: 50px;
        padding: 8px 4px;
        font-size: 10px;
    }

    .header-actions {
        gap: 2px;
    }

    .header-icon {
        width: 34px;
        height: 34px;
    }
}
