.catalog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    color: #71717a;
    font-size: 0.72rem;
}

.catalog-breadcrumb a {
    color: #71717a;
    text-decoration: none;
}

.catalog-breadcrumb a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.catalog-breadcrumb span[aria-current] {
    overflow: hidden;
    max-width: 220px;
    color: #27272a;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.catalog-title {
    margin: 0;
    color: #18181b;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.catalog-subtitle {
    margin: 4px 0 0;
    color: #71717a;
    font-size: 0.78rem;
}

.catalog-search {
    display: flex;
    width: 100%;
    max-width: 320px;
    align-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.catalog-search input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 12px;
    border: 0;
    outline: none;
    font-size: 0.8rem;
}

.catalog-search button {
    display: flex;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--brand-primary);
    cursor: pointer;
}

.catalog-search button svg {
    width: 18px;
    height: 18px;
}

.catalog-chip-row {
    display: flex;
    padding-bottom: 4px;
    margin: 0 -4px 18px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.catalog-chip-row::-webkit-scrollbar {
    display: none;
}

.catalog-chip {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 14px;
    align-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    margin: 0 4px;
    background: #fff;
    color: #52525b;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.catalog-chip:hover {
    border-color: #d4d4d8;
    color: #27272a;
}

.catalog-chip.is-active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: 4px;
}

.catalog-toolbar-count {
    margin: 0;
    color: #71717a;
    font-size: 0.72rem;
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-sort label {
    color: #71717a;
    font-size: 0.72rem;
    font-weight: 600;
}

.catalog-sort select {
    padding: 7px 10px;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    background: #fff;
    color: #27272a;
    font-size: 0.74rem;
    font-weight: 600;
}

.catalog-sort .region-combobox {
    width: 178px;
}

.catalog-sort .region-combobox-trigger {
    height: 36px;
    border-color: #e4e4e7;
    font-size: 0.74rem;
    font-weight: 600;
}

.catalog-sort .region-combobox-popover {
    right: 0;
    left: auto;
    width: 210px;
}

.catalog-sort .region-combobox-item {
    min-height: 36px;
}

@media (max-width: 600px) {
    .catalog-sort .region-combobox-popover {
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        bottom: auto;
        left: auto;
        width: min(210px, calc(100vw - 32px));
        border-radius: 9px;
        box-shadow: 0 12px 30px rgb(24 24 27 / 0.14), 0 2px 8px rgb(24 24 27 / 0.06);
    }

    .catalog-sort .region-combobox-list {
        max-height: 230px;
    }

    .catalog-sort .region-combobox-item {
        min-height: 38px;
        font-size: 0.75rem;
    }
}

.catalog-empty {
    display: flex;
    padding: 56px 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px dashed #d4d4d8;
    border-radius: 16px;
    margin-top: 20px;
    color: #71717a;
    text-align: center;
}

.catalog-empty .lucide-menu-icon {
    width: 34px;
    height: 34px;
    color: #a1a1aa;
}

.catalog-empty p {
    margin: 0;
    font-size: 0.82rem;
}

.catalog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.catalog-page-link {
    display: inline-flex;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    background: #fff;
    color: #52525b;
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
}

.catalog-page-link svg {
    width: 15px;
    height: 15px;
}

.catalog-page-link:hover {
    border-color: #d4d4d8;
    color: #18181b;
}

.catalog-page-link.is-active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

.catalog-page-link.is-disabled {
    color: #d4d4d8;
    cursor: default;
    pointer-events: none;
}

/* Product detail */

.product-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    background: #fafafa;
}

.product-gallery-main:hover .product-gallery-arrow {
    opacity: 1;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #27272a;
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.16);
    transform: translateY(-50%);
    transition: opacity 160ms ease, background 160ms ease;
}

.product-gallery-arrow:hover {
    background: #fff;
}

.product-gallery-arrow svg {
    width: 18px;
    height: 18px;
}

.product-gallery-arrow-prev {
    left: 10px;
}

.product-gallery-arrow-next {
    right: 10px;
}

.product-gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 5px;
    transform: translateX(-50%);
}

.product-gallery-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: width 160ms ease, background 160ms ease;
}

.product-gallery-dots button.is-active {
    width: 18px;
    background: var(--brand-primary);
}

.product-gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #a1a1aa;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-gallery-placeholder .lucide-menu-icon {
    width: 36px;
    height: 36px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery-thumb {
    display: block;
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    padding: 0;
    border: 2px solid #e4e4e7;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 160ms ease;
}

.product-gallery-thumb:hover {
    border-color: #d4d4d8;
}

.product-gallery-thumb.is-active {
    border-color: var(--brand-primary);
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 2px;
}

.product-share-row span {
    color: #71717a;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-share-icon {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    background: #fff;
    color: #52525b;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.product-share-icon:hover {
    border-color: #d4d4d8;
    color: #27272a;
}

.product-share-icon.is-copied {
    border-color: #16a34a;
    background: #f0fdf4;
    color: #16a34a;
}

.product-share-icon.is-whatsapp:hover {
    border-color: #16a34a;
    color: #16a34a;
}

.product-share-icon .lucide-menu-icon {
    width: 15px;
    height: 15px;
}

.product-share-icon svg {
    width: 15px;
    height: 15px;
}

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.star-rating svg {
    width: 13px;
    height: 13px;
    color: #e4e4e7;
}

.star-rating svg.is-filled {
    color: #f59e0b;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-info-category {
    display: inline-flex;
    width: fit-content;
    color: var(--brand-primary);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-info-category:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-info-title {
    margin: 4px 0 0;
    color: #18181b;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.product-info-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: #71717a;
    font-size: 0.74rem;
}

.product-info-meta > span + span::before {
    margin-right: 10px;
    color: #d4d4d8;
    content: '•';
}

.product-info-meta-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-info-meta-rating strong {
    color: #27272a;
}

.product-info-description {
    margin-top: 14px;
    color: #52525b;
    font-size: 0.8rem;
    line-height: 1.7;
}

.product-info-description p {
    margin: 0;
}

.product-info-description-toggle {
    padding: 0;
    border: 0;
    background: none;
    margin-top: 4px;
    color: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.product-info-description-toggle:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-info-price-block {
    padding: 14px 0;
    margin-top: 14px;
    border-top: 1px solid #f4f4f5;
    border-bottom: 1px solid #f4f4f5;
}

.product-info-price-label {
    display: block;
    color: #a1a1aa;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-info-price {
    margin: 2px 0 0;
    color: var(--brand-primary);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-info-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-info-stock svg {
    width: 16px;
    height: 16px;
}

.product-info-stock.is-available {
    color: #15803d;
}

.product-info-stock.is-empty {
    color: #b91c1c;
}

.product-order-card {
    display: flex;
    height: fit-content;
    padding: 20px;
    flex-direction: column;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(24, 24, 27, 0.035);
}

.checkout-payment-options { display: grid; gap: 12px; }
.checkout-payment-option { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid #e4e4e7; border-radius: 10px; cursor: pointer; }
.checkout-payment-option:has(input:checked) { border-color: var(--brand-primary); background: var(--brand-primary-soft); }
.checkout-payment-option input { accent-color: var(--brand-primary); }
.checkout-payment-option strong, .checkout-payment-option small { display: block; }
.checkout-payment-option small { margin-top: 4px; color: #71717a; }
.bank-payment-details > div { padding: 12px 0; border-bottom: 1px solid #e4e4e7; }
.bank-payment-details dt { color: #71717a; font-size: .85rem; }
.bank-payment-details dd { margin: 6px 0; font-weight: 700; overflow-wrap: anywhere; }

.product-order-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f4f4f5;
}

.product-order-preview img {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    object-fit: cover;
}

.product-order-preview p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #3f3f46;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-order-signals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 14px 0 1px; }
.product-order-signal { display: flex; min-width: 0; padding: 9px; align-items: center; gap: 8px; border: 1px solid #eeeeef; border-radius: 9px; background: #fafafa; }
.product-order-signal > .lucide-menu-icon { width: 17px; height: 17px; flex: 0 0 auto; color: #a16207; }
.product-order-signal > span { display: grid; min-width: 0; gap: 2px; }
.product-order-signal strong { overflow: hidden; color: #3f3f46; font-size: .72rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.product-order-signal small { overflow: hidden; color: #8b8b92; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.product-order-signal.is-stock > .lucide-menu-icon { color: #15803d; }
.product-order-signal.is-empty > .lucide-menu-icon { color: #b91c1c; }

.product-order-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #f4f4f5;
    font-size: 0.8rem;
}

.product-order-subtotal span {
    color: #71717a;
    font-weight: 600;
}

.product-order-subtotal strong {
    color: var(--brand-primary);
    font-size: 0.92rem;
    font-weight: 800;
}

.product-variant {
    margin-top: 16px;
}

.product-variant-heading {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.product-variant-label {
    color: #52525b;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-variant-selected {
    color: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-variant-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-variant-swatch-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.product-variant-swatch-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    clip: rect(0, 0, 0, 0);
}

.product-variant-swatch-circle {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 1px #e4e4e7;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.product-variant-swatch-option:hover .product-variant-swatch-circle {
    box-shadow: 0 0 0 1px #a1a1aa;
    transform: translateY(-1px);
}

.product-variant-swatch-option input:checked + .product-variant-swatch-circle {
    box-shadow: 0 0 0 2px var(--brand-primary);
    transform: translateY(-1px);
}

.product-variant-swatch-option input:focus-visible + .product-variant-swatch-circle {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
}

.product-variant-check {
    width: 16px;
    height: 16px;
    color: #fff;
    opacity: 0;
    filter: drop-shadow(0 0 1.5px rgba(0, 0, 0, 0.65));
    transition: opacity 120ms ease;
}

.product-variant-swatch-option input:checked + .product-variant-swatch-circle .product-variant-check {
    opacity: 1;
}

.product-variant-button-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.product-variant-button {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.product-variant-button > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    clip: rect(0, 0, 0, 0);
}

.product-variant-button > span {
    position: relative;
    display: block;
    min-height: 54px;
    padding: 9px 10px;
    border: 1px solid #e4e4e7;
    border-radius: 7px;
    background: #fff;
    transition: border-color 140ms ease, background-color 140ms ease;
}

.product-variant-color-dot { position: absolute; top: 10px; right: 9px; width: 14px; height: 14px; border: 1px solid #d4d4d8; border-radius: 50%; background: var(--variant-color); }
.product-variant-color-dot + strong { padding-right: 20px; }

.product-variant-button strong,
.product-variant-button small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-variant-button strong { color: #3f3f46; font-size: 0.74rem; }
.product-variant-button small { margin-top: 4px; color: #8b8b92; font-size: 0.66rem; }
.product-variant-button:hover > span { border-color: #a1a1aa; }
.product-variant-button > input:checked + span { border-color: var(--brand-primary); background: #fff8f7; box-shadow: 0 0 0 1px var(--brand-primary); }
.product-variant-button > input:checked + span strong,
.product-variant-button > input:checked + span small { color: var(--brand-primary); }
.product-variant-button > input:focus-visible + span { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.product-variant-button.is-disabled { cursor: not-allowed; }
.product-variant-button.is-disabled > span { background: #f4f4f5; opacity: 0.5; text-decoration: line-through; }

.product-quantity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.product-quantity-label {
    color: #52525b;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-quantity-stock {
    color: #a1a1aa;
    font-size: 0.7rem;
}

.product-quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    overflow: hidden;
}

.product-quantity-control button {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #fafafa;
    color: #27272a;
    cursor: pointer;
}

.product-quantity-control button:hover {
    background: #f4f4f5;
}

.product-quantity-control button svg {
    width: 15px;
    height: 15px;
}

.product-quantity-control input {
    width: 46px;
    height: 36px;
    border: 0;
    border-left: 1px solid #e4e4e7;
    border-right: 1px solid #e4e4e7;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    -moz-appearance: textfield;
}

.product-quantity-control input::-webkit-outer-spin-button,
.product-quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.product-action-primary,
.product-action-secondary {
    width: 100%;
}

.product-action-primary {
    display: inline-flex;
    min-height: 42px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgb(0 102 100 / 0.22);
}

.product-action-primary:hover {
    background: var(--brand-primary-hover);
}

.product-action-primary.is-disabled {
    background: #d4d4d8;
    color: #71717a;
    cursor: not-allowed;
    box-shadow: none;
}

.product-action-primary .lucide-menu-icon {
    width: 18px;
    height: 18px;
}

.product-action-secondary {
    display: inline-flex;
    min-height: 42px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e7;
    border-radius: 11px;
    background: #fff;
    color: #27272a;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.product-action-secondary:hover {
    border-color: #d4d4d8;
    background: #fafafa;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    margin: 0;
}

.product-specs dt {
    margin: 0;
    color: #a1a1aa;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 2px 0 0;
    color: #27272a;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-description-body {
    max-width: 60rem;
    color: #3f3f46;
    font-size: 0.8rem;
    line-height: 1.75;
}

/* Tabs */

.product-tabs {
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    margin-top: 28px;
    background: #fff;
    overflow: hidden;
}

.product-related {
    margin-top: 48px;
}

@media (min-width: 640px) {
    .product-related {
        margin-top: 64px;
    }
}

.product-tabs-nav {
    display: flex;
    gap: 22px;
    padding: 0 18px;
    border-bottom: 1px solid #f4f4f5;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-tabs-nav::-webkit-scrollbar {
    display: none;
}

.product-tab-trigger {
    padding: 14px 0;
    border: 0;
    border-bottom: 2px solid transparent;
    background: none;
    color: #71717a;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease;
}

.product-tab-trigger:hover {
    color: #27272a;
}

.product-tab-trigger.is-active {
    border-bottom-color: var(--brand-primary);
    color: var(--brand-primary);
}

.product-tab-panel {
    padding: 22px 18px;
}

/* Reviews */

.review-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: 22px;
}

.review-summary-score {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.review-summary-score strong {
    color: var(--brand-primary);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.review-summary-score .star-rating svg {
    width: 15px;
    height: 15px;
}

.review-summary-score span {
    color: #71717a;
    font-size: 0.72rem;
    font-weight: 600;
}

.review-summary-bars {
    display: flex;
    min-width: 220px;
    flex: 1 1 260px;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.review-summary-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #71717a;
    font-size: 0.72rem;
    font-weight: 600;
}

.review-summary-bar-row > span:first-child {
    display: inline-flex;
    width: 24px;
    flex: 0 0 auto;
    align-items: center;
    gap: 2px;
}

.review-summary-bar-row svg {
    width: 11px;
    height: 11px;
    color: #f59e0b;
}

.review-summary-bar-row > span:last-child {
    width: 24px;
    flex: 0 0 auto;
    text-align: right;
}

.review-summary-bar-track {
    height: 8px;
    flex: 1 1 auto;
    border-radius: 999px;
    background: #f4f4f5;
    overflow: hidden;
}

.review-summary-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f4f4f5;
}

.review-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.review-card-avatar {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary-hover), var(--brand-primary));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.review-card-body {
    min-width: 0;
    flex: 1 1 auto;
}

.review-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.review-card-author {
    margin: 0;
    color: #18181b;
    font-size: 0.78rem;
    font-weight: 700;
}

.review-card-date {
    margin: 1px 0 0;
    color: #a1a1aa;
    font-size: 0.68rem;
}

.review-card-comment {
    margin: 8px 0 0;
    color: #3f3f46;
    font-size: 0.78rem;
    line-height: 1.65;
}

.review-empty {
    display: flex;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #a1a1aa;
    text-align: center;
}

.review-empty .lucide-menu-icon {
    width: 30px;
    height: 30px;
}

.review-empty p {
    margin: 0;
    color: #71717a;
    font-size: 0.78rem;
}

@media (min-width: 768px) {
    .product-layout {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        align-items: start;
        column-gap: 32px;
        row-gap: 24px;
    }

    .product-order-card {
        grid-column: 1 / -1;
        margin-top: 4px;
    }
}

@media (min-width: 1024px) {
    .product-layout {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr) 340px;
        column-gap: 36px;
        row-gap: 24px;
    }

    .product-order-card {
        grid-column: auto;
        margin-top: 0;
        position: sticky;
        top: 96px;
    }

    .product-info-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 639px) {
    .catalog-title {
        font-size: 0.94rem;
    }

    .catalog-header {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-search {
        max-width: none;
    }

    .product-info-title {
        font-size: 0.94rem;
    }

    .product-info-price {
        font-size: 1.15rem;
    }

    .review-summary {
        flex-direction: column;
        align-items: center;
    }

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

    .product-variant-button-list { grid-template-columns: 1fr; }
}
