:root {
    --gradient: linear-gradient(90deg,rgba(38, 46, 88, 1) 0%, rgba(38, 70, 115, 1) 30%, rgba(38, 46, 88, 1) 60%, rgba(22, 27, 55, 1) 100%);
    --gradient-light: linear-gradient(90deg,rgba(134, 157, 183, 1) 0%, rgba(240, 237, 212, 1) 45%, rgba(134, 157, 183, 1) 100%);
    --color-primary: #2D435B;
    --color-light: #FFE484;
    --color-secondary: #8B8B8B;
    --color-warning: #E1A21E;
    --color-dark: #202735;
    --color-placeholder: rgba(0, 0, 0, 0.04);
    --color-gray: #666666;
    --font-size-1: 0.5rem;
    --font-size-2: 0.75rem;
    --font-size-3: 1rem;
    --font-size-4: 1.5rem;
    --font-size-5: 2rem;
    --font-size-6: 3rem;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --font-family-base: TaipeiSansTC;
    --site-header-height: 94px;
    --site-header-nav-height: 182px;
}

@font-face {
    font-family: 'TaipeiSansTC';
    src: url('/fonts/TaipeiSansTCBeta-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'TaipeiSansTC';
    src: url('/fonts/TaipeiSansTCBeta-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Aerotis';
    src: url('/fonts/Aerotis.ttf');
}

@font-face {
    font-family: 'GenRyuMin';
    src: url('/fonts/GenRyuMin2 TW SB.otf');
}

* {
    font-family: var(--font-family-base);
    color: var(--color-primary);
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.font-aerotis {
    font-family: Aerotis, var(--font-family-base);
}

.font-genryumin {
    font-family: GenRyuMin, var(--font-family-base);
}

.bg-trans-white {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-gradient {
    background: var(--gradient);
}

.bg-gradient-light {
    background: var(--gradient-light);
}

.bg-placeholder {
    background-color: var(--color-placeholder) !important;
}

.icon-sm {
    height: 1.5rem;
    width: auto;
}

.icon-md {
    height: 2rem;
    width: auto;
}

.icon-lg {
    height: 3rem;
    width: auto;
}

.list-style-none {
    list-style: none;
    padding-left: 0;
}

.mt-header {
    margin-top: var(--site-header-height);
}

.white-space-wrap {
    white-space: break-spaces
}
/* components: site-header */
.site-header {
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.site-header__top {
    background: var(--gradient);
    padding: var(--space-3) 0;
    box-shadow: 0 12px 7px rgba(83, 114, 139, 0.5);
    z-index: 1;
    position: relative;
}

.site-header__logo {
    max-height: 56px;
    width: auto;
}

.site-header__select {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.site-header__select:focus {
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: none;
}

.site-header__select option {
    color: var(--color-dark);
}

.icon-nav {
    height: 1.5rem;
    aspect-ratio: 1;
    object-fit: contain;
}

.btn-transparent {
    background-color: transparent;
    border: none;
}

/* components: main-nav */
.main-nav {
    background-color: #fff;
    padding: var(--space-4) 0;
    border-bottom-left-radius: var(--space-6);
    border-bottom-right-radius: var(--space-6);
}

.main-nav__search-form {
    width: 100%;
    max-width: 560px;
}

.main-nav__search-icon {
    filter: invert(1);
}

.main-nav .nav-link {
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--color-dark);
}

.main-nav .dropdown-toggle::after {
    border: 0;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.55rem;
    vertical-align: 0.05em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-0.1rem);
}

.main-nav__dropdown {
    top: 50%;
    margin-top: var(--space-3);
    min-width: 18rem;
    border: 0;
    border-radius: 0;
    box-shadow: 0 12px 7px rgba(56, 77, 94, 0.5);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.main-nav__dropdown--mega {
    min-width: 34rem;
}

.main-nav__dropdown--plain {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    min-width: auto;
}

.main-nav__dropdown--plain .main-nav__dropdown-item {
    text-align: center;
}

.main-nav__dropdown-item {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: var(--font-size-lg);
    padding: 0.25rem 0;
    position: relative;
}

.main-nav__dropdown-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
}

.main-nav__dropdown-item:hover,
.main-nav__dropdown-item:focus {
    color: var(--color-secondary);
    background-color: transparent;
}

.main-nav__dropdown-item:hover::after,
.main-nav__dropdown-item:focus::after {
    transform: scaleX(1);
}

/* components: main-nav (hover dropdown) */
@media (min-width: 992px) {
    .main-nav .dropdown:hover .dropdown-menu,
    .main-nav .dropdown:focus-within .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .main-nav__link.dropdown-toggle::after {
        display: none;
    }
}

/* components: site-footer */
.site-footer {
    background: var(--gradient);
    color: #fff;
    padding: var(--space-6) 0;
}

.site-footer * {
    color: #fff;
}

.site-footer__logo {
    max-height: 130px;
    width: auto;
}

.site-footer__title {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #fff;
}

.site-footer__link {
    color: #fff;
    text-decoration: none;
}

.site-footer__link:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer__divider {
    color: #fff;
    border-width: 0.5px;
    opacity: 1;
}

.site-footer__copyright {
    color: #fff;
    text-align: center;
}

.btn-theme {
    border: 2px solid var(--color-light);
    color: var(--color-light);
    background: var(--gradient);
    border-radius: var(--radius-lg) 99px 99px var(--radius-lg);
    padding: var(--space-2) var(--space-5);
    font-size: var(--font-size-4);
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0px 6px 7px rgba(56, 45, 35, 0.5);
}

    .btn-theme:hover {
        color: var(--color-primary);
        background: var(--color-light);
        border-color: var(--color-primary);
    }

/* components: product-card */
.product-card__link {
    color: inherit;
}

.product-card__media {
    background-color: rgba(0, 0, 0, 0.04);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
}

.product-card__overlay-text {
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.product-card__overlay-icon {
    font-size: 1.75rem;
    background-color: var(--color-primary);
    width: 3rem;
    height: 3rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-card__overlay-icon-img {
    width: 1.4rem;
    height: 1.4rem;
}

.product-card__price {
    color: var(--color-primary);
}

/* components: product-carousel */
.product-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.product-carousel__title {
    font-size: var(--font-size-6);
    line-height: 1.1;
}

.product-carousel__subtitle {
    color: var(--color-secondary);
    font-size: var(--font-size-5);
    margin-top: var(--space-1);
}

.product-carousel__actions {
    flex: 0 0 auto;
}

.product-carousel__indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-carousel__indicators.owl-dots,
.product-carousel__indicators .owl-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-carousel__indicators.owl-dots .owl-dot,
.product-carousel__indicators .owl-dots .owl-dot {
    border: 0;
    padding: 0;
    background: transparent;
}

.product-carousel__indicators.owl-dots .owl-dot span,
.product-carousel__indicators .owl-dots .owl-dot span {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 99px;
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 4px 3px rgba(43, 53, 53, 0.5);
}

.product-carousel__indicators.owl-dots .owl-dot.active span,
.product-carousel__indicators .owl-dots .owl-dot.active span {
    background-color: var(--color-primary);
}

.product-carousel__controls.owl-nav,
.product-carousel__controls .owl-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-carousel__controls.owl-nav button,
.product-carousel__controls .owl-nav button {
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 1;
}

.product-carousel__controls.owl-nav button img,
.product-carousel__controls .owl-nav button img {
    width: var(--space-6);
    height: auto;
    display: block;
}

.product-carousel__controls.owl-nav button.disabled,
.product-carousel__controls .owl-nav button.disabled {
    opacity: 0.35;
}

/* pages: home-popular-products */

    .product-carousel--popular .owl-stage-outer {
        overflow: visible;
    }

    .product-carousel--popular .product-card {
        background-color: #fff;
        border-radius: var(--radius-md);
        box-shadow: 0 9px 9px rgba(127, 127, 127, 0.5);
        padding: var(--space-3);
    }

.product-carousel--popular .product-card__link .text-primary {
    color: var(--color-secondary) !important;
}

.product-carousel--popular .product-card__price {
    background: var(--gradient);
    color: #fff;
    display: block;
    width: 100%;
    border-radius: 99px;
    padding: var(--space-3) var(--space-5);
    letter-spacing: 1px;
    box-shadow: 0px 6px 7px rgba(56, 45, 35, 0.35);
}

/* components: category-option */
.category-option-card {
    height: 100%;
}

.category-option-card__link {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    min-height: 220px;
    background-color: rgba(0, 0, 0, 0.06);
    outline: 0;
}

@media (min-width: 992px) {
    .category-option-card__link {
        min-height: 260px;
    }
}

.category-option-card__media,
.category-option-card__img {
    position: absolute;
    inset: 0;
}

.category-option-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 300ms ease;
}

.category-option-card__img--placeholder {
    background-color: var(--color-placeholder);
}

.category-option-card__side {
    position: absolute;
    inset: 0 auto 0 0;
    width: 28%;
    min-width: 96px;
    background-color: rgba(45, 67, 91, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 220ms ease, transform 220ms ease;
}

.category-option-card__side-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: saturate(0.95);
}

.category-option-card__side-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-5);
    letter-spacing: 1px;
}

.category-option-card__hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 1;
}

.category-option-card__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 67, 91, 0.5);
    opacity: 0;
    transition: opacity 220ms ease;
    z-index: 0;
}

.category-option-card__spark {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    width: 28px;
    height: 28px;
    filter: brightness(0) invert();
    opacity: 0.95;
}

.category-option-card__hover-title {
    font-size: var(--font-size-5);
    letter-spacing: 2px;
    color: #fff;
}

.category-option-card__hover-subtitle {
    font-size: var(--font-size-6);
    line-height: 1;
    opacity: 0.92;
    margin-top: var(--space-2);
}

.category-option-card__script {
    position: absolute;
    right: var(--space-4);
    bottom: var(--space-4);
    font-size: var(--font-size-6);
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.category-option-card__link:hover::before,
.category-option-card__link:focus-visible::before {
    opacity: 1;
}

.category-option-card__link:hover .category-option-card__img,
.category-option-card__link:focus-visible .category-option-card__img {
    transform: scale(1.03);
}

.category-option-card__link:hover .category-option-card__side,
.category-option-card__link:focus-visible .category-option-card__side {
    opacity: 0;
    transform: translateX(-8px);
}

.category-option-card__link:hover .category-option-card__hover,
.category-option-card__link:focus-visible .category-option-card__hover {
    opacity: 1;
    transform: translateY(0);
}

.category-option-card__link:focus-visible {
    outline: 2px solid var(--color-warning);
    outline-offset: 3px;
}

/* pages: material-choice */
.material-choice-hero {
    padding-top: var(--site-header-height);
    position: relative;
}

.material-choice-hero__img {
    width: 100%;
    height: clamp(260px, 36vw, 420px);
    object-fit: cover;
    display: block;
    background-color: var(--color-placeholder);
}

.material-choice-hero__img--placeholder {
    background: linear-gradient(135deg, rgba(45, 67, 91, 0.12), rgba(255, 228, 132, 0.1));
}

.material-choice-hero__content {
    position: absolute;
    inset: var(--site-header-height) 0 0 0;
    display: flex;
    align-items: center;
    background: url('/images/bg-limit-top.png') no-repeat;
    background-size: cover;
}

.material-choice-hero__subtitle {
    font-size: var(--font-size-6);
    color: rgba(45, 67, 91, 0.7);
    line-height: 1;
}

.material-choice-hero__title {
    font-size: calc(var(--font-size-6) + 0.5rem);
    line-height: 1.05;
    letter-spacing: 2px;
}

/* components: page-hero */
.page-hero {
    padding-top: var(--site-header-height);
    position: relative;
}

.page-hero__img {
    width: 100%;
    height: clamp(260px, 32vw, 420px);
    object-fit: cover;
    display: block;
    background-color: rgba(0, 0, 0, 0.06);
}

.page-hero__img--placeholder {
    background: linear-gradient(135deg, rgba(45, 67, 91, 0.12), rgba(255, 228, 132, 0.1));
}

.page-hero__content {
    position: absolute;
    top: var(--site-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.page-hero__subtitle {
    font-size: var(--font-size-6);
    line-height: 1;
    color: rgba(45, 67, 91, 0.7);
}

.page-hero__title {
    font-size: 5rem;
    line-height: 1.05;
    letter-spacing: 2px;
    font-family: GenRyuMin;
    text-shadow: 0 7px 2px #fff;
}

.page-hero--inverse .page-hero__subtitle,
.page-hero--inverse .page-hero__title {
    color: #fff;
    text-shadow: 0 2px 3px rgba(61,51,41, 0.75);
}

/* components: selection-tile */
.selection-tile__link {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    background-color: var(--bs-gray-200);
    outline: 0;
}

.selection-tile__media,
.selection-tile__img {
    position: absolute;
    inset: 0;
}

.selection-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.selection-tile__img--placeholder {
    background-color: var(--color-placeholder);
}

.selection-tile {
    aspect-ratio: 730/294;
}

.selection-tile__link {
    height: 100%;
}

@media (min-width: 992px) {
    .selection-tile__link {
        min-height: 190px;
    }
}

.selection-tile__side {
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    min-width: 96px;
    background-color: rgba(45, 67, 91, 0.5);
    display: flex;
    align-items: center;
    padding: var(--space-4);
}

.selection-tile__side-text {
    color: #fff;
    font-size: var(--font-size-5);
    letter-spacing: 2px;
}

.selection-tile__script {
    position: absolute;
    z-index: 1;
    right: var(--space-4);
    bottom: var(--space-4);
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1;
    color: #fff;
    text-shadow: 7px 1px 3px rgba(48,34,16, 0.75);
    letter-spacing: 2px;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.selection-tile__spark {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    width: 28px;
    height: 28px;
    filter: brightness(0) invert();
    opacity: 0.95;
    z-index: 1;
}

.selection-tile--featured .selection-tile__spark {
    opacity: 0.95;
}

.selection-tile:not(.selection-tile--featured) .selection-tile__spark {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.selection-tile__link:hover .selection-tile__spark,
.selection-tile__link:focus-visible .selection-tile__spark,
.selection-tile--featured .selection-tile__spark {
    opacity: 0.95;
    transform: translateY(0);
}

.selection-tile__hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 1;
    padding: var(--space-5);
}

.selection-tile__hover-title {
    font-size: var(--font-size-5);
    letter-spacing: 2px;
    color: #fff;
}

.selection-tile__hover-subtitle {
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1;
    opacity: 0.92;
    margin-top: var(--space-2);
}

.selection-tile--featured .selection-tile__link {
    background-color: rgba(45, 67, 91, 0.55);
}

.selection-tile--featured .selection-tile__img--placeholder {
    background-color: rgba(45, 67, 91, 0.55);
}

.selection-tile-section__spark {
    width: 18px;
    height: 18px;
}

.selection-tile-section__title {
    font-size: var(--font-size-5);
    letter-spacing: 2px;
}

.selection-tile__link:focus-visible {
    outline: 2px solid var(--color-warning);
    outline-offset: 3px;
}

.selection-tile__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 67, 91, 0.5);
    opacity: 0;
    transition: opacity 220ms ease;
    z-index: 1;
}

.selection-tile__link:hover::before,
.selection-tile__link:focus-visible::before,
.selection-tile--featured .selection-tile__link::before {
    opacity: 1;
}

.selection-tile__link:hover .selection-tile__side,
.selection-tile__link:focus-visible .selection-tile__side,
.selection-tile--featured .selection-tile__side {
    opacity: 0;
    transform: translateX(-8px);
}

.selection-tile__link:hover .selection-tile__hover,
.selection-tile__link:focus-visible .selection-tile__hover,
.selection-tile--featured .selection-tile__hover {
    opacity: 1;
    transform: translateY(0);
}

.selection-tile__side {
    transition: opacity 220ms ease, transform 220ms ease;
}

/* pages: home-hero */
.home-hero{
    padding-top: var(--site-header-height);
}

.home-hero__owl {
    margin: 0;
}

.home-hero__slide {
    height: clamp(420px, 60vh, 680px);
}

.home-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.home-hero__img--placeholder {
    background-color: var(--color-placeholder);
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 100%);
}

.home-hero__content {
    position: absolute;
    inset: 0 0 25% 0;
    display: flex;
    align-items: end;
}

.home-hero__text {
    max-width: 44rem;
}

.home-hero__title {
    font-family: Aerotis, var(--font-family-base);
    font-size: calc(var(--font-size-6) + 1.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-hero__subtitle {
    font-family: GenRyuMin, var(--font-family-base);
    font-size: var(--font-size-5);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-hero__cta.btn-outline-warning {
    border-width: 2px;
    border-color: var(--color-light);
    color: var(--color-light);
    padding: var(--space-2) var(--space-5);
    border-radius: 99px;
    font-size: var(--font-size-4);
    font-weight: 700;
}

.home-hero__cta.btn-outline-warning:hover,
.home-hero__cta.btn-outline-warning:focus {
    background-color: rgba(255, 228, 132, 0.12);
}

.home-hero__owl .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-5);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.owl-dot {
    border: 0;
    padding: 0;
    background: transparent;
}

    .owl-dot span {
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 99px;
        background-color: #fff;
        border: 1px solid #fff;
        display: block;
        box-shadow: 0 4px 3px rgba(43, 53, 53, 0.5);
    }

.owl-dot.active span {
    background-color: var(--color-primary);
}

.owl-prev, .owl-next {
    background-color: transparent;
    border: 0;
}

    .owl-prev img, .owl-next img {
        width: var(--space-6);
        height: auto;
    }

.product-carousel__control img {
    height: var(--space-2);
}

.product-card__mask {
    background-color: rgba(45, 67, 91, 0.5);
    display: flex;
    justify-content: center;
    opacity: 0;
}

.product-card__mask img {
    width: var(--font-size-4) !important;
    height: auto;
}

.product-card__link:hover .product-card__mask {
    opacity: 1;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-gray, .text-gray * {
    color: var(--color-gray) !important;
}

.img-white {
    filter: brightness(0) invert();
}

.hide {
    opacity: 0;
}

.my-6 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.home-case {
    border-radius: var(--radius-md);
    box-shadow: 0 3px 4px rgba(124,124,124,0.88);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.home-case__mask {
    position: absolute;
    text-align: center;
    inset: 0;
}

.home-case__spark {
    position: absolute;
    inset: 1rem;
    height: 2rem;
}

.home-case__base {
    position: absolute;
    inset: 45% 0 0 0;
    background-color: rgba(45, 67, 91, 0.5);
}

.home-case__hr {
    margin: var(--space-3) 0 var(--space-5) 0;
    border: 2px solid #fff;
    opacity: 1;
    width: var(--font-size-5);
}

.home-case:hover .home-case__hr {
    width: 60%;
}

.hover-show:hover .hide {
    opacity: 1;
}

.bg-spring {
    background: url('/images/bg-spring.png') no-repeat;
    background-size: cover;
}

.bg-spring-top {
    background: url('/images/bg-spring-top.png') no-repeat;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.bg-limit-top {
    background: url('/images/bg-limit-top.png') no-repeat;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.bg-smoke-yellow {
    background: url('/images/smoke-yellow.png') no-repeat;
    background-size: contain;
    background-position: right;
    height: 320px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 25%;
}

.home-member {
    width: 25%;
    border-right: 1px solid var(--color-primary);
    display: flex;
    justify-content: center;
}

.pill {
    padding: var(--space-3) var(--space-6);
    border-radius: 99px;
    font-size: var(--font-size-4);
    letter-spacing: 2px;
    font-weight: bold;
}

.pill-primary {
    background-color: var(--color-primary);
    color: #fff;
}

/* components: faq */
.faq-collapse__item {
    border-bottom: 1px solid var(--color-primary);
}

.faq-collapse__button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    background: transparent;
    border: 0;
    text-align: left;
    color: var(--color-primary);
}

.faq-collapse__icon {
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    position: relative;
    margin-top: 0.125rem;
}

.faq-collapse__icon::before,
.faq-collapse__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(45, 67, 91, 0.9);
    transform: translate(-50%, -50%);
}

.faq-collapse__icon::before {
    width: 0.7rem;
    height: 2px;
}

.faq-collapse__icon::after {
    width: 2px;
    height: 0.7rem;
}

.faq-collapse__button:not(.collapsed) .faq-collapse__icon::after {
    height: 0;
}

.faq-collapse__panel {
    padding: var(--space-4) 0;
    border-top: 1px solid var(--color-primary);
}

.faq-collapse__body {
    padding-left: calc(1.5rem + var(--space-3));
}

.faq-collapse__answer {
    line-height: 1.9;
}

/* components: category-menu */
.category-menu__link,
.category-menu__sublink {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.category-menu__link {
    color: var(--color-primary);
    font-weight: bold;
}

.category-menu__sublink {
    color: var(--color-gray);
}

.category-menu__link.is-active {
    font-weight: 700;
}

.category-menu__sublink.is-active {
    color: var(--color-primary);
    font-weight: 700;
}

.category-menu__toggle {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--color-primary);
}

.category-menu__toggle::before {
    content: "+";
    font-size: 1.5rem;
    line-height: 1;
}

.category-menu__toggle:not(.collapsed)::before {
    content: "−";
}

/* pages: product-list */
.product-list-page {
    padding-top: var(--site-header-nav-height);
}

.product-list-page__title-parent {
    color: var(--color-gray);
    font-size: var(--font-size-3);
}

.breadcrumb-item + .breadcrumb-item::before, .breadcrumb-item.active::before {
    content: "/";
    color: var(--color-gray);
    font-weight: lighter;
}

.breadcrumb-item a {
    color: var(--color-gray);
}

.breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: bold;
}

.page__breadcrumb {
    padding: var(--site-header-nav-height) 0 var(--space-3) 0;
    box-shadow: 0 7px 9px rgba(91,91,91,0.2);
    margin-bottom: var(--space-6);
}

.product-list-recommended__title {
    letter-spacing: 1px;
}

/* components: product-pagination */
.product-pagination__nav {
    color: var(--color-primary);
    text-decoration: none;
    font-size: var(--font-size-3);
    font-weight: bold;
}

.product-pagination__nav.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.product-pagination .page-link {
    color: var(--color-primary);
    font-weight: bold;
    border: 0;
    background: transparent;
}

.product-pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-sm);
}

/* pages: product-list (recommended carousel only) */
.product-carousel--recommended {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
}

.product-carousel--recommended .product-carousel__header {
    margin-bottom: 0 !important;
}

.product-carousel--recommended .product-carousel__indicators {
    display: none;
}

.product-carousel--recommended .product-carousel__controls {
    position: absolute;
    top: 40%;
    left: 0;
    right: max(var(--space-3), 12px);
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: auto;
    width: 100%;
    justify-content: space-between;
}

.product-carousel--recommended .product-carousel__controls .owl-nav {
    gap: 0;
}

    .product-carousel--recommended .product-carousel__controls .owl-next, .product-carousel--recommended .product-carousel__controls .owl-prev {
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        border: 4px solid var(--color-light);
        background: var(--color-primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 18px rgba(32, 39, 53, 0.25);
    }

        .product-carousel--recommended .product-carousel__controls .owl-next.disabled, .product-carousel--recommended .product-carousel__controls .owl-prev.disabled {
            opacity: 0;
            pointer-events: none;
        }

.form-select, .form-control {
    border: none;
    border-bottom: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 0;
}

/* pages: product-detail */
.product-detail__main {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-placeholder);
}

.product-detail__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__thumb-btn {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
}

.product-detail__thumb-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-placeholder);
}

.product-detail__thumb-carousel.product-carousel--recommended .product-carousel__controls {
    top: 50%;
    right: 0;
}

.product-detail__info {
    padding-top: var(--space-6);
}

.product-detail__tabs {
    border-bottom: 1px solid var(--color-gray);
    gap: var(--space-6);
}

.product-detail__tabs .nav-link {
    color: var(--color-secondary);
}

.product-detail__tabs .nav-link.active {
    color: var(--color-primary);
    border: none;
}

.product-detail__richtext, .product-detail__richtext * {
    color: var(--color-gray);
    font-size: var(--font-size-3);
}

.product-detail__richtext :is(p, ul, ol) {
    margin-bottom: var(--space-3);
}

.product-detail-page {
    padding-top: var(--site-header-nav-height);
}

.section-service {
    margin-top: var(--site-header-nav-height);
    margin-bottom: var(--space-3);
}

.navbar-toggler {
    border: none;
    color: var(--color-primary);
}

@media(max-width: 992px) {
    .product-carousel--popular .owl-stage-outer {
        overflow: hidden;
    }

    .main-nav {
        padding: var(--space-3) 0;
    }

    .nav-item {
        padding: var(--space-3);
        border-bottom: 1px solid var(--color-secondary);
    }

    .main-nav__dropdown {
        min-width: unset;
        width: 100%;
        box-shadow: none;
        background-color: #f1f1f1;
    }

    .home-member {
        width: 50%;
    }

    .product-carousel--popular .product-card {
        box-shadow: none;
        border: 1px solid var(--color-placeholder);
    }

    .product-carousel--popular .product-card__price {
        padding: var(--space-3) var(--space-2);
    }

    .owl-carousel .owl-item img {
        aspect-ratio: 390/640;
    }
}

@media(max-width: 768px) {
    html {
        font-size: 14px;
    }
}