:root {
    --primary: #121212;
    --primary-light: #2A2A2A;
    --secondary: #595959;
    --secondary-light: #7D7D7D;
    --accent: #C93B2B;
    --accent-hover: #A82B1D;
    --accent-light: #FDF0EE;
    --background-primary: #FFFFFF;
    --background-secondary: #F8F8F8;
    --background-tertiary: #F0F0F0;
    --border-light: #E8E8E8;
    --border-medium: #D0D0D0;
    --border-dark: #121212;
    --text-primary: #121212;
    --text-secondary: #595959;
    --text-muted: #8C8C8C;
    --text-on-accent: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --font-family-base: 'Slabo 27px', serif;
}

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

body {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-style: normal;
    background-color: var(--background-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

button {
    font-family: var(--font-family-base);
    font-weight: 400;
    border-radius: 0;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ===== header ===== */
.header-main {
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
    background-color: #FFFFFF;
    box-shadow: 0 1px 0 #E8E8E8;
    z-index: 1030;
}

.header-main .header-main__announcement {
    background-color: #121212;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.header-main .header-main__announcement-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #FFFFFF;
}

.header-main .header-main__navbar {
    background-color: #FFFFFF;
    padding-top: 14px;
    padding-bottom: 14px;
}

.header-main .header-main__brand {
    text-decoration: none;
    color: #121212;
}

.header-main .header-main__logo-img {
    max-width: 44px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header-main .header-main__brand-name {
    font-size: 1.375rem;
    color: #121212;
    letter-spacing: 0.02em;
}

.header-main .header-main__toggler {
    padding: 6px 10px;
    background-color: transparent;
    color: #121212;
    cursor: pointer;
}

.header-main .header-main__toggler-icon {
    font-size: 1.625rem;
    color: #121212;
}

.header-main .header-main__menu {
    gap: 8px;
}

.header-main .header-main__nav-link {
    color: #121212;
    font-size: 0.9375rem;
    padding: 8px 14px !important;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.header-main .header-main__nav-link:hover,
.header-main .header-main__nav-link:focus {
    color: #C93B2B;
    border-color: #C93B2B;
}

.header-main .header-main__action-wrapper {
    gap: 16px;
}

.header-main .header-main__cart-link {
    padding: 10px 18px;
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    font-size: 0.875rem;
    line-height: 1;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.header-main .header-main__cart-link:hover,
.header-main .header-main__cart-link:focus {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

.header-main .header-main__cart-icon {
    font-size: 1.125rem;
    color: #FFFFFF;
}

.header-main .header-main__cart-text {
    color: #FFFFFF;
}

.header-main .header-main__cart-badge {
    color: #FFFFFF;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .header-main .header-main__collapse {
        background-color: #FFFFFF;
        border-top: 1px solid #E8E8E8;
        margin-top: 12px;
        padding-bottom: 12px;
    }

    .header-main .header-main__nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid #F0F0F0;
    }

    .header-main .header-main__action-wrapper {
        margin-top: 12px;
    }

    .header-main .header-main__cart-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .header-main .header-main__announcement-text {
        font-size: 0.75rem;
    }

    .header-main .header-main__brand-name {
        font-size: 1.125rem;
    }
}

/* ===== hero ===== */
.fashiplazoz-hero-section {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
}

.fashiplazoz-hero-section .fashiplazoz-hero-wrapper {
    border: 1px solid #E8E8E8;
    background-color: #F8F8F8;
    overflow: hidden;
}

.fashiplazoz-hero-section .fashiplazoz-hero-visual-col {
    position: relative;
    min-height: 400px;
    background-color: #F0F0F0;
    border-bottom: 1px solid #E8E8E8;
}

@media (min-width: 992px) {
    .fashiplazoz-hero-section .fashiplazoz-hero-visual-col {
        border-bottom: none;
        border-right: 1px solid #E8E8E8;
        min-height: 560px;
    }
}

.fashiplazoz-hero-section .fashiplazoz-slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.fashiplazoz-hero-section .fashiplazoz-slide-media {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fashiplazoz-hero-section .fashiplazoz-slide-media.active {
    display: block;
    position: relative;
    height: 100%;
}

.fashiplazoz-hero-section .fashiplazoz-hero-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

@media (min-width: 992px) {
    .fashiplazoz-hero-section .fashiplazoz-hero-img {
        min-height: 560px;
        height: 100%;
    }
}

.fashiplazoz-hero-section .fashiplazoz-hero-card {
    padding: 28px 24px;
    background-color: #FFFFFF;
}

@media (min-width: 992px) {
    .fashiplazoz-hero-section .fashiplazoz-hero-card {
        padding: 44px 38px;
    }
}

.fashiplazoz-hero-section .fashiplazoz-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: #595959;
    text-transform: uppercase;
}

.fashiplazoz-hero-section .fashiplazoz-slide-counter {
    font-size: 13px;
    font-weight: 400;
    color: #C93B2B;
    letter-spacing: 1px;
}

.fashiplazoz-hero-section .fashiplazoz-content-item {
    display: none;
}

.fashiplazoz-hero-section .fashiplazoz-content-item.active {
    display: block;
}

.fashiplazoz-hero-section .fashiplazoz-category-label {
    display: inline-block;
    font-size: 12px;
    color: #C93B2B;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.fashiplazoz-hero-section .fashiplazoz-hero-title {
    color: #121212;
    font-size: 26px;
    line-height: 1.25;
    margin: 0;
    hyphens: auto;
}

@media (max-width: 767.98px) {
    .fashiplazoz-hero-section h1.fashiplazoz-hero-title {
        font-size: 18px !important;
    }

    .fashiplazoz-hero-section h2.fashiplazoz-hero-title {
        font-size: 16px !important;
    }
}

.fashiplazoz-hero-section .fashiplazoz-hero-desc {
    color: #595959;
    font-size: 15px;
    line-height: 1.6;
}

.fashiplazoz-hero-section .fashiplazoz-btn-primary {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 0;
}

.fashiplazoz-hero-section .fashiplazoz-btn-primary:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

.fashiplazoz-hero-section .fashiplazoz-btn-outline {
    background-color: transparent;
    color: #121212;
    border: 1px solid #121212;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 0;
}

.fashiplazoz-hero-section .fashiplazoz-btn-outline:hover {
    background-color: #121212;
    color: #FFFFFF;
}

.fashiplazoz-hero-section .fashiplazoz-dot-btn {
    width: 28px;
    height: 3px;
    background-color: #D0D0D0;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 0;
}

.fashiplazoz-hero-section .fashiplazoz-dot-btn.active {
    background-color: #C93B2B;
}

.fashiplazoz-hero-section .fashiplazoz-arrow-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #D0D0D0;
    background-color: #FFFFFF;
    color: #121212;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    border-radius: 0;
}

.fashiplazoz-hero-section .fashiplazoz-arrow-btn:hover {
    background-color: #121212;
    border-color: #121212;
    color: #FFFFFF;
}

.fashiplazoz-hero-section .border-bottom {
    border-bottom: 1px solid #E8E8E8 !important;
}

.fashiplazoz-hero-section .border-top {
    border-top: 1px solid #E8E8E8 !important;
}

/* ===== categories ===== */
.fashiplazoz-categories-section {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
}

.fashiplazoz-categories-section .fashiplazoz-categories-tag {
    display: inline-block;
    background-color: #FDF0EE;
    color: #C93B2B;
    border: 1px solid #C93B2B;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0;
}

.fashiplazoz-categories-section .fashiplazoz-categories-title {
    color: #121212;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.fashiplazoz-categories-section .fashiplazoz-categories-subtitle {
    color: #595959;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
}

.fashiplazoz-categories-section .fashiplazoz-tab-btn {
    background-color: #F8F8F8;
    color: #121212;
    border: 1px solid #E8E8E8;
    padding: 10px 22px;
    font-size: 0.9375rem;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fashiplazoz-categories-section .fashiplazoz-tab-btn:hover {
    background-color: #121212;
    border-color: #121212;
    color: #FFFFFF;
}

.fashiplazoz-categories-section .fashiplazoz-tab-btn.active {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

.fashiplazoz-categories-section .fashiplazoz-category-card {
    background-color: #F8F8F8;
    border: 1px solid #E8E8E8;
    border-radius: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fashiplazoz-categories-section .fashiplazoz-category-card:hover {
    border-color: #121212;
    background-color: #FFFFFF;
}

.fashiplazoz-categories-section .fashiplazoz-category-media {
    overflow: hidden;
    background-color: #F0F0F0;
    border-bottom: 1px solid #E8E8E8;
}

.fashiplazoz-categories-section .fashiplazoz-category-img-link {
    display: block;
}

.fashiplazoz-categories-section .fashiplazoz-category-img {
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.fashiplazoz-categories-section .fashiplazoz-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #C93B2B;
    color: #FFFFFF;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0;
}

.fashiplazoz-categories-section .fashiplazoz-category-count {
    font-size: 0.8125rem;
    color: #595959;
}

.fashiplazoz-categories-section .fashiplazoz-category-dot {
    font-size: 0.75rem;
    color: #8C8C8C;
}

.fashiplazoz-categories-section .fashiplazoz-category-status {
    font-size: 0.8125rem;
    color: #C93B2B;
}

.fashiplazoz-categories-section .fashiplazoz-category-heading {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #121212;
}

.fashiplazoz-categories-section .fashiplazoz-category-title-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fashiplazoz-categories-section .fashiplazoz-category-title-link:hover {
    color: #C93B2B;
}

.fashiplazoz-categories-section .fashiplazoz-category-desc {
    font-size: 0.9375rem;
    color: #595959;
    line-height: 1.5;
}

.fashiplazoz-categories-section .fashiplazoz-category-action {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    border-radius: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fashiplazoz-categories-section .fashiplazoz-category-action:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

.fashiplazoz-categories-section .fashiplazoz-btn-primary {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    border-radius: 0;
    padding: 14px 32px;
    font-size: 0.9375rem;
    text-decoration: none;
    min-height: 50px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fashiplazoz-categories-section .fashiplazoz-btn-primary:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

.fashiplazoz-categories-section .fashiplazoz-btn-outline {
    background-color: transparent;
    color: #121212;
    border: 1px solid #121212;
    border-radius: 0;
    padding: 14px 32px;
    font-size: 0.9375rem;
    text-decoration: none;
    min-height: 50px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.fashiplazoz-categories-section .fashiplazoz-btn-outline:hover {
    background-color: #121212;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .fashiplazoz-categories-section .fashiplazoz-categories-title {
        font-size: 16px;
        hyphens: auto;
    }

    .fashiplazoz-categories-section .fashiplazoz-category-heading {
        font-size: 14px;
        hyphens: auto;
    }

    .fashiplazoz-categories-section .fashiplazoz-category-img {
        height: auto;
    }

    .fashiplazoz-categories-section .fashiplazoz-tab-btn {
        width: 100%;
        text-align: center;
        padding: 10px 14px;
    }

    .fashiplazoz-categories-section .fashiplazoz-btn-primary,
    .fashiplazoz-categories-section .fashiplazoz-btn-outline {
        width: 100%;
    }
}

/* ===== bestsellers ===== */
.fashiplazoz-bestsellers {
    background-color: #FFFFFF;
    font-family: 'Slabo 27px', serif;
    color: #121212;
}

.fashiplazoz-bestsellers .bestsellers-tag {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: #C93B2B;
}

.fashiplazoz-bestsellers .bestsellers-heading {
    font-size: 2rem;
    line-height: 1.25;
    color: #121212;
    font-weight: 400;
}

.fashiplazoz-bestsellers .bestsellers-view-all {
    font-size: 0.95rem;
    color: #121212;
    transition: color 0.15s ease;
}

.fashiplazoz-bestsellers .bestsellers-view-all:hover {
    color: #C93B2B;
}

.fashiplazoz-bestsellers .bestsellers-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    transition: border-color 0.15s ease;
}

.fashiplazoz-bestsellers .bestsellers-card:hover {
    border-color: #121212;
}

.fashiplazoz-bestsellers .bestsellers-image-wrapper {
    aspect-ratio: 3 / 4;
    background-color: #F8F8F8;
}

.fashiplazoz-bestsellers .bestsellers-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.fashiplazoz-bestsellers .bestsellers-badge {
    background-color: #C93B2B;
    color: #FFFFFF;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}

.fashiplazoz-bestsellers .bestsellers-rating {
    color: #C93B2B;
    font-size: 0.85rem;
}

.fashiplazoz-bestsellers .bestsellers-score {
    color: #121212;
}

.fashiplazoz-bestsellers .bestsellers-reviews-count {
    color: #7D7D7D;
    font-size: 0.8rem;
}

.fashiplazoz-bestsellers .bestsellers-stock-status {
    font-size: 0.75rem;
    color: #595959;
}

.fashiplazoz-bestsellers .bestsellers-product-title {
    font-size: 1.1rem;
    line-height: 1.35;
    min-height: 2.8em;
}

.fashiplazoz-bestsellers .bestsellers-product-title a {
    color: #121212;
    transition: color 0.15s ease;
}

.fashiplazoz-bestsellers .bestsellers-product-title a:hover {
    color: #C93B2B;
}

.fashiplazoz-bestsellers .bestsellers-specs {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #595959;
    margin-bottom: 0;
}

.fashiplazoz-bestsellers .bestsellers-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7D7D7D;
}

.fashiplazoz-bestsellers .bestsellers-price-val {
    font-size: 1.25rem;
    color: #121212;
}

.fashiplazoz-bestsellers .bestsellers-btn-cart {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    border-radius: 0;
    padding: 11px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.fashiplazoz-bestsellers .bestsellers-btn-cart:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .fashiplazoz-bestsellers .bestsellers-heading {
        font-size: 16px;
        hyphens: auto;
    }

    .fashiplazoz-bestsellers .bestsellers-product-title {
        font-size: 14px;
        min-height: auto;
    }
}

/* ===== specialists_choice ===== */
.specialists-choice-section {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
}

.specialists-choice-section .specialists-choice-header {
    border-bottom: 1px solid #E8E8E8;
}

.specialists-choice-section .specialists-choice-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #C93B2B;
    display: inline-block;
    margin-bottom: 4px;
}

.specialists-choice-section .specialists-choice-title {
    font-size: 32px;
    line-height: 1.25;
    color: #121212;
}

.specialists-choice-section .specialists-choice-subtitle {
    max-width: 480px;
    font-size: 15px;
    line-height: 1.5;
    color: #595959;
}

.specialists-choice-section .specialists-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 0;
    transition: border-color 0.2s ease;
}

.specialists-choice-section .specialists-card:hover {
    border-color: #121212;
}

.specialists-choice-section .specialists-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background-color: #C93B2B;
    color: #FFFFFF;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 0;
}

.specialists-choice-section .specialists-image-link {
    background-color: #F8F8F8;
    overflow: hidden;
}

.specialists-choice-section .specialists-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.specialists-choice-section .specialists-card-body {
    background-color: #FFFFFF;
}

.specialists-choice-section .specialists-rating {
    font-size: 13px;
    color: #121212;
}

.specialists-choice-section .specialists-star-icon {
    color: #C93B2B;
    font-size: 14px;
}

.specialists-choice-section .specialists-price {
    font-size: 18px;
    color: #121212;
}

.specialists-choice-section .specialists-item-title {
    font-size: 18px;
    line-height: 1.3;
}

.specialists-choice-section .specialists-item-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.specialists-choice-section .specialists-item-link:hover {
    color: #C93B2B;
}

.specialists-choice-section .specialists-item-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #595959;
}

.specialists-choice-section .specialists-quote {
    background-color: #F8F8F8;
    border-left: 2px solid #C93B2B;
}

.specialists-choice-section .specialists-quote-text {
    font-size: 13px;
    line-height: 1.4;
    color: #121212;
}

.specialists-choice-section .specialists-author {
    font-size: 11px;
    color: #7D7D7D;
}

.specialists-choice-section .specialists-add-btn {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    border-radius: 0;
    padding: 12px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.specialists-choice-section .specialists-add-btn:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .specialists-choice-section .specialists-choice-title {
        font-size: 16px;
        hyphens: auto;
    }

    .specialists-choice-section .specialists-item-title {
        font-size: 14px;
        hyphens: auto;
    }

    .specialists-choice-section .specialists-choice-subtitle {
        font-size: 13px;
    }
}

/* ===== seasonal_collection ===== */
.seasonal-showcase-section {
    background-color: #F8F8F8;
    font-family: 'Slabo 27px', serif;
    color: #121212;
}

.seasonal-showcase-section .seasonal-badge {
    background-color: #FDF0EE;
    color: #C93B2B;
    padding: 6px 16px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 59, 43, 0.2);
}

.seasonal-showcase-section .seasonal-title {
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 1.25;
    color: #121212;
    margin-bottom: 0.75rem;
}

.seasonal-showcase-section .seasonal-subtitle {
    color: #595959;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 680px;
}

.seasonal-showcase-section .seasonal-filter-btn {
    background-color: #FFFFFF;
    color: #121212;
    border: 1px solid #E8E8E8;
    padding: 10px 22px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.seasonal-showcase-section .seasonal-filter-btn:hover,
.seasonal-showcase-section .seasonal-filter-btn.active {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.seasonal-showcase-section .seasonal-card {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    transition: border-color 0.2s ease;
}

.seasonal-showcase-section .seasonal-card:hover {
    border-color: #121212;
}

.seasonal-showcase-section .seasonal-card-media {
    background-color: #F0F0F0;
    overflow: hidden;
}

.seasonal-showcase-section .seasonal-img-link {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.seasonal-showcase-section .seasonal-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seasonal-showcase-section .seasonal-tag {
    background-color: #C93B2B;
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 4px 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.seasonal-showcase-section .seasonal-category {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: #595959;
}

.seasonal-showcase-section .seasonal-rating {
    color: #C93B2B;
    font-size: 0.875rem;
}

.seasonal-showcase-section .seasonal-item-title {
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.seasonal-showcase-section .seasonal-title-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.15s ease;
}

.seasonal-showcase-section .seasonal-title-link:hover {
    color: #C93B2B;
}

.seasonal-showcase-section .seasonal-item-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #595959;
}

.seasonal-showcase-section .seasonal-item-specs {
    font-size: 0.8rem;
    color: #595959;
}

.seasonal-showcase-section .seasonal-spec-item {
    margin-bottom: 2px;
}

.seasonal-showcase-section .spec-label {
    color: #595959;
}

.seasonal-showcase-section .spec-val {
    color: #121212;
}

.seasonal-showcase-section .price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #595959;
}

.seasonal-showcase-section .seasonal-price {
    font-size: 1.2rem;
    color: #121212;
    font-weight: 400;
}

.seasonal-showcase-section .seasonal-btn-cart {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 10px 18px;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.seasonal-showcase-section .seasonal-btn-cart:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .seasonal-showcase-section .seasonal-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .seasonal-showcase-section .seasonal-item-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .seasonal-showcase-section .seasonal-filter-nav {
        flex-direction: column;
        width: 100%;
    }

    .seasonal-showcase-section .seasonal-filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== calculator ===== */
.tailoring-calc-section {
    background-color: #FFFFFF;
    color: #121212;
    font-family: 'Slabo 27px', serif;
}

.tailoring-calc-section .tailoring-calc-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C93B2B;
    font-weight: 400;
    padding: 4px 10px;
    background-color: #FDF0EE;
    border: 1px solid rgba(201, 59, 43, 0.2);
}

.tailoring-calc-section .tailoring-calc-title {
    font-size: 32px;
    font-weight: 400;
    color: #121212;
    line-height: 1.25;
}

.tailoring-calc-section .tailoring-calc-desc {
    max-width: 680px;
    font-size: 16px;
    color: #595959;
    line-height: 1.6;
}

.tailoring-calc-section .tailoring-calc-card {
    background-color: #F8F8F8;
    border: 1px solid #E8E8E8;
}

.tailoring-calc-section .tailoring-calc-label {
    font-size: 16px;
    font-weight: 400;
    color: #121212;
}

.tailoring-calc-section .tailoring-calc-hint {
    font-size: 13px;
    color: #8C8C8C;
}

.tailoring-calc-section .tailoring-pattern-btn {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    color: #121212;
    padding: 14px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    height: 100%;
    min-height: 82px;
}

.tailoring-calc-section .tailoring-pattern-btn:hover {
    border-color: #121212;
}

.tailoring-calc-section .tailoring-pattern-btn.active {
    border-color: #C93B2B;
    background-color: #FDF0EE;
    color: #C93B2B;
}

.tailoring-calc-section .tailoring-pattern-btn .tailoring-btn-icon {
    font-size: 22px;
    color: inherit;
}

.tailoring-calc-section .tailoring-pattern-btn .tailoring-btn-text {
    font-size: 13px;
    line-height: 1.2;
}

.tailoring-calc-section .tailoring-toggle-btn {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    color: #121212;
    padding: 10px 14px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.tailoring-calc-section .tailoring-toggle-btn:hover {
    border-color: #121212;
}

.tailoring-calc-section .tailoring-toggle-btn.active {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
}

.tailoring-calc-section .tailoring-input-box {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    padding: 12px 14px;
}

.tailoring-calc-section .tailoring-input-name {
    font-size: 14px;
    color: #595959;
}

.tailoring-calc-section .tailoring-input-val {
    font-size: 15px;
    font-weight: 400;
    color: #C93B2B;
}

.tailoring-calc-section .form-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    --fill: 50%;
    background: linear-gradient(to right, #C93B2B 0%, #C93B2B var(--fill), #E8E8E8 var(--fill), #E8E8E8 100%);
    outline: none;
    margin: 8px 0 0;
}

.tailoring-calc-section .form-range::-webkit-slider-runnable-track {
    height: 4px;
    background: linear-gradient(to right, #C93B2B 0%, #C93B2B var(--fill), #E8E8E8 var(--fill), #E8E8E8 100%);
}

.tailoring-calc-section .form-range::-moz-range-track {
    height: 4px;
    background: #E8E8E8;
}

.tailoring-calc-section .form-range::-moz-range-progress {
    height: 4px;
    background: #C93B2B;
}

.tailoring-calc-section .form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 0;
    background: #121212;
    cursor: pointer;
    border: 2px solid #C93B2B;
}

.tailoring-calc-section .form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 0;
    background: #121212;
    cursor: pointer;
    border: 2px solid #C93B2B;
}

.tailoring-calc-section .tailoring-calc-result-card {
    background-color: #F8F8F8;
    border: 1px solid #D0D0D0;
}

.tailoring-calc-section .tailoring-result-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595959;
}

.tailoring-calc-section .tailoring-ready-status {
    font-size: 13px;
    color: #121212;
}

.tailoring-calc-section .tailoring-result-sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #595959;
}

.tailoring-calc-section .tailoring-main-number {
    font-size: 56px;
    font-weight: 400;
    color: #121212;
    line-height: 1;
}

.tailoring-calc-section .tailoring-unit-label {
    font-size: 20px;
    color: #C93B2B;
    font-weight: 400;
}

.tailoring-calc-section .tailoring-meter-equivalent {
    font-size: 14px;
    color: #595959;
}

.tailoring-calc-section .tailoring-meter-equivalent strong {
    color: #121212;
    font-weight: 400;
}

.tailoring-calc-section .spec-name {
    font-size: 14px;
    color: #595959;
}

.tailoring-calc-section .spec-val {
    font-size: 14px;
    color: #121212;
    text-align: right;
}

.tailoring-calc-section .tailoring-tip-icon {
    font-size: 20px;
    color: #C93B2B;
    flex-shrink: 0;
}

.tailoring-calc-section .tailoring-tip-text {
    font-size: 13px;
    color: #595959;
    line-height: 1.4;
}

.tailoring-calc-section .tailoring-action-btn {
    background-color: transparent;
    border: 1px solid #121212;
    color: #121212;
    padding: 12px 18px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tailoring-calc-section .tailoring-action-btn:hover {
    background-color: #121212;
    color: #FFFFFF;
}

.tailoring-calc-section .tailoring-cta-link {
    background-color: #121212;
    border: 1px solid #121212;
    color: #FFFFFF;
    padding: 12px 18px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tailoring-calc-section .tailoring-cta-link:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .tailoring-calc-section .tailoring-calc-title {
        font-size: 24px;
        hyphens: auto;
    }

    .tailoring-calc-section .tailoring-main-number {
        font-size: 42px;
    }

    .tailoring-calc-section .tailoring-pattern-btn {
        min-height: 70px;
        padding: 10px 4px;
    }
}

/* ===== footer ===== */
.site-footer-section {
    background-color: #F8F8F8;
    border-top: 1px solid #E8E8E8;
    color: #121212;
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.site-footer-section .site-footer-top {
    border-bottom: 1px solid #E8E8E8;
}

.site-footer-section .footer-brand-title {
    font-size: 24px;
    line-height: 1.2;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer-section .footer-brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer-section .footer-brand-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #595959;
    margin-bottom: 24px;
}

.site-footer-section .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-section .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #121212;
}

.site-footer-section .footer-icon {
    font-size: 18px;
    color: #C93B2B;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer-section .footer-contact-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer-section .footer-contact-link:hover {
    color: #C93B2B;
    text-decoration: none;
}

.site-footer-section .footer-contact-text {
    color: #121212;
}

.site-footer-section .footer-heading {
    font-size: 17px;
    line-height: 1.3;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    font-weight: 400;
}

.site-footer-section .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-section .footer-nav-link {
    font-size: 15px;
    line-height: 1.5;
    color: #595959;
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-block;
}

.site-footer-section .footer-nav-link:hover {
    color: #C93B2B;
    text-decoration: none;
}

.site-footer-section .footer-guarantee-note {
    margin-top: 24px;
    padding: 16px;
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
}

.site-footer-section .footer-guarantee-title {
    font-size: 14px;
    line-height: 1.3;
    color: #121212;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer-section .footer-guarantee-text {
    font-size: 13px;
    line-height: 1.5;
    color: #595959;
    margin: 0;
}

.site-footer-section .footer-copyright-text {
    font-size: 14px;
    line-height: 1.5;
    color: #595959;
}

.site-footer-section .footer-domain-name {
    color: #121212;
}

.site-footer-section .footer-sublink {
    font-size: 13px;
    line-height: 1.4;
    color: #595959;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer-section .footer-sublink:hover {
    color: #C93B2B;
    text-decoration: none;
}

.site-footer-section .footer-bullet-separator {
    font-size: 12px;
    color: #8C8C8C;
}

@media (max-width: 767px) {
    .site-footer-section .footer-brand-title {
        font-size: 20px;
    }

    .site-footer-section .footer-heading {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 8px;
    }

    .site-footer-section .footer-guarantee-note {
        margin-top: 16px;
    }
}

body {
    font-family: 'Slabo 27px', serif;
    font-weight: 400;
    background-color: #FFFFFF;
    color: #121212;
    margin: 0;
    padding: 0;
}

.category-page-banner {
    background-color: #F8F8F8;
    border-bottom: 1px solid #E8E8E8;
}

.category-page-banner .category-page-banner__wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.category-page-banner .category-page-banner__tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: #C93B2B;
    text-transform: uppercase;
    display: inline-block;
}

.category-page-banner .category-page-banner__title {
    font-size: 32px;
    line-height: 1.25;
    color: #121212;
    hyphens: auto;
}

.category-page-banner .category-page-banner__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #595959;
}

@media (max-width: 767.98px) {
    .category-page-banner .category-page-banner__title {
        font-size: 18px !important;
    }

    .category-page-banner .category-page-banner__subtitle {
        font-size: 14px;
    }
}

.accessories-listing-section {
    background-color: #FFFFFF;
}

.accessories-listing-section .accessories-listing-section__label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #C93B2B;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.accessories-listing-section .accessories-listing-section__title {
    font-size: 26px;
    line-height: 1.3;
    color: #121212;
}

@media (max-width: 767.98px) {
    .accessories-listing-section .accessories-listing-section__title {
        font-size: 16px !important;
    }
}

.accessories-listing-section .accessories-listing-section__row-card {
    border: 1px solid #E8E8E8;
    background-color: #FFFFFF;
    transition: border-color 0.15s ease;
}

.accessories-listing-section .accessories-listing-section__row-card:hover {
    border-color: #121212;
}

.accessories-listing-section .accessories-listing-section__media-box {
    position: relative;
    aspect-ratio: 3 / 4;
    background-color: #F0F0F0;
    overflow: hidden;
}

.accessories-listing-section .accessories-listing-section__img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.accessories-listing-section .accessories-listing-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accessories-listing-section .accessories-listing-section__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #C93B2B;
    color: #FFFFFF;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 8px;
    text-transform: uppercase;
    line-height: 1;
}

.accessories-listing-section .accessories-listing-section__sku {
    font-size: 12px;
    color: #8C8C8C;
    letter-spacing: 0.5px;
}

.accessories-listing-section .accessories-listing-section__separator {
    font-size: 10px;
    color: #D0D0D0;
}

.accessories-listing-section .accessories-listing-section__star-icon {
    color: #C93B2B;
    font-size: 13px;
}

.accessories-listing-section .accessories-listing-section__rating-val {
    font-size: 12px;
    color: #121212;
}

.accessories-listing-section .accessories-listing-section__stock {
    font-size: 12px;
    color: #121212;
}

.accessories-listing-section .accessories-listing-section__item-title {
    font-size: 20px;
    line-height: 1.3;
    color: #121212;
}

@media (max-width: 767.98px) {
    .accessories-listing-section .accessories-listing-section__item-title {
        font-size: 14px !important;
    }
}

.accessories-listing-section .accessories-listing-section__title-link {
    color: #121212;
    text-decoration: none;
    transition: color 0.15s ease;
}

.accessories-listing-section .accessories-listing-section__title-link:hover {
    color: #C93B2B;
}

.accessories-listing-section .accessories-listing-section__item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #595959;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accessories-listing-section .accessories-listing-section__spec-pill {
    background-color: #F8F8F8;
    border: 1px solid #E8E8E8;
    color: #595959;
    font-size: 11px;
    padding: 4px 10px;
    line-height: 1.3;
}

.accessories-listing-section .accessories-listing-section__link-action {
    color: #121212;
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.15s ease;
}

.accessories-listing-section .accessories-listing-section__link-action:hover {
    color: #C93B2B;
}

.accessories-listing-section .accessories-listing-section__action-box {
    background-color: #FFFFFF;
}

@media (min-width: 992px) {
    .accessories-listing-section .border-start-lg {
        border-left: 1px solid #E8E8E8;
    }
}

.accessories-listing-section .accessories-listing-section__price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8C8C8C;
}

.accessories-listing-section .accessories-listing-section__price-val {
    font-size: 24px;
    color: #121212;
    line-height: 1.2;
}

.accessories-listing-section .accessories-listing-section__btn-cart {
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.accessories-listing-section .accessories-listing-section__btn-cart:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
    color: #FFFFFF;
}

.accessories-listing-section .accessories-listing-section__shipping-note {
    font-size: 11px;
    color: #595959;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .accessories-listing-section .accessories-listing-section__row-card {
        display: block;
        width: 100%;
    }

    .accessories-listing-section .accessories-listing-section__action-box {
        border-top: 1px solid #E8E8E8;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content{font-family:'Slabo 27px',serif;font-weight:400;font-style:normal;color:#121212;line-height:1.75;padding:48px 24px;max-width:960px;margin:0 auto;background-color:#FFFFFF;word-break:break-word;hyphens:auto}.policy-content .policy-meta-date{font-size:14px;color:#595959;margin-bottom:24px;border-bottom:1px solid #E8E8E8;padding-bottom:12px}.policy-content .policy-lead-text{font-size:18px;line-height:1.7;color:#121212;margin-bottom:32px}.policy-content h2{font-family:'Slabo 27px',serif;font-weight:400;font-size:24px;line-height:1.3;color:#121212;margin-top:40px;margin-bottom:16px;padding-bottom:8px;border-bottom:1px solid #F0F0F0}.policy-content p{margin-bottom:18px;color:#595959;font-size:16px;line-height:1.75}.policy-content strong{font-weight:400;color:#121212}.policy-content ul{margin-top:12px;margin-bottom:24px;padding-left:24px;list-style-type:square}.policy-content li{margin-bottom:10px;color:#595959;font-size:16px;line-height:1.7}.policy-content a{color:#C93B2B;text-decoration:none;transition:color 0.15s ease-in-out}.policy-content a:hover{color:#A82B1D;text-decoration:underline}@media(max-width:767px){.policy-content{padding:24px 16px}.policy-content h2{font-size:16px;margin-top:28px;margin-bottom:12px;padding-bottom:6px}.policy-content .policy-lead-text{font-size:15px;margin-bottom:20px}.policy-content p,.policy-content li{font-size:14px;line-height:1.6}.policy-content .policy-meta-date{font-size:13px;margin-bottom:16px}.policy-content ul{padding-left:18px;margin-bottom:18px}}

/* ===== PAGE: terms ===== */
.policy-content{max-width:960px;margin:0 auto;padding:48px 24px;font-family:'Slabo 27px',serif;font-weight:400;color:#595959;line-height:1.7}.policy-content h2{font-size:24px;line-height:1.3;color:#121212;margin-top:36px;margin-bottom:16px;padding-bottom:8px;border-bottom:1px solid #E8E8E8}.policy-content h2:first-of-type{margin-top:0}.policy-content p{font-size:16px;line-height:1.65;color:#595959;margin-bottom:16px}.policy-content ul{margin:0 0 24px 0;padding-left:20px;list-style:square}.policy-content li{font-size:16px;line-height:1.65;color:#595959;margin-bottom:8px}.policy-content a{color:#C93B2B;text-decoration:underline;text-underline-offset:3px}.policy-content a:hover{color:#A82B1D;text-decoration:none}@media (max-width:767px){.policy-content{padding:32px 16px;hyphens:auto;word-break:break-word}.policy-content h2{font-size:16px;margin-top:24px;margin-bottom:12px}.policy-content p,.policy-content li{font-size:14px;line-height:1.55}}

/* ===== PAGE: disclaimer ===== */
.policy-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: #121212;
  font-family: 'Slabo 27px', serif;
  font-weight: 400;
  line-height: 1.7;
  word-break: break-word;
  hyphens: auto;
}

.policy-content h2 {
  font-family: 'Slabo 27px', serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.3;
  color: #121212;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E8E8E8;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h3 {
  font-family: 'Slabo 27px', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: #121212;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #595959;
  margin-bottom: 18px;
}

.policy-content ul,
.policy-content ol {
  margin-top: 8px;
  margin-bottom: 24px;
  padding-left: 24px;
}

.policy-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #595959;
  margin-bottom: 12px;
}

.policy-content strong {
  color: #121212;
  font-weight: 400;
}

.policy-content a {
  color: #C93B2B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease-in-out;
}

.policy-content a:hover {
  color: #A82B1D;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .policy-content {
    padding: 32px 16px 60px;
  }

  .policy-content h2 {
    font-size: 16px;
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .policy-content h3 {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .policy-content ul,
  .policy-content ol {
    padding-left: 18px;
    margin-bottom: 18px;
  }
}

/* ===== PAGE: refound ===== */
.policy-content { width: 100%; max-width: 960px; margin: 0 auto; padding: 40px 20px 80px 20px; font-family: 'Slabo 27px', serif; font-weight: 400; color: #121212; line-height: 1.65; background-color: #FFFFFF; } .policy-content .policy-intro { font-size: 1.125rem; line-height: 1.7; color: #121212; margin-bottom: 24px; } .policy-content .policy-meta { font-size: 0.95rem; color: #595959; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid #E8E8E8; } .policy-content h2 { font-family: 'Slabo 27px', serif; font-size: 1.375rem; font-weight: 400; color: #121212; line-height: 1.3; margin-top: 36px; margin-bottom: 16px; padding-top: 12px; border-top: 1px solid #F0F0F0; } .policy-content p { font-size: 1rem; color: #595959; margin-bottom: 16px; line-height: 1.65; } .policy-content ul, .policy-content ol { margin-top: 0; margin-bottom: 20px; padding-left: 24px; } .policy-content li { font-size: 1rem; color: #595959; margin-bottom: 10px; line-height: 1.6; } .policy-content strong { color: #121212; font-weight: 400; } .policy-content a { color: #C93B2B; text-decoration: underline; text-underline-offset: 3px; } .policy-content a:hover { color: #A82B1D; text-decoration: none; } @media (max-width: 767px) { .policy-content { padding: 24px 16px 48px 16px; hyphens: auto; word-break: break-word; } .policy-content h2 { font-size: 16px; margin-top: 28px; margin-bottom: 12px; } .policy-content .policy-intro { font-size: 1rem; margin-bottom: 16px; } .policy-content .policy-meta { font-size: 0.875rem; margin-bottom: 24px; } .policy-content p, .policy-content li { font-size: 0.9375rem; line-height: 1.55; } .policy-content ul, .policy-content ol { padding-left: 20px; } }

/* ===== PAGE: delivery ===== */
.policy-content { width: 100%; max-width: 960px; margin: 0 auto; padding: 48px 24px; color: #121212; font-family: 'Slabo 27px', serif; line-height: 1.7; font-weight: 400; } .policy-content .policy-effective-date { font-size: 0.9375rem; color: #7D7D7D; margin-bottom: 32px; border-bottom: 1px solid #E8E8E8; padding-bottom: 12px; } .policy-content h2 { font-family: 'Slabo 27px', serif; font-size: 1.5rem; font-weight: 400; line-height: 1.3; color: #121212; margin-top: 40px; margin-bottom: 16px; position: relative; padding-left: 12px; border-left: 3px solid #C93B2B; } .policy-content p { font-size: 1.0625rem; color: #595959; margin-bottom: 20px; word-break: break-word; hyphens: auto; } .policy-content ul, .policy-content ol { margin-top: 8px; margin-bottom: 24px; padding-left: 24px; } .policy-content li { font-size: 1.0625rem; color: #595959; margin-bottom: 12px; line-height: 1.65; } .policy-content strong { color: #121212; font-weight: 400; } .policy-content a { color: #C93B2B; text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s ease-in-out; } .policy-content a:hover, .policy-content a:focus { color: #A82B1D; text-decoration: underline; } @media (max-width: 767px) { .policy-content { padding: 32px 16px; } .policy-content h2 { font-size: 1rem; margin-top: 28px; margin-bottom: 12px; } .policy-content p, .policy-content li { font-size: 0.9375rem; line-height: 1.6; } .policy-content ul, .policy-content ol { padding-left: 18px; } }

/* ===== PAGE: cookies ===== */
.policy-content{font-family:'Slabo 27px',serif;color:#121212;line-height:1.65;padding:40px 20px;max-width:1120px;margin:0 auto;hyphens:auto;word-wrap:break-word;overflow-wrap:break-word}.policy-content h2{font-family:'Slabo 27px',serif;font-weight:400;color:#121212;font-size:24px;line-height:1.3;margin-top:36px;margin-bottom:16px;border-bottom:1px solid #E8E8E8;padding-bottom:8px}.policy-content h3{font-family:'Slabo 27px',serif;font-weight:400;color:#121212;font-size:18px;line-height:1.35;margin-top:24px;margin-bottom:12px}.policy-content p{font-size:16px;color:#595959;margin-bottom:16px;line-height:1.65}.policy-content strong{color:#121212;font-weight:400}.policy-content ul{list-style-type:square;padding-left:24px;margin-bottom:24px;color:#595959}.policy-content li{margin-bottom:8px;font-size:15px;line-height:1.6}.policy-content a{color:#C93B2B;text-decoration:none;transition:color 0.2s ease}.policy-content a:hover{color:#A82B1D;text-decoration:underline}@media(max-width:767px){.policy-content{padding:24px 16px}.policy-content h2{font-size:16px;margin-top:24px;margin-bottom:12px}.policy-content h3{font-size:14px;margin-top:18px;margin-bottom:8px}.policy-content p,.policy-content li{font-size:14px;line-height:1.55}}

/* ===== PAGE: contact ===== */
.fsh-contact { font-family: 'Slabo 27px', serif; background-color: #FFFFFF; color: #121212; }
.fsh-contact__intro { max-width: 720px; margin-left: auto; margin-right: auto; }
.fsh-contact__badge { background-color: #FDF0EE; color: #C93B2B; font-size: 0.75rem; letter-spacing: 0.08em; border: 1px solid rgba(201, 59, 43, 0.2); border-radius: 0; }
.fsh-contact__heading { font-size: 2rem; color: #121212; line-height: 1.3; }
.fsh-contact__lead { font-size: 1rem; line-height: 1.6; color: #595959; }
.fsh-contact__card { background-color: #F8F8F8; border: 1px solid #E8E8E8; border-radius: 0; transition: border-color 0.2s ease, background-color 0.2s ease; }
.fsh-contact__card:hover { border-color: #121212; background-color: #FFFFFF; }
.fsh-contact__icon-wrapper { width: 52px; height: 52px; background-color: #FFFFFF; border: 1px solid #E8E8E8; font-size: 1.5rem; color: #C93B2B; }
.fsh-contact__card-title { font-size: 1.15rem; color: #121212; line-height: 1.3; }
.fsh-contact__card-desc { line-height: 1.5; color: #595959; }
.fsh-contact__meta-row { width: 100%; border-top: 1px solid #E8E8E8; padding-top: 1rem; word-break: break-word; }
.fsh-contact__val { font-size: 0.95rem; color: #121212; }
.fsh-contact__panel { background-color: #FFFFFF; border: 1px solid #E8E8E8; border-radius: 0; }
.fsh-contact__panel-title { font-size: 1.25rem; color: #121212; }
.fsh-contact__panel-icon { font-size: 1.35rem; color: #C93B2B; }
.fsh-contact__schedule-list li { font-size: 0.9rem; }
.fsh-contact__schedule-list .border-bottom { border-color: #F0F0F0 !important; }
.fsh-contact__bullet { width: 8px; height: 8px; background-color: #C93B2B; flex-shrink: 0; }
.fsh-contact .text-accent { color: #C93B2B !important; }
@media (max-width: 767px) {
  .fsh-contact__heading { font-size: 1.5rem; hyphens: auto; }
  .fsh-contact__card-title { font-size: 1rem; }
  .fsh-contact__panel-title { font-size: 1.1rem; }
  .fsh-contact__schedule-list li { flex-direction: column; align-items: flex-start !important; gap: 4px; }
}

/* ===== PAGE: cart ===== */
.fash-cart-section {
  background-color: #FFFFFF;
  color: #121212;
  font-family: 'Slabo 27px', serif;
  min-height: 60vh;
}

.fash-cart-section .fash-badge {
  background-color: #C93B2B;
  color: #FFFFFF;
  padding: 4px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  display: inline-block;
}

.fash-cart-section .fash-empty-icon-box {
  width: 72px;
  height: 72px;
  background-color: #F8F8F8;
  border: 1px solid #E8E8E8;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fash-cart-section .fash-empty-icon {
  font-size: 32px;
  color: #595959;
}

.fash-cart-section .fash-empty-title {
  font-size: 1.65rem;
  color: #121212;
}

.fash-cart-section .fash-cart-heading {
  font-size: 1.5rem;
  color: #121212;
}

.fash-cart-section .fash-summary-title,
.fash-cart-section .fash-checkout-title {
  font-size: 1.25rem;
  color: #121212;
}

.fash-cart-section .fash-cart-table-wrapper {
  border: 1px solid #E8E8E8;
  background-color: #FFFFFF;
}

.fash-cart-section .fash-cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1.5fr 1fr 0.8fr;
  background-color: #F8F8F8;
  padding: 14px 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #E8E8E8;
  color: #595959;
}

.fash-cart-section .fash-cart-item-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1.5fr 1fr 0.8fr;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #F0F0F0;
  background-color: #FFFFFF;
}

.fash-cart-section .fash-cart-item-row:last-child {
  border-bottom: none;
}

.fash-cart-section .fash-item-thumb {
  width: 70px;
  height: 90px;
  object-fit: cover;
  background-color: #F8F8F8;
  border: 1px solid #E8E8E8;
  flex-shrink: 0;
}

.fash-cart-section .fash-item-title {
  color: #121212;
  font-size: 1rem;
  line-height: 1.3;
}

.fash-cart-section .fash-item-sku {
  color: #8C8C8C;
  font-size: 0.8rem;
}

.fash-cart-section .fash-item-unit-price,
.fash-cart-section .fash-item-total-price {
  color: #121212;
  font-size: 0.95rem;
}

.fash-cart-section .fash-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #D0D0D0;
  background-color: #FFFFFF;
}

.fash-cart-section .fash-qty-btn {
  background: #F8F8F8;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.fash-cart-section .fash-qty-btn:hover {
  background: #E8E8E8;
}

.fash-cart-section .fash-qty-input {
  width: 44px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid #D0D0D0;
  border-right: 1px solid #D0D0D0;
  font-size: 0.9rem;
  color: #121212;
  background-color: #FFFFFF;
}

.fash-cart-section .fash-remove-btn {
  background: transparent;
  border: none;
  color: #8C8C8C;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
}

.fash-cart-section .fash-remove-btn:hover {
  color: #C93B2B;
}

.fash-cart-section .fash-summary-card,
.fash-cart-section .fash-checkout-card {
  background-color: #F8F8F8;
  border: 1px solid #E8E8E8;
  border-radius: 0;
}

.fash-cart-section .fash-form-control {
  background-color: #FFFFFF;
  border: 1px solid #D0D0D0;
  border-radius: 0;
  color: #121212;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.fash-cart-section .fash-form-control:focus {
  border-color: #121212;
  box-shadow: none;
  outline: none;
}

.fash-cart-section .fash-form-control::placeholder {
  color: #8C8C8C;
  opacity: 1;
}

.fash-cart-section .fash-shipping-option {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8 !important;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.fash-cart-section .fash-shipping-option:hover {
  border-color: #121212 !important;
}

.fash-cart-section .form-check-input:checked {
  background-color: #121212;
  border-color: #121212;
}

.fash-cart-section .fash-primary-btn {
  background-color: #121212;
  color: #FFFFFF;
  border: 1px solid #121212;
  border-radius: 0;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fash-cart-section .fash-primary-btn:hover {
  background-color: #C93B2B;
  border-color: #C93B2B;
  color: #FFFFFF;
}

.fash-cart-section .fash-secondary-btn {
  background-color: transparent;
  color: #121212;
  border: 1px solid #121212;
  border-radius: 0;
  padding: 12px 24px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fash-cart-section .fash-secondary-btn:hover {
  background-color: #121212;
  color: #FFFFFF;
}

.fash-cart-section .fash-accent-btn {
  background-color: #C93B2B;
  color: #FFFFFF;
  border: 1px solid #C93B2B;
  border-radius: 0;
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fash-cart-section .fash-accent-btn:hover {
  background-color: #A82B1D;
  border-color: #A82B1D;
  color: #FFFFFF;
}

.fash-cart-section .fash-security-perks {
  background-color: #FFFFFF;
  border-color: #E8E8E8 !important;
}

@media (max-width: 767px) {
  .fash-cart-section .fash-cart-header {
    display: none !important;
  }
  .fash-cart-section .fash-cart-item-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding: 16px;
  }
  .fash-cart-section .fash-cart-row-main {
    width: 100%;
    padding-right: 32px;
  }
  .fash-cart-section .fash-cart-row-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .fash-cart-section .fash-cart-row-remove {
    position: absolute;
    top: 14px;
    right: 14px;
  }
  .fash-cart-section h2 {
    font-size: 16px;
    hyphens: auto;
  }
  .fash-cart-section h3 {
    font-size: 14px;
    hyphens: auto;
  }
}

.fashion-comment-card {
    border-radius: 0px;
    font-family: 'Slabo 27px', serif;
    transition: border-color 0s ease;
}

.fashion-comment-card:hover {
    border-color: #121212 !important;
}

.fashion-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 0px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
}

.fashion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.fashion-avatar-text {
    font-family: 'Slabo 27px', serif;
    text-transform: uppercase;
    line-height: 1;
}

.fashion-reviewer-name {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.fashion-comment-title {
    font-size: 15px;
    letter-spacing: 0.3px;
}

.fashion-comment-body {
    font-size: 14px;
}

.fashion-action-btn {
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.fashion-action-btn:hover {
    color: #C93B2B !important;
}

.fashion-reply-card {
    border-radius: 0px;
    font-family: 'Slabo 27px', serif;
}

.fashion-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 0px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
}

.fashion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.fashion-avatar-text {
    font-family: 'Slabo 27px', serif;
    text-transform: uppercase;
    line-height: 1;
}

.fashion-reviewer-name {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.fashion-comment-body {
    font-size: 14px;
}

.fashion-action-btn {
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.fashion-action-btn:hover {
    color: #C93B2B !important;
}

/* ===== product detail page ===== */
.product-detail-section {
    background-color: #FFFFFF;
    font-family: 'Slabo 27px', serif;
    color: #121212;
}

.product-detail-section .product-detail-breadcrumb {
    font-size: 13px;
    color: #8C8C8C;
}

.product-detail-section .product-detail-breadcrumb a {
    color: #595959;
    text-decoration: none;
    transition: color 0.15s ease;
}

.product-detail-section .product-detail-breadcrumb a:hover {
    color: #C93B2B;
}

.product-detail-section .product-detail-media-box {
    position: relative;
    border: 1px solid #E8E8E8;
    background-color: #F8F8F8;
    overflow: hidden;
}

.product-detail-section .product-detail-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-section .product-detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #C93B2B;
    color: #FFFFFF;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.product-detail-section .product-detail-tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: #C93B2B;
    text-transform: uppercase;
}

.product-detail-section .product-detail-title {
    font-size: 2rem;
    line-height: 1.25;
    color: #121212;
}

.product-detail-section .product-detail-meta {
    font-size: 14px;
    color: #595959;
}

.product-detail-section .product-detail-meta .ph-star {
    color: #C93B2B;
}

.product-detail-section .product-detail-price {
    font-size: 1.75rem;
    color: #121212;
}

.product-detail-section .product-detail-price-label {
    font-size: 13px;
    color: #8C8C8C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-section .product-detail-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #595959;
}

.product-detail-section .product-detail-spec-pill {
    display: inline-block;
    border: 1px solid #E8E8E8;
    background-color: #F8F8F8;
    font-size: 13px;
    color: #121212;
    padding: 6px 14px;
}

.product-detail-section .product-detail-btn-cart {
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-family: 'Slabo 27px', serif;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-detail-section .product-detail-btn-cart:hover {
    background-color: #C93B2B;
    border-color: #C93B2B;
}

.product-detail-section .product-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #121212;
    border: 1px solid #121212;
    padding: 14px 24px;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-detail-section .product-detail-back-link:hover {
    background-color: #121212;
    color: #FFFFFF;
}

.product-detail-section .product-detail-variant-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #595959;
    margin-bottom: 8px;
}

.product-detail-section .product-detail-variant-btn {
    padding: 8px 14px;
    border: 1px solid #D0D0D0;
    background-color: #FFFFFF;
    color: #121212;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.product-detail-section .product-detail-variant-btn:hover {
    border-color: #121212;
}

.product-detail-section .product-detail-variant-btn.active {
    background-color: #121212;
    border-color: #121212;
    color: #FFFFFF;
}

.product-detail-section .product-detail-note {
    font-size: 13px;
    color: #595959;
}

.product-detail-section .product-detail-note i {
    color: #C93B2B;
}

@media (max-width: 767px) {
    .product-detail-section .product-detail-title {
        font-size: 1.5rem;
    }
}

/* ===== editorial notes ===== */
.editorial-notes-section {
    background-color: #F8F8F8;
    font-family: 'Slabo 27px', serif;
    color: #121212;
}

.editorial-notes-section .editorial-notes-badge {
    border: 1px solid #E8E8E8;
    background-color: #FFFFFF;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #595959;
}

.editorial-notes-section .editorial-notes-badge i {
    color: #C93B2B;
}

.editorial-notes-section .editorial-notes-title {
    font-size: 2rem;
    line-height: 1.25;
    color: #121212;
}

.editorial-notes-section .editorial-notes-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #595959;
    max-width: 620px;
}

.editorial-notes-section .editorial-note-card {
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.editorial-notes-section .editorial-note-card:hover {
    border-color: #121212;
}

.editorial-notes-section .editorial-note-icon {
    width: 52px;
    height: 52px;
    border: 1px solid #E8E8E8;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #C93B2B;
}

.editorial-notes-section .editorial-note-kicker {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8C8C8C;
}

.editorial-notes-section .editorial-note-title {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #121212;
    margin: 0 0 10px;
}

.editorial-notes-section .editorial-note-text {
    font-size: 14px;
    line-height: 1.7;
    color: #595959;
}

.editorial-notes-section .editorial-note-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #121212;
    text-decoration: none;
    border-bottom: 1px solid #C93B2B;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.15s ease;
}

.editorial-notes-section .editorial-note-link:hover {
    color: #C93B2B;
}

@media (max-width: 767px) {
    .editorial-notes-section .editorial-notes-title {
        font-size: 16px;
        hyphens: auto;
    }
}

.accessories-listing-section .accessories-listing-section__img--contain {
    object-fit: contain;
}

.header-main__navbar .dropdown-menu {
    border: 1px solid #E8E8E8;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.header-main__navbar .dropdown-item {
    font-family: 'Slabo 27px', serif;
    font-size: 14px;
    color: #121212;
    padding: 10px 20px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.header-main__navbar .dropdown-item:hover,
.header-main__navbar .dropdown-item:focus {
    background-color: #F8F8F8;
    color: #C93B2B;
}
