:root {
    --gradient-start: #f97316;
    --gradient-mid: #ec4899;
    --gradient-end: #8b5cf6;
    --accent: #f5610a;
    --ink: #1a1a1a;
    --muted: #6b7280;
    --surface: #ffffff;
    --radius-lg: 8px;
    --radius-pill: 999px;
    --shadow: 0 8px 24px rgb(17 24 39 / 40%);
    --max-width: 520px;
    --font: Arial, sans-serif;
}
input{
    outline: none!important;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--surface);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    z-index: 100;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}
.skip-link:focus {
    left: 8px;
}
.app-shell {
    min-height: 100dvh;
}
.page-home .app-shell {
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-mid) 45%, var(--gradient-end) 100%);
    color: #fff;
}
.page-home .site-header {
    padding: 28px 20px 8px;
    text-align: center;
}
.site-logo {
    display: block;
    margin: 0 auto 16px;
    width: auto;
    height: auto;
    max-width: 70%;
    text-decoration: none;
    color: inherit;
}

.site-logo:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: 8px;
}

.site-logo img {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
}
.site-logo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--muted);
}
.social-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}
.social-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.social-nav__icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.social-nav__fallback {
    font-size: 0.85rem;
    font-weight: 800;
}
.page-home .site-title {
    margin: 0 0 10px;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 2rem;
    color: var(--text-site-title, #fff);
}
.site-tagline {
    margin: 0 auto;
    max-width: 340px;
    font-size: 0.9rem;
    opacity: 0.95;
}
.page-home .site-main {
    padding: 16px 16px 50px 16px;
}
.catalog-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    position: relative;
}
.catalog-toolbar__search {
    flex: 1;
}
.catalog-toolbar__search input {
    width: 100%;
    padding: 10px 18px;
    border: 0;
    border-radius: var(--radius-lg);
    font: inherit;
    background: #fff;
    color: var(--ink);
}
.catalog-toolbar__filter {
    position: relative;
    z-index: 21;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-lg);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    pointer-events: auto;
}
.catalog-toolbar__filter svg {
    display: block;
    width: 20px;
    height: 20px;
    stroke: rgb(150 150 150);
}
.filter-panel[hidden] {
    display: none !important;
}
.filter-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 16px;
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.filter-panel fieldset {
    border: 0;
    margin: 0 0 12px;
    padding: 0;
}
.filter-panel legend {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.filter-panel select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font: inherit;
    outline: none!important;
}
.filter-panel__apply {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: var(--radius-lg);
    font: inherit;
    font-weight: 700;
    color: var(--cta-text-color, #fff);
    background: linear-gradient(
        90deg,
        var(--cta-bg-start, var(--gradient-start)) 0%,
        var(--cta-bg-end, var(--gradient-end)) 100%
    );
    cursor: pointer;
}
.product-grid {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

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

.product-grid--1col .product-card__link {
    flex-direction: row;
    align-items: stretch;
}

.product-grid--1col .product-card__media {
    flex: 0 0 clamp(96px, 32vw, 140px);
    width: clamp(96px, 32vw, 140px);
    aspect-ratio: 1;
    align-self: center;
}

.product-grid--1col .product-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
}

.product-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--ink);
}
.product-card__media {
    position: relative;
    margin: 0;
    aspect-ratio: 1;
    background: #e5e7eb;
}
.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: 6px;
}
.product-card__body {
    padding: 10px 12px 14px;
    flex: 1;
}
.product-card__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card__price {
    margin: 0;
    font-size: 0.95rem;
}
.product-card__price del {
    color: var(--muted);
    margin-right: 4px;
    font-size: 0.8rem;
}
.product-card__price ins {
    text-decoration: none;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: normal;
}
.product-card__rating {
    margin: 6px 0 0;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.stars {
    display: inline-flex;
    gap: 1px;
    letter-spacing: -1px;
}
.star {
    color: #d1d5db;
    font-size: 1.15em;
}
.star.is-filled {
    color: var(--accent);
}
.load-more-wrap {
    text-align: center;
    margin: 20px 0 0;
}
.load-more {
    background: none;
    border: 0;
    padding: 8px;
    font: inherit;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.95;
}
.seo-section {
    margin-top: 28px;
    padding-top: 8px;
}
.seo-section h2,
.seo-section-heading {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 700;
}
.page-home .seo-section h2,
.page-home .seo-section-heading {
    color: var(--text-seo-heading, #fff);
}
.seo-section__body p {
    margin: 0 0 12px;
    font-size: 1.12rem;
    line-height: 1.6rem;
}
.rich-content {
    line-height: 1.6;
}
.rich-content p {
    margin: 0 0 0.75em;
}
.rich-content p:last-child {
    margin-bottom: 0;
}
.rich-content ul,
.rich-content ol {
    margin: 0 0 0.75em;
    padding-left: 1.25em;
}
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    font-weight: 700;
    line-height: normal;
}
.rich-content h2 { font-size: 1.4rem; }
.rich-content h3 { font-size: 1.4rem; }
.rich-content h4 { font-size: 1.4rem; }
.rich-content h5 { font-size: 1.4rem; }
.rich-content h6 { font-size: 1.4rem; }
.rich-content a {
    color: var(--accent);
    text-decoration: underline;
}
.page-home .rich-content--inverse,
.page-home .rich-content--tagline {
    color: var(--text-rich-content, #fff);
}
.page-home .rich-content--inverse a,
.page-home .rich-content--tagline a {
    color: var(--text-rich-content, #fff);
}
.rich-content--tagline {
    max-width: 340px;
    margin: 0 auto;
    font-size: 1.15rem;
    opacity: 0.95;
    text-align: center;
}
.rich-content--tagline p {
    margin: 0;
}
.rich-content--compact {
    font-size: 0.9rem;
    color: #4b5563;
}
.product-info__lead.rich-content {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 1rem;
}
.page-home .site-footer {
    padding: 15px;
    text-align: center;
    color: var(--text-site-footer, #919191);
    box-shadow: var(--shadow);
    background: #fff;
    max-width: 100%!important;
}
.page-home .site-footer p {
    margin: 0;
    color: inherit;
}
.empty-state {
    text-align: center;
    padding: 24px 16px;
    color: inherit;
}
.page-home .empty-state {
    color: #fff;
}
.empty-state--small {
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--muted);
}
.empty-state a {
    color: var(--accent);
}
.page-product .app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-bottom: 83px;
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-mid) 45%, var(--gradient-end) 100%);
    color: #fff;
}
.product-header {
    padding: 20px 0;
    background: transparent;
    color: #fff;
}
.product-header .breadcrumb{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.product-header .breadcrumb ol {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    color: var(--text-breadcrumb, #fff);

    display: inline;
}
.product-header .breadcrumb ol li{
    display: inline;
}
.breadcrumb li:not(:last-child)::after {
    content: " / ";
    opacity: 0.7;
}
.breadcrumb a {
    color: var(--text-breadcrumb, #fff);
    text-decoration: none;
}
.site-main--product {
    flex: 1;
    padding: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}
.page-product .product-detail {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}
.page-product .site-main--plain {
    color: #fff;
    padding-top: 48px;
}
.page-product .site-main--plain .empty-state a {
    color: #fff;
    font-weight: 700;
}
.product-slider {
    position: relative;
    margin-bottom: 16px;
}
.product-slider__track {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #c6ccd8;
    aspect-ratio: 1;
}
.product-slider__slide {
    display: none;
    margin: 0;
    height: 100%;
}
.product-slider__slide.is-active {
    display: block;
}
.product-slider__zoom {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}
.product-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.product-slider__prev,
.product-slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
}
.product-slider__prev {
    left: 8px;
}
.product-slider__next {
    right: 8px;
}
.product-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.product-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
}
.product-slider__dots button[aria-selected="true"] {
    background: var(--accent);
    width: 20px;
    border-radius: var(--radius-pill);
}
.product-info__head {
    display: block;
    margin-bottom: 8px;
}
.product-info__title {
    margin: 0;
    flex: 1;
    min-width: 60%;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.7rem;
}
.product-info__rating {
    margin: 0;
}
.product-info__price {
    margin: 0 0 12px;
    font-size: 1.1rem;
}
.product-info__price-old {
    color: var(--muted);
    margin-right: 8px;
}
.product-info__price-current {
    text-decoration: none;
    font-weight: 800;
    color: var(--accent);
}
.product-info__lead {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.95rem;
}
.product-description h2,
.product-reviews__head h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
}
.product-description {
    margin-bottom: 24px;
}
.product-description__body p {
    margin: 0 0 10px;
    color: #374151;
    font-size: 1rem;
}
.product-reviews__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}
.product-reviews__summary {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 1rem;
}
.review-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.review-list__item + .review-list__item {
    margin-top: 16px;
}
.review-card {
    display: flex;
    gap: 12px;
}
.review-card__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--muted);
}
.review-card__author {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: normal;
}
.review-card__meta {
    margin-bottom: 4px;
}
.review-card__body p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
    line-height: normal;
}
.product-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}
.product-cta__button {
    display: block;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cta-text-color, #fff);
    border-radius: var(--radius-lg);
    background: linear-gradient(
        90deg,
        var(--cta-bg-start, var(--gradient-start)) 0%,
        var(--cta-bg-end, var(--gradient-end)) 100%
    );
}
.site-main--plain {
    padding: 48px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
}
.image-lightbox[hidden] {
    display: none !important;
}
body.lightbox-open {
    overflow: hidden;
}
.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}
.image-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}
.image-lightbox__stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    overflow: hidden;
}
.image-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}
.image-lightbox__hint {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    pointer-events: none;
}
@media (min-width: 520px) {
    .page-home .site-main,
    .page-home .site-header,
    .page-home .site-footer,
    .page-product .product-header,
    .page-product .site-main--product {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 991.98px) {
    .page-product .product-detail{
        margin-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .product-header{
        padding: 20px 16px;
    }
    .page-product .product-detail{
        border-radius: 0;
    }
}