.hover-dropdown-panel {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.5rem);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

.hover-dropdown-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.social-icon-gradient {
    background: linear-gradient(45deg, #405de6 0%, #5b51d8 20%, #833ab4 40%, #c13584 60%, #e1306c 80%, #fd1d1d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: 560px;
    overflow: hidden;
    background: #00284d;
    color: #ffffff;
}

.home-hero__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 78% center;
    transform: scale(1.01);
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 40, 77, 0.96) 0%, rgba(0, 64, 119, 0.82) 36%, rgba(0, 40, 77, 0.28) 68%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 40, 77, 0.62) 0%, rgba(0, 40, 77, 0.08) 58%);
}

.home-hero__glow {
    position: absolute;
    left: -8rem;
    bottom: -10rem;
    z-index: -1;
    height: 24rem;
    width: 24rem;
    border-radius: 999px;
    background: rgba(197, 157, 95, 0.22);
    filter: blur(70px);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 560px;
    width: 100%;
    max-width: 80rem;
    align-items: center;
    margin: 0 auto;
    padding: 6rem 1rem 5rem;
}

.home-hero__copy {
    max-width: 680px;
}

.home-hero__eyebrow {
    margin: 0 0 1rem;
    color: #c59d5f;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 5.6rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero__subtitle {
    max-width: 590px;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.home-hero__primary,
.home-hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    border-radius: 0.875rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-hero__primary {
    background: #c59d5f;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(197, 157, 95, 0.24);
}

.home-hero__secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.home-hero__primary:hover,
.home-hero__secondary:hover {
    transform: translateY(-2px);
}

.home-hero__primary:hover {
    background: #b28b4f;
}

.home-hero__secondary:hover {
    border-color: #c59d5f;
    color: #c59d5f;
}

.home-page {
    overflow-x: clip;
}

.home-section-title {
    letter-spacing: 0;
}

.home-section-link {
    white-space: nowrap;
}

.frontend-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.5rem 1rem;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.frontend-category-pill:hover,
.frontend-category-pill.is-active {
    border-color: #004077;
    background: #004077;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 64, 119, 0.14);
}

.frontend-category-pill.is-active {
    cursor: default;
}

.frontend-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    color: #9ca3af;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.35;
}

.frontend-breadcrumb__separator {
    height: 0.75rem;
    width: 0.75rem;
    color: #c5cad3;
}

.frontend-breadcrumb__link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 160ms ease;
}

.frontend-breadcrumb__link:hover {
    color: #c59d5f;
}

.frontend-breadcrumb__muted {
    color: #7d8795;
}

.frontend-breadcrumb__current {
    color: #004077;
}

.product-card {
    display: flex;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: #c59d5f;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 0.85rem;
}

.product-card__head {
    display: flex;
    height: 3.65rem;
    overflow: hidden;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.55rem;
}

.product-card__brand {
    overflow: hidden;
    margin: 0;
    color: #9ca3af;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #004077;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -0.015em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 180ms ease;
}

.product-card:hover .product-card__title {
    color: #c59d5f;
}

.product-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 3.05rem;
    margin-top: auto;
    padding-top: 0.45rem;
}

.product-card__price-wrap {
    min-width: 0;
    flex: 1 1 auto;
}

.product-card__normal-price {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1rem;
    margin: 0 0 0.15rem;
    color: #9ca3af;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.product-card__normal-price > span:first-child {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    text-decoration: line-through;
}

.product-card__normal-price--empty {
    color: transparent;
}

.product-card__discount {
    flex: 0 0 auto;
    border-radius: 999px;
    background: #fff1f2;
    padding: 0.16rem 0.42rem;
    color: #dc2626;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.product-card__price {
    overflow: hidden;
    margin: 0;
    color: #c59d5f;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__price--empty {
    color: #9ca3af;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.wishlist-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.96);
    color: #6b7280;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.wishlist-toggle:hover {
    transform: translateY(-2px);
    border-color: #fecaca;
    color: #ef4444;
}

.wishlist-toggle.is-wishlisted {
    border-color: #fecaca;
    background: #fff1f2;
    color: #ef4444;
}

.wishlist-toggle.is-wishlisted svg {
    fill: currentColor;
}

.wishlist-toggle:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.wishlist-toggle--floating {
    height: 2.45rem;
    width: 2.45rem;
    border-radius: 999px;
}

.wishlist-toggle--card {
    flex: 0 0 auto;
    gap: 0.34rem;
    min-height: 2.05rem;
    min-width: 3.65rem;
    border-radius: 999px;
    padding: 0.42rem 0.62rem;
    background: #fff1f2;
    color: #ef4444;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
}

.wishlist-toggle--detail {
    gap: 0.42rem;
    min-height: 2.15rem;
    min-width: 4rem;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: #fff1f2;
    color: #ef4444;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
}

.wishlist-toggle--pill {
    gap: 0.5rem;
    min-height: 2rem;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
}

.product-card-sold-text,
.product-card-wishlist-count {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.product-card-sold-text {
    color: #9ca3af;
    flex: 0 0 auto;
    padding-top: 0.15rem;
}

.product-card-wishlist-count {
    border-radius: 999px;
    background: #fff1f2;
    color: #ef4444;
    padding: 0.42rem 0.6rem;
}

.wishlist-flight {
    position: fixed;
    z-index: 2000;
    display: flex;
    height: 2.35rem;
    width: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff1f2;
    color: #ef4444;
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.22);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 1;
    transition: transform 680ms cubic-bezier(0.2, 0.85, 0.22, 1), opacity 680ms ease;
}

.wishlist-flight svg {
    height: 1.15rem;
    width: 1.15rem;
    fill: currentColor;
}

.wishlist-flight.is-active {
    transform: translate(calc(-50% + var(--wishlist-flight-x)), calc(-50% + var(--wishlist-flight-y))) scale(0.35);
    opacity: 0.15;
}

.cart-flight {
    position: fixed;
    z-index: 2000;
    display: flex;
    height: 2.35rem;
    width: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eff6ff;
    color: #004077;
    box-shadow: 0 16px 34px rgba(0, 64, 119, 0.22);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 1;
    transition: transform 680ms cubic-bezier(0.2, 0.85, 0.22, 1), opacity 680ms ease;
}

.cart-flight svg {
    height: 1.15rem;
    width: 1.15rem;
    fill: currentColor;
}

.cart-flight.is-active {
    transform: translate(calc(-50% + var(--cart-flight-x)), calc(-50% + var(--cart-flight-y))) scale(0.35);
    opacity: 0.15;
}

.wishlist-item-removing {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 220ms ease, transform 220ms ease;
}

.product-detail-page {
    overflow-x: clip;
}

.product-detail-shell {
    display: grid;
    gap: 1.5rem;
}

.product-gallery-card,
.product-detail-info,
.product-description-card {
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.product-gallery-card {
    padding: 1rem;
}

.product-main-image-wrap {
    position: relative;
    display: flex;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1rem;
    background: #f3f6f9;
    cursor: zoom-in;
}

.product-main-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: opacity 180ms ease, transform 220ms ease;
}

.product-main-image.is-changing {
    opacity: 0;
    transform: scale(0.985);
}

.product-main-image-zoom-hint {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    height: 2.1rem;
    width: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: #ffffff;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.product-main-image-wrap:hover .product-main-image-zoom-hint,
.product-main-image-wrap:focus-visible .product-main-image-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

.image-lightbox-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.85, 0.22, 1);
}

#image-lightbox.is-open .image-lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.product-thumbnail-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.product-thumbnail {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 0.8rem;
    background: #f8fafc;
    padding: 0.25rem;
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.product-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-thumbnail:hover,
.product-thumbnail.is-active {
    border-color: #c59d5f;
    background: #ffffff;
    transform: translateY(-2px);
}

.product-detail-info {
    padding: 1.25rem;
}

.product-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.product-meta-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #f3f4f6;
    padding: 0.36rem 0.68rem;
    color: #4b5563;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.product-meta-badge--blue {
    background: rgba(0, 64, 119, 0.1);
    color: #004077;
}

.product-meta-badge--gold {
    background: #c59d5f;
    color: #ffffff;
}

.product-meta-badge--dark {
    background: #004077;
    color: #ffffff;
}

.product-detail-title {
    margin: 0;
    color: #004077;
    font-size: clamp(1.6rem, 3vw, 2.65rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.product-detail-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
}

.product-detail-sold-text {
    color: #9ca3af;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
}

.product-price-panel {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    border-radius: 1rem;
    background: #f6f8fb;
    padding: 1rem;
}

.product-panel-label,
.product-choice-title {
    margin: 0;
    color: #004077;
    font-size: 0.82rem;
    font-weight: 900;
}

.product-selected-combination,
.product-stock-label,
.product-quantity-note {
    margin: 0.3rem 0 0;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
}

.product-price-stack {
    min-width: max-content;
    text-align: right;
}

.product-normal-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-bottom: 0.2rem;
}

.product-normal-price {
    color: #9ca3af;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: line-through;
}

.product-discount-badge {
    border-radius: 999px;
    background: #fef2f2;
    padding: 0.18rem 0.45rem;
    color: #dc2626;
    font-size: 0.72rem;
    font-weight: 900;
}

.product-final-price {
    margin: 0;
    color: #c59d5f;
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
    font-weight: 900;
    line-height: 1.1;
}

.product-purchase-card {
    margin-top: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    background: #ffffff;
    padding: 1rem;
}

.product-choice-group + .product-choice-group,
.product-quantity-row {
    margin-top: 1.15rem;
}

.product-choice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.product-choice-head span {
    color: #9ca3af;
    font-size: 0.74rem;
    font-weight: 800;
    text-align: right;
}

.product-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-choice {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    background: #ffffff;
    padding: 0.65rem;
    color: #1f2937;
    text-align: left;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.product-choice:hover {
    border-color: rgba(197, 157, 95, 0.65);
    box-shadow: 0 10px 24px rgba(0, 64, 119, 0.07);
    transform: translateY(-1px);
}

.product-choice.is-active {
    border-color: #c59d5f;
    background: #fffaf2;
    box-shadow: 0 12px 25px rgba(197, 157, 95, 0.14);
}

.product-choice.is-disabled,
.product-choice:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
    box-shadow: none;
}

.product-choice-image {
    display: flex;
    height: 2.6rem;
    width: 2.6rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.7rem;
    background: #f3f6f9;
}

.product-choice-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-choice-text {
    display: grid;
    min-width: 0;
    gap: 0.15rem;
}

.product-choice-text span {
    overflow: hidden;
    color: #004077;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-choice-text small {
    color: #9ca3af;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.1;
}

.product-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.product-quantity-control {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
}

.product-quantity-control button {
    display: flex;
    height: 2.45rem;
    width: 2.45rem;
    align-items: center;
    justify-content: center;
    color: #004077;
    font-size: 1.1rem;
    font-weight: 900;
    transition: background-color 160ms ease, color 160ms ease;
}

.product-quantity-control button:hover {
    background: #004077;
    color: #ffffff;
}

.product-quantity-control button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.product-quantity-control input {
    height: 2.45rem;
    width: 3.2rem;
    border: 0;
    border-right: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    color: #004077;
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
    outline: none;
}

.product-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3.15rem;
    margin-top: 1.25rem;
    border-radius: 0.95rem;
    background: #004077;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.product-cart-button:hover {
    background: #00284d;
    transform: translateY(-1px);
}

.product-cart-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.product-action-row {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.product-action-row .product-cart-button {
    margin-top: 0;
}

.product-cart-button--secondary {
    border: 1px solid #004077;
    background: #ffffff;
    color: #004077;
}

.product-cart-button--secondary:hover {
    background: rgba(0, 64, 119, 0.08);
    color: #004077;
}

.product-buy-button {
    background: #c59d5f;
    box-shadow: 0 16px 34px rgba(197, 157, 95, 0.2);
}

.product-buy-button:hover {
    background: #b28b4f;
}

.product-description-card {
    margin-top: 1.5rem;
    padding: 1.25rem;
}

.product-description-head {
    margin-bottom: 1rem;
}

.product-description-head p {
    margin: 0;
    color: #c59d5f;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-description-head h2 {
    margin: 0.2rem 0 0;
    color: #004077;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0;
}

.product-description-rich {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.68;
}

.product-description-rich > *:first-child {
    margin-top: 0;
}

.product-description-rich > *:last-child {
    margin-bottom: 0;
}

.product-description-rich p,
.product-description-rich div {
    margin: 0;
}

.product-description-rich .description-spacer {
    height: 1.05rem;
}

.product-description-rich ul,
.product-description-rich ol,
.product-description-rich blockquote,
.product-description-rich table {
    margin: 0.6rem 0;
}

.product-description-rich h2,
.product-description-rich h3,
.product-description-rich h4 {
    margin: 1.25rem 0 0.6rem;
    color: #004077;
    font-weight: 900;
    line-height: 1.25;
}

.product-description-rich ul,
.product-description-rich ol {
    padding-left: 1.25rem;
}

.product-description-rich li + li {
    margin-top: 0.35rem;
}

.product-description-rich blockquote {
    border-left: 4px solid #c59d5f;
    border-radius: 0.5rem;
    background: #f8fafc;
    padding: 0.85rem 1rem;
    color: #334155;
}

.product-description-rich a {
    color: #004077;
    font-weight: 800;
    text-decoration: underline;
}

.product-description-rich table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 0.8rem;
}

.product-description-rich th,
.product-description-rich td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.product-description-rich th {
    background: #f6f8fb;
    color: #004077;
    font-weight: 900;
}

.home-sale-banner {
    overflow: hidden;
}

.home-sale-title,
.home-chatbot-title {
    letter-spacing: 0;
    line-height: 1.15;
}

.home-product-grid-item {
    min-width: 0;
}

.home-product-grid [data-aos],
.home-benefit-grid [data-aos] {
    max-width: 100%;
}

.brand-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
    display: flex;
    width: max-content;
    animation: brand-scroll 58s linear infinite;
    will-change: transform;
}

.brand-track__set {
    display: flex;
    flex: 0 0 auto;
    gap: 1.25rem;
    padding-right: 1.25rem;
}

.brand-track:hover {
    animation-play-state: paused;
}

.brand-marquee__item {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    height: 6.5rem;
    width: 6.5rem;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.6rem;
    text-decoration: none;
    transition: transform 180ms ease;
}

.brand-marquee__item:hover {
    transform: translateY(-4px);
}

.brand-marquee__logo {
    max-height: 4rem;
    max-width: 100%;
    object-fit: contain;
}

.brand-marquee__text {
    color: #004077;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.review-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.review-track {
    width: max-content;
    animation: review-scroll 36s linear infinite;
}

.review-track:hover {
    animation-play-state: paused;
}

.review-buyer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.review-avatar {
    height: 2.75rem;
    width: 2.75rem;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 2px solid rgba(197, 157, 95, 0.28);
    object-fit: cover;
    background: #eef4f8;
}

.float-soft {
    animation: float-soft 5s ease-in-out infinite;
}

.home-benefit-card {
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.home-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 157, 95, 0.45);
    box-shadow: 0 16px 35px rgba(0, 64, 119, 0.08);
}

.chatbot-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.chatbot-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.store-map-frame {
    aspect-ratio: 4 / 3;
    min-height: 260px;
    border: 0;
}

.frontend-action,
#catalog-filter-open,
#catalog-filter-open-secondary,
#profile-menu a,
#profile-menu button,
[data-chatbot-open] {
    position: relative;
    z-index: 120;
    pointer-events: auto !important;
}

#catalog-filter-modal.hidden,
#profile-menu.hidden,
#global-search-suggestions.hidden {
    display: none !important;
}

#catalog-filter-modal,
#profile-modal,
#address-modal,
#order-detail-modal {
    z-index: 1000;
}

/* Jaring pengaman tambahan di luar body-lock JS (lihat lockBodyScroll di frontend.js) */
body.overflow-hidden {
    overscroll-behavior: contain;
}

#site-header {
    z-index: 200;
}

#site-header,
#site-header a,
#site-header button,
#site-header input {
    pointer-events: auto;
}

.frontend-floating-chat {
    pointer-events: none;
    z-index: 1200 !important;
}

.frontend-floating-chat .chatbot-panel {
    position: relative;
    z-index: 2;
}

.frontend-floating-chat #chatbot-toggle {
    position: relative;
    z-index: 3;
}

.frontend-floating-chat #chatbot-toggle,
.frontend-floating-chat .chatbot-panel.is-open {
    pointer-events: auto;
}

.pointer-events-none {
    pointer-events: none !important;
}

.pointer-events-auto {
    pointer-events: auto !important;
}

.invisible {
    visibility: hidden !important;
}

.visible {
    visibility: visible !important;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

@keyframes brand-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes review-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float-soft {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

@media (max-width: 640px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translate3d(0, 18px, 0);
    }

    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        transform: translate3d(0, 0, 0);
    }

    .home-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .home-section-header {
        align-items: flex-start;
        gap: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .home-section-title {
        font-size: 1.35rem !important;
        line-height: 1.18;
    }

    .home-section-kicker {
        font-size: 0.68rem !important;
        line-height: 1.25;
    }

    .home-section-link {
        flex: 0 0 auto;
        border-radius: 0.75rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.7rem !important;
        line-height: 1;
    }

    .frontend-category-pill {
        padding: 0.48rem 0.85rem;
        font-size: 0.7rem;
    }

    .product-card {
        border-radius: 0.9rem;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    }

    .product-card__body {
        padding: 0.72rem;
    }

    .product-card__head {
        height: 3.35rem;
        overflow: hidden;
        gap: 0.35rem;
    }

    .product-card__brand {
        font-size: 0.68rem;
    }

    .product-card__title {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .product-card__bottom {
        gap: 0.38rem;
        min-height: 2.8rem;
        padding-top: 0.35rem;
    }

    .product-card__normal-price {
        gap: 0.25rem;
        min-height: 0.92rem;
        margin-bottom: 0.12rem;
        font-size: 0.62rem;
    }

    .product-card__discount {
        padding: 0.14rem 0.35rem;
        font-size: 0.6rem;
    }

    .product-card__price {
        font-size: 0.9rem;
        line-height: 1.12;
    }

    .product-card__price--empty {
        font-size: 0.72rem;
    }

    .wishlist-toggle--floating {
        height: 2.2rem;
        width: 2.2rem;
    }

    .wishlist-toggle--card {
        min-height: 1.9rem;
        min-width: 3.1rem;
        padding: 0.35rem 0.52rem;
        font-size: 0.66rem;
    }

    .wishlist-toggle--card svg {
        height: 0.92rem;
        width: 0.92rem;
    }

    .wishlist-toggle--detail {
        min-height: 2.05rem;
        min-width: 3.75rem;
        padding: 0.42rem 0.65rem;
        font-size: 0.75rem;
    }

    .wishlist-toggle--pill {
        width: 100%;
        justify-content: center;
        min-height: 2.3rem;
    }

    .product-card-sold-text,
    .product-card-wishlist-count {
        gap: 0.25rem;
        font-size: 0.6rem;
    }

    .product-card-wishlist-count svg {
        height: 0.78rem;
        width: 0.78rem;
    }

    .frontend-breadcrumb {
        gap: 0.3rem;
        font-size: 0.66rem;
    }

    .product-detail-page {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .product-detail-shell {
        gap: 1rem;
    }

    .product-gallery-card,
    .product-detail-info,
    .product-description-card {
        border-radius: 1rem;
        padding: 0.9rem;
    }

    .product-main-image-wrap {
        border-radius: 0.85rem;
    }

    .product-thumbnail-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .product-thumbnail {
        border-radius: 0.65rem;
    }

    .product-detail-title {
        font-size: 1.55rem;
    }

    .product-detail-stats {
        gap: 0.55rem;
        margin-top: 0.85rem;
    }

    .product-detail-sold-text {
        font-size: 0.76rem;
    }

    .product-price-panel {
        display: grid;
        gap: 0.85rem;
        padding: 0.9rem;
    }

    .product-price-stack {
        min-width: 0;
        text-align: left;
    }

    .product-normal-row {
        justify-content: flex-start;
    }

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

    .product-choice {
        min-height: 3.25rem;
    }

    .product-choice-head {
        align-items: flex-start;
    }

    .product-choice-head span {
        max-width: 55%;
    }

    .product-quantity-row {
        align-items: flex-start;
    }

    .product-description-rich {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .product-action-row {
        gap: 0.65rem;
    }

    .product-cart-button {
        min-height: 2.85rem;
        font-size: 0.82rem;
    }

    .home-hero {
        min-height: 500px;
    }

    .home-hero__image {
        object-position: 70% center;
    }

    .home-hero__shade {
        background:
            linear-gradient(90deg, rgba(0, 40, 77, 0.97) 0%, rgba(0, 64, 119, 0.88) 58%, rgba(0, 40, 77, 0.42) 100%),
            linear-gradient(0deg, rgba(0, 40, 77, 0.7) 0%, rgba(0, 40, 77, 0.12) 65%);
    }

    .home-hero__content {
        min-height: 500px;
        align-items: flex-end;
        padding-top: 5rem;
        padding-right: 1.15rem;
        padding-bottom: 3rem;
        padding-left: 1.15rem;
    }

    .home-hero__title {
        max-width: 20rem;
        font-size: clamp(2rem, 11vw, 3.2rem);
        line-height: 1.02;
    }

    .home-hero__subtitle {
        max-width: 20rem;
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .home-hero__actions {
        margin-top: 1.5rem;
    }

    .home-hero__primary,
    .home-hero__secondary {
        width: 100%;
    }

    .brand-track {
        animation-duration: 48s;
    }

    .brand-marquee {
        margin-right: -1rem;
        margin-left: -1rem;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }

    .brand-track__set {
        gap: 0.9rem;
        padding-right: 0.9rem;
    }

    .brand-marquee__item {
        height: 6.25rem;
        width: 6.25rem;
        padding: 0.55rem;
    }

    .brand-marquee__logo {
        max-height: 3.6rem;
    }

    .home-sale-banner {
        border-radius: 1rem;
        padding: 1rem;
    }

    .home-sale-title,
    .home-chatbot-title {
        font-size: 1.35rem !important;
        line-height: 1.22;
    }

    .home-sale-link,
    .home-chatbot-button {
        width: 100%;
        min-height: 2.85rem;
    }

    .home-sale-scroll {
        gap: 0.85rem;
        padding-bottom: 1.15rem;
    }

    .home-sale-item {
        width: min(72vw, 15.5rem) !important;
    }

    .home-product-grid {
        gap: 0.75rem !important;
    }

    .home-review-section .review-marquee {
        margin-right: -1rem;
        margin-left: -1rem;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }

    .review-track {
        gap: 0.85rem !important;
        animation-duration: 44s;
    }

    .review-card {
        width: min(82vw, 19rem) !important;
        border-radius: 1rem;
        padding: 0.9rem;
    }

    .review-avatar {
        height: 2.45rem;
        width: 2.45rem;
    }

    .home-benefit-grid {
        gap: 0.75rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .home-benefit-card {
        border-radius: 0.9rem !important;
        padding: 0.85rem !important;
    }

    .frontend-page-shell {
        padding-top: 1.5rem;
        padding-bottom: 1.75rem;
    }
}

@media (max-width: 380px) {
    .product-quantity-row {
        display: grid;
    }

    .product-quantity-control {
        width: max-content;
    }

    .home-hero__title {
        font-size: 1.95rem;
    }

    .home-hero__subtitle {
        font-size: 0.86rem;
    }

    .home-product-grid {
        gap: 0.62rem !important;
    }

    .product-card__body {
        padding: 0.65rem;
    }

    .product-card__head {
        height: 3.15rem;
        overflow: hidden;
    }

    .product-card__title {
        font-size: 0.74rem;
    }

    .product-card__price {
        font-size: 0.82rem;
    }

    .wishlist-toggle--card {
        min-width: 2.85rem;
        padding-right: 0.45rem;
        padding-left: 0.45rem;
    }

    .product-card-sold-text {
        font-size: 0.56rem;
    }

    .brand-marquee__item {
        height: 5.6rem;
        width: 5.6rem;
    }
}

@media (min-width: 1024px) {
    .product-detail-shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: start;
    }

    .product-gallery-card {
        position: sticky;
        top: 7rem;
        padding: 1.25rem;
    }

    .product-detail-info {
        padding: 1.5rem;
    }

    .product-description-card {
        padding: 1.5rem;
    }
}

@media (min-width: 640px) {
    .product-action-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
