/* === trangchu.css === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f2f4f7;
    color: #1D2939;
}

button,
input,
textarea,
select {
    font-family: Arial, sans-serif;
}

/* Category Menu */
.category-menu-inner::-webkit-scrollbar {
    height: 0;
}

.category-item {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #f35b04;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.category-item:hover {
    color: #cf5a00;
    border-bottom-color: transparent;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Footer */
.footer-links a:hover {
    color: #d2691e;
}

.image-slot {
    width: 100%;
    border: 1px dashed #f35b04;
    background: repeating-linear-gradient(
        -45deg,
        #f7f7f7,
        #f7f7f7 8px,
        #f0f0f0 8px,
        #f0f0f0 16px
    );
    color: #848484;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.pv-logo:hover {
    color: #fff;
}

.pv-logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.pv-cat-arrow {
    font-size: 16px;
    transition: transform 0.2s;
}

.pv-category-dropdown {
    position: relative;
}

.pv-category-dropdown:hover .pv-cat-arrow {
    transform: rotate(180deg);
}

.pv-cat-mega {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
    pointer-events: none;
}

.pv-category-dropdown:hover .pv-cat-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.pv-cat-mega-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    min-height: 380px;
    overflow: hidden;
}

.pv-cat-left {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    width: 220px;
    min-width: 220px;
    border-right: 1px solid #efefef;
    overflow-y: auto;
    max-height: 520px;
}

.pv-cat-left::-webkit-scrollbar {
    width: 3px;
}
.pv-cat-left::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.pv-cat-item .pv-cat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition:
        background 0.12s,
        color 0.12s,
        border-color 0.12s;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.pv-cat-item:hover > .pv-cat-link,
.pv-cat-item.is-active > .pv-cat-link {
    background: #fff3ed;
    color: #f35b04;
    border-left-color: #f35b04;
    font-weight: 600;
}

.pv-cat-right {
    flex: 1;
    --pv-cat-column-min-width: 90px;
    --pv-cat-grid-gap: 12px;
    --pv-cat-row-visible-height: 112px;
    --pv-cat-panel-visible-height: calc(
        (var(--pv-cat-row-visible-height) * 3.5) +
            (var(--pv-cat-grid-gap) * 3) + 56px
    );
    min-width: calc(
        (var(--pv-cat-column-min-width) * 6) + (var(--pv-cat-grid-gap) * 5) +
            40px
    );
    min-height: var(--pv-cat-panel-visible-height);
    max-height: var(--pv-cat-panel-visible-height);
    overflow: hidden;
    position: relative;
}

.pv-cat-panel {
    display: none;
    padding: 16px 20px;
    height: 100%;
    overflow-y: auto;
}

.pv-cat-panel.is-active {
    display: block;
}

.pv-cat-panel-section + .pv-cat-panel-section {
    margin-top: 16px;
}

.pv-cat-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.pv-cat-panel-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #1D2939;
}

.pv-cat-menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: calc(100% + 20px);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #f2b6bc;
    background: #f9d8dc;
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.05;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.pv-cat-link .pv-cat-menu-badge {
    margin-left: 2px;
}

.pv-cat-menu-badge--inline {
    margin-top: -2px;
}

.pv-cat-brand-logo-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pv-cat-menu-badge--over-image {
    position: absolute;
    top: -8px;
    right: -12px;
    z-index: 2;
}

.pv-cat-panel-viewall {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #f35b04;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.pv-cat-panel-viewall:hover {
    opacity: 0.8;
}

.pv-cat-panel-viewall i {
    font-size: 16px;
}

.pv-cat-brand-grid {
    display: grid;
    grid-template-columns: repeat(
        6,
        minmax(var(--pv-cat-column-min-width), 1fr)
    );
    gap: var(--pv-cat-grid-gap);
}

.pv-cat-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 8px;
    text-decoration: none;
    transition:
        background 0.15s,
        box-shadow 0.15s;
}

.pv-cat-brand-card:hover {
    background: #fff3ed;
    box-shadow: 0 2px 8px rgba(243, 91, 4, 0.08);
}

.pv-cat-brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pv-cat-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.pv-cat-brand-logo--empty {
    color: #bbb;
    font-size: 24px;
}

.pv-cat-brand-name {
    font-size: 12px;
    color: #444;
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
    overflow: visible;
    display: block;
    overflow-wrap: break-word;
}

.pv-cat-brand-card:hover .pv-cat-brand-name {
    color: #f35b04;
}

.pv-cat-viewall:hover {
    background: #fff3ed;
}

.pv-search-wrap input::placeholder {
    color: #9f9f9f;
}

.pv-cart-link,
.pv-mobile-cart-link {
    position: relative;
}

.pv-cart-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 19px;
    height: 19px;
    border-radius: 999px;
    background: #f35b04;
    color: #fff;
    border: 1px solid #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.pv-cart-link .pv-cart-badge {
    top: 5px;
    left: 13px;
    right: auto;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-width: 1px;
    font-size: 9px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.pv-cart-badge.is-empty {
    display: none;
}

.pv-header-action:hover {
    color: #fff;
    opacity: 0.92;
}

.pv-phone-primary {
    color: #fff;
    text-decoration: none;
}

.pv-phone-primary:hover {
    color: #fff;
}

.pv-phone-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 70;
    min-width: max-content;
    padding: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.pv-phone-action:hover .pv-phone-dropdown,
.pv-phone-action:focus-within .pv-phone-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pv-phone-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #1D2939;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.2;
}

.pv-phone-dropdown a i {
    color: #ef5b00;
    font-size: 16px;
    line-height: 1;
}

.pv-phone-dropdown a:hover {
    color: #ef5b00;
    background: #fff3ed;
}

.pv-mobile-promo,
.pv-mobile-head {
    display: none;
}

.pv-mobile-promo-slot {
    height: 58px;
    border: none;
    border-radius: 0;
    background: linear-gradient(90deg, #ffb24b 0%, #f97a00 55%, #f35b04 100%);
    color: #eaf4ff;
    font-size: 12px;
    font-weight: 700;
}

.pv-mobile-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pv-mobile-meta-left {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.pv-mobile-quick-btn {
    min-width: 64px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
    color: #fff;
}

.pv-mobile-logo-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
}

.pv-mobile-location {
    min-height: 32px;
    min-width: 0;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex: 1;
}

.pv-mobile-location span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pv-mobile-login {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1;
}

.pv-mobile-search-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    padding: 2px;
}

.pv-mobile-top-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
}

.pv-mobile-logo-rect {
    width: 66px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.pv-mobile-hotline-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-mobile-hotline-btn i {
    font-size: 18px;
    line-height: 1;
}

.pv-mobile-login-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.pv-mobile-login-btn i {
    font-size: 16px;
    line-height: 1;
}

.pv-mobile-bottom-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.pv-mobile-catalog-btn {
    min-height: 34px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 700;
    padding: 0 10px;
    cursor: pointer;
    white-space: nowrap;
}

.pv-mobile-catalog-btn i {
    font-size: 17px;
    line-height: 1;
}

.pv-mobile-catalog-modal[hidden] {
    display: none !important;
}

body.pv-mobile-catalog-open {
    overflow: hidden;
}

.pv-mobile-promo-text {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-mobile-bottom-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.pv-mobile-menu-btn,
.pv-mobile-cart-btn,
.pv-mobile-track-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0;
}

.pv-mobile-menu-btn i,
.pv-mobile-cart-btn i,
.pv-mobile-track-btn i {
    font-size: 20px;
    line-height: 1;
}

.pv-mobile-cart-link .pv-cart-badge {
    top: 1px;
    right: 7px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
}

.pv-mobile-search-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.pv-mobile-search-wrap input {
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #2f4159;
    font-size: 14px;
    padding: 0 10px 0 28px;
    outline: none;
}

.pv-mobile-search-wrap input::placeholder {
    color: #cf5a00;
    opacity: 1;
}

.pv-mobile-search-icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c8ea7;
    font-size: 18px;
    line-height: 1;
}

.pv-mobile-search-wrap .pv-search-suggestions {
    top: calc(100% + 6px);
}

.service-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff3e7;
    color: #ea7807;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
}

.sub-banners {
    padding: 0 0 10px;
    background: #fff;
}

.sub-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sub-banner-slot {
    height: 62px;
    border-radius: 6px;
    font-size: 11px;
    color: #777;
}

.section-gap {
    margin-top: 8px;
}

.zone-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.zone-title {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.zone-title-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    object-fit: contain;
}

.zone-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.zone-tab {
    padding: 5px 10px;
    background: #ffe1cc;
    border-radius: 999px;
    color: #db4d00;
    font-size: 11px;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.product-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s;
}

.hot-zone .product-card {
    border-color: #f6b68b;
}

.product-thumb {
    height: 320px;
    width: 210px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 12px;
    margin-bottom: 6px;
    color: #1D2939;
}

.product-tag {
    display: inline-block;
    font-size: 10px;
    color: #e76600;
    background: #fff4ea;
    border-radius: 4px;
    padding: 3px 6px;
    margin-bottom: 6px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-new {
    font-size: 17px;
    font-weight: 700;
    color: #d50000;
}

.price-old {
    font-size: 14px;
    color: #8e8e8e;
    text-decoration: line-through;
}

.product-meta {
    margin-top: 4px;
    color: #6e6e6e;
    font-size: 11px;
}

.catalog-head {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid #f37406;
    text-transform: uppercase;
    color: #1D2939;
}

.campaign-band {
    background: #fff;
    padding: 10px 0 6px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.campaign-slot {
    height: 236px;
    border-radius: 6px;
    font-weight: 700;
    color: #6c6c6c;
    background: #fff9e8;
    border-color: #f2c270;
}

.news-zone {
    background: #fff;
    padding: 8px 0 14px;
}

.news-head {
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.news-slot {
    height: 102px;
    border-radius: 6px;
    font-size: 11px;
}

.about-zone {
    background: #fff;
    padding: 18px 0 24px;
    border-top: 1px solid #f1f1f1;
}

.about-zone h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.about-zone p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-image-group + .footer-image-group {
    margin-top: 12px;
}

.footer-image-links .footer-image-item {
    margin-bottom: 0;
    line-height: 1;
}

.footer-image-links a {
    display: inline-flex;
    align-items: center;
}

.footer-image-links img {
    display: block;
    width: auto;
    height: 28px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .brand-mini-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .split-layout {
        grid-template-columns: 1fr;
    }
    .split-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .brand-mini-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .campaign-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .pv-logo {
        min-width: auto;
        gap: 8px;
    }
    .pv-logo-mark {
        width: 36px;
        height: 36px;
        font-size: 20px;
        border-radius: 9px;
    }
    .pv-category-btn {
        font-size: 16px;
    }
    .pv-category-btn i {
        font-size: 18px;
    }
    .pv-header-actions {
        gap: 9px;
        justify-content: space-between;
    }
    .pv-header-action i {
        font-size: 16px;
    }
    .category-menu-inner {
        gap: 14px;
        padding: 7px 0 8px;
    }
    .category-item {
        font-size: 13px;
    }
    .sub-banner-grid {
        grid-template-columns: 1fr;
    }
    .campaign-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Pixel pass from Figma node 8995:92683 */
.home-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #f2f4f7;
    box-shadow: none;
    --pv-sticky-header-height: 64px;
}

.home-shell .container {
    max-width: 1190px;
    padding-left: 0;
    padding-right: 0;
}

.pv-mini-top {
    width: 100%;
    font-size: 11px;
    height: auto;
    background: #f35b04;
    border-bottom: none;
    color: #fff;
}

.pv-mini-top .container {
    max-width: 1190px;
    padding-left: 0;
    padding-right: 0;
}

.pv-mini-row {
    display: flex;
    align-items: center;
    min-height: 0;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #fff;
}

.pv-mini-logo {
    display: block;
    width: 100%;
    height: auto;
}

.pv-mini-row span:not(:nth-child(2)) {
    display: none;
}

.pv-header-top {
    width: 100%;
    background: #f35b04;
    position: sticky;
    top: 0;
    z-index: 1045;
}

.pv-header-row {
    display: flex;
    align-items: center;
    min-height: 64px;
    gap: 10px;
}

.pv-logo {
    min-width: 216px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
}

.pv-logo-slot {
    width: 216px;
    height: 48px;
    border-radius: 6px;
    object-fit: contain;
}

.pv-logo-mark {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1;
}

.pv-logo-copy strong {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
}

.pv-logo-copy small {
    font-size: 12px;
    font-style: italic;
    margin-top: 1px;
    color: #fff6ef;
    opacity: 0.95;
}

.pv-category-btn {
    border: none;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    gap: 6px;
}

.pv-category-btn i {
    font-size: 22px;
}

.pv-search-wrap {
    position: relative;
    width: 100%;
    max-width: 345px;
    flex: 0 1 345px;
    margin-left: auto;
    margin-right: auto;
}

.pv-search-wrap input {
    width: 100%;
    height: 38px;
    border: 1px solid rgba(34, 48, 62, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 15px;
    padding: 0 16px 0 40px;
    outline: none;
}

.pv-search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(34, 48, 62, 0.5);
}

.pv-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.pv-search-suggestion-group + .pv-search-suggestion-group {
    border-top: 1px solid #f2f4f7;
}

.pv-search-suggestion-title {
    padding: 8px 12px 4px;
    color: #667085;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.pv-search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #1D2939;
    text-decoration: none;
}

.pv-search-suggestion-item:hover {
    background: #fff7ed;
    color: #f35b04;
}

.pv-search-suggestion-thumb {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 8px;
    background: #f9fafb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pv-search-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pv-search-suggestion-thumb i {
    color: #f35b04;
    font-size: 20px;
}

.pv-search-suggestion-info {
    min-width: 0;
    flex: 1;
}

.pv-search-suggestion-name,
.pv-search-suggestion-meta {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pv-search-suggestion-name {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.pv-search-suggestion-meta {
    margin-top: 2px;
    color: #667085;
    font-size: 12px;
    line-height: 1.25;
}

.pv-search-suggestion-price {
    flex: 0 0 auto;
    color: #d92d20;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.pv-search-suggestion-empty {
    padding: 12px;
    color: #667085;
    font-size: 14px;
}

.pv-search-suggestion-all {
    display: block;
    padding: 10px 12px;
    border-top: 1px solid #f2f4f7;
    color: #f35b04;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.pv-header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0;
    gap: 2px;
}

.pv-header-action {
    height: 38px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.pv-header-action i {
    font-size: 20px;
}

.pv-phone-action {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    padding-right: 0;
}

.category-menu {
    width: 100%;
    padding: 0;
    border-bottom: none;
    background: #fbfdff;
    position: sticky;
    top: var(--pv-sticky-header-height);
    z-index: 1040;
}

.category-menu-inner {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    width: 980px;
    margin: 0 auto;
    gap: 0;
    justify-content: space-between;
    padding: 5px 0;
}

.hero-wrap {
    background: #f2f4f7;
    padding-top: 20px;
    width: 100%;
}

.hero-wrap .container {
    max-width: 1190px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.hero-slot {
    width: 100%;
    height: 310px;
    border-radius: 8px;
    border: 1px dashed #f18b2d;
    background: linear-gradient(120deg, #ff9f34 0%, #f35b04 90%);
    color: #fff5ea;
    font-size: 14px;
    font-weight: 700;
}

.promo-slot.promo-slot-media,
.split-banner-slot.split-banner-slot-media {
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
}

.hero-slot.hero-slot-media {
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    aspect-ratio: 1920 / 500;
    height: auto;
}

.hero-slider {
    position: relative;
    overflow: visible;
}

.hero-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.38s ease;
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.hero-slider .hero-slot.hero-slot-media {
    border-radius: 0;
}

.banner-media-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-media-image {
    display: block;
    width: 100%;
}

.banner-media-image-auto {
    height: 100%;
    object-fit: contain;
}

.banner-media-image-cover {
    height: 100%;
    object-fit: cover;
}

.flash-sale-star {
    font-size: 22px;
    line-height: 1;
}

.category-block {
    padding-top: 12px;
}

.category-panel {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-panel:hover {
    border-color: #e5e7eb;
}

.quick-links {
    background: #fff;
    padding: 0;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px 8px;
}

.quick-item {
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    font-size: 12px;
    color: #1D2939;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 6px 6px;
    min-height: 132px;
    transition: color 0.2s;
}

.quick-item:hover {
    color: #f35b04;
    border-color: #f35b04;
    background: #fff;
}

.quick-item.is-featured {
    border-color: transparent;
    background: transparent;
}

.quick-item.is-featured:hover {
    border-color: #f35b04;
    background: #fff;
}

.quick-item-label {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.25;
    min-height: 2.5em;
    font-size: 16px;
    font-weight: 500;
}

.icon-slot {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #9a9a9a;
    font-size: 10px;
}

.quick-icon-media {
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: transparent;
}

.quick-icon-wrap {
    position: relative;
}

.quick-icon-media.quick-icon-wrap {
    overflow: visible;
}

.quick-item-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: calc(100% + 20px);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #f2b6bc;
    background: #f9d8dc;
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.05;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    z-index: 2;
}

.quick-icon-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.quick-icon-fallback {
    display: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin-bottom: 0;
    border-radius: inherit;
    font-size: 10px;
}

.quick-icon-media.is-image-error .quick-icon-image {
    display: none;
}

.quick-icon-media.is-image-error .quick-icon-fallback {
    display: flex;
}

.quick-icon-all {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D2939;
}

.quick-icon-all i {
    font-size: 42px;
    line-height: 1;
}

.brand-mini {
    background: #fff;
    padding: 0;
}

.brand-mini-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 8px;
}

.brand-mini-item {
    height: 34px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.service-box {
    background: #fff;
    padding: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.service-item {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    background: #fff;
    min-height: 42px;
    font-size: 12px;
    color: #555;
    padding: 7px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-panel {
    height: 140px;
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 8px;
    padding: 12px;
    position: relative;
}

.recent-head {
    font-size: 14px;
    font-weight: 700;
    color: #f35b04;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.recent-zone-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #afb7c2;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.recent-zone-close i {
    font-size: 18px;
    line-height: 1;
}

.recent-zone-close:hover {
    color: #8f99a8;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.recent-grid.has-recent-products {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}

.recent-grid.has-recent-products::-webkit-scrollbar {
    display: none;
}

.recent-slot {
    height: 98px;
    border-radius: 8px;
    font-size: 11px;
}

.recent-product-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
    min-width: calc((100% - 30px) / 4);
    height: auto;
    min-height: 78px;
    background: #f7f8fa;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    padding: 8px 30px 8px 10px;
    overflow: hidden;
}

.recent-product-main {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.recent-product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 56px;
    flex: 0 0 55px;
}

.recent-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.recent-product-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-product-fallback {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.25;
    font-size: 10px;
    color: #1D2939;
    padding: 4px;
}

.recent-product-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    font-size: 12px;
    color: #1D2939;
}

.recent-product-price {
    margin-top: 1px;
    font-size: 12px;
    font-weight: 700;
    color: #d50000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-product-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #afb7c2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.recent-product-remove i {
    font-size: 18px;
    line-height: 1;
}

.recent-product-remove:hover {
    color: #8f99a8;
}

.hot-zone {
    background: #f2f4f7;
    padding-top: 20px;
}

.hot-zone .container {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.flash-sale-title {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #1d2939;
    margin-bottom: 10px;
}

.flash-sale-panel {
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
}

.flash-sale-tabs {
    background: #fff;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #eceef2;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.flash-sale-tabs::-webkit-scrollbar {
    display: none;
}

.flash-sale-tab-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
}

.flash-sale-tab-button.is-active .flash-sale-badge {
    background: rgba(220, 106, 29, 0.08);
    border-radius: 8px;
    box-shadow: 0 0 0 2px rgba(220, 106, 29, 0.2);
}

.flash-sale-tab-button.is-active .flash-sale-badge-image {
    filter: saturate(1.08);
}

.flash-sale-tab-button.is-active .flash-sale-tab-text {
    color: #dc6a1d;
    font-weight: 700;
}

.flash-sale-tab-button.is-active::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -5px;
    height: 3px;
    border-radius: 999px;
    background: #dc6a1d;
}

.flash-sale-tab-button:focus-visible {
    outline: 2px solid #dc6a1d;
    outline-offset: 2px;
    border-radius: 8px;
}

.flash-sale-badge {
    flex-shrink: 0;
    height: 44px;
    min-width: 114px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #525d68;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.flash-sale-badge-image {
    width: auto;
    max-width: 90%;
    height: 44px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.flash-sale-tab-text {
    flex-shrink: 0;
    font-size: 14px;
    line-height: 20px;
    color: #1D2939;
    white-space: nowrap;
    min-width: 96px;
    text-align: center;
}

.flash-sale-body {
    padding: 18px 14px 20px;
    background: linear-gradient(180deg, #c22b16 0%, #dd6422 100%);
    border: 1px solid #d84f21;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.flash-countdown {
    width: max-content;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 10px 16px 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.flash-time-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.flash-time-box {
    background: #fff;
    color: #d13012;
    width: 46px;
    height: 42px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.flash-time-sep {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-top: 1px;
}

.flash-time-label {
    color: #fff;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: none;
}

.flash-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.flash-card {
    background: #fff;
    border: 2px solid #efb56d;
    border-radius: 12px;
    padding: 8px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.flash-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: 1px solid #d7d7d7;
    margin-bottom: 8px;
}

.flash-thumb-link {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.flash-thumb-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: none;
    object-fit: contain;
    background: #fff;
}

.flash-name {
    font-size: 13px;
    line-height: 1.35;
    min-height: 40px;
    color: #1d2939;
    margin-bottom: 6px;
}

.flash-name-link {
    text-decoration: none;
    color: inherit;
}

.flash-name-link:hover {
    color: #c24912;
}

.flash-price-new {
    color: #f35b04;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
}

.flash-price-old {
    color: #7f7f7f;
    font-size: 12px;
    text-decoration: line-through;
    line-height: 1.2;
}

.flash-price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 2px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.flash-stock {
    background: #efaa3f;
    color: #1D2939;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 10px;
    text-align: center;
    margin-bottom: 6px;
}

.flash-buy {
    border: 2px solid #f35b04;
    color: #f35b04;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 6px 0;
}

.flash-buy-link {
    text-decoration: none;
    display: block;
}

.flash-meta {
    color: #666;
    font-size: 11px;
    margin-bottom: 4px;
}

.flash-more {
    width: 360px;
    max-width: 100%;
    margin: 18px auto 0;
    background: #db6f2e;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding: 9px 14px;
}

.flash-more.is-disabled {
    opacity: 0.7;
    pointer-events: none;
    cursor: default;
}

.double-banner {
    padding-top: 20px;
}

.banner-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.promo-slot {
    width: 100%;
    height: auto;
    aspect-ratio: 590 / 200;
    border-radius: 8px;
    font-size: 13px;
}

.catalog-zone {
    background: #f2f4f7;
    padding-top: 20px;
}

.catalog-zone .container {
    min-height: auto;
}

.catalog-zone .product-grid {
    gap: 10px;
}

.catalog-zone .product-card {
    min-height: 0;
    border-color: #f0f0f0;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.catalog-zone .product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.catalog-zone .product-thumb-link {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.catalog-zone .product-thumb-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    border: none;
    background: #fff;
    display: block;
}

.catalog-zone .product-name-link {
    text-decoration: none;
    color: inherit;
}

.catalog-zone .product-name-link:hover {
    color: #c44f15;
}

.split-zone {
    background: #f2f4f7;
    padding-top: 20px;
}

.split-zone .container {
    min-height: auto;
    border-radius: 8px;
    padding: 14px;
    background: #e63b1f;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.split-banner-slot {
    height: 100%;
    min-height: 0;
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 700;
}

.split-banner-slot > a,
.split-banner-slot .banner-media-picture,
.split-banner-slot .banner-media-image {
    height: 100%;
}

.split-products {
    display: contents;
}

.split-products-carousel {
    position: relative;
    grid-column: 2 / -1;
    min-width: 0;
    padding-top: 10px;
    margin-top: -10px;
    overflow: visible;
}

.split-products-viewport {
    width: 100%;
    overflow: hidden;
    padding-top: 10px;
    margin-top: -10px;
}

.split-layout .split-products.pdp-strip-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    transition: transform 0.32s ease;
    will-change: transform;
}

.split-layout .split-products.pdp-strip-grid::-webkit-scrollbar {
    display: none;
}

.split-layout .split-products.pdp-strip-grid .product-card {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
    min-width: calc((100% - 20px) / 3);
}

.split-products .product-card {
    min-height: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.split-products-nav {
    width: 42px;
    height: 42px;
    border: 1px solid #d8dee6;
    border-radius: 999px;
    background: #fff;
    color: #2f3a45;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    opacity: 0.62;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.16);
    transition: all 0.2s ease;
}

.split-products-nav i {
    font-size: 24px;
    line-height: 1;
}

.split-products-nav-prev {
    left: -21px;
}

.split-products-nav-next {
    right: -21px;
}

.split-products-nav:hover {
    background: #f35b04;
    border-color: #f35b04;
    color: #fff;
    opacity: 1;
}

.split-products-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.split-products .product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.four-card-zone {
    padding-top: 20px;
}

.four-card-zone .container {
    min-height: auto;
}

.four-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.four-card-item {
    min-height: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px;
}

.four-card-thumb {
    height: 318px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.topic-search-zone {
    padding-top: 20px;
}

.topic-search-zone .container {
    min-height: auto;
    padding: 0;
}

.topic-card-panel {
    background: #f6f7f9;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    padding: 14px;
}

.topic-card-panel + .topic-card-panel {
    margin-top: 12px;
}

.topic-search-head {
    margin-bottom: 10px;
}

.topic-hash-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #1D2939;
}

.topic-hot-title {
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #1D2939;
}

.topic-star {
    color: #f0b726;
    font-size: 24px;
    line-height: 1;
}

.topic-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.topic-tab-item {
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #d9dde3;
    border-radius: 10px;
    background: #f0f2f5;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.topic-tab-item.is-active {
    background: #fff;
    border-color: #f35b04;
    color: #f35b04;
}

.topic-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.topic-news-carousel {
    position: relative;
}

.topic-news-viewport {
    width: 100%;
    overflow: hidden;
}

.topic-news-grid.is-scrollable {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    scrollbar-width: none;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.32s ease;
    will-change: transform;
}

.topic-news-grid.is-scrollable .topic-news-item {
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
    min-width: calc((100% - 30px) / 4);
    scroll-snap-align: start;
}

.topic-news-item {
    min-width: 0;
}

.topic-news-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 280 / 178;
    border-radius: 6px;
}

.topic-news-thumb-link {
    display: block;
    text-decoration: none;
    width: 100%;
    aspect-ratio: 280 / 178;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.topic-news-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.topic-news-title {
    display: block;
    margin-top: 8px;
    color: #1D2939;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}

.topic-news-title:hover {
    color: #f35b04;
}

.topic-more-link {
    width: max-content;
    margin: 10px auto 0;
    color: #f35b04;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    line-height: 1.2;
}

.topic-more-wrap {
    text-align: center;
}

.topic-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-search-tag {
    text-decoration: none;
    border: 1px solid #dde2e8;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 13px;
    line-height: 1.2;
    color: #1D2939;
    background: #eef1f5;
}

.topic-search-tag:hover {
    color: #f35b04;
    border-color: #f2c79f;
    background: #fff3e7;
}

.topic-zone {
    padding-top: 20px;
}

.topic-zone .container {
    min-height: auto;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.topic-grid.topic-grid-home-bottom {
    grid-template-columns: repeat(var(--topic-columns, 4), minmax(0, 1fr));
}

.topic-bottom-carousel {
    position: relative;
}

.topic-bottom-viewport {
    width: 100%;
    overflow: hidden;
}

.topic-grid-home-bottom.is-scrollable {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    scrollbar-width: none;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.32s ease;
    will-change: transform;
}

.topic-grid-home-bottom.is-scrollable .topic-slot {
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
    min-width: calc((100% - 30px) / 4);
    scroll-snap-align: start;
}

.topic-bottom-nav {
    width: 42px;
    height: 42px;
    border: 1px solid #d8dee6;
    border-radius: 999px;
    background: #fff;
    color: #2f3a45;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    opacity: 0.62;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.16);
    transition: all 0.2s ease;
}

.topic-bottom-nav i {
    font-size: 24px;
    line-height: 1;
}

.topic-bottom-nav-prev {
    left: -21px;
}

.topic-bottom-nav-next {
    right: -21px;
}

.topic-bottom-nav:hover {
    background: #f35b04;
    border-color: #f35b04;
    color: #fff;
    opacity: 1;
}

.topic-bottom-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.topic-slot {
    height: auto;
    border-radius: 8px;
    font-size: 12px;
}

.topic-slot-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.topic-slot-picture {
    display: block;
    width: 100%;
    height: auto;
}

.topic-slot-image {
    display: block;
    width: 100%;
    height: auto;
    object-position: center;
    border-radius: inherit;
}

.bottom-banner {
    padding-top: 20px;
}

.bottom-banner-slot {
    height: 194px;
    border-radius: 8px;
    font-size: 13px;
}

.commitment-strip {
    margin-top: 20px;
    background: #fff3ed;
    border-top: 1px solid #ffd7c4;
    border-bottom: 1px solid #ffd7c4;
}

.commitment-row {
    min-height: 80px;
    align-items: center;
    padding: 12px 0;
}

.commitment-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    line-height: 1.2;
    padding: 0 8px;
    color: #f35b04;
}

.commitment-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #f35b04;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
}

.commitment-icon-link {
    text-decoration: none;
}

.commitment-icon-link:hover {
    background: #d14d00;
}

.commitment-icon {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.commitment-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.commitment-copy strong {
    color: #f35b04;
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
}

.commitment-copy small {
    color: #f35b04;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
}

.commitment-subtitle-link {
    color: #f35b04;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
}

.commitment-subtitle-link:hover {
    color: #d14d00;
}

.main-footer {
    min-height: 380px;
    height: auto;
    background: #fff;
    color: #1d2939;
    padding: 20px 0 0;
    border-top: 1px solid #efefef;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.footer-title {
    color: #f35b04;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
    color: #1D2939;
}

.footer-links li a {
    color: #1D2939;
}

.footer-link-extra.d-none {
    display: none;
}

.footer-links-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    border: 0;
    background: transparent;
    color: #1D2939;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
}

.footer-links-toggle:hover {
    color: #d14d00;
}

.footer-image-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 8px;
    max-width: 220px;
}

.footer-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(119, 119, 119, 0.4);
    font-size: 14px;
    line-height: 22px;
    color: #1d2939;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-note strong {
    font-size: 17px;
    line-height: 22px;
}

@media (max-width: 1200px) {
    .home-shell .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    .category-panel {
        padding: 16px 14px 18px;
    }
    .quick-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 20px 8px;
    }
    .quick-item {
        min-height: 148px;
        gap: 8px;
    }
    .quick-item-label {
        font-size: 14px;
    }
    .icon-slot {
        width: 62px;
        height: 62px;
    }
    .home-shell .pv-mini-top .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-wrap .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-slot {
        height: clamp(220px, 24vw, 310px);
    }
    .category-menu-inner {
        width: 100%;
        gap: 18px;
        justify-content: flex-start;
    }
    .recent-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .flash-sale-badge,
    .flash-sale-badge-image {
        height: 40px;
    }
    .flash-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .pv-mini-top {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }
    .home-shell .pv-mini-top .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .pv-mini-row {
        width: 100%;
    }
    .pv-mini-logo {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .pv-mini-row {
        justify-content: flex-start;
    }
    .quick-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px 8px;
    }
    .pv-header-row {
        min-height: 64px;
        gap: 10px;
        padding: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .pv-header-row::-webkit-scrollbar {
        display: none;
    }
    .pv-search-wrap {
        max-width: 300px;
        flex-basis: auto;
        order: 0;
        flex-shrink: 0;
    }
    .pv-header-actions {
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        flex-shrink: 0;
    }
    .category-panel {
        height: auto;
    }
    .recent-panel {
        height: auto;
    }
    .hot-zone .container,
    .catalog-zone .container,
    .split-zone .container,
    .four-card-zone .container,
    .topic-zone .container,
    .main-footer {
        min-height: auto;
        height: auto;
    }
    .product-grid,
    .topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .topic-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .flash-sale-badge {
        min-width: 96px;
        height: 36px;
        font-size: 10px;
    }
    .flash-sale-badge-image {
        height: 36px;
    }
    .flash-sale-tab-text {
        min-width: 84px;
        font-size: 13px;
    }
    .flash-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .flash-sale-body {
        padding: 14px 10px 16px;
    }
    .flash-price-new {
        font-size: 17px;
    }
    .flash-more {
        width: 320px;
        font-size: 15px;
    }
    .split-layout {
        grid-template-columns: 1fr;
    }
    .split-products-carousel {
        grid-column: auto;
        padding-top: 0;
        margin-top: 0;
    }
    .split-products-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        padding-top: 0;
        margin-top: 0;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .split-products-viewport::-webkit-scrollbar {
        display: none;
    }
    .split-products-nav {
        display: none;
    }
    .split-products {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .split-layout .split-products.pdp-strip-grid {
        grid-column: auto;
        overflow: visible;
        padding-top: 0;
        margin-top: 0;
        transition: none;
        will-change: auto;
    }
    .split-products .product-card {
        min-height: 360px;
    }
    .split-products .product-thumb {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .four-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-note {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero-slot {
        height: clamp(170px, 36vw, 250px);
        border-radius: 6px;
    }
    .flash-sale-badge {
        height: 32px;
    }
    .flash-sale-badge-image {
        height: 32px;
    }
    .flash-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .flash-sale-body {
        padding: 14px 10px 16px;
    }
    .flash-price-new {
        font-size: 17px;
    }
    .flash-stock,
    .flash-buy {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .pv-mini-top {
        display: block;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }
    .home-shell .pv-mini-top .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .pv-mini-row {
        width: 100%;
    }
    .pv-mini-logo {
        width: 100%;
        height: auto;
    }
    .pv-mobile-promo {
        display: none;
        background: #f35b04;
    }
    .pv-mobile-promo .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .pv-header-top {
        background: #f35b04;
        padding: 8px 0;
        position: sticky;
        top: 0;
        z-index: 1046;
    }
    .pv-mobile-top-row {
        position: static;
    }
    .pv-header-top .container {
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    .pv-header-row {
        display: none;
    }
    .pv-mobile-head {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .pv-mobile-bottom-row {
        max-height: 44px;
        opacity: 1;
        overflow: hidden;
        transition:
            max-height 0.2s ease,
            opacity 0.2s ease;
    }
    .pv-mobile-catalog-modal {
        position: fixed;
        inset: 0;
        z-index: 1095;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
    }
    .pv-mobile-catalog-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }
    .pv-mobile-catalog-sheet {
        position: relative;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        overflow: hidden;
        z-index: 1;
        display: flex;
        flex-direction: column;
    }
    .pv-mobile-catalog-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        padding: 8px 12px;
        border-bottom: 1px solid #f1f1f1;
    }
    .pv-mobile-catalog-head strong {
        font-size: 14px;
        font-weight: 700;
        color: #1D2939;
    }
    .pv-mobile-catalog-close {
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 8px;
        background: #f3f4f6;
        color: #1D2939;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .pv-mobile-catalog-close i {
        font-size: 18px;
        line-height: 1;
    }
    .pv-mobile-catalog-body {
        padding: 8px;
        flex: 1;
        min-height: 0;
        max-height: none;
        overflow: auto;
    }
    .pv-mobile-catalog-body .pv-cat-mega-wrap {
        min-height: 0;
        border-radius: 10px;
        box-shadow: none;
    }
    .pv-mobile-catalog-body .pv-cat-left {
        width: 128px;
        min-width: 128px;
        max-height: 62dvh;
    }
    .pv-mobile-catalog-body .pv-cat-panel {
        padding: 10px;
    }
    .pv-mobile-catalog-body .pv-cat-right {
        --pv-cat-column-min-width: 0;
        min-width: 0;
        min-height: 0;
        max-height: none;
        overflow: visible;
    }
    .pv-mobile-catalog-body .pv-cat-panel-header {
        margin-bottom: 8px;
    }
    .pv-mobile-catalog-body .pv-cat-panel-title {
        font-size: 13px;
    }
    .pv-mobile-catalog-body .pv-cat-panel-viewall {
        font-size: 11px;
    }
    .pv-mobile-catalog-body .pv-cat-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .pv-mobile-catalog-body .pv-cat-brand-card {
        gap: 4px;
        padding: 6px 2px;
    }
    .pv-mobile-catalog-body .pv-cat-brand-logo {
        width: 42px;
        height: 42px;
    }
    .pv-mobile-catalog-body .pv-cat-brand-name {
        font-size: 11px;
    }
    .pv-mobile-catalog-body .pv-cat-menu-badge {
        padding: 1px 4px;
        font-size: 9px;
        border-radius: 5px;
    }
    .pv-mobile-catalog-body .pv-cat-menu-badge--over-image {
        top: -6px;
        right: -8px;
    }
    .pv-header-top.is-mobile-compact .pv-mobile-head {
        gap: 0;
    }
    .pv-header-top.is-mobile-compact .pv-mobile-bottom-row {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
    }
    .pv-mobile-meta {
        margin-bottom: 0;
    }
    .pv-logo-copy strong {
        font-size: 16px;
    }
    .pv-logo-copy small {
        display: none;
    }
    .pv-header-action {
        font-size: 12px;
        gap: 4px;
        padding: 0 6px;
    }
    .pv-phone-action {
        font-size: 12px;
    }
    .split-zone {
        padding-left: 12px;
        padding-right: 12px;
    }
    .split-zone .container {
        margin-left: 0;
        margin-right: 0;
    }
    .split-zone .zone-head {
        margin-top: 4px;
        margin-bottom: 6px;
    }
    .split-zone .zone-title {
        margin-top: 4px;
        margin-bottom: 4px;
    }
    .category-menu {
        display: none;
    }
    .category-block .quick-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 2px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    .category-block .quick-grid::-webkit-scrollbar {
        display: none;
    }
    .category-block .quick-item {
        flex: 0 0 calc((100% - 32px) / 5);
        max-width: calc((100% - 32px) / 5);
        min-width: calc((100% - 32px) / 5);
        scroll-snap-align: start;
        border: 1px solid #edf0f2;
        border-radius: 8px;
        background: #fff;
        min-height: auto;
        padding: 8px 4px;
        gap: 6px;
    }
    .category-block .quick-item-label {
        font-size: 12px;
        min-height: 2.2em;
    }
    .category-block .icon-slot {
        width: 32px;
        height: 32px;
    }
    .category-block .quick-item-badge {
        top: -4px;
        right: -7px;
        padding: 1px 4px;
        font-size: 9px;
        border-radius: 5px;
    }
    .category-block .quick-item-all .quick-icon-all i {
        font-size: 32px;
    }
    .hero-wrap {
        padding-top: 0;
    }
    .hero-wrap .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .hero-slot {
        height: clamp(140px, 42vw, 210px);
        border-radius: 0;
        border: none;
    }
    .brand-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .flash-sale-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .flash-sale-tabs {
        gap: 6px;
        padding: 6px;
        border-radius: 8px 8px 0 0;
    }
    .flash-sale-tab-text {
        min-width: 68px;
        font-size: 12px;
        line-height: 16px;
        color: #1D2939;
    }
    .flash-sale-badge {
        min-width: 84px;
        height: 28px;
        font-size: 9px;
        padding: 0;
        border-radius: 0;
    }
    .flash-sale-badge-image {
        height: 28px;
    }
    .flash-countdown {
        transform: scale(0.92);
        transform-origin: top center;
        margin-bottom: 10px;
    }
    .flash-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .flash-card {
        border-radius: 10px;
        padding: 7px;
    }
    .flash-name {
        font-size: 12px;
        min-height: 36px;
    }
    .flash-price-new {
        font-size: 17px;
    }
    .flash-price-old {
        font-size: 12px;
    }
    .flash-more {
        width: 100%;
        font-size: 14px;
        padding: 8px 10px;
    }
    .flash-sale-body {
        border-radius: 0 0 8px 8px;
        padding: 12px 8px 14px;
    }
    .banner-grid-two {
        grid-template-columns: 1fr;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .banner-grid-two::-webkit-scrollbar {
        display: none;
    }
    .promo-slot {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        border-radius: 6px;
    }
    .topic-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 2px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .topic-grid::-webkit-scrollbar {
        display: none;
    }
    .topic-bottom-nav {
        display: none;
    }
    .topic-bottom-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .topic-bottom-viewport::-webkit-scrollbar {
        display: none;
    }
    .topic-grid.topic-grid-home-bottom:not(.is-scrollable) {
        /* display: grid; */
        /* overflow: visible; */
        padding-bottom: 0;
        scroll-snap-type: none;
    }
    .topic-slot {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
        scroll-snap-align: start;
    }
    .topic-grid-home-bottom.is-scrollable .topic-slot {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
    }
    .topic-grid-home-bottom.is-scrollable {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        transition: none;
        will-change: auto;
    }
    .topic-tab-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }
    .topic-tab-list::-webkit-scrollbar {
        display: none;
    }
    .topic-tab-item {
        white-space: nowrap;
        flex: 0 0 auto;
    }
    .topic-news-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 2px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .topic-news-grid.is-scrollable {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        transition: none;
        will-change: auto;
    }
    .topic-news-grid::-webkit-scrollbar {
        display: none;
    }
    .topic-news-item {
        flex: 0 0 calc((100% - 12px) / 2.5);
        max-width: calc((100% - 12px) / 2.5);
        min-width: calc((100% - 12px) / 2.5);
        scroll-snap-align: start;
    }
    .topic-news-grid.is-scrollable .topic-news-item {
        flex: 0 0 calc((100% - 12px) / 2.5);
        max-width: calc((100% - 12px) / 2.5);
        min-width: calc((100% - 12px) / 2.5);
    }
    .topic-news-title {
        font-size: 12px;
        line-height: 1.35;
    }
    .topic-search-tags {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }
    .topic-search-tags::-webkit-scrollbar {
        display: none;
    }
    .topic-search-rows {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: max-content;
        min-width: 100%;
    }
    .topic-search-row {
        display: flex;
        gap: 6px;
        width: max-content;
    }
    .topic-search-tag {
        white-space: nowrap;
        flex: initial;
        width: max-content;
        justify-self: auto;
        padding: 4px 10px;
    }
    .recent-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 2px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    .recent-grid::-webkit-scrollbar {
        display: none;
    }
    .recent-slot {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
        height: 98px;
        scroll-snap-align: start;
    }
    .recent-grid.has-recent-products .recent-product-slot {
        flex: 0 0 90%;
        max-width: 90%;
        min-width: 90%;
        height: auto;
        min-height: 82px;
    }
    .recent-grid.has-recent-products .recent-product-price {
        font-size: 14px;
    }
    .four-card-grid {
        grid-template-columns: 1fr;
    }
    .split-products-carousel {
        grid-column: 1;
    }
    .split-products-viewport {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .split-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: flex;
        flex-wrap: nowrap;
        overflow: visible;
        gap: 8px;
        padding-top: 0;
        margin-top: 0;
        padding-bottom: 2px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .split-products::-webkit-scrollbar {
        display: none;
    }
    .split-products .product-card {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
        min-height: 0;
        scroll-snap-align: start;
    }
    .split-layout .split-products.pdp-strip-grid .product-card {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
    }
    .split-layout .split-products.pdp-strip-grid .price-row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 2px;
    }
    .split-layout .split-products.pdp-strip-grid .price-new {
        flex: 0 0 100%;
    }
    .catalog-zone .product-thumb,
    .split-products .product-thumb {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .commitment-strip {
        height: auto;
        padding: 10px 0;
    }
    .commitment-row {
        height: auto;
        padding: 0;
    }
    .commitment-item {
        justify-content: flex-start;
        text-align: left;
        font-size: 12px;
        line-height: 1.25;
        gap: 8px;
        padding: 8px;
        background: #fff8f4;
        border: 1px solid #ffd7c4;
        border-radius: 8px;
    }
    .commitment-icon-wrap {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }
    .commitment-icon-slot {
        display: none;
    }
    .commitment-icon {
        font-size: 14px;
    }
    .commitment-copy {
        gap: 2px;
    }
    .commitment-copy strong {
        font-size: 11px;
        white-space: normal;
    }
    .commitment-copy small {
        font-size: 10px;
    }
    .commitment-subtitle-link {
        font-size: 10px;
    }
    .main-footer {
        padding: 14px 0 8px;
    }
    .main-footer .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .footer-grid > div {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
    }
    .footer-title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    .footer-links li {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 2px;
        word-break: break-word;
    }
    .footer-image-links {
        gap: 6px 7px;
    }
    .footer-image-links li {
        margin-bottom: 0;
    }
    .footer-note {
        margin-top: 12px;
        padding-top: 12px;
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 12px;
        line-height: 20px;
        word-break: break-word;
    }
    .footer-note strong {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 420px) {
    .flash-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .catalog-zone .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .catalog-zone .product-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .catalog-zone .product-card {
        padding: 10px;
    }
    .catalog-zone .product-thumb,
    .split-products .product-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .catalog-zone .product-name,
    .split-products .product-name {
        font-size: 14px;
        line-height: 1.35;
        min-height: auto;
        margin-bottom: 6px;
    }
    .catalog-zone .product-tag,
    .split-products .product-tag {
        font-size: 12px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }
    .catalog-zone .price-row,
    .split-products .price-row {
        gap: 6px;
        flex-wrap: wrap;
    }
    .catalog-zone .price-new,
    .split-products .price-new {
        font-size: 20px;
    }
    .catalog-zone .price-old,
    .split-products .price-old {
        font-size: 14px;
    }
    .catalog-zone .product-meta,
    .split-products .product-meta {
        font-size: 14px;
        line-height: 1.3;
    }
    .split-products .product-card {
        padding: 10px;
        flex: 0 0 88%;
        max-width: 88%;
        min-width: 88%;
    }
    .split-layout .split-products.pdp-strip-grid .product-card {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
    }
}

/* === danh-muc-nganh-hang.css === */
.featured-brand-zone {
    padding: 12px 0 18px;
    background: #f2f4f7;
}

.featured-brand-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 12px 16px;
}

.featured-brand-title {
    margin: 0 0 10px;
    text-align: center;
    color: #1D2939;
    font-size: 24px;
    line-height: 1.1;
    font-family: Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

.featured-brand-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 4px;
    margin-bottom: 12px;
}

.featured-brand-item {
    height: 42px;
    border: 1px solid #f35b04;
    border-radius: 2px;
    background: #fff;
    color: #253445;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 0 6px;
}

.featured-brand-item:hover {
    color: #ef5f00;
}

.featured-brand-carousel {
    position: relative;
    padding: 0;
}

.industry-category-section {
    padding: 0 0 18px;
    background: #f2f4f7;
}

.industry-category-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 12px 16px;
}

.industry-category-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 3px solid #f36f12;
    text-align: left;
    color: #1D2939;
    font-size: 24px;
    line-height: 1.1;
    font-family: Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

.industry-category-title-icon {
    flex: 0 0 40px;
}

.industry-category-carousel {
    position: relative;
    padding: 0;
}

.featured-brand-nav,
.industry-category-nav {
    width: 34px;
    height: 56px;
    border: none;
    border-radius: 2px;
    background: #f0b45a;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.82;
}

.featured-brand-nav i,
.industry-category-nav i {
    font-size: 28px;
    line-height: 1;
}

.featured-brand-nav-prev {
    left: 0;
}

.featured-brand-nav-next {
    right: 0;
}

.industry-category-nav-prev {
    left: 0;
}

.industry-category-nav-next {
    right: 0;
}

.featured-product-grid,
.industry-category-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    scroll-behavior: auto;
    scrollbar-width: none;
    cursor: grab;
}

.featured-product-grid::-webkit-scrollbar,
.industry-category-grid::-webkit-scrollbar {
    display: none;
}

.featured-product-card,
.industry-category-card {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 0 0 calc((100% - 32px) / 5);
    max-width: calc((100% - 32px) / 5);
    min-width: calc((100% - 32px) / 5);
}

.featured-product-grid.is-dragging,
.industry-category-grid.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.featured-product-card .product-thumb,
.industry-category-card .product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 220 / 220;
    border-radius: 8px;
    overflow: hidden;
}

.featured-product-thumb-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-product-meta {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.featured-compare-link {
    text-decoration: none;
    color: #f35b04;
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.featured-compare-link i {
    font-size: 12px;
}

.industry-category-more-wrap {
    text-align: center;
    margin-top: 14px;
}

.industry-category-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 210px;
    min-height: 36px;
    border: 1px solid #f35b04;
    border-radius: 8px;
    background: #fff;
    color: #f35b04;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 16px;
}

.industry-category-more-link:hover {
    color: #d95809;
}

@media (max-width: 1200px) {
    .featured-brand-title {
        font-size: 22px;
    }

    .featured-brand-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .featured-product-card,
    .industry-category-card {
        flex: 0 0 calc((100% - 16px) / 3);
        max-width: calc((100% - 16px) / 3);
        min-width: calc((100% - 16px) / 3);
    }
}

@media (max-width: 992px) {
    .featured-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .featured-brand-zone {
        padding-top: 8px;
    }

    .featured-brand-panel {
        padding: 10px 8px 12px;
    }

    .featured-brand-title {
        font-size: 20px;
    }

    .industry-category-title {
        font-size: 20px;
    }

    .featured-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .featured-brand-item {
        font-size: 12px;
        height: 36px;
    }

    .featured-product-grid,
    .industry-category-grid {
        gap: 6px;
        cursor: default;
    }

    .featured-product-card,
    .industry-category-card {
        flex: 0 0 calc((100% - 6px) / 2);
        max-width: calc((100% - 6px) / 2);
        min-width: calc((100% - 6px) / 2);
    }

    .featured-brand-nav,
    .industry-category-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .featured-brand-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .featured-brand-grid::-webkit-scrollbar {
        display: none;
    }

    .featured-brand-item {
        min-width: 108px;
        flex: 0 0 108px;
    }

    .featured-product-grid,
    .industry-category-grid {
        gap: 8px;
        scroll-snap-type: x mandatory;
        padding-bottom: 2px;
    }

    .featured-product-grid .featured-product-card,
    .industry-category-grid .industry-category-card {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
        scroll-snap-align: start;
    }
}

@media (max-width: 360px) {
    .featured-product-grid .featured-product-card,
    .industry-category-grid .industry-category-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .featured-product-card,
    .industry-category-card {
        padding: 10px;
    }

    .featured-product-card .product-name,
    .industry-category-card .product-name {
        font-size: 14px;
        line-height: 1.35;
        min-height: auto;
    }

    .featured-product-card .product-tag,
    .industry-category-card .product-tag {
        font-size: 12px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .featured-product-card .price-row,
    .industry-category-card .price-row {
        gap: 6px;
        flex-wrap: wrap;
    }

    .featured-product-card .price-new,
    .industry-category-card .price-new {
        font-size: 20px;
    }

    .featured-product-card .price-old,
    .industry-category-card .price-old {
        font-size: 14px;
    }

    .featured-product-meta {
        font-size: 14px;
    }

    .featured-compare-link,
    .featured-compare-link i {
        font-size: 14px;
    }
}

/* === danh-muc-chi-tiet.css === */
.recent-zone {
    padding-top: 20px;
    /* padding-bottom: 20px; */
}

.product-list-section {
    padding-top: 20px;
    background: #f2f4f7;
}

.product-list-panel {
    padding-top: 12px;
}

.product-list-title {
    margin-bottom: 10px;
}

.product-list-toolbar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.product-list-brand-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-list-filter-button {
    min-height: 33px;
    min-width: 78px;
    border: 1px solid #f2b489;
    border-radius: 9px;
    background: #f7f7f7;
    color: #f35b04;
    font-size: 14px;
    line-height: 1;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 0 0 auto;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.product-list-filter-button i {
    font-size: 12px;
}

.product-list-filter-button span {
    font-size: 14px;
}

.product-list-brand-scroll {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.product-list-brand-scroll::-webkit-scrollbar {
    display: none;
}

.product-list-sort-label {
    color: #6c7178;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.product-list-chip {
    min-height: 33px;
    border: 1px solid #f2b489;
    border-radius: 8px;
    background: #f7f7f7;
    color: #253445;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    flex: 0 0 auto;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.product-list-chip-brand {
    padding: 0 10px;
}

.product-list-brand-logo {
    display: block;
    width: auto;
    max-width: 86px;
    height: 20px;
    object-fit: contain;
}

.product-list-chip i {
    color: #f35b04;
    font-size: 11px;
}

.product-list-brand-mark {
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.product-list-brand-mark--panasonic {
    color: #2454a4;
}

.product-list-brand-mark--lg {
    color: #1D2939;
    font-size: 14px;
    font-weight: 700;
}

.product-list-brand-mark--aqua {
    color: #2c5dab;
}

.product-list-brand-mark--samsung {
    color: #2f4f9a;
}

.product-list-brand-mark--toshiba,
.product-list-brand-mark--sharp {
    color: #cb4637;
}

.product-list-brand-mark--hitachi {
    color: #1D2939;
}

.product-list-filter-button:hover,
.product-list-filter-button:focus-visible,
.product-list-chip:hover,
.product-list-chip:focus-visible,
.product-list-chip.is-active {
    border-color: #f35b04;
    background: #fff7f1;
    outline: none;
    box-shadow: none;
    transform: none;
}

.product-list-brand-text {
    color: #394655;
}

.product-list-sort-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.product-list-sort-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-list-sort-option {
    border: none;
    background: transparent;
    color: #6d7278;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.product-list-sort-option + .product-list-sort-option::before {
    content: "·";
    color: #9aa2ac;
    font-size: 14px;
    margin: 0 8px 0 6px;
}

.product-list-sort-option.is-active {
    color: #1D2939;
    font-weight: 700;
}

.product-list-sort-option i {
    font-size: 12px;
}

.smart-filter-modal .modal-dialog {
    max-width: min(980px, 96vw);
}

.smart-filter-modal .modal-content {
    border-radius: 14px;
    border: none;
}

.smart-filter-modal .modal-header {
    border-bottom: 1px solid #eceff3;
    padding: 14px 16px;
}

.smart-filter-modal .modal-title {
    color: #1D2939;
    font-size: 18px;
    font-weight: 700;
}

.smart-filter-form {
    padding: 10px 16px 14px;
}

.smart-selected-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6ebf2;
}

.smart-selected-title {
    font-size: 14px;
    line-height: 1;
    color: #1D2939;
}

.smart-selected-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.smart-selected-chip {
    border: none;
    background: #f1f3f7;
    border-radius: 10px;
    color: #1D2939;
    font-size: 14px;
    line-height: 1;
    padding: 11px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.smart-selected-chip i {
    font-size: 14px;
    line-height: 1;
    opacity: 0.75;
}

.product-list-selected-chip {
    text-decoration: none;
}

.smart-selected-clear {
    border: none;
    background: transparent;
    color: #1f71e6;
    font-size: 13px;
    line-height: 1;
    padding: 0;
}

.product-list-selected-clear {
    text-decoration: none;
    white-space: nowrap;
}

.smart-selected-wrap-empty .smart-selected-title,
.smart-selected-wrap-empty .smart-selected-list,
.smart-selected-wrap-empty .smart-selected-clear {
    display: none;
}

.smart-selected-wrap-empty {
    display: none;
}

.smart-filter-group {
    margin: 0;
    border: none;
    padding: 0;
}

.smart-filter-group + .smart-filter-group {
    margin-top: 14px;
}

.smart-filter-group-title {
    color: #1D2939;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.smart-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.smart-filter-option {
    margin: 0;
}

.smart-filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.smart-filter-option span {
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    background: #fff;
    color: #1D2939;
    font-size: 14px;
    line-height: 1;
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.smart-filter-option input:checked + span {
    border-color: #f35b04;
    background: #fff4ea;
    color: #e66411;
}

.smart-filter-price-options .smart-filter-option span {
    border-radius: 8px;
    min-height: 34px;
    padding: 0 12px;
    background: #fff;
    border-color: #e3e8ee;
    color: #415062;
    font-weight: 600;
}

.smart-filter-price-options .smart-filter-option input:checked + span {
    border-color: #f35b04;
    background: #fff4ea;
    color: #e66411;
}

.smart-price-custom {
    margin-top: 10px;
}

.smart-price-hint {
    color: #1D2939;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.smart-price-slider {
    position: relative;
    height: 26px;
    margin-bottom: 8px;
}

.smart-price-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 999px;
    left: 0;
    right: 0;
    background: #dbe3f0;
}

.smart-price-progress {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 999px;
    background: #4a83d8;
    left: 0;
    right: 0;
}

.smart-price-range {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.smart-price-range::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid #4a83d8;
    background: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

.smart-price-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid #4a83d8;
    background: #fff;
    pointer-events: auto;
    cursor: pointer;
}

.smart-price-input {
    text-align: center;
}

.smart-brand-option {
    min-width: 88px;
    padding: 0 12px !important;
}

.smart-brand-logo {
    width: 100%;
    height: 28px;
    object-fit: contain;
    display: block;
}

.smart-brand-fallback {
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.smart-filter-actions {
    border-top: 1px solid #eceff3;
    padding: 12px 16px 14px;
}

.smart-filter-apply {
    background: #f35b04;
    border-color: #f35b04;
}

.smart-filter-apply:hover {
    background: #dd681c;
    border-color: #dd681c;
}

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

.product-list-grid .industry-category-card {
    min-width: 0;
    max-width: none;
    flex: initial;
}

.product-list-grid .product-thumb {
    width: 100%;
}

.product-list-card .product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-list-card .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.product-list-card .price-old-row {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.product-list-card .price-discount {
    color: #f1462f;
    font-size: 14px;
    line-height: 1;
}

.product-list-grid [hidden] {
    display: none !important;
}

.product-list-more-wrap {
    margin-top: 14px;
}

.product-list-more-link {
    cursor: pointer;
    font-family: inherit;
}

.seo-content-section {
    padding-bottom: 20px;
    background: transparent;
}

.seo-content-panel {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0 0 36px;
}

.seo-content-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.seo-content-text p {
    margin: 0 0 8px;
}

.seo-content-text p:last-child {
    margin-bottom: 0;
}

.seo-content-text p:first-child {
    color: #1D2939;
}

.seo-content-text a {
    color: #4e6f95;
    text-decoration: underline;
}

.seo-content-panel.is-collapsed .seo-content-text {
    max-height: 78px;
    overflow: hidden;
}

.seo-content-fade {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(242, 244, 247, 0) 0%,
        #f2f4f7 85%
    );
    pointer-events: none;
}

.seo-content-panel.is-collapsed .seo-content-fade {
    display: block;
}

.seo-content-toggle {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    border: none;
    background: transparent;
    color: #f26900;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 0;
}

.seo-content-toggle i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.seo-content-panel:not(.is-collapsed) .seo-content-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .product-list-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .double-banner,
    .product-list-section,
    .recent-zone,
    .seo-content-section {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .product-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .double-banner,
    .product-list-section,
    .recent-zone,
    .seo-content-section {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .product-list-toolbar {
        gap: 6px;
    }

    .product-list-brand-bar {
        gap: 5px;
    }

    .product-list-filter-button {
        min-height: 30px;
        min-width: 64px;
        border-width: 1px;
        border-radius: 8px;
        padding: 0 6px;
    }

    .product-list-filter-button i {
        font-size: 11px;
    }

    .product-list-filter-button span {
        font-size: 14px;
    }

    .product-list-chip {
        min-height: 30px;
        border-width: 1px;
        border-radius: 8px;
        padding: 0 7px;
        font-size: 14px;
    }

    .product-list-chip-brand {
        padding: 0 8px;
    }

    .product-list-brand-logo {
        max-width: 74px;
        height: 18px;
    }

    .product-list-chip i {
        font-size: 10px;
    }

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

    .product-list-card {
        padding: 8px;
    }

    .product-list-card .product-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 6px;
    }

    .product-list-card .product-name {
        font-size: 11px;
        line-height: 1.3;
        min-height: 34px;
        margin-bottom: 4px;
    }

    .product-list-card .product-tag {
        font-size: 9px;
        padding: 2px 5px;
        margin-bottom: 4px;
    }

    .product-list-card .price-row {
        gap: 4px;
        flex-wrap: wrap;
    }

    .product-list-card .price-new {
        font-size: 14px;
    }

    .product-list-card .price-old {
        font-size: 10px;
    }

    .product-list-card .product-meta {
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
    }

    .product-list-card .featured-compare-link {
        font-size: 10px;
        white-space: nowrap;
    }

    .product-list-card .featured-compare-link i {
        font-size: 10px;
    }

    .product-list-sort-option {
        font-size: 14px;
    }

    .product-list-sort-option + .product-list-sort-option::before {
        margin: 0 6px 0 5px;
        font-size: 14px;
    }

    .product-list-sort-option i {
        font-size: 11px;
    }

    .seo-content-panel {
        padding: 0 0 34px;
    }

    .seo-content-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .seo-content-text {
        font-size: 13px;
        line-height: 1.55;
    }
}

@media (max-width: 576px) {
    .double-banner,
    .product-list-section,
    .recent-zone,
    .seo-content-section {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .product-list-brand-bar {
        align-items: stretch;
    }

    .product-list-filter-button {
        position: sticky;
        left: 0;
        z-index: 2;
    }

    .product-list-brand-scroll {
        flex: 1;
        overflow-x: auto;
        white-space: nowrap;
    }

    .product-list-chip {
        min-height: 29px;
        padding: 0 8px;
    }

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

    .product-list-card {
        padding: 7px;
    }

    .product-list-card .product-name {
        font-size: 10px;
        min-height: 32px;
    }

    .product-list-card .price-new {
        font-size: 13px;
    }

    .product-list-sort-label {
        min-height: auto;
    }

    .seo-content-panel.is-collapsed .seo-content-text {
        max-height: 72px;
    }

    .seo-content-toggle {
        font-size: 13px;
    }

    .seo-content-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 360px) {
    .product-list-section .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .product-list-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-list-card {
        padding: 10px;
    }

    .product-list-card .product-name {
        font-size: 14px;
        line-height: 1.35;
        min-height: auto;
    }

    .product-list-card .product-tag {
        font-size: 12px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .product-list-card .price-row {
        gap: 6px;
    }

    .product-list-card .price-new {
        font-size: 20px;
    }

    .product-list-card .price-old {
        font-size: 14px;
    }

    .product-list-card .product-meta {
        font-size: 14px;
    }

    .product-list-card .featured-compare-link,
    .product-list-card .featured-compare-link i {
        font-size: 14px;
    }
}

/* === chi-tiet-san-pham.css === */
.pdp-page {
    background: #f2f4f7;
    padding: 8px 0 16px;
}

.pdp-breadcrumb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 14px !important;
    line-height: 1.4;
}

.pdp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.pdp-breadcrumb a {
    color: #1D2939;
    text-decoration: none;
}

.pdp-breadcrumb a:hover {
    color: #f35b04;
}

.pdp-breadcrumb i {
    color: #9ca3af;
    font-size: 14px;
}

.pdp-breadcrumb-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    white-space: nowrap;
}

.pdp-star-wrap {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f35b04;
}

.pdp-star-wrap strong {
    color: #f35b04;
    margin-left: 2px;
}

.pdp-social-pill {
    min-height: 22px;
    border: 1px solid #d7dce2;
    border-radius: 4px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    color: #1D2939;
    text-decoration: none;
    font-size: 14px !important;
    line-height: 1;
    font-weight: 600;
    background: #fff;
}

.pdp-main-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 8px;
    align-items: start;
}

.pdp-left-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-column: span 7;
    min-width: 0;
}

.pdp-right-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-column: span 5;
    min-width: 0;
}

.pdp-gallery-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 6px;
}

.pdp-spec-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 18px 20px;
}

.pdp-review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 18px 20px;
}

.pdp-buy-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px;
}

.pdp-side-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px;
}

.pdp-main-image {
    position: relative;
    height: 430px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, #42474f 0%, #2a313a 100%);
    color: #fff;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    gap: 12px;
    overflow: visible;
}

.pdp-main-image-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.pdp-main-image-title {
    margin: 0;
    font-size: 50px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.pdp-main-image-sub {
    margin: 6px 0 0;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #7dd3fc;
}

.pdp-main-image-note {
    margin: 8px 0 0;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    color: #facc15;
}

.pdp-main-image-photo {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px !important;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.pdp-thumb-list {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
    cursor: grab;
}

.pdp-thumb-list::-webkit-scrollbar {
    display: none;
}

.pdp-thumb-list.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.pdp-thumb {
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 3px;
    padding: 0;
    flex: 0 0 auto;
    overflow: hidden;
}

.pdp-thumb.is-active {
    border-color: #f35b04;
}

.pdp-thumb-image {
    width: 77px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
    margin: 0;
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pdp-tabs {
    border-bottom: 1px solid #eceff3;
    margin: 0;
    padding: 0 8px;
}

.pdp-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    margin: 0 12px 0 0;
    padding: 9px 0 7px;
    color: #6b7280;
    font-size: 14px !important;
    font-weight: 600;
}

.pdp-tabs .nav-link.active {
    color: #f35b04;
    border-bottom-color: #f35b04;
    background: transparent;
}

.pdp-tab-content {
    padding: 8px;
}

.pdp-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eef1f4;
}

.pdp-spec-table th {
    padding: 6px 8px;
    border-bottom: 1px solid #eef1f4;
    font-size: 14px !important;
    line-height: 1.45;
    width: 42%;
    font-weight: 600;
    color: #1D2939;
    background: #fafbfc;
}

.pdp-spec-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #eef1f4;
    color: #1D2939;
    font-size: 14px !important;
    line-height: 1.45;
}

.pdp-spec-table tr:last-child th,
.pdp-spec-table tr:last-child td {
    border-bottom: none;
}

.pdp-more-spec-btn {
    margin-top: 9px;
    min-height: 30px;
    border: 1px solid #f35b04;
    border-radius: 999px;
    background: #fff8f2;
    color: #f35b04;
    font-size: 14px !important;
    font-weight: 700;
    padding: 0 14px;
}

.pdp-highlight-list {
    margin: 0;
    padding-left: 18px;
}

.pdp-highlight-list li {
    margin-bottom: 6px;
    color: #1D2939;
    font-size: 14px !important;
    line-height: 1.5;
}

.pdp-block-title {
    margin: 0 0 0px;
    color: #1D2939;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.pdp-review-summary {
    border: 1px solid #edf0f3;
    border-radius: 4px;
    background: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-review-score {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid #f35b04;
    color: #f35b04;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex: 0 0 auto;
}

.pdp-review-score i {
    font-size: 14px;
    margin-left: 2px;
}

.pdp-review-note {
    margin: 0 0 6px;
    color: #1D2939;
    font-size: 14px !important;
    line-height: 1.5;
}

.pdp-review-btn {
    min-height: 30px;
    border: 1px solid #f35b04;
    border-radius: 4px;
    background: #f35b04;
    color: #fff;
    padding: 0 12px;
    font-size: 14px !important;
    font-weight: 700;
}

.pdp-event-buy-wrap {
    border: 5px solid #ff6a00;
    border-radius: 7px;
    background: #ff6a00;
    overflow: hidden;
    margin-bottom: 10px;
}

.pdp-event-buy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 46px;
    padding: 8px 10px;
    color: #fff;
    background: #ff6a00;
}

.pdp-event-buy-title {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 4px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.pdp-event-buy-title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdp-event-buy-title i {
    flex: 0 0 auto;
    color: #fff400;
    font-size: 18px;
    line-height: 1;
}

.pdp-event-countdown {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 5px;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.pdp-event-countdown-label {
    display: block;
}

.pdp-event-time-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
}

.pdp-event-time-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.pdp-event-countdown strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 5px;
    border-radius: 5px;
    background: #fff;
    color: #ff6a00;
    font-size: 14px;
    line-height: 1;
}

.pdp-event-countdown small {
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
}

.pdp-event-countdown b {
    padding-top: 6px;
    font-size: 16px;
    line-height: 1;
}

.pdp-event-buy-wrap .pdp-buy-card {
    border-radius: 3px;
}

.pdp-product-name {
    margin: 0 0 8px;
    color: #1D2939;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 6px;
}

.pdp-price-box {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdp-price-main {
    margin: 3px 0 0;
    color: #ef3f23;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

.pdp-price-old {
    margin: 3px 0 0;
    color: #9ca3af;
    font-size: 14px !important;
    text-decoration: line-through;
}

.pdp-promo-box {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 6px;
    padding: 0;
    margin-bottom: 8px;
    overflow: hidden;
}

.pdp-buy-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdp-btn-buy {
    min-height: 42px;
    border-radius: 10px;
    border: none;
    background: #f35b04;
    color: #fff;
    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pdp-btn-hotline {
    grid-column: auto;
    min-height: 62px;
    border-radius: 13px;
    border: none;
    background: #48BA4A;
    color: #fff;
    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 8px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pdp-btn-buy:hover {
    background: #e65304;
    box-shadow: 0 6px 14px rgba(243, 91, 4, 0.24);
    transform: translateY(-1px);
}

.pdp-btn-hotline:hover {
    background: #3fa641;
    box-shadow: 0 6px 14px rgba(72, 186, 74, 0.24);
    transform: translateY(-1px);
}

.pdp-side-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdp-side-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-bottom: 1px solid #edf0f3;
    padding-bottom: 6px;
}

.pdp-side-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pdp-side-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    margin: 0;
    flex: 0 0 auto;
    font-size: 14px !important;
}

.pdp-side-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pdp-side-name {
    color: #1D2939;
    font-size: 14px !important;
    line-height: 1.35;
}

.pdp-side-price {
    color: #ef3f23;
    font-size: 16px;
    line-height: 1;
}

.pdp-product-strip {
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px;
}

.pdp-strip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.pdp-strip-carousel {
    position: relative;
}

.pdp-strip-carousel .split-products-nav-prev {
    left: -21px;
}

.pdp-strip-carousel .split-products-nav-next {
    right: -21px;
}

.pdp-strip-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: none;
    cursor: default;
}

.pdp-strip-grid::-webkit-scrollbar {
    display: none;
}

.pdp-strip-grid.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.pdp-strip-card {
    flex: 0 0 calc((100% - 32px) / 5);
    max-width: calc((100% - 32px) / 5);
    min-width: calc((100% - 32px) / 5);
    border-radius: 4px;
    margin: 8px 0px;
    padding: 8px;
}

.pdp-strip-card .product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

@media (max-width: 992px) {
    .pdp-breadcrumb-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .pdp-main-image {
        height: auto;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .pdp-page {
        padding: 6px 0 14px;
    }

    .pdp-breadcrumb-meta {
        width: 100%;
        white-space: normal;
        flex-wrap: wrap;
    }

    .pdp-main-image-photo {
        width: 100%;
        min-height: 160px;
    }
}

@media (max-width: 576px) {
    .pdp-page .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .pdp-tabs {
        padding-left: 8px;
        padding-right: 8px;
    }

    .pdp-tabs .nav-link {
        font-size: 12px;
        margin-right: 10px;
    }

    .pdp-price-main {
        font-size: 22px;
    }

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

.pdp-main-image.image-slot {
    border: none;
}

.pdp-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 42px;
    height: 42px;
    border: 1px solid #d8dee6;
    background: #fff;
    color: #2f3a45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0;
    opacity: 0.62;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdp-gallery-nav i {
    font-size: 24px;
    line-height: 1;
}

.pdp-gallery-nav-prev {
    left: -10px;
}

.pdp-gallery-nav-next {
    right: -10px;
}

.pdp-gallery-nav:hover {
    background: #f35b04;
    border-color: #f35b04;
    color: #fff;
    opacity: 1;
}

.pdp-thumb-video .pdp-thumb-image {
    aspect-ratio: 1 / 1;
    font-size: 22px;
    color: #f35b04;
}

.pdp-buy-summary {
    margin: 0 0 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e5e7eb;
}

.pdp-buy-product-name {
    margin: 0 0 5px;
    color: #1D2939;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.pdp-buy-product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pdp-buy-product-meta .pdp-star-wrap {
    color: #f35b04;
    font-size: 13px;
    gap: 1px;
}

.pdp-buy-product-meta .pdp-review-count,
.pdp-buy-product-meta .pdp-meta-link,
.pdp-buy-product-meta .pdp-meta-sep {
    font-size: 12px;
}

.pdp-promo-box li {
    font-size: 14px !important;
}

.pdp-side-old {
    color: #9ca3af;
    font-size: 14px !important;
    text-decoration: line-through;
}

.pdp-strip-carousel .split-products-nav {
    width: 40px;
    height: 40px;
}

.pdp-strip-card .product-name {
    font-size: 14px !important;
    line-height: 1.35;
    min-height: 30px;
    margin-bottom: 4px;
}

.pdp-strip-card .product-tag {
    font-size: 14px !important;
    line-height: 1;
    min-height: 19px;
    border-radius: 2px;
    padding: 0 6px;
}

.pdp-strip-card .price-new {
    font-size: 16px;
}

.pdp-strip-card .price-old {
    font-size: 14px !important;
}

.pdp-strip-card .product-meta {
    font-size: 14px !important;
    gap: 4px;
}

.pdp-strip-card .featured-compare-link,
.pdp-strip-card .featured-compare-link i {
    font-size: 14px !important;
}

@media (max-width: 1200px) {
    .pdp-main-grid {
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .pdp-main-image-title {
        font-size: 42px;
    }

    .pdp-main-image-sub {
        font-size: 35px;
    }

    .pdp-main-image-note {
        font-size: 27px;
    }

    .pdp-strip-card {
        flex: 0 0 calc((100% - 24px) / 4);
        max-width: calc((100% - 24px) / 4);
        min-width: calc((100% - 24px) / 4);
    }
}

@media (max-width: 768px) {
    .pdp-main-image-title {
        font-size: 34px;
    }

    .pdp-main-image-sub {
        font-size: 28px;
    }

    .pdp-main-image-note {
        font-size: 22px;
    }

}

@media (max-width: 576px) {
    .pdp-main-image-title {
        font-size: 28px;
    }

    .pdp-main-image-sub {
        font-size: 22px;
    }

    .pdp-main-image-note {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .pdp-main-grid {
        grid-template-columns: 1fr !important;
    }

    .pdp-left-col {
        grid-column: span 12;
    }

    .pdp-right-col {
        grid-column: span 12;
        order: 2;
    }
}

/* === pdp-header-topline === */
.pdp-breadcrumb-wrap--top {
    display: block;
    margin-bottom: 4px;
}

.pdp-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d1d5db;
}

.pdp-title-main {
    margin: 0;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.pdp-title-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pdp-meta-sep {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1;
}

.pdp-title-meta .pdp-star-wrap {
    gap: 1px;
    color: #f35b04;
    font-size: 16px;
}

.pdp-review-count {
    color: #1D2939;
    font-size: 14px;
    line-height: 1;
}

.pdp-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f35b04;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.pdp-meta-link i {
    font-size: 14px;
}

.pdp-title-meta .pdp-social-pill {
    min-height: 28px;
    border-radius: 4px;
    border-color: #1f6bc1;
    background: #1f6bc1;
    color: #fff;
    font-size: 14px !important;
    font-weight: 600;
}

.pdp-social-actions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 1200px) {
    .pdp-title-main {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .pdp-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pdp-title-main {
        font-size: 28px;
    }
}

.pdp-price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.35;
    flex-wrap: wrap;
}

.pdp-price-label {
    color: #1D2939;
    font-size: clamp(14px, 1vw, 24px);
    line-height: 1.5;
    font-weight: 500;
}

.pdp-price-line .pdp-price-main {
    margin: 0;
    color: #ef3f23;
    line-height: 1.3;
}

.pdp-price-line .pdp-price-old {
    margin: 0;
    color: #6b7280;
    font-size: clamp(16px, 1.2vw, 20px) !important;
    line-height: 1.35;
    text-decoration: line-through;
}

.pdp-price-discount {
    color: #ef3f23;
    font-size: clamp(16px, 1.1vw, 28px);
    line-height: 1.45;
}

.pdp-price-vat {
    color: #1D2939;
    font-size: clamp(14px, 1vw, 24px);
    line-height: 1.5;
}

.pdp-stock-line {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.45;
    flex-wrap: wrap;
}

.pdp-stock-label {
    color: #1D2939;
    font-size: 14px;
    line-height: 1.55;
}

.pdp-warehouse-field {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 28px;
}

.pdp-warehouse-label {
    color: #1D2939;
    font-size: 14px;
    line-height: 1.55;
}

.pdp-warehouse-select {
    appearance: none;
    border: 0;
    background-color: transparent;
    color: #f35b04;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    padding: 0 18px 0 0;
    cursor: pointer;
    outline: 0;
    background-image:
        linear-gradient(45deg, transparent 50%, #f35b04 50%),
        linear-gradient(135deg, #f35b04 50%, transparent 50%);
    background-position:
        calc(100% - 8px) 50%,
        calc(100% - 3px) 50%;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

.pdp-warehouse-select:focus {
    color: #dc6119;
}

.pdp-warehouse-select option {
    color: #1D2939;
}

.pdp-warehouse-pill {
    border: 1px solid transparent;
    background: #eceff3;
    color: #1D2939;
    border-radius: 5px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.pdp-warehouse-pill.is-active,
.pdp-warehouse-pill.active {
    background: #fff6eb;
    border-color: #f35b04;
    color: #f35b04;
    font-weight: 700;
}

.pdp-stock-status {
    color: #1f9d45;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.pdp-stock-status.is-in-stock {
    color: #1f9d45;
}

.pdp-stock-status.is-out-of-stock {
    color: #d32f2f;
}

.pdp-promo-head {
    border: 0;
    border-bottom: 1px solid #eceff3;
    background: #fffaf5;
    border-radius: 0;
    padding: 8px 10px;
    margin: 0;
}

.pdp-promo-head .pdp-promo-title {
    margin: 0;
    color: #f35b04;
    font-size: 16px !important;
    line-height: 1;
    font-weight: 700;
}

.pdp-promo-expire {
    margin: 6px 0 0;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.5;
}

.pdp-promo-body {
    padding: 10px;
    background: #fff;
}

.pdp-promo-list {
    margin: 0;
    padding: 0 0 0 18px;
}

.pdp-promo-list li {
    margin-bottom: 6px;
    color: #1D2939;
    line-height: 1.5;
}

.pdp-promo-list li:last-child {
    margin-bottom: 0;
}

.pdp-policy-card {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 8px;
}

.pdp-policy-head {
    border: 0;
    border-bottom: 1px solid #eceff3;
    background: #fffaf5;
    border-radius: 0;
    padding: 8px 10px;
    margin: 0;
}

.pdp-policy-title {
    margin: 0;
    color: #f35b04;
    font-size: 16px !important;
    line-height: 1;
    font-weight: 700;
}

.pdp-policy-body {
    padding: 10px;
    background: #fff;
}

.pdp-policy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdp-policy-list li {
    color: #1D2939;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.pdp-policy-list i {
    color: #f35b04;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 1px;
}

.pdp-detail-more-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: #d71920;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.pdp-detail-more-link:hover {
    color: #b51218;
    text-decoration: underline;
}

.pdp-order-hotline {
    margin: 0;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
    padding: 10px 0;
    color: #1D2939;
    line-height: 1.45;
    text-align: center;
}

.pdp-order-hotline a {
    color: #3f6dc5;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.pdp-buy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.pdp-btn-cart {
    min-height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    border: 1px solid #f35b04;
    background: #fff;
    color: #f35b04;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.pdp-btn-cart:hover {
    border-color: #f35b04;
    background: #f35b04;
    color: #fff;
    box-shadow: 0 6px 14px rgba(243, 91, 4, 0.24);
    transform: translateY(-1px);
}

.pdp-btn-cart i {
    font-size: 18px;
    line-height: 1;
}

.pdp-btn-cart span {
    font-size: 16px;
    line-height: 1.2;
}

.pdp-btn-buy span {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
}

.pdp-btn-hotline-title {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.pdp-btn-hotline-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 300;
}

@media (max-width: 576px) {
    .pdp-buy-row {
        grid-template-columns: 1fr;
    }

    .pdp-btn-hotline {
        min-height: 56px;
    }
}

@media (max-width: 768px) {
    .pdp-thumb-image {
        width: 67px;
    }
}

.pdp-highlight-title {
    margin: 0 0 14px;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.pdp-highlight-card .pdp-spec-rich-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pdp-highlight-card .pdp-spec-rich-content table {
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    border: 1px solid #d8dbe0;
    border-radius: 8px;
    border-spacing: 0;
    border-collapse: separate;
    overflow: hidden;
    background: #fff;
}

.pdp-highlight-card .pdp-spec-rich-content table th {
    border: 0;
    border-right: 1px solid #d8dbe0;
    border-bottom: 1px solid #d8dbe0;
    padding: 12px 14px;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
    word-break: break-word;
    background: #f8fafc;
    font-weight: 700;
}

.pdp-highlight-card .pdp-spec-rich-content table td {
    border: 0;
    border-right: 1px solid #d8dbe0;
    border-bottom: 1px solid #d8dbe0;
    padding: 12px 14px;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
    word-break: break-word;
}

.pdp-highlight-card .pdp-spec-rich-content table th:last-child,
.pdp-highlight-card .pdp-spec-rich-content table td:last-child {
    border-right: 0;
}

.pdp-highlight-card .pdp-spec-rich-content table tr:last-child th,
.pdp-highlight-card .pdp-spec-rich-content table tr:last-child td {
    border-bottom: 0;
}

.pdp-highlight-card .pdp-spec-rich-content table td:first-child {
    background: #f8fafc;
    color: #1D2939;
    font-weight: 700;
}

.pdp-highlight-card .pdp-spec-rich-content table td p,
.pdp-highlight-card .pdp-spec-rich-content table th p {
    margin: 0;
}

.pdp-spec-card .pdp-tabs {
    border: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pdp-spec-card .pdp-tabs .nav-item {
    min-width: 0;
}

.pdp-spec-card .pdp-tabs .nav-link {
    width: 100%;
    min-height: 30px;
    border: 1px solid #d8dbe0;
    border-radius: 6px;
    background: #fff;
    color: #1D2939;
    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin: 0;
}

.pdp-spec-card .pdp-tabs .nav-link.active {
    background: #fff6eb;
    border-color: #f35b04;
    color: #f35b04;
}

.pdp-spec-card .pdp-tab-content {
    padding: 0;
}

.pdp-spec-expandable {
    position: relative;
}

.pdp-spec-text {
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.pdp-spec-line {
    margin: 0;
    display: flex;
    gap: 14px;
    padding: 12px 12px;
    border-bottom: 1px solid #d9dde3;
    font-size: 16px;
    line-height: 1.5;
    color: #1D2939;
}

.pdp-spec-key {
    flex: 0 0 31%;
    color: #1D2939;
    font-weight: 700;
}

.pdp-spec-value {
    flex: 1;
    min-width: 0;
    font-weight: 500;
}

.pdp-spec-fade {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 78%);
    pointer-events: none;
}

.pdp-spec-expandable.is-collapsed .pdp-spec-fade {
    display: block;
}

.pdp-spec-card .pdp-more-spec-btn {
    margin: 18px auto 0;
    min-height: 36px;
    min-width: 350px;
    border: 1px solid #f35b04;
    border-radius: 5px;
    background: #fff;
    color: #f35b04;
    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 18px;
}

.pdp-spec-card .pdp-more-spec-btn i {
    font-size: 22px;
    line-height: 1;
}

.pdp-info-content {
    border-top: 1px solid #d9dde3;
    padding-top: 10px;
}

.pdp-info-content p {
    margin: 0 0 10px;
    color: #1D2939;
    font-size: 16px;
    line-height: 1.6;
}

.pdp-info-content p:last-child {
    margin-bottom: 0;
}

.pdp-info-content .seo-content-toc {
    display: none;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: rgba(255, 250, 245, 0.75);
}

.pdp-info-content .seo-content-toc-title {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f35b04;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.pdp-info-content .seo-content-toc-list {
    display: none;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.9;
}

.pdp-info-content .seo-content-toc.is-open .seo-content-toc-list {
    display: block;
}

.pdp-info-content .seo-content-toc-toggle-icon {
    font-size: 18px;
    transition: transform 0.2s;
}

.pdp-info-content .seo-content-toc.is-open .seo-content-toc-toggle-icon {
    transform: rotate(180deg);
}

.pdp-info-content .seo-content-toc-list a {
    color: #f35b04;
    text-decoration: none;
    transition: all 0.2s;
}

.pdp-info-content .seo-content-toc-list a:hover {
    color: #f35b04;
    padding-left: 4px;
}

.pdp-info-content .seo-content-toc-list .toc-h2 {
    font-weight: 600;
    margin-left: 0;
}

.pdp-info-content .seo-content-toc-list .toc-h3 {
    margin-left: 1rem;
}

.pdp-info-content .seo-content-toc-list .toc-h4 {
    margin-left: 2rem;
    font-size: 13px;
}

@media (max-width: 768px) {
    .pdp-spec-card {
        padding: 12px 12px 14px;
    }

    .pdp-spec-card .pdp-tabs {
        gap: 10px;
        margin-bottom: 12px;
    }

    .pdp-spec-card .pdp-tabs .nav-item {
        flex: 1 1 0;
        max-width: none;
    }

    .pdp-spec-card .pdp-tabs .nav-link {
        min-height: 44px;
        border-radius: 12px;
        font-size: 14px !important;
    }

    .pdp-spec-line {
        font-size: 14px;
        padding: 10px 8px;
        gap: 10px;
        flex-direction: column;
    }

    .pdp-spec-key {
        flex: 0 0 auto;
    }

    .pdp-spec-card .pdp-more-spec-btn {
        min-width: 100%;
        min-height: 46px;
        font-size: 14px !important;
    }

    .pdp-info-content p {
        font-size: 14px;
    }

    .pdp-info-content .seo-content-toc {
        margin-bottom: 10px;
        padding: 9px 10px;
    }

    .pdp-info-content .seo-content-toc-title {
        font-size: 13px;
    }

    .pdp-info-content .seo-content-toc-list {
        font-size: 13px;
        line-height: 1.8;
    }

    .pdp-highlight-card .pdp-spec-rich-content table th,
    .pdp-highlight-card .pdp-spec-rich-content table td {
        padding: 10px 11px;
        font-size: 13px;
    }
}

/* === product-compare === */
.product-compare-dock {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 1049;
    width: min(1190px, calc(100vw - 48px));
    color: #1D2939;
}

.product-compare-dock.is-collapsed {
    width: auto;
    left: 18px;
    right: auto;
    bottom: 18px;
    transform: none;
}

.product-compare-dock-inner {
    border: 1px solid #d8dbe0;
    border-radius: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.16);
}

.product-compare-dock.is-collapsed .product-compare-dock-inner {
    border-color: #f35b04;
    border-radius: 8px;
    padding: 0;
    background: #f35b04;
    box-shadow: 0 8px 22px rgba(243, 91, 4, 0.28);
}

.product-compare-dock.is-collapsed .product-compare-dock-inner:hover {
    border-color: #d14d00;
    background: #d14d00;
}

.product-compare-dock-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.product-compare-dock:not(.is-collapsed) .product-compare-dock-head {
    height: 0;
    position: relative;
    z-index: 1;
}

.product-compare-dock-title {
    min-width: 0;
    flex: 1 1 auto;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: inherit;
    text-align: left;
}

.product-compare-dock:not(.is-collapsed) .product-compare-dock-title {
    display: none;
}

.product-compare-dock-title i {
    display: none;
    font-size: 18px;
    line-height: 1;
}

.product-compare-dock-title strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.3;
}

.product-compare-dock-title span {
    flex: 0 0 auto;
    color: #f35b04;
    font-size: 13px;
    font-weight: 700;
}

.product-compare-dock.is-collapsed .product-compare-dock-title {
    gap: 8px;
    padding: 12px 14px;
    color: #fff;
}

.product-compare-dock.is-collapsed .product-compare-dock-title i {
    display: inline-flex;
    order: 2;
}

.product-compare-dock.is-collapsed .product-compare-dock-title span {
    display: inline-flex;
    order: 3;
    border-radius: 999px;
    padding: 2px 6px;
    background: #fff;
    color: #f35b04;
    font-size: 12px;
}

.product-compare-dock.is-collapsed .product-compare-dock-title strong {
    order: 1;
    font-weight: 700;
}

.product-compare-dock.is-collapsed .product-compare-dock-title:hover {
    color: #fff;
}

.product-compare-toggle {
    min-height: 40px;
    flex: 0 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px 8px 0 0;
    margin: -40px 12px 0 0;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    color: #1D2939;
    font-size: 13px;
    line-height: 1.2;
    box-shadow: 0 -5px 16px rgba(15, 23, 42, 0.12);
}

.product-compare-dock.is-collapsed .product-compare-toggle {
    display: none;
}

.product-compare-toggle:hover,
.product-compare-dock-title:hover {
    color: #f35b04;
}

.product-compare-dock-body[hidden] {
    display: none;
}

.product-compare-dock-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 224px;
    align-items: stretch;
}

.product-compare-dock-items {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.product-compare-item {
    min-width: 0;
    min-height: 128px;
    border-right: 1px solid #d8dbe0;
    padding: 15px 34px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
}

.product-compare-item img,
.product-compare-item-placeholder {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 0;
    border-radius: 0;
    object-fit: contain;
    background: #fff;
}

.product-compare-item span {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    text-align: center;
}

.product-compare-item button {
    position: absolute;
    top: 9px;
    right: 16px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #8f949b;
    font-size: 28px;
    line-height: 1;
}

.product-compare-add-slot {
    min-width: 0;
    min-height: 128px;
    border: 0;
    border-right: 1px solid #d8dbe0;
    padding: 18px 12px 16px;
    background: #fff;
    color: #525d68;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.product-compare-add-slot i {
    width: 48px;
    height: 48px;
    border: 1px dashed #b8c0cc;
    border-radius: 8px;
    color: #8f99a8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}

.product-compare-add-slot span {
    color: #525d68;
    font-size: 13px;
    line-height: 1.35;
}

.product-compare-add-slot:hover i,
.product-compare-add-slot:focus-visible i {
    border-color: #f35b04;
    color: #f35b04;
}

.compare-search-modal .modal-content {
    border: 0;
    border-radius: 8px;
}

.compare-search-modal .modal-header {
    padding: 14px 18px;
}

.compare-search-modal .modal-body {
    display: flex;
    flex-direction: column;
    height: min(620px, calc(100vh - 170px));
    min-height: 420px;
    overflow: hidden;
}

.compare-search-modal .modal-title {
    margin: 0;
    color: #1D2939;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.compare-search-box {
    position: relative;
    margin-bottom: 12px;
}

.compare-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8f99a8;
    font-size: 18px;
    line-height: 1;
}

.compare-search-box .form-control {
    min-height: 42px;
    padding-left: 40px;
    border-radius: 8px;
}

.compare-search-state {
    min-height: 20px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
}

.compare-search-results {
    display: grid;
    flex: 1 1 auto;
    align-content: start;
    gap: 8px;
    min-height: 0;
    overflow-y: auto;
    padding-right: 2px;
}

.compare-search-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "product action"
        "meta action"
        "price action";
    align-items: center;
    column-gap: 12px;
    row-gap: 3px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

.compare-search-product {
    grid-area: product;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #1D2939;
    text-decoration: none;
}

.compare-search-product img,
.compare-search-placeholder {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.compare-search-product span {
    min-width: 0;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compare-search-meta {
    grid-area: meta;
    padding-left: 64px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
}

.compare-search-price {
    grid-area: price;
    padding-left: 64px;
    color: #f35b04;
    font-size: 14px;
    font-weight: 700;
}

.compare-search-add {
    grid-area: action;
    min-width: 76px;
    min-height: 36px;
    border: 1px solid #f35b04;
    border-radius: 8px;
    background: #f35b04;
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

.compare-search-add:hover,
.compare-search-add:focus-visible {
    border-color: #d14d00;
    background: #d14d00;
}

.product-compare-dock-message {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    padding: 0 16px 10px;
    color: #b45309;
    font-size: 12px;
    line-height: 1.4;
}

.product-compare-dock-message:empty {
    display: none;
}

.product-compare-dock-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
}

.product-compare-clear {
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #f35b04;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
}

.product-compare-submit {
    width: 148px;
    border: 1px solid #f35b04;
    border-radius: 0;
    background: #f35b04;
    color: #fff;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 700;
}

.compare-page {
    padding: 24px 0 36px;
    background: #f5f6f8;
}

.compare-page-head {
    margin-bottom: 16px;
}

.compare-page-head h1 {
    margin: 10px 0 6px;
    color: #1D2939;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.compare-page-head p,
.compare-page-state {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid #d8dbe0;
    border-radius: 10px;
    background: #fff;
}

.compare-table {
    width: 100%;
    min-width: 780px;
    border-collapse: separate;
    border-spacing: 0;
}

.compare-table th,
.compare-table td {
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 14px;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
}

.compare-table tr > *:last-child {
    border-right: 0;
}

.compare-table tbody tr:last-child > * {
    border-bottom: 0;
}

.compare-table thead th {
    background: #f8fafc;
    color: #1D2939;
    font-weight: 700;
}

.compare-table thead th:first-child,
.compare-table tbody th[scope="row"] {
    width: 220px;
    background: #f8fafc;
    color: #1D2939;
    font-weight: 700;
}

.compare-product-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.compare-product-head img,
.compare-product-placeholder {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
}

.compare-product-head span {
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
}

.compare-product-price {
    margin-top: 8px;
    color: #f35b04;
    font-size: 15px;
    font-weight: 700;
}

.compare-product-old {
    color: #9ca3af;
    font-size: 12px;
    text-decoration: line-through;
}

.compare-group-row th {
    background: #fff6eb !important;
    color: #c2410c !important;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12px;
}

.compare-private-row th {
    background: #f8fafc !important;
    color: #1D2939 !important;
    font-size: 12px;
    font-weight: 700;
}

.compare-empty {
    color: #9ca3af;
}

.compare-table .is-different {
    display: inline-block;
    border-radius: 6px;
    padding: 3px 6px;
    background: #fff7ed;
    color: #9a3412;
}

.compare-mobile-view {
    display: none;
}

@media (max-width: 768px) {
    .product-compare-dock {
        width: calc(100vw - 18px);
    }

    .product-compare-dock:not(.is-collapsed) {
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        z-index: 1051;
        width: 100vw;
    }

    body.modal-open .product-compare-dock:not(.is-collapsed) {
        z-index: 1040;
    }

    .product-compare-dock.is-collapsed {
        left: 10px;
        right: auto;
        bottom: 10px;
        width: auto;
    }

    .product-compare-dock:not(.is-collapsed) .product-compare-dock-inner {
        position: relative;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        box-shadow: 0 -6px 18px rgba(15, 23, 42, 0.14);
    }

    .product-compare-dock:not(.is-collapsed) .product-compare-dock-head {
        position: static;
    }

    .product-compare-dock:not(.is-collapsed) .product-compare-toggle {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 2;
        width: 50%;
        min-height: 48px;
        margin: 0;
        border-width: 1px 1px 0 0;
        border-radius: 0;
        background: #fff;
        color: #f35b04;
        font-size: 15px;
        font-weight: 600;
        box-shadow: none;
    }

    .product-compare-dock:not(.is-collapsed) .product-compare-toggle i {
        display: none;
    }

    .product-compare-dock-body {
        grid-template-columns: 1fr;
    }

    .product-compare-dock-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-compare-item {
        min-height: 148px;
        border-right: 1px solid #d8dbe0;
        border-bottom: 1px solid #d8dbe0;
        padding: 20px 8px 10px;
        flex-direction: column;
        text-align: center;
    }

    .product-compare-item:nth-child(3n) {
        border-right: 0;
    }

    .product-compare-item img,
    .product-compare-item-placeholder {
        width: 62px;
        height: 48px;
        flex-basis: 48px;
    }

    .product-compare-item span {
        font-size: 13px;
        line-height: 1.3;
        text-align: center;
        -webkit-line-clamp: 3;
    }

    .product-compare-item button {
        top: 4px;
        right: 8px;
        font-size: 26px;
    }

    .product-compare-add-slot {
        min-height: 148px;
        border-right: 1px solid #d8dbe0;
        border-bottom: 1px solid #d8dbe0;
        padding: 20px 8px 10px;
    }

    .product-compare-add-slot:nth-child(3n) {
        border-right: 0;
    }

    .product-compare-add-slot i {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .product-compare-add-slot span {
        font-size: 13px;
    }

    .compare-search-modal .modal-dialog {
        margin: 10px;
    }

    .compare-search-modal .modal-body {
        height: min(560px, calc(100vh - 130px));
        min-height: 360px;
    }

    .compare-search-item {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "product"
            "meta"
            "price"
            "action";
    }

    .compare-search-meta,
    .compare-search-price {
        padding-left: 64px;
    }

    .compare-search-add {
        width: 100%;
        margin-top: 6px;
    }

    .product-compare-dock-message {
        grid-row: 2;
        padding: 8px 12px;
    }

    .product-compare-dock-actions {
        grid-column: 1;
        grid-row: 3;
        width: 50%;
        min-height: 48px;
        margin-left: 50%;
        padding: 0;
        display: block;
    }

    .product-compare-clear {
        display: none;
    }

    .product-compare-submit {
        width: 100%;
        min-height: 48px;
        border-radius: 0;
        font-size: 15px;
    }

    .compare-page-head h1 {
        font-size: 22px;
    }

    .compare-table-wrap {
        display: none;
    }

    .compare-mobile-view {
        display: block;
    }

    .compare-mobile-products {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
    }

    .compare-mobile-product,
    .compare-mobile-section,
    .compare-mobile-spec {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
    }

    .compare-mobile-product {
        min-width: 0;
        padding: 10px;
    }

    .compare-mobile-product-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: inherit;
        text-align: center;
        text-decoration: none;
    }

    .compare-mobile-product-link img,
    .compare-mobile-product-link .compare-product-placeholder {
        width: 62px;
        height: 62px;
        flex: 0 0 62px;
        object-fit: contain;
    }

    .compare-mobile-product-link span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        font-size: 12px;
        line-height: 1.35;
    }

    .compare-mobile-product .compare-product-price,
    .compare-mobile-product .compare-product-old {
        text-align: center;
    }

    .compare-mobile-section {
        margin-top: 12px;
        overflow: hidden;
    }

    .compare-mobile-section h2 {
        margin: 0;
        padding: 11px 12px;
        background: #fff6eb;
        color: #c2410c;
        font-size: 13px;
        line-height: 1.35;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .compare-mobile-spec {
        margin: 10px;
        overflow: hidden;
    }

    .compare-mobile-spec h3 {
        margin: 0;
        padding: 10px 12px;
        border-bottom: 1px solid #e5e7eb;
        background: #f8fafc;
        color: #1D2939;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 700;
    }

    .compare-mobile-values {
        display: grid;
        gap: 0;
    }

    .compare-mobile-value {
        display: grid;
        gap: 5px;
        padding: 10px 12px;
        border-bottom: 1px solid #edf0f3;
    }

    .compare-mobile-value:last-child {
        border-bottom: 0;
    }

    .compare-mobile-value strong {
        color: #6b7280;
        font-size: 12px;
        line-height: 1.35;
        font-weight: 700;
    }

    .compare-mobile-value span {
        color: #1D2939;
        font-size: 14px;
        line-height: 1.45;
    }

    .compare-mobile-empty {
        margin: 0;
        padding: 14px 12px;
        color: #6b7280;
        background: #fff;
        font-size: 14px;
        line-height: 1.5;
    }
}

.pdp-review-heading {
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c8ccd2;
    color: #1D2939;
    font-size: 17px !important;
    line-height: 1.35;
    font-weight: 600;
    text-align: center;
}

.pdp-review-overview-card {
    border: 1px solid #d4d7dc;
    background: #fff;
    display: grid;
    grid-template-columns: 27% 46% 27%;
    margin-bottom: 16px;
    overflow: hidden;
}

.pdp-review-overview-left {
    border-right: 1px solid #d4d7dc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 14px 12px;
}

.pdp-review-overall-score {
    margin: 0;
    color: #f35b04;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pdp-review-overall-score i {
    font-size: 36px;
    line-height: 1;
}

.pdp-review-overall-label {
    margin: 0;
    color: #1D2939;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.pdp-review-overview-mid {
    border-right: 1px solid #d4d7dc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 14px 12px;
}

.pdp-review-rate-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.pdp-review-rate-star {
    color: #1D2939;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pdp-review-rate-number {
    min-width: 12px;
    text-align: right;
}

.pdp-review-rate-star i {
    color: #8b98ab;
    font-size: 16px;
    line-height: 1;
}

.pdp-review-rate-bar {
    height: 12px;
    border-radius: 999px;
    background: #e7ebf0;
    overflow: hidden;
}

.pdp-review-rate-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f6cf57 0%, #e2bd45 100%);
}

.pdp-review-rate-note {
    color: #1D2939;
    font-size: 14px;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pdp-review-rate-percent {
    color: #1D2939;
    font-weight: 700;
}

.pdp-review-rate-dot {
    color: #9ca3af;
}

.pdp-review-rate-count {
    color: #1D2939;
    font-weight: 500;
}

.pdp-review-rate-row.is-empty .pdp-review-rate-bar span {
    width: 0 !important;
}

.pdp-review-rate-row.is-active .pdp-review-rate-star i {
    color: #e2bd45;
}

.pdp-review-overview-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 14px;
    padding-left: 16px;
    padding-bottom: 14px;
    padding-right: 16px;
}

.pdp-review-cta {
    min-height: 50px;
    min-width: 0;
    width: 100%;
    max-width: 320px;
    border: none;
    border-radius: 5px;
    background: #f35b04;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    padding: 0 18px;
}

.pdp-review-item {
    margin-top: 0;
    border-top: none;
    padding: 4px 6px 0;
}

.pdp-review-item.is-hidden {
    display: none;
}

.pdp-review-user {
    margin: 0 0 10px;
    color: #1D2939;
    font-size: 20px !important;
    line-height: 1.3;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.pdp-review-user-sep {
    margin: 0 8px;
    color: #9ca3af;
    font-size: 16px !important;
    line-height: 1;
}

.pdp-review-user-time {
    color: #6b7280;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.3;
}

.pdp-review-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.pdp-review-stars {
    margin: 0;
    color: #f35b04;
    font-size: 17px !important;
    line-height: 1;
    display: inline-flex;
    gap: 2px;
}

.pdp-review-line-sep {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1;
}

.pdp-review-line-note {
    color: #1D2939;
    font-size: 17px;
    line-height: 1.4;
}

.pdp-review-content {
    margin: 0 0 14px;
    color: #1D2939;
    font-size: 17px !important;
    line-height: 1.5;
}

.pdp-review-media-trigger {
    border: none;
    border-radius: 6px;
    padding: 0;
    background: transparent;
    line-height: 0;
    cursor: pointer;
}

.pdp-review-meta {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #1D2939;
    font-size: 17px;
    line-height: 1.4;
}

.pdp-review-meta i {
    color: #f35b04;
    font-size: 26px;
    line-height: 1;
}

.pdp-review-time {
    color: #9ca3af;
}

#pdpReviewMediaModal .modal-content {
    background: #1D2939;
    border: none;
}

#pdpReviewMediaModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

#pdpReviewMediaModal .modal-body {
    padding: 12px;
    text-align: center;
}

#pdpReviewMediaPreview {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.pdp-review-footer {
    margin-top: 14px;
    border-top: 1px solid #d4d7dc;
    padding-top: 14px;
    display: flex;
    justify-content: center;
}

.pdp-review-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.pdp-review-footer .pdp-review-cta {
    min-height: 50px;
    min-width: 0;
    width: 340px;
    max-width: 100%;
}

.pdp-review-modal-dialog {
    max-width: 400px;
}

.pdp-review-modal-content {
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

.pdp-review-modal-header {
    border-bottom: none;
    padding: 14px 16px 6px;
}

.pdp-review-modal-header .modal-title {
    color: #1D2939;
    font-size: 16px !important;
    line-height: 1.3;
    font-weight: 700;
}

.pdp-review-modal-body {
    padding: 8px 12px 16px;
}

.pdp-review-modal-product {
    height: 82px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-review-modal-product img {
    width: auto;
    max-width: 130px;
    height: 82px;
    object-fit: contain;
}

.pdp-review-modal-product span {
    width: 82px;
    height: 82px;
    border: 1px solid #e4e7ec;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    font-size: 26px;
}

.pdp-review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdp-review-modal-textarea {
    min-height: 44px;
    resize: vertical;
    font-size: 13px !important;
}

.pdp-review-modal-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pdp-review-modal-field label {
    margin-bottom: 6px;
    color: #344054;
    font-size: 12px !important;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    display: block;
}

.pdp-review-modal-field label span {
    color: #e11d48;
}

.pdp-review-modal-field .form-control {
    min-height: 38px;
    font-size: 13px !important;
}

.pdp-review-rating-box {
    border-radius: 6px;
    background: rgba(255, 250, 245, 0.75);
    padding: 12px 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.pdp-review-rating-question {
    color: #1D2939;
    font-size: 12px !important;
    line-height: 1.5;
}

.pdp-review-rating-question span {
    white-space: nowrap;
}

.pdp-review-star-picker {
    display: grid;
    grid-template-columns: repeat(5, 42px);
    gap: 0;
}

.pdp-review-star-option {
    border: 0;
    background: transparent;
    color: #cfd4dc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0;
}

.pdp-review-star-option i {
    color: #cfd4dc;
    font-size: 24px;
    line-height: 1;
}

.pdp-review-star-option span {
    color: #c0c5cf;
    font-size: 12px !important;
    line-height: 1.2;
    white-space: nowrap;
}

.pdp-review-star-option.is-active i,
.pdp-review-star-option.is-selected i {
    color: #f35b04;
}

.pdp-review-star-option.is-active span,
.pdp-review-star-option.is-selected span {
    color: #f35b04;
}

.pdp-review-modal-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 176px;
    gap: 10px;
    align-items: center;
}

.pdp-review-file-button {
    margin: 0;
    min-height: 32px;
    color: #667085;
    font-size: 12px !important;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.pdp-review-file-button i {
    width: 24px;
    height: 24px;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    color: #98a2b3;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pdp-review-file-button input {
    display: none;
}

.pdp-review-submit-btn {
    min-height: 32px;
    border: none;
    border-radius: 4px;
    background: #f35b04;
    color: #fff;
    font-size: 12px !important;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 12px;
}

.pdp-review-media-note {
    min-height: 16px;
    color: #667085;
    font-size: 12px !important;
    line-height: 1.35;
    font-weight: 400;
}

.pdp-review-media-note.is-error {
    color: #ff0000;
}

.pdp-review-media-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdp-review-media-preview img {
    width: 58px;
    height: 46px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #e4e7ec;
}

@media (max-width: 575.98px) {
    .pdp-review-modal-dialog {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .pdp-review-modal-content {
        height: 100%;
        min-height: 100vh;
        border-radius: 0;
    }

    .pdp-review-modal-fields,
    .pdp-review-modal-actions,
    .pdp-review-rating-box {
        grid-template-columns: 1fr;
    }

    .pdp-review-star-picker {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .pdp-review-overview-card {
        grid-template-columns: 1fr;
    }

    .pdp-review-overview-left,
    .pdp-review-overview-mid {
        border-right: none;
        border-bottom: 1px solid #d4d7dc;
    }

    .pdp-review-rate-row {
        grid-template-columns: 52px minmax(0, 1fr) auto;
    }

    .pdp-review-cta {
        min-height: 58px;
        max-width: 280px;
        font-size: 18px;
        border-radius: 14px;
    }
}

@media (max-width: 576px) {
    .pdp-review-card {
        padding: 12px 10px 14px;
    }

    .pdp-review-heading {
        font-size: 15px;
    }

    .pdp-review-overall-score {
        font-size: 42px;
    }

    .pdp-review-overall-score i {
        font-size: 36px;
    }

    .pdp-review-overall-label {
        font-size: 14px;
    }

    .pdp-review-user {
        font-size: 18px !important;
    }

    .pdp-review-stars {
        font-size: 20px !important;
    }

    .pdp-review-line-note,
    .pdp-review-content,
}

@media (max-width: 768px) {
    .pdp-review-footer {
        display: none;
    }
}

/* === pdp-review-font-14 === */
.pdp-review-card .pdp-review-heading,
.pdp-review-card .pdp-review-overall-label,
.pdp-review-card .pdp-review-rate-star,
.pdp-review-card .pdp-review-rate-note,
.pdp-review-card .pdp-review-cta,
.pdp-review-card .pdp-review-user,
.pdp-review-card .pdp-review-line-note,
.pdp-review-card .pdp-review-content,
.pdp-review-card .pdp-review-meta,
.pdp-review-card .pdp-review-time,
.pdp-review-card .pdp-review-line-sep {
    font-size: 14px !important;
    line-height: 1.45;
}

/* === pdp-side-like-reference === */
.pdp-right-col .pdp-side-card {
    background: #fff;
    border: 1px solid #d9dee5;
    border-radius: 10px;
    padding: 12px 12px 8px;
}

.pdp-right-col .pdp-side-card .pdp-block-title {
    margin: 0 0 10px;
    color: #1D2939;
    font-size: 16px !important;
    line-height: 1.35;
    font-weight: 700;
}

.pdp-right-col .pdp-side-list {
    gap: 0;
}

.pdp-right-col .pdp-side-list.pdp-side-list-scrollable {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 4px;
}

.pdp-right-col .pdp-side-list.pdp-side-list-scrollable::-webkit-scrollbar {
    width: 6px;
}

.pdp-right-col
    .pdp-side-list.pdp-side-list-scrollable::-webkit-scrollbar-thumb {
    background: #d6dbe2;
    border-radius: 999px;
}

.pdp-right-col .pdp-side-item {
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e4ea;
}

.pdp-right-col .pdp-side-item:last-child {
    border-bottom: none;
    padding-bottom: 8px;
}

.pdp-right-col .pdp-side-thumb {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.35;
    flex: 0 0 100px;
}

.pdp-right-col .pdp-side-copy {
    align-self: stretch;
    justify-content: center;
    gap: 4px;
}

.pdp-right-col .pdp-side-name {
    color: #1D2939;
    font-size: 14px !important;
    line-height: 1.35;
    font-weight: 500;
}

.pdp-right-col .pdp-side-price {
    color: #ef3f23;
    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 700;
}

.pdp-right-col .pdp-side-old {
    color: #8f98a7;
    font-size: 14px !important;
    line-height: 1.2;
    text-decoration: line-through;
}

/* === pdp-responsive-pass === */
@media (max-width: 1100px) {
    .pdp-page {
        overflow-x: hidden;
    }

    .pdp-main-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .pdp-left-col,
    .pdp-right-col {
        grid-column: span 12 !important;
        display: contents;
    }

    .pdp-gallery-card {
        order: 1;
    }

    .pdp-buy-card,
    .pdp-event-buy-wrap {
        order: 2;
    }

    .pdp-spec-card {
        order: 3;
    }

    .pdp-review-card {
        order: 4;
    }

    .pdp-side-card {
        order: 5;
    }

    .pdp-main-grid > .pdp-gallery-card,
    .pdp-main-grid > .pdp-buy-card,
    .pdp-main-grid > .pdp-event-buy-wrap,
    .pdp-main-grid > .pdp-spec-card,
    .pdp-main-grid > .pdp-review-card,
    .pdp-main-grid > .pdp-side-card {
        width: 100%;
        min-width: 0;
    }

    .pdp-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pdp-title-main {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .pdp-title-meta {
        gap: 8px;
    }

    .pdp-review-overview-card {
        grid-template-columns: 1fr;
    }

    .pdp-review-overview-left,
    .pdp-review-overview-mid {
        border-right: none;
        border-bottom: 1px solid #d4d7dc;
    }

    .pdp-review-overview-right {
        padding-top: 10px;
        padding-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .pdp-page .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .pdp-breadcrumb-wrap {
        margin-bottom: 6px;
    }

    .pdp-main-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .pdp-gallery-nav {
        width: 36px;
        height: 36px;
    }

    .pdp-strip-grid {
        scroll-snap-type: x mandatory;
    }

    .pdp-strip-card {
        flex: 0 0 calc((100% - 8px) / 2) !important;
        max-width: calc((100% - 8px) / 2) !important;
        min-width: calc((100% - 8px) / 2) !important;
        scroll-snap-align: start;
    }

    .pdp-right-col .pdp-side-thumb {
        width: 88px;
        height: 88px;
        flex: 0 0 88px;
    }
}

@media (max-width: 576px) {
    .pdp-title-main {
        font-size: 18px !important;
    }

    .pdp-title-meta .pdp-social-pill {
        min-height: 26px;
        padding: 0 8px;
    }

    .pdp-main-image {
        min-height: 246px;
        aspect-ratio: 4 / 3;
    }

    .pdp-thumb-list {
        gap: 5px;
    }

    .pdp-thumb-image {
        width: 58px;
    }

    .pdp-strip-card {
        flex: 0 0 calc((100% - 8px) / 2) !important;
        max-width: calc((100% - 8px) / 2) !important;
        min-width: calc((100% - 8px) / 2) !important;
    }

    .pdp-review-overview-mid {
        padding: 10px 8px;
    }

    .pdp-review-rate-row {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 6px;
    }

    .pdp-review-rate-note {
        grid-column: auto;
        font-size: 14px;
        margin-left: 0;
        white-space: nowrap;
    }

    .pdp-review-line {
        gap: 6px;
    }

    .pdp-review-meta {
        gap: 6px;
        font-size: 14px;
    }

    .pdp-review-cta {
        min-height: 46px;
        border-radius: 8px;
    }

    .pdp-review-footer .pdp-review-cta {
        width: 100%;
    }

    .pdp-right-col .pdp-side-card {
        padding: 10px 10px 6px;
    }

    .pdp-right-col .pdp-side-thumb {
        width: 78px;
        height: 78px;
        flex: 0 0 78px;
    }
}

@media (max-width: 508px) {
    .pdp-page .container,
    .pdp-main-grid,
    .pdp-gallery-card,
    .pdp-buy-card,
    .pdp-spec-card,
    .pdp-review-card,
    .pdp-side-card {
        max-width: 100%;
        min-width: 0;
    }

    .pdp-page {
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    .pdp-title-row {
        width: 100%;
    }

    .pdp-title-meta {
        width: 100%;
        row-gap: 6px;
        column-gap: 8px;
    }

    .pdp-spec-card .pdp-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .pdp-spec-card .pdp-tabs .nav-link {
        min-height: 40px;
        padding: 8px 6px;
        font-size: 14px !important;
    }

    .pdp-spec-line {
        padding: 9px 6px;
    }

    .pdp-price-line {
        gap: 8px;
    }

    .pdp-stock-line {
        gap: 8px;
    }

    .pdp-warehouse-field {
        width: 100%;
    }

    .pdp-thumb-image {
        width: 53px;
    }

    .pdp-review-overview-card {
        margin-left: 0;
        margin-right: 0;
    }

    .pdp-strip-card {
        flex: 0 0 calc((100% - 8px) / 2) !important;
        max-width: calc((100% - 8px) / 2) !important;
        min-width: calc((100% - 8px) / 2) !important;
    }

    .pdp-review-rate-row {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 6px;
    }

    .pdp-review-rate-note {
        grid-column: 1 / -1;
        margin-left: 0;
        white-space: normal;
    }
}

/* === pdp-mobile-title-meta === */
@media (max-width: 768px) {
    .pdp-title-row {
        gap: 6px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .pdp-title-main {
        font-size: 18px !important;
        line-height: 1.35;
    }

    .pdp-title-meta {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        row-gap: 6px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .pdp-title-meta .pdp-meta-link {
        font-size: 14px;
    }

    .pdp-title-meta::-webkit-scrollbar {
        display: none;
    }

    .pdp-social-actions {
        display: none !important;
    }
}

/* === product-card-font-sizing === */
.product-card .product-name,
.flash-card .flash-name,
.recent-product-slot .recent-product-name,
.pdp-side-card .pdp-side-name {
    font-size: 14px !important;
}

.product-card .price-new,
.flash-card .flash-price-new,
.recent-product-slot .recent-product-price,
.pdp-side-card .pdp-side-price {
    font-size: 18px !important;
}

.product-empty-message {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    padding: 16px 10px;
    color: #1D2939;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 576px) {
    .pdp-event-buy-wrap {
        border-width: 4px;
    }

    .pdp-event-buy-head {
        flex-wrap: wrap;
        min-height: 40px;
        padding: 7px 8px;
    }

    .pdp-event-buy-title,
    .pdp-event-countdown {
        font-size: 13px;
    }

    .pdp-event-countdown strong {
        min-width: 26px;
        height: 26px;
        font-size: 13px;
    }
}
