/* EPImage Module - Product Image Gallery */

.product-image-module {
    --epi-accent: oklch(0.50 0.155 308);
    --epi-border: oklch(0.91 0.014 305);
    --epi-radius: 18px;
    --epi-transition: .2s ease;
    position: relative;
    user-select: none;
}

.product-image-module .xzoom-container {
    position: relative;
}

.product-image-module .image-zoom-container {
    display: block;
    position: relative;
    border-radius: var(--epi-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--epi-border);
    cursor: crosshair;
    line-height: 0;
}

.product-image-module img.xzoom {
    display: block;
    width: 100%;
    border-radius: var(--epi-radius);
}

.product-image-module .xzoom-thumbs {
    margin-top: 14px !important;
}

.product-image-module .xzoom-thumbs .col-3 {
    padding: 0;
}

.product-image-module .xzoom-thumbs a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--epi-border);
    transition: border-color var(--epi-transition), box-shadow var(--epi-transition), transform var(--epi-transition);
    cursor: pointer;
    line-height: 0;
}

.product-image-module .xzoom-thumbs a:hover {
    transform: translateY(-2px);
}

.product-image-module .xzoom-thumbs a.active {
    border-color: var(--epi-accent);
    box-shadow: 0 0 0 1px var(--epi-accent);
}

.product-image-module img.xzoom-gallery {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.product-image-module .edit-button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--epi-border);
    color: rgb(136, 136, 136);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0px;
    transition: background var(--epi-transition), color var(--epi-transition);
}

.product-image-module .edit-button:hover {
    background: var(--epi-accent);
    color: rgb(255, 255, 255);
    border-color: var(--epi-accent);
}

.epi-lens {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    pointer-events: none;
    display: none;
    z-index: 5;
}

.epi-zoom-result {
    position: absolute;
    left: calc(100% + 16px);
    top: 0px;
    width: 500px;
    height: 500px;
    border-radius: 12px;
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    display: none;
    z-index: 50;
    border: 1px solid rgb(232, 232, 232);
}

@media (max-width: 1199px) {
    .epi-zoom-result {
        display: none !important;
    }
}

/* Skeleton loading state */
@keyframes productImagePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .45; }
}

.product-image-skeleton {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
}

.product-image-module.product-image-loaded .product-image-skeleton {
    display: none;
}

.product-image-skeleton-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: oklch(0.925 0.005 155);
    animation: productImagePulse 1.9s ease-in-out infinite;
}

.product-image-skeleton-thumbs {
    display: flex;
    gap: 8px;
}

.product-image-skeleton-thumb {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    background: oklch(0.925 0.005 155);
    animation: productImagePulse 1.9s ease-in-out infinite;
}

.product-image-skeleton-thumb:nth-child(2) { animation-delay: .15s; }
.product-image-skeleton-thumb:nth-child(3) { animation-delay: .3s; }
.product-image-skeleton-thumb:nth-child(4) { animation-delay: .45s; }

/* EPImage Module End */

/* ProductFilter Module - Category / Brand / Search Filter Panel */

.product-filter-module {
    --pf-accent: var(--theme-color, #e8541e);
    --pf-accent-light: oklch(96% 0.03 27);
    --pf-border: #efefef;
    --pf-text: #2d2d2d;
    --pf-text-muted: #777;
    --pf-bg: #fff;
    --pf-radius: 8px;
    --pf-transition: .22s ease;
}

@media (min-width: 992px) {
    .product-filter-module .product-filter-panel {
        flex-direction: column;
        border-radius: 16px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        z-index: 1 !important;
        transition: none !important;
        display: flex !important;
        border: 1px solid rgb(224, 224, 224) !important;
    }
}

.product-filter-panel {
    background: var(--pf-bg);
}

.product-filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgb(240, 240, 240);
    padding: 24px 20px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(29, 28, 28);
    background: rgb(251 251 251);
    border-top-left-radius: 16px;
    overflow: hidden;
    border-top-right-radius: 16px;
}

.product-filter-title-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-filter-page-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pf-text);
    text-decoration: none;
    line-height: 1.3;
}

a.product-filter-page-title:hover {
    color: var(--pf-accent);
}

.product-filter-count {
    font-size: 12px;
    color: var(--pf-text-muted);
}

.product-filter-close {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pf-text-muted);
    padding: 0px;
    transition: background var(--pf-transition), color var(--pf-transition);
}

.product-filter-close svg {
    width: 17px;
    height: 17px;
}

.product-filter-close:hover {
    background: rgb(245, 245, 245);
    color: var(--pf-accent);
}

.product-filter-body {
    flex: 1 1 0%;
    overflow-y: auto;
    padding: 12px 0px;
    background: white;
}

.product-filter-box {
    padding: 14px 18px;
    border-bottom: 1px solid var(--pf-border);
}

.product-filter-box:last-child {
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.product-filter-box-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pf-text-muted);
    margin: 0px 0px 10px;
}

.product-filter-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-filter-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
    font-size: 13.5px;
    color: var(--pf-text);
    text-decoration: none;
    transition: color var(--pf-transition);
}

.product-filter-cat-link:hover {
    color: var(--pf-accent);
}

.product-filter-cat-count {
    font-size: 10px;
    background: rgb(244, 242, 243);
    color: rgb(59, 59, 59);
    padding: 0px 8px;
    line-height: 24px;
    letter-spacing: 0.2px;
    font-weight: 400;
    border-radius: 6px;
}

.product-filter-check-label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 0px;
    font-size: 13.5px;
    color: var(--pf-text);
    cursor: pointer;
    user-select: none;
    transition: color var(--pf-transition);
}

.product-filter-check-label:hover {
    color: var(--pf-accent);
}

.product-filter-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.product-filter-check-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgb(204, 204, 204);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--pf-transition), background var(--pf-transition);
}

.product-filter-check:checked + .product-filter-check-box {
    background: var(--pf-accent);
    border-color: var(--pf-accent);
}

.product-filter-check:checked + .product-filter-check-box::after {
    content: "";
    width: 4px;
    height: 7px;
    border-width: medium 1.5px 1.5px medium;
    border-style: none solid solid none;
    border-color: currentcolor rgb(255, 255, 255) rgb(255, 255, 255) currentcolor;
    border-image: initial;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.product-filter-sort-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.product-filter-sort-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0px;
    font-size: 13.5px;
    color: var(--pf-text-muted);
    text-decoration: none;
    transition: color var(--pf-transition);
}

.product-filter-sort-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.product-filter-sort-link:hover, .product-filter-sort-link.active {
    color: var(--pf-accent);
}

.product-filter-sort-link.active {
    font-weight: 600;
}

.product-filter-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-filter-price-input {
    flex: 1 1 0%;
    height: 36px;
    border: 1.5px solid var(--pf-border);
    border-radius: var(--pf-radius);
    padding: 0px 10px;
    font-size: 13px;
    color: var(--pf-text);
    background: rgb(250, 250, 250);
    outline: none;
    transition: border-color var(--pf-transition);
    max-width: 100px;
}

.product-filter-price-input:focus {
    border-color: var(--pf-accent);
    background: rgb(255, 255, 255);
}

.product-filter-price-sep {
    font-size: 13px;
    color: var(--pf-text-muted);
    flex-shrink: 0;
}

.product-filter-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--pf-border);
    background: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.product-filter-apply {
    width: 100%;
    height: 40px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: var(--pf-radius);
    background: var(--pf-accent);
    color: rgb(255, 255, 255);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: opacity var(--pf-transition);
}

.product-filter-apply svg {
    width: 15px;
    height: 15px;
}

.product-filter-apply:hover {
    opacity: 0.88;
}

.product-filter-fab {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1040;
    display: flex;
    align-items: center;
    gap: 7px;
    height: 44px;
    padding: 0px 18px 0px 14px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 22px;
    background: var(--pf-accent);
    color: rgb(255, 255, 255);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 4px 16px;
    transition: transform var(--pf-transition), box-shadow var(--pf-transition);
}

.product-filter-fab svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.product-filter-fab:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.22) 0px 6px 20px;
}

.product-filter-fab:active {
    transform: translateY(0px);
}

/* ProductFilter Module End */

/* ProductTabs Module - Product Detail Tabs (Description / Reviews) */

.product-tabs-module {
    --pt-accent: var(--theme-color, #e8541e);
    --pt-text: #1d1c1c;
    --pt-text-muted: #888;
    --pt-border: #efefef;
    --pt-radius: 10px;
    --pt-transition: .2s ease;
    --pt-star-color: #f5a623;
    position: relative;
    margin-top: 16px;
}

.product-tabs-module .product-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--pt-border);
    padding-bottom: 0px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-tabs-module .product-tabs .nav-item {
    margin-bottom: -2px;
}

.product-tabs-module .product-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pt-text-muted);
    background: transparent;
    border-width: medium medium 2px;
    border-style: none none solid;
    border-color: currentcolor currentcolor transparent;
    border-image: initial;
    border-radius: 0px;
    cursor: pointer;
    transition: color var(--pt-transition), border-color var(--pt-transition);
    text-decoration: none;
    line-height: 1;
}

.product-tabs-module .product-tabs .nav-link:hover {
    color: var(--pt-text);
}

.product-tabs-module .product-tabs .nav-link.active {
    color: var(--pt-accent);
    border-bottom-color: var(--pt-accent);
    background: transparent;
}

.product-tabs-module .rv-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0px 6px;
    background: var(--pt-accent);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
}

.product-tabs-module .tab-content {
    outline: none;
}

.product-tabs-module .tab-description {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgb(68, 68, 68);
}

.product-tabs-module .tab-description h1, .product-tabs-module .tab-description h2, .product-tabs-module .tab-description h3 {
    color: var(--pt-text);
    margin-top: 20px;
    margin-bottom: 8px;
}

.product-tabs-module .tab-description img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pt-radius);
}

.product-tabs-module .rv-root {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-tabs-module .rv-summary {
    display: flex;
    gap: 24px;
    padding: 20px;
    background: rgb(250, 250, 250);
    border-radius: var(--pt-radius);
    border: 1px solid var(--pt-border);
    flex-wrap: wrap;
}

.product-tabs-module .rv-avg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 80px;
}

.product-tabs-module .rv-avg-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--pt-text);
    line-height: 1;
}

.product-tabs-module .rv-avg-stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: rgb(221, 221, 221);
}

.product-tabs-module .rv-avg-stars .fa-star.plus {
    color: var(--pt-star-color);
}

.product-tabs-module .rv-avg-total {
    font-size: 11.5px;
    color: var(--pt-text-muted);
    white-space: nowrap;
}

.product-tabs-module .rv-bars {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.product-tabs-module .rv-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-tabs-module .rv-bar-label {
    font-size: 12px;
    color: var(--pt-text-muted);
    width: 28px;
    flex-shrink: 0;
    text-align: right;
}

.product-tabs-module .rv-bar-track {
    flex: 1 1 0%;
    height: 6px;
    background: rgb(232, 232, 232);
    border-radius: 3px;
    overflow: hidden;
}

.product-tabs-module .rv-bar-fill {
    height: 100%;
    background: var(--pt-star-color);
    border-radius: 3px;
    transition: width 0.4s;
}

.product-tabs-module .rv-bar-count {
    font-size: 11.5px;
    color: var(--pt-text-muted);
    width: 20px;
    flex-shrink: 0;
}

.product-tabs-module .rv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-tabs-module .rv-card {
    padding: 16px;
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius);
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-tabs-module .rv-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-tabs-module .rv-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pt-accent);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.product-tabs-module .rv-card-meta {
    flex: 1 1 0%;
}

.product-tabs-module .rv-card-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pt-text);
    line-height: 1.2;
}

.product-tabs-module .rv-card-date {
    font-size: 11.5px;
    color: var(--pt-text-muted);
    margin-top: 2px;
}

.product-tabs-module .rv-card-stars {
    display: flex;
    gap: 3px;
    font-size: 12px;
    color: rgb(221, 221, 221);
    flex-shrink: 0;
}

.product-tabs-module .rv-card-stars .fa-star.plus {
    color: var(--pt-star-color);
}

.product-tabs-module .rv-card-body {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(85, 85, 85);
    padding-left: 50px;
}

.product-tabs-module .rv-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    color: var(--pt-text-muted);
}

.product-tabs-module .rv-empty i {
    font-size: 36px;
    opacity: 0.4;
}

.product-tabs-module .rv-empty p {
    font-size: 14px;
    margin: 0px;
}

.product-tabs-module .rv-form {
    border-radius: var(--pt-radius);
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-tabs-module .rv-form-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pt-text);
}

.product-tabs-module .rv-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-tabs-module .rv-form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-tabs-module .rv-star-input {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.product-tabs-module .rv-star {
    font-size: 16px;
    color: rgb(221, 221, 221);
    transition: color var(--pt-transition), transform var(--pt-transition);
    line-height: 1;
}

.product-tabs-module .rv-star:hover, .product-tabs-module .rv-star.rv-star-hover {
    color: var(--pt-star-color);
}

.product-tabs-module .rv-star.rv-star-on {
    color: var(--pt-star-color);
}

.product-tabs-module .rv-star-hint {
    margin-left: 10px;
    font-size: 12.5px;
    color: var(--pt-text-muted);
    align-self: center;
    font-style: italic;
    line-height: 1;
}

.product-tabs-module .rv-textarea {
    border: 1.5px solid var(--pt-border);
    border-radius: var(--pt-radius);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--pt-text);
    background: rgb(255, 255, 255);
    resize: vertical;
    transition: border-color var(--pt-transition);
    outline: none;
}

.product-tabs-module .rv-textarea:focus {
    border-color: var(--pt-accent);
}

.product-tabs-module .rv-form .btn-primary {
    align-self: flex-start;
    background: var(--pt-accent);
    border-color: var(--pt-accent);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 8px;
    transition: opacity var(--pt-transition);
}

.product-tabs-module .rv-form .btn-primary:hover {
    opacity: 0.88;
    background: var(--pt-accent);
    border-color: var(--pt-accent);
}

.product-tabs-module .edit-button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--pt-border);
    color: var(--pt-text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0px;
    transition: background var(--pt-transition), color var(--pt-transition);
}

.product-tabs-module .edit-button:hover {
    background: var(--pt-accent);
    color: rgb(255, 255, 255);
    border-color: var(--pt-accent);
}

/* ProductTabs Module End */

/* EcomNav Module - E-commerce Category Navigation */

[data-sw-module="ecom-nav"] .dropdown-menu {
    border-radius: 10px;
    border: 1px solid rgb(240, 240, 240);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 32px;
    padding: 6px;
    min-width: 270px;
}

[data-sw-module="ecom-nav"] .dropdown-item {
    border-radius: 6px;
    font-size: 14px;
    padding: 8px 12px;
    color: rgb(45, 45, 45);
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[data-sw-module="ecom-nav"] .dropdown-item:hover, [data-sw-module="ecom-nav"] .dropdown-item:focus {
    background: oklch(0.96 0.03 27);
    color: var(--theme-color, #e8541e);
}

[data-sw-module="ecom-nav"] .nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0px 5px;
    background: var(--theme-color, #e8541e);
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    line-height: 1;
    margin-left: 6px;
    position: absolute;
    top: -10px;
    right: -10px;
}

[data-sw-module="ecom-nav"] .dropdown-submenu {
    position: relative;
}

[data-sw-module="ecom-nav"] .dropdown-submenu > .dropdown-menu {
    top: 0px;
    left: 100%;
    margin-top: -6px;
    display: none;
}

[data-sw-module="ecom-nav"] .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

[data-sw-module="ecom-nav"] .ecn-sub-arrow {
    font-size: 10px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* EcomNav Module End */

.sw-nav-toggler {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 4px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 6px;
    &:focus {
        outline: none;
        box-shadow: none;
    }

    @media (min-width: 992px) {
        display: none;
    }
}

.sw-nav-drawer {
    position: fixed;
    top: 0px;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: rgb(255, 255, 255);
    border-right: 1px solid rgb(233, 233, 233);
    box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 24px;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    &.sw-open {
        left: 0px;
    }
}

.sw-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgb(240, 240, 240);
    background: rgb(249, 250, 251);
    flex-shrink: 0;
}

.sw-nav-drawer-title {
    font-size: 0.875rem;
    font-weight: 900;
    color: #3a41e6;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sw-nav-drawer-close {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    color: rgb(156, 163, 175);
    font-size: 16px;
    line-height: 1;
    padding: 2px 4px;
    &:hover {
        color: rgb(55, 65, 81);
    }
}

.sw-nav-drawer-body {
    flex: 1 1 0%;
    overflow-y: auto;
    padding: 0px;
}

.sw-nav-accordion {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.sw-nav-accordion li {
    list-style: none;
}

.sw-acc-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(245, 245, 245);
    &.sw-acc-d0 {
        padding: 12px 18px;
        & .sw-acc-link {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgb(26, 26, 26);
            position: relative;
        }
    }

    &.sw-acc-d1 {
        padding: 10px 14px 10px 12px;
        & .sw-acc-link {
            font-size: 0.875rem;
            font-weight: 400;
            color: rgb(58, 58, 58);
        }
    }

    &.sw-acc-d2 {
        padding: 8px 14px 8px 12px;
        & .sw-acc-link {
            font-size: 0.82rem;
            color: rgb(102, 102, 102);
            &::before {
                content: "";
                display: inline-block;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: rgb(204, 204, 204);
                margin-right: 10px;
                flex-shrink: 0;
            }
        }
    }
}

.sw-acc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color, #292dba);
    flex-shrink: 0;
    margin-right: 12px;
}

.sw-acc-link {
    flex: 1 1 0%;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sw-acc-toggle {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    color: rgb(156, 163, 175);
    padding: 4px 6px;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.2s, color 0.15s;
    flex-shrink: 0;
    &.sw-acc-open {
        transform: rotate(180deg);
        color: var(--theme-color, #e8541e);
    }
}

.sw-acc-sub {
    display: none;
    list-style: none;
    margin: 0px 0px 0px 26px;
    padding: 0px;
    border-left: 2px solid #f5f5f5;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    &.sw-acc-open {
        display: block;
    }

    & .sw-acc-sub {
        border-left-color: rgb(229, 231, 235);
        margin-left: 14px;
    }
}

@media (min-width: 992px) {
    .sw-nav-desktop .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .sw-nav-desktop .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

.ecn-dd-arrow {
    font-size: 0.65em;
    vertical-align: middle;
    margin-left: 2px;
    opacity: 0.7;
}

/* Toast Notifications - Cart and Favorites */

.shoppingcart-toast, .favorite-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    min-width: 280px;
    max-width: 400px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 32px;
    backdrop-filter: blur(8px);
}

.shoppingcart-toast {
    background: rgb(26, 26, 26);
}

.favorite-toast {
    background: rgb(26, 26, 26);
}

.shoppingcart-toast .toast-body, .favorite-toast .toast-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: rgb(255, 255, 255);
    font-size: 13.5px;
    line-height: 1.4;
}

.shoppingcart-toast .toast-body .bi, .favorite-toast .toast-body .bi {
    font-size: 20px;
    flex-shrink: 0;
    color: rgb(74, 222, 128);
}

.shoppingcart-toast .toast-body .bi-check2-circle {
    color: rgb(74, 222, 128);
}

.favorite-toast .toast-body .bi {
    color: rgb(244, 114, 182);
}

.shoppingcart-toast .message-content, .favorite-toast .message-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 0%;
}

.shoppingcart-toast .message-content #toast-message, .favorite-toast .message-content #toast-message {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.shoppingcart-toast .toast-body a, .favorite-toast .toast-body a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.15s;
    margin: 0px !important;
}

.shoppingcart-toast .toast-body a:hover, .favorite-toast .toast-body a:hover {
    color: rgb(255, 255, 255);
}

.shoppingcart-toast .btn-close, .favorite-toast .btn-close {
    filter: invert(1) opacity(0.5);
    flex-shrink: 0;
}

.shoppingcart-toast .btn-close:hover, .favorite-toast .btn-close:hover {
    filter: invert(1) opacity(0.9);
}

/* Toast Notifications End */

/* ProductList Module - Product Category / Brand / Search Listing */

.product-list-wrap {
    --pl-accent:      var(--theme-color, #e8541e);
    --pl-border:      #efefef;
    --pl-text:        #1d1c1c;
    --pl-muted:       #888;
    --pl-bg:          #fff;
    --pl-radius:      8px;
    --pl-transition:  .22s ease;
}

/* Toolbar */
.product-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
    display: none;
}

.product-list-total-count {
    font-size: 13.5px;
    color: var(--pl-muted);
}

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

.product-list-sort-select {
    border: 1.5px solid var(--pl-border);
    border-radius: var(--pl-radius);
    padding: 6px 10px;
    font-size: 13px;
    color: var(--pl-text);
    background: var(--pl-bg);
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color var(--pl-transition);
}

.product-list-sort-select:focus {
    border-color: var(--pl-accent);
}

/* Card */
.product-list-card {
    background: var(--pl-bg);
    border: 1px solid var(--pl-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    margin-bottom: 24px;
}

.product-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

/* Image area */
.product-list-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-list-img {
    width: 100%;
    display: block;
}

.product-list-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: #f4f4f4;
    display: grid;
    place-items: center;
    font-size: 3rem;
    color: #ccc;
}

.product-list-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform .25s ease;
}

.product-list-img-wrap:hover .product-list-img-overlay {
    transform: translateY(0);
}

/* Cart / fav buttons */
.product-list-cart-btn,
.product-list-fav-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    background: rgba(255,255,255,.95);
    color: var(--pl-text);
    border-radius: 8px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background var(--pl-transition), color var(--pl-transition);
}

.product-list-cart-btn:hover,
.product-list-fav-btn:hover {
    background: var(--pl-accent);
    color: #fff;
}

/* Discount badge */
.product-list-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pl-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    line-height: 1.3;
}

/* Out-of-stock overlay */
.product-list-out-of-stock {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border-radius: inherit;
}

.product-list-out-of-stock span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Tag badges */
.product-list-tags {
    position: absolute;
    top: 10px;
    right: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.product-list-tag {
    background: rgba(255,255,255,.9);
    color: var(--pl-text);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

/* Card body */
.product-list-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-list-brand {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pl-muted);
    margin-bottom: 4px;
}

.product-list-name {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0 0 6px;
    color: var(--pl-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-list-name:hover {
    color: var(--pl-accent);
}

.product-list-stars {
    font-size: 0.8rem;
    color: #f5a623;
    margin: 0 0 4px;
}

/* Prices */
.product-list-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
}

.product-list-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--pl-text);
}

.product-list-old-price {
    color: var(--pl-muted);
    text-decoration: line-through;
    font-size: 0.88rem;
}

/* Empty state */
.product-list-empty {
    padding: 40px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Pagination */
.product-list-pagination {
    margin-top: 24px;
}

/* ProductList Module End */

/* ProductDetail Module - Product Name / Price / Variants / Buy Section */

.product-detail-module {
    --pd-accent:      oklch(0.50 0.155 308);
    --pd-accent-deep: oklch(0.38 0.14 312);
    --pd-text:        oklch(0.27 0.045 312);
    --pd-muted:       oklch(0.46 0.035 312);
    --pd-faint:       oklch(0.62 0.03 312);
    --pd-border:      oklch(0.91 0.014 305);
    --pd-border-2:    oklch(0.85 0.02 305);
    --pd-lav-wash:    oklch(0.945 0.022 305);
    --pd-lav-200:     oklch(0.88 0.06 305);
    --pd-lavender:    oklch(0.74 0.115 305);
    --pd-radius:      8px;
    --pd-transition:  .2s ease;
    position: relative;
}

.product-detail-header { margin-bottom: 14px; }

.product-detail-name {
    /* font-family: "Playfair Display", Georgia, serif; */
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    color: var(--pd-text);
}

.product-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 22px;
}

.product-detail-brand {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pd-accent);
    text-decoration: none;
    display: inline;
    margin-bottom: 0;
}
.product-detail-brand:hover { color: var(--pd-accent-deep); }

.product-detail-stock-code {
    font-size: 0.82rem;
    color: var(--pd-faint);
    letter-spacing: 0.04em;
    margin-bottom: 0;
    display: inline;
}

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}
.product-detail-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--pd-faint);
}
.product-detail-breadcrumb-item + .product-detail-breadcrumb-item::before {
    content: "/";
    margin: 0 6px;
    color: var(--pd-border-2);
    opacity: 0.8;
}
.product-detail-breadcrumb-item a { color: var(--pd-muted); text-decoration: none; }
.product-detail-breadcrumb-item a:hover { color: var(--pd-accent); }

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.95rem;
    color: var(--pd-border-2);
    margin-bottom: 0;
}
.product-detail-rating .fa-star.plus { color: var(--pd-lavender); }
.product-detail-rating-count {
    font-size: 0.8rem;
    color: var(--pd-faint);
    margin-left: 4px;
    white-space: nowrap;
}

.product-detail-short-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--pd-muted);
    padding-left: 16px;
    border-left: 3px solid var(--pd-lav-200);
    margin-bottom: 26px;
}
.product-detail-short-desc p { margin: 0; }

.product-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.product-detail-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--pd-lav-wash);
    color: var(--pd-muted);
    letter-spacing: 0.04em;
}

/* Pricing */
.product-detail-pricing {
    background: #fff;
    border: 1px solid var(--pd-border);
    border-radius: 16px;
    padding: 24px 26px;
    margin-bottom: 26px;
}

.product-detail-pricing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.product-detail-old-price,
.product-detail-price-no-vat,
.product-detail-transfer-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
    font-size: 0.9rem;
    border: none;
}
.product-detail-old-price label,
.product-detail-price-no-vat label,
.product-detail-transfer-price label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--pd-faint);
    text-transform: none;
    letter-spacing: 0;
}
.product-detail-old-price span,
.product-detail-price-no-vat span,
.product-detail-transfer-price span {
    color: var(--pd-muted);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.product-detail-old-price small,
.product-detail-price-no-vat small,
.product-detail-transfer-price small {
    color: var(--pd-faint);
    font-size: 0.8rem;
}
.product-detail-old-price span { text-decoration: line-through; color: var(--pd-faint); font-weight: 400; }

.product-detail-featured-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--pd-border);
}
.product-detail-featured-price label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pd-text);
    text-transform: none;
    letter-spacing: 0;
}
.product-detail-featured-price span {
    /* font-family: "Playfair Display", Georgia, serif; */
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pd-accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.product-detail-featured-price small {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pd-accent);
}

/* Variant controls */
.product-detail-variants { margin-bottom: 18px; }

.product-detail-variants-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--pd-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.product-detail-variant-block { margin-bottom: 14px; }

.product-detail-variant-block > label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--pd-faint);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.product-detail-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-detail-variant-option {
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    border: 1.5px solid var(--pd-border);
    border-radius: var(--pd-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: border-color var(--pd-transition), background var(--pd-transition), color var(--pd-transition);
}
.product-detail-variant-option:hover { border-color: var(--pd-accent); }
.product-detail-variant-option.selected {
    border-color: var(--pd-accent);
    background: var(--pd-accent);
    color: #fff;
}
.product-detail-variant-option.disabled { opacity: .35; cursor: not-allowed; }

.product-detail-variant-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--pd-transition), transform var(--pd-transition);
    outline-offset: 3px;
}
.product-detail-variant-color.selected {
    border-color: var(--pd-accent);
    transform: scale(1.15);
}

.product-detail-variant-info {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--pd-faint);
    margin-top: 8px;
}
.product-detail-variant-info label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    display: block;
}
.product-detail-variant-info span { font-weight: 600; color: var(--pd-text); }

/* Out of stock */
.product-detail-out-of-stock {
    padding: 12px 16px;
    background: oklch(0.95 0.02 305);
    border: 1px solid var(--pd-lav-200);
    border-radius: 999px;
    color: var(--pd-accent);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buy section */
.product-detail-buy {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.quantity-section {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pd-border-2);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}
.quantity-section input[type="text"] {
    width: 52px;
    height: 52px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pd-text);
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}
.quantity-section input[type="text"]::-webkit-outer-spin-button,
.quantity-section input[type="text"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.quantity-minus,
.quantity-plus {
    width: 46px;
    height: 52px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--pd-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--pd-transition), color var(--pd-transition);
}
.quantity-minus:hover,
.quantity-plus:hover {
    background: var(--pd-lav-wash);
    color: var(--pd-accent);
}

.product-detail-add-to-cart {
    flex: 1;
    min-width: 200px;
    height: 52px;
    background: var(--pd-accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 24px -12px oklch(0.50 0.155 308 / 0.7);
    transition: background .25s ease, box-shadow .25s ease;
}
.product-detail-add-to-cart:hover {
    background: var(--pd-accent-deep);
    color: #fff;
    box-shadow: 0 16px 30px -12px oklch(0.50 0.155 308 / 0.85);
}
.product-detail-add-to-cart:active { transform: scale(.98); }

/* Social share */
.product-detail-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--pd-border);
    margin-top: 6px;
}
.product-detail-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--pd-border);
    background: #fff;
    color: var(--pd-muted);
    display: grid;
    place-items: center;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s ease;
}
.product-detail-social a:hover {
    background: var(--pd-accent);
    color: #fff;
    border-color: var(--pd-accent);
    transform: translateY(-2px);
}

/* ProductDetail Module End */

/* ProductTab Module - Description / Reviews / Installments */

.product-tab-module {
    --pt-accent:     oklch(0.50 0.155 308);
    --pt-text:       oklch(0.27 0.045 312);
    --pt-muted:      oklch(0.46 0.035 312);
    --pt-faint:      oklch(0.62 0.03 312);
    --pt-border:     oklch(0.91 0.014 305);
    --pt-radius:     10px;
    --pt-transition: .2s ease;
    --pt-star-color: oklch(0.74 0.115 305);
    position: relative;
    margin-top: 72px;
}

.product-tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--pt-border);
    margin-bottom: 32px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.product-tab-nav-item { margin-bottom: -1px; position: relative; }

.product-tab-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 22px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pt-faint);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color var(--pt-transition), border-color var(--pt-transition);
    text-decoration: none;
    line-height: 1;
    position: relative;
}

.product-tab-nav-link:hover { color: var(--pt-text); }

.product-tab-nav-link.active {
    color: var(--pt-accent);
    border-bottom-color: var(--pt-accent);
}

.product-tab-review-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--pt-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
}

.product-tab-pane { display: none; }
.product-tab-pane.active.show { display: block; }

.product-tab-description {
    font-size: 14.5px;
    line-height: 1.75;
    color: #444;
}

.product-tab-description h1,
.product-tab-description h2,
.product-tab-description h3 {
    color: var(--pt-text);
    margin-top: 20px;
    margin-bottom: 8px;
}

.product-tab-description img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pt-radius);
}

/* Reviews */
.product-tab-reviews {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-tab-review-summary {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.product-tab-review-avg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 80px;
}

.product-tab-review-avg-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--pt-text);
    line-height: 1;
}

.product-tab-review-avg-stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: #ddd;
}

.product-tab-review-avg-stars .fa-star.plus { color: var(--pt-star-color); }

.product-tab-review-avg-total {
    font-size: 11.5px;
    color: var(--pt-muted);
    white-space: nowrap;
}

.product-tab-review-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.product-tab-review-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-tab-review-bar-label {
    font-size: 12px;
    color: var(--pt-muted);
    width: 28px;
    flex-shrink: 0;
    text-align: right;
}

.product-tab-review-bar-track {
    flex: 1;
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.product-tab-review-bar-fill {
    height: 100%;
    background: var(--pt-star-color);
    border-radius: 3px;
    transition: width 0.4s;
}

.product-tab-review-bar-count {
    font-size: 11.5px;
    color: var(--pt-muted);
    width: 20px;
    flex-shrink: 0;
}

.product-tab-review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 26px 0;
}

.product-tab-review-card {
    padding: 16px;
    border-bottom: 1px solid var(--pt-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-tab-review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-tab-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pt-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.product-tab-review-card-meta { flex: 1; }

.product-tab-review-card-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pt-text);
    line-height: 1.2;
}

.product-tab-review-card-date {
    font-size: 11.5px;
    color: var(--pt-muted);
    margin-top: 2px;
}

.product-tab-review-card-stars {
    display: flex;
    gap: 3px;
    font-size: 12px;
    color: #ddd;
    flex-shrink: 0;
}

.product-tab-review-card-stars .fa-star.plus { color: var(--pt-star-color); }

.product-tab-review-card-body {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding-left: 50px;
}

.product-tab-review-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    color: var(--pt-muted);
}

.product-tab-review-empty i { font-size: 36px; opacity: .4; }

.product-tab-review-empty p { font-size: 14px; margin: 0; }

/* Review form */
.product-tab-review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-tab-review-form-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pt-text);
}

.product-tab-review-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-tab-review-form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pt-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-tab-review-star-input {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.product-tab-review-star {
    font-size: 16px;
    color: #ddd;
    transition: color var(--pt-transition), transform var(--pt-transition);
    line-height: 1;
}

.product-tab-review-star.product-tab-review-star-on,
.product-tab-review-star.product-tab-review-star-hover { color: var(--pt-star-color); }

.product-tab-review-star-hint {
    margin-left: 10px;
    font-size: 12.5px;
    color: var(--pt-muted);
    align-self: center;
    font-style: italic;
    line-height: 1;
}

.product-tab-review-textarea {
    border: 1.5px solid var(--pt-border);
    border-radius: var(--pt-radius);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--pt-text);
    background: #fff;
    resize: vertical;
    transition: border-color var(--pt-transition);
    outline: none;
}

.product-tab-review-textarea:focus { border-color: var(--pt-accent); }

.product-tab-review-submit {
    align-self: flex-start;
    background: var(--pt-accent);
    border-color: var(--pt-accent);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 8px;
    transition: opacity var(--pt-transition);
}

.product-tab-review-submit:hover {
    opacity: .88;
    background: var(--pt-accent);
    border-color: var(--pt-accent);
}

/* Installments */
.product-tab-installments { padding-top: 4px; }

/* ProductTab Module End */

/* Showcase Breadcrumb - Category / Brand / Search Page Header */

.ecom-breadcrumb-nav {
    --ecb-accent:  var(--theme-color, #e8541e);
    --ecb-text:    #1d1c1c;
    --ecb-muted:   #888;
    --ecb-border:  #efefef;
    padding: 28px 0 20px;
    border-bottom: 1px solid var(--ecb-border);
}

.ecom-breadcrumb-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ecb-text);
    margin: 0 0 8px;
    line-height: 1.2;
}

.ecom-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: var(--ecb-muted);
}

.ecom-breadcrumb-item + .ecom-breadcrumb-item::before {
    content: '/';
    padding: 0 7px;
    color: var(--ecb-border);
}

.ecom-breadcrumb-item a {
    color: var(--ecb-muted);
    text-decoration: none;
    transition: color .18s ease;
}

.ecom-breadcrumb-item a:hover {
    color: var(--ecb-accent);
}

.ecom-breadcrumb-item.active {
    color: var(--ecb-accent);
    font-weight: 500;
}

@media (max-width: 575px) {
    .ecom-breadcrumb-title {
        font-size: 1.25rem;
    }
}

/* Showcase Breadcrumb End */

