/* -------------------------------------------------- 公共 -------------------------------------------------- */

:root {
    --primary: #ff5000;
    --primary-dark: #e64500;
    --primary-light: #fff5f0;
    --primary-shallow: #ff7a45;
    --brand: #ff5000;
    --header-bg: #fff;
    --topbar-bg: #fafafa;
    --border: #eee;
    --text-primary: #333;
    --text-muted: #999;
    --text-secondary: #666;
    --container: 1200px;
    --shadow: 0 2px 16px rgba(0, 0, 0, .06);
    --radius: 12px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: #f5f5f5;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
    color: #333;
}

dl, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p, span {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover, a:focus {
    text-decoration: none;
    color: var(--primary);
}

.lock-overflow {
    overflow: hidden !important;
}

.no-padding {
    padding: 0;
}

.container {
    padding-right: .5rem;
    padding-left: .5rem;
}

.row {
  margin-right: .5rem;
  margin-left: .5rem;
}

.row > [class*="col-"] {
  padding-right: .5rem;
  padding-left: .5rem;
}

.row-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.row-flex > .col-flex {
    flex: 1 1 0;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.swiper-pagination {
    padding: 0 1rem;
    text-align: right;
}

.swiper-pagination-bullet {
    width: .5rem;
    height: .5rem;
    border-radius: .5rem;
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    width: 1.4rem;
}

/* -------------------------------------------------- 顶栏 -------------------------------------------------- */

.top-bar {
    width: 100%;
    height: 2.3rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--topbar-bg);
    font-size: 0.86rem;
    color: var(--text-secondary);
}

.welcome-message {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 2.3rem;
}

.top-bar .contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 2.3rem;
}

.contact-info li {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 .6rem;
}
.contact-info li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 1px;
    height: 1.2rem;
    background-color: var(--border);
}
.contact-info li:first-child::before {
    display: none;
}

.contact-info li span {
    min-width: 2.6rem;
}

/* -------------------------------------------------- Header -------------------------------------------------- */

.header {
    width: 100%;
    padding: 1.5rem 0;
    background-color: var(--header-bg);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.logo {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-main {
    position: relative;
    width: auto;
    height: 100%;
    aspect-ratio: 3 / 1;
}

.logo-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-wrap {
    position: relative;
    display: grid;
    gap: .5rem;
    width: 100%;
    height: 100%;
}

.search-group {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
    border: 2px solid var(--primary);
    border-radius: 1.5rem;
}
.search-group input {
    width: 100%;
    height: 100%;
    padding: 0 1.2rem;
    border: none;
    outline: none;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.search-group button {
    width: clamp(5rem, 7vw, 7rem);
    height: 100%;
    padding: 0 clamp(1rem, 1vw, 2rem);
    border: none;
    outline: none;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
}

.hot-search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}
.hot-search ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .8rem;
}

.header-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

header .header-actions li {
    position: relative;
    display: grid;
    gap: 4px;
    cursor: pointer;
}
header .header-actions li .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    background-color: var(--primary-light);
    border-radius: 50%;
}
header .header-actions li .icon i {
    font-size: 1.1rem;
    color: var(--primary);
}
header .header-actions li .text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}
header .header-actions li:hover .text {
    color: var(--primary);
}

.navigation {
    position: relative;
    width: 100%;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border);
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    height: 3rem;
}
.nav-menu > li {
    position: relative;
    padding: 0 .7rem;
}
.nav-menu > li:hover > a,
.nav-menu > li.active > a {
    font-weight: 600;
    color: var(--primary);
}

.menu-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background: linear-gradient(135deg, var(--primary-shallow), var(--primary));
}
.menu-wrap > a {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.menu-wrap:hover > a,
.menu-wrap.active > a {
    color: #fff;
}

@media (max-width: 992px) {
    .menu-wrap {
        width: 100%;
        border-radius: 1rem;
    }
}

.menu-wrap .menu-head {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    color: var(--primary);
}

.menu-close {
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
}

.menu-wrap .menu-list {
    display: none;
    position: absolute;
    top: 3rem;
    bottom: 4.5rem;
    left: 0;
    min-width: 100%;
    padding-top: 0.8rem;
    z-index: 9;
}
.menu-wrap:hover .menu-list, 
.menu-wrap.active .menu-list {
    display: block;
}

@media (max-width: 992px) {
    .menu-wrap.active .menu-list {
        display: none;
    } 
}

/* 一级菜单 */
.menu-list > ul {
    width: inherit;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.menu-list > ul > li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}
.menu-list > ul > li:first-child {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
.menu-list > ul > li:last-child {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.menu-list > ul > li > a {
    display: grid;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    width: 100%;
}

.menu-list > ul > li > i {
    font-size: .8rem;
    color: var(--text-muted);
}

.menu-icon {
    position: relative;
    overflow: hidden;
    width: 1.2rem;
    aspect-ratio: 1 / 1;
}
.menu-icon > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.2rem;
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-primary);
}
.menu-desc {
    width: 100%;
    height: 1.1em;
    line-height: 1.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--text-muted);
}

.menu-list > ul > li:hover {
    background-color: var(--primary-light);
}

.menu-list > ul > li:hover .menu-title, 
.menu-list > ul > li.active .menu-title {
    color: var(--primary);
}

/* 二级菜单 */
.menu-sub-list {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    padding-left: 1rem;
}
.menu-list > ul > li:hover > .menu-sub-list, 
.menu-list > ul > li.active > .menu-sub-list {
    display: block;
}

.menu-sub-list > ul {
    width: 50vw;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.menu-sub-list > ul > li {
    margin-bottom: 1rem;
}
.menu-sub-list > ul > li:last-child {
    margin-bottom: 0;
}

.menu-sub-list > ul > li > a {
    font-weight: 600;
}

/* 三级菜单 */
.menu-sub-sub-list {
    padding-top: .5rem;
    font-size: 0.86rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.menu-sub-sub-list > ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.menu-sub-sub-list > ul > li {
    float: left;
    margin-right: 1rem;
    margin-bottom: .5rem;
}

@media (max-width: 992px) {
    .menu-wrap .menu-head {
        display: flex;
    }

    .menu-wrap .menu-list {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: block !important;
        padding-top: 0;
        overflow: hidden;
        transform: translateX(-100%); /* 默认滑出屏幕 */
        transition: transform 0.3s ease-in-out;
        background-color: #fff;
    }
    .menu-wrap .menu-list.active {
        transform: translateX(0);
    }
    .menu-wrap .menu-list > ul {
        position: relative;
        height: calc(100vh - 8.5rem);
        border-radius: 0;
        overflow-y: auto;
    }
}

/* -------------------------------------------------- Footer -------------------------------------------------- */

.footer {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    margin-top: 0.8rem;
    border-top: 1px solid var(--border);
    background-color: #fff;
}

.footer .contact-info > p,
.footer .copyright > p {
    margin-bottom: .5rem;
    text-align: center;
    color: var(--text-muted);
}

.footer .contact-info > p strong,
.footer .copyright > p strong {
    color: var(--text-primary);
}

.footer .navigation-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

/* -------------------------------------------------- Breadcrumb -------------------------------------------------- */

.breadcrumb {
    padding: .8rem 1rem;
    margin-bottom: 0;
    background: transparent;
    font-size: .8rem;
    color: var(--text-muted);
}
.breadcrumb i {
    margin: 0 .5rem;
}

/* -------------------------------------------------- Page -------------------------------------------------- */

.page-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* -------------------------------------------------- Banner -------------------------------------------------- */

.swiper-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
    margin-top: 0.8rem;
    background-color: #fff;
    border-radius: 1rem;
}

.banner-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
}
.banner-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-caption {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    z-index: 2;
    color: #fff;
}

.banner-title {
    text-shadow: 0 0 10px rgba(0, 0, 0, .6);
    font-size: 2rem;
    font-weight: 600;
    color: inherit;
}

/* -------------------------------------------------- Panel -------------------------------------------------- */

.panel {
    width: 100%;
    padding: .5rem;
    margin-top: .8rem;
    margin-bottom: 0;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: .5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.panel-heading {
    position: relative;
    padding: .4rem 1rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid #f0f0f0;
}

.panel-body {
    padding: .4rem 1rem;
}

.panel-title {
    position: relative;
    display: block;
    margin: 0;
    text-indent: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}
.panel-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.3rem;
    background: linear-gradient(180deg, var(--primary-shallow), var(--primary));
    border-radius: 2px;
}

.panel-desc {
    margin-top: .8rem;
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-muted);
}

.panel-swiper {
    padding: 0;
    background: none;
    box-shadow: none;
}

.product-list, 
.series-list {
    width: 100%;
    min-height: 9rem;
}

.product-list > li,
.series-list > li {
    margin-bottom: .5rem;
}
.product-list > li:last-child,
.series-list > li:last-child {
    margin-bottom: 0;
}

.product-list > li > a,
.series-list > li > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    width: 100%;
}

.product-icon {
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    border-radius: .5rem;
    background: linear-gradient(135deg, var(--primary-shallow), var(--primary));
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
}

.product-img {
    position: relative;
    overflow: hidden;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    border-radius: .3rem;
}
.product-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    width: calc(100% - 3rem);
}

.product-title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-desc {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-muted);
}
.price {
    font-weight: 600;
    color: var(--primary);
}

.series-list {
    width: 100%;
    min-height: 10.3rem;
}

.sort-list .product-info {
    width: calc(100% - 5rem);
}

.swiper-product {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 10.5rem;
}

.swiper-product .swiper-wrapper {
    gap: 1rem;
}

.swiper-product .swiper-slide {
    width: auto;
}

.swiper-product .swiper-slide > a {
    position: relative;
    display: block;
    width: auto;
    height: 10.5rem;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.product-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 8 / 5;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}
.product-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: .5rem;
}

.service-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    width: 100%;
    margin: .5rem 0;
}

.service-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: .5rem;
    background-color: var(--primary-light);
}

.about-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem 1.5rem;
}

.about-contact a {
    color: var(--primary);
}

/* -------------------------------------------------- Search Filters -------------------------------------------------- */

.search-filters {
    padding: .8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    background-color: #fff;
}

.sort-filter {
    padding: .3rem 1rem;
}

.search-row {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .5rem 0;
    border-bottom: 1px dashed #f0f0f0;
}
.search-row:last-child {
    border-bottom: none;
}

.search-label {
    flex-shrink: 0;
    width: 5rem;
    color: var(--text-muted);
}

.search-field {
    position: relative;
    overflow-x: auto;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    width: 100%;
    /* flex-shrink: 0; */
}

.search-field li {
    flex-shrink: 0;
    padding: .2rem .8rem;
    border-radius: .2rem;
    text-align: center;
    color: var(--text-secondary);
}

.search-field li > a {
    display: block;
    width: 100%;
}

.search-field li:hover, 
.search-field li.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.search-total {
    padding: .3rem 0;
    line-height: 1.4;
    font-size: .9rem;
    color: var(--text-muted);
}
.search-total strong {
    color: var(--primary);
}

/* -------------------------------------------------- Product List -------------------------------------------------- */

.list-product-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.list-product-item > a {
    display: block;
    width: 100%;
}

.list-product-item .product-wrap {
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
}

.list-product-item .product-info {
    width: 100%;
    padding: .5rem 1rem;
}

.list-product-item .product-title {
    margin-top: 0;
    margin-bottom: .5rem;
    font-size: 1.2rem;
}

.list-product-item .product-desc {
    width: 100%;
    min-height: 1.5rem;
    margin-bottom: .5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    color: var(--text-muted);
}

.list-product-item .product-price {
    font-size: 1.5rem;
    color: var(--primary);
}

.list-product-item .product-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: 1rem;
    width: 100%;
}

.list-product-item .product-tags > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;

}

.list-product-item .product-tags .date {
    font-size: .9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .list-product-item .product-title {
        font-size: 1rem;
    }
    .list-product-item .product-desc {
        font-size: .8rem;
    }
    .list-product-item .product-price {
        font-size: 1rem;
    }
}

/* -------------------------------------------------- Pagination -------------------------------------------------- */

.xrpagination ul.pagination li.active > a, 
.xrpagination ul.pagination li.active > span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    cursor: default;
}

.xrpagination ul.pagination li.active > a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* -------------------------------------------------- Mobile Nav -------------------------------------------------- */

.mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 4.5rem;
    border-top: 1px solid var(--border);
    background-color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .05);
    z-index: 999;
}

.mobile-nav .nav-item {
    height: 100%;
    box-sizing: border-box;
    padding: .5rem 0;
    
}
.mobile-nav .nav-item.active {
    color: var(--primary);
}

.mobile-nav .nav-item > a {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-icon {
    font-size: 1.5rem;
    text-align: center;
}
.nav-icon > i {
    font-size: inherit;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
    .footer {
        padding-bottom: 5rem;
    }
}

/* -------------------------------------------------- Detail -------------------------------------------------- */

.product-panel {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    background: #fff;
}

.product-panel-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: .5rem 1rem;
}

.product-panel-body {
    padding: .5rem 0;
}

.product-panel-title {
    position: relative;
    margin: 0;
    text-indent: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}
.product-panel-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.3rem;
    background: linear-gradient(180deg, var(--primary-shallow), var(--primary));
    border-radius: 2px;
}

.product-panel .nav-tabs > li {
    box-sizing: border-box;
}
.product-panel .nav-tabs > li > a {
    padding: 1rem 2rem;
    font-size: 1rem;
}
.product-panel .nav-tabs > li > a:hover {
    border: 0;
    border-bottom: 2px solid var(--primary);
    background-color: transparent;
    font-weight: 600;
    color: var(--primary);
}
.product-panel .nav-tabs > li.active > a, 
.product-panel .nav-tabs > li.active > a:focus, 
.product-panel .nav-tabs > li.active > a:hover {
    border: 0;
    border-bottom: 2px solid var(--primary);
    font-weight: 600;
    color: var(--primary);
}

.product-detail-content {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    min-height: 40vh;
    text-align: center;
}

.product-detail-content * {
    max-width: 100%;
}

.swiper-thumb-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: .5rem;
    background-color: #fff;
}

.thumb-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.thumb-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem;
    margin: 1rem 0;
    background-color: var(--primary-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.price-panel .label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-panel .price-main {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}
.price-panel .price-main::before {
    content: "¥";
    font-size: 1rem;
}

.price-panel .price-main > .integer {
    font-size: 2rem;
}

.price-panel .price-main > .decimal::before {
    content: ".";
    font-size: 1rem;
}

.price-panel .price-note {
    font-size: .8rem;
    color: var(--text-muted);
}

.product-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    padding: 1rem;
    width: 100%;
}

.product-sku-block {
    position: relative;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px dashed #eee;
}
.product-sku-block > ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}
.product-sku-block > ul > li {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}
.product-sku-block > ul > li.active {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.sku-label {
    margin-bottom: .5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.product-action {
    margin-top: 1rem;
}

.product-action .btn {
    width: 100%;
    padding: .8rem .5rem;
    border-radius: .3rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn.btn-primary {
    background: linear-gradient(90deg, #ff9000, var(--primary));
    border-color: transparent;
    color: #fff;
}
.btn.btn-cart {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.product-service {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
}

.product-service > span {
    font-size: .9rem;
    color: var(--text-secondary);
}

.product-service > span::before {
    content: "✓";
    color: var(--primary);
    margin-right: .3rem;
}

.product-card {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: .5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

.product-card .product-caption {
    display: grid;
    align-items: flex-end;
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 3;
}

.product-card .product-title {
    font-size: 1.3rem;
}
.product-card .product-desc {
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .product-card .product-title {
        font-size: 1rem;
    }
    .product-card .product-desc {
        font-size: .9rem;
    }
}

/* -------------------------------------------------- Sidebar -------------------------------------------------- */

.sidebar {
    width: 100%;
}

