/* ====================
    Background Art (Wing)
================================================ */

/* Typography */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-cart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.cart-bounce .badge-count {
    animation: bounce-cart 0.4s ease;
}

.cart-bounce i {
    animation: bounce-cart 0.4s ease;
}


/* ====================
3. Quick Navigation (Glass Style)
==================== */
.quick-nav {
    margin-top: -20px;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.quick-nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 1.2rem;
    border-radius: var(--radius-12px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-decoration: none;
    gap: 15px;
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 43, 76, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.quick-nav-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(26, 43, 76, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s;
}

.quick-nav-item:hover .quick-nav-icon-box {
    background: var(--primary);
    color: #fff;
}

.quick-nav-text-group {
    display: flex;
    flex-direction: column;
}

.quick-nav-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.quick-nav-sub {
    font-size: 0.7rem;
    color: #888;
    font-family: var(--font-main);
    letter-spacing: 0.05em;
}

@media (max-width: 991px) {
    .quick-nav-list {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .quick-nav-item {
        min-width: 150px;
        flex-shrink: 0;
    }
}

/* ====================
    4. Products (16:9 Image, Full Width)
==================== */
.products-section {
    padding: 4rem 0;
}

.section-header-wrapper {
    margin-bottom: 3rem;
}

.sectionTitle,
.sectionSubTitle {
    position: relative;
}

.sectionTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.sectionTitle::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid var(--primary);
    width: 80%;
    height: 1px;
    bottom: 0;
    left: 0;
}

.sectionSubTitle {
    display: flex;
    align-items: center;
}

.sectionSubTitleText {
    margin: 0;
    margin-right: 15px;
    white-space: nowrap;
    font-family: var(--font-eng);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--text-sub);
    text-transform: uppercase;
}

.sectionSubTitle::after {
    content: "";
    border-bottom: 1px solid var(--primary);
    flex-grow: 1;
    height: 1px;
    display: block;
    opacity: 0.5;
}

@media (max-width: 767.98px) {

    .sectionTitle,
    .sectionSubTitle {
        width: 100%;
    }
}

@media (min-width: 768px) {

    .sectionTitle,
    .sectionSubTitle {
        width: 50%;
    }
}

.product-scroll-container {
    position: relative;
    padding: 0 10px;
}

.product-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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


.img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
}


.overlay-badges {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 2;
}

.badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Merged Tags Overlay */
.tags-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    pointer-events: none;
    z-index: 10;
}



.tags-area {
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag-pill {
    font-size: 0.65rem;
    color: #555;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.product-desc {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-tag {
    background: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #888;
}

.price-original {
    font-size: 10px;
    text-decoration: line-through;
    color: #adb5bd;
}

.price-current {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
}

.price-sale {
    color: #dc3545;
}

.maker-name {
    font-size: 10px;
    color: #adb5bd;
    margin-bottom: 2px;
}



.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    position: relative;
}

.btn-icon:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-icon.active-fav {
    background: #ffebeb;
    color: #e74c3c;
    border-color: #e74c3c;
}

.btn-cart {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212529;
    color: white;
    border: none;
    transition: all 0.2s;
}

.btn-cart:hover {
    background-color: #4f46e5;
    color: white;
}

.btn-cart:active {
    transform: scale(0.95);
}

/* Action Tooltip */
.action-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(26, 43, 76, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.action-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(26, 43, 76, 0.95) transparent transparent transparent;
}

.action-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}



.view-more-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-more {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-eng);
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-view-more:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(26, 43, 76, 0.2);
}

/* ====================
    5. Official Brands
==================== */
.brand-section {
    padding: 3rem 0;
    overflow: hidden;
    background: transparent;
}

.brand-scroll-wrapper {
    position: relative;
    padding: 0 20px;
}

.brand-scroll-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

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




/* ====================
    8. Cart UI (Fixed Right)
==================== */
.cart-tab-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: #fff;
    width: 50px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1040;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.cart-tab-fixed:hover {
    width: 60px;
    background-color: #2c3e50;
}

.cart-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cart-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.cart-badge {
    background: #e74c3c;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    z-index: 110000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 109000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.cart-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-head {
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.cart-head-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.btn-close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
}

.free-shipping-bar {
    background: #e9ecef;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.free-shipping-progress {
    background: var(--gold-accent);
    height: 100%;
    width: 70%;
    transition: width 0.5s;
}

.free-shipping-text {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.cart-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-thumb {
    height: 60px;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #f9f9f9;
}

.cart-info {
    flex: 1;
}

.cart-item-name {
    color: var(--text-main);
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.cart-item-price {
    font-size: 1rem;
    color: var(--primary);
}

.cart-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.qty-selector {
    display: flex;
    align-items: center;
}

.qty-val {
    font-size: 0.9rem;
    margin: 0 8px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.btn-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-remove:hover {
    color: #e74c3c;
}

.cart-foot {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.cart-summary {
    margin-bottom: 1rem;
}

/* Merged Cart Row */
.cart-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #666;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px dashed #ccc;
    padding-top: 1rem;
}


.btn-checkout:hover {
    background: #000;
}

@media (max-width: 576px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .cart-tab-fixed {
        display: none;
    }
}



/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #eee;
    /* z-index: 10; */
    /* z-index: 100000; */
    z-index: 999;

    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    font-size: 0.65rem;
    width: 20%;
    height: 100%;
    transition: color 0.2s;
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 3px;
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item .nav-badge {
    position: absolute;
    top: 5px;
    right: calc(50% - 15px);
    background-color: #e74c3c;
    color: white;
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .mobile-nav {
        display: flex;
    }


    body {
        padding-bottom: 60px;
    }
}

/* ==================== Product List Specifics ==================== */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #ccc;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.filter-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-header {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: block;
    color: var(--primary);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.custom-checkbox input {
    margin-right: 8px;
    accent-color: var(--primary);
}

.custom-checkbox:hover {
    color: var(--gold-accent);
}



.filter-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.3s;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

.filter-drawer.open {
    left: 0;
}

.filter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1900;
    display: none;
}

.filter-backdrop.open {
    display: block;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-count {
    font-size: 0.9rem;
    color: #666;
}

.result-count strong {
    font-size: 1.2rem;
    color: var(--text-main);
}

.sort-select {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    outline: none;
    font-size: 0.9rem;
    background: #fff;
}

.view-switch {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    color: #888;
}

.view-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pagination-area {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.page-link {
    color: var(--text-main);
    border: 1px solid #eee;
    margin: 0 5px;
    border-radius: 6px;
    padding: 8px 16px;
}

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

.page-link:hover:not(.active) {
    background: #f0f0f0;
}

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


    .mobile-filter-btn {
        display: block;
    }
}

.toast-notify {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(26, 43, 76, 0.9);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.toast-notify.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Info Section (Merged Card) */
.product-info-card {
    background: #fff;
    backdrop-filter: var(--glass-blur);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.product-meta-top {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-badge {
    background: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.status-badge.new {
    background: var(--primary);
}

/* Merged Item Code */
.item-code {
    font-size: 0.8rem;
    color: #888;
    font-family: monospace;
    display: block;
    margin-bottom: 10px;
}

/* Merged Product Name LG */
.product-name-lg {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #212529;
    letter-spacing: -0.02em;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Merged Price Area */
.price-area {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

/* Merged Price LG */
.price-lg {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    font-family: var(--font-eng);
    letter-spacing: -0.02em;
}

/* Merged Price Note */
.price-note {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Merged Action Area */
.action-area {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Merged Qty Row */
.qty-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

/* Merged Qty Label */
.qty-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Merged Qty Input Group */
.qty-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    width: 120px;
}

/* Merged Qty Btn */
.qty-btn {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border: none;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    padding: 0;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #e9ecef;
}

/* Merged Qty Input */
.qty-input {
    width: 100%;
    height: 36px;
    text-align: center;
    border: none;
    font-weight: 700;
    color: #212529;
    outline: none;
    background: #fff;
}



/* Merged Fav LG */
.btn-fav-lg {
    width: 54px;
    height: 54px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    color: #adb5bd;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-fav-lg:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fff;
}

/* Merged Desc Box */
.product-desc-box {
    margin-bottom: 30px;
    background: #fff;
    padding: 0;
}

/* Merged Desc Title */
.desc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    border-left: 4px solid var(--gold-accent);
    padding-left: 10px;
    line-height: 1.2;
}

/* Merged Desc Text */
.desc-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
    text-align: justify;
}

/* Merged Spec Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-table th {
    width: 30%;
    background: rgba(0, 0, 0, 0.02);
    color: #888;
    font-weight: 500;
}

.spec-table td {
    font-weight: 600;
    color: #212529;
}

/* Merged Related Section */
.related-section {
    padding: 4rem 0;
    background: #fff;
}

.related-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}







@media (max-width: 991px) {
    .product-info-card {
        padding: 20px;
        margin-top: 20px;
        border: none;
        background: transparent;
    }

    .product-name-lg {
        font-size: 1.5rem;
    }

    .price-lg {
        font-size: 1.8rem;
    }

    .btn-add-cart-lg {
        font-size: 1rem;
        padding: 12px;
    }

    .gallery-thumbs {
        justify-content: flex-start;
    }
}

/* ====================
 News Detail
 ==================== */
.news-detail-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.news-header {
    border-bottom: 1px solid #eee;
}

.news-meta {
    display: flex;
    align-items: center;
}

.news-meta .badge-label.new {
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.news-date {
    color: #888;
    font-size: 0.9rem;
}

.news-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin: 0;
}


.news-body {
    line-height: 1.8;
    color: #333;
}

.news-body h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

/* cart */
.cartContainer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    /* padding: 1rem 1rem 0rem 1rem; */
    padding: 1rem;
    box-shadow: var(--glass-shadow);
}

.cartItemRow {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .cartItem {
        height: auto;
        aspect-ratio: 16/9;
        flex-shrink: 0;
    }
}

@media (min-width: 768px) {
    .cartItem {
        height: 100px;
        aspect-ratio: 16/9;
        flex-shrink: 0;
    }
}

.confirmCard {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 20px;
    box-shadow: var(--glass-shadow);
}

.orderConfirmSubTitle {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Specs Section */
.specs-container {
    position: relative;
    max-height: 240px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.specs-container.expanded {
    max-height: 2000px;
}

.specs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0), rgba(250, 250, 250, 1) 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
    transition: opacity 0.3s;
}

.specs-container.expanded .specs-overlay {
    opacity: 0;
    pointer-events: none;
}

.specs-close-area {
    display: none;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.specs-container.expanded .specs-close-area {
    display: block;
}

.btn-more {
    border: none;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-more:hover {
    color: #555;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

.spec-item {
    display: flex;
    border-bottom: 1px solid #999;
    padding: 8px 0;
    font-size: 13px;
}

.spec-label {
    width: 110px;
    color: #999;
    flex-shrink: 0;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }

    .price {
        font-size: 1rem !important;
    }

    .btn-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
}

dl dd {
    margin-bottom: 0rem !important;
}

/* =========================================
   絞り込みサイドバー カスタムスタイル
========================================= */

.text-dark-navy {
    color: #1c2841;
    font-size: 15px;
    font-weight: bold;
}


/* =========================================
   カスタムチェックボックス
========================================= */
.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0;
    padding: 0.25rem 0;
}

/* デフォルトのチェックボックスを隠す */
.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* 四角いボックス部分 */
.custom-checkbox-box {
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background-color: #ffffff;
    flex-shrink: 0;
}

/* チェックマークのSVG（デフォルトは透明） */
.custom-checkbox-box svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* ラベルのテキスト */
.custom-checkbox-text {
    font-size: 13px;
    color: #64748b;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

/* --- チェックされた時の状態変化 --- */

/* 枠と背景をネイビーに */
.custom-checkbox-input:checked~.custom-checkbox-box {
    background-color: #1c2841;
    border-color: #1c2841;
}

/* チェックマークを表示 */
.custom-checkbox-input:checked~.custom-checkbox-box svg {
    opacity: 1;
}

/* テキストをネイビー＆太字に */
.custom-checkbox-input:checked~.custom-checkbox-text {
    color: #1c2841;
}