/* ========================================
   SHOP PAGE STYLES - Based on Figma Design
   ======================================== */

/* Navbar White Variant */
.navbar-white {
    background: #FFFFFF;
    border-bottom: none;
}

.navbar-white .nav-link {
    color: #6C7275;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.navbar-white .nav-link:hover,
.navbar-white .nav-link.active {
    color: #D63585;
}

.navbar-white .icon-btn {
    color: #141718;
}

.navbar-white .cart-count {
    background: #D63585;
    color: #FFFFFF;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    width: 100%;
    height: 392px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(243, 245, 247, 0) 27.68%,
        rgba(243, 245, 247, 0.6) 66.63%,
        rgba(243, 245, 247, 0.2) 100%
    );
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #605F5F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #D63585;
}

.breadcrumb-separator {
    color: #605F5F;
    font-size: 14px;
}

.breadcrumb-current {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

/* Page Title */
.page-header-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 54px;
    line-height: 58px;
    letter-spacing: -1px;
    color: #000000;
    margin: 0;
}

.page-header-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
    max-width: 800px;
    margin: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section-shop {
    padding: 60px 0 100px;
}

.shop-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-layout {
    display: flex;
    gap: 24px;
}

/* ========================================
   SIDEBAR
   ======================================== */
.shop-sidebar {
    width: 276px;
    flex-shrink: 0;
}

.sidebar-header {
    margin-bottom: 32px;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.filter-toggle-btn svg {
    color: #121212;
}

.filter-toggle-btn span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #121212;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Filter Sections */
.filter-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #121212;
    margin: 0;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    margin: 0;
}

.category-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #807E7E;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.category-btn:hover {
    color: #121212;
}

.category-btn.active {
    color: #121212;
    border-bottom: 1px solid #121212;
}

/* Price Filters */
.price-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Removed duplicate .price-checkbox styles - see hierarchical categories section */

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 1.5px solid #6C7275;
    border-radius: 4px;
    background: #FCFCFD;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.price-checkbox input:checked + .price-label + .checkbox-custom,
.price-checkbox input:checked ~ .checkbox-custom {
    background: #141718;
    border-color: #141718;
}

.checkbox-custom svg {
    display: none;
    color: #FCFCFD;
}

.price-checkbox input:checked + .price-label + .checkbox-custom svg,
.price-checkbox input:checked ~ .checkbox-custom svg {
    display: block;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.shop-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toolbar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
    margin: 0;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.sort-btn span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #121212;
}

.sort-btn svg {
    color: #121212;
}

/* View Selector */
.view-selector {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
}

.view-btn {
    width: 46px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: none;
    border-right: 1px solid #E8ECEF;
    cursor: pointer;
    color: #6C7275;
    transition: all 0.2s ease;
}

.view-btn:last-child {
    border-right: none;
}

.view-btn:hover,
.view-btn.active {
    background: #F3F5F7;
    color: #121212;
}

/* ========================================
   PRODUCT GRID
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 349px;
    background: #F3F5F7;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 4px 14px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
}

.badge-new {
    background: #FFFFFF;
    color: #D63585;
}

.badge-sale {
    background: #38CB89;
    color: #FFFFFF;
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 8px 16px -8px rgba(15, 15, 15, 0.12);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
    color: #141718;
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 8px 24px;
    background: #D63585;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #FEFEFE;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.04);
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Star Rating */
.product-rating {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #C9A164;
}

/* Product Name */
.product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #141718;
    margin: 0;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #121212;
}

.original-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #6C7275;
    text-decoration: line-through;
}

/* ========================================
   SHOW MORE BUTTON
   ======================================== */
.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.show-more-btn {
    padding: 6px 40px;
    background: transparent;
    border: 1px solid #141718;
    border-radius: 80px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #D63585;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #D63585;
    border-color: #D63585;
    color: #FFFFFF;
}

/* ========================================
   NEWSLETTER SECTION - Figma Design
   ======================================== */
.newsletter-section {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: #F2F4F6;
}

.newsletter-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-card-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 132px; /* offset to match Figma positioning */
}

.newsletter-card {
    background: #FFFFFF;
    border: 1px solid #C9A164;
    border-radius: 8px;
    width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
}

.newsletter-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.4px;
    color: #D63585;
    margin: 0;
    width: 456px;
}

.newsletter-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #141718;
    margin: 0;
    width: 540px;
}

.newsletter-form-wrapper {
    width: 488px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 52px;
}

.newsletter-icon-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-email-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #141718;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6C7275;
}

.newsletter-submit-btn {
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #6C7275;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.newsletter-submit-btn:hover {
    color: #D63585;
}

.newsletter-underline {
    height: 1px;
    background: rgba(108, 114, 117, 0.5);
    width: 100%;
}

/* ========================================
   FOOTER ADJUSTMENTS
   ======================================== */
.footer {
    margin-top: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .shop-layout {
        flex-direction: column;
    }
    
    .shop-sidebar {
        width: 100%;
    }
    
    .sidebar-content {
        display: none;
    }
    
    .sidebar-content.active {
        display: flex;
    }
    
    .page-header-title {
        font-size: 40px;
        line-height: 46px;
    }
    
    .page-header-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }
    
    .page-header-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .page-header-subtitle {
        font-size: 14px;
        line-height: 22px;
        padding: 0 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .toolbar-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .newsletter-section {
        height: auto;
        min-height: 360px;
        padding: 40px 20px;
    }
    
    .newsletter-card-container {
        position: relative;
        padding-left: 0;
    }
    
    .newsletter-card {
        width: 100%;
        max-width: 540px;
        padding: 24px 16px;
    }
    
    .newsletter-title {
        font-size: 28px;
        line-height: 34px;
        width: 100%;
    }
    
    .newsletter-description {
        font-size: 14px;
        line-height: 22px;
        width: 100%;
        padding: 0 16px;
    }
    
    .newsletter-form-wrapper {
        width: 100%;
        padding: 0 16px;
    }
}

/* ========================================
   ENHANCED SHOP STYLES - v2.6
   ======================================== */

/* Category Count Badge */
.category-count {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
}

.category-btn.active .category-count {
    color: #D63585;
}

/* Results Count in Toolbar */
.results-count {
    font-weight: 400;
    font-size: 14px;
    color: #6C7275;
    margin-left: 8px;
}

/* Product Brand */
.product-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #6C7275;
    margin: 4px 0;
}

/* Product Color */
.product-color {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Contact for Price styling */
.contact-price {
    color: #D63585 !important;
    font-size: 14px;
}

/* Multi-image indicator */
.multi-image-indicator {
    position: absolute;
    bottom: 60px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.sort-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.sort-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #141718;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sort-option:hover {
    background: #F3F5F7;
}

.sort-option.active {
    color: #D63585;
    font-weight: 500;
}

.sort-option:first-child {
    border-radius: 8px 8px 0 0;
}

.sort-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Brand Filters */
.brand-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    gap: 16px;
}

.no-products svg {
    opacity: 0.5;
}

.no-products p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #6C7275;
}

/* Loading State */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #F3F5F7;
    border-top-color: #D63585;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #6C7275;
}

/* Show More Button Enhanced */
.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.remaining-count {
    font-size: 13px;
    color: #6C7275;
    font-weight: 400;
}

/* Cart Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast svg {
    flex-shrink: 0;
}

.cart-toast span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #141718;
}

/* Wishlist Button Active */
.wishlist-btn.active svg path {
    fill: #D63585;
    stroke: #D63585;
}

/* Product Card Enhancements */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Product Image Loading */
.product-image {
    background: #F3F5F7;
    transition: opacity 0.3s ease;
}

.product-image[src="images/avatar-placeholder.png"] {
    opacity: 0.6;
    object-fit: contain;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sort-dropdown-menu {
        left: 0;
        right: auto;
    }
    
    .cart-toast {
        left: 20px;
        right: 20px;
        bottom: 80px;
    }
    
    .multi-image-indicator {
        bottom: 50px;
    }
}

/* Grid View Improvements */
.product-grid.grid-1 .product-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-grid.grid-1 .product-image-container {
    flex: 0 0 200px;
    height: 200px;
}

.product-grid.grid-1 .product-info {
    flex: 1;
    padding: 20px 0;
}

.product-grid.grid-1 .product-name {
    font-size: 18px;
}

.product-grid.grid-1 .add-to-cart-btn {
    position: relative;
    opacity: 1;
    transform: none;
    margin-top: 16px;
    width: auto;
    padding: 12px 24px;
}

/* Filter Section Styling */
.filter-section {
    margin-bottom: 32px;
}

.filter-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #141718;
    margin-bottom: 16px;
}

/* ========================================
   HIERARCHICAL CATEGORIES v2.7
   ======================================== */

/* Category with checkbox */
.category-item {
    margin-bottom: 8px;
}

.category-item.has-subcategories {
    margin-bottom: 4px;
}

.category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.category-checkbox input[type="checkbox"] {
    display: none;
}

.category-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 1.5px solid #6C7275;
    border-radius: 4px;
    background: #FCFCFD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.category-checkbox input:checked + .checkmark {
    background: #D63585;
    border-color: #D63585;
}

.category-checkbox input:checked + .checkmark::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -2px;
}

.category-checkbox .category-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #6C7275;
    transition: color 0.2s ease;
}

.category-checkbox:hover .category-name {
    color: #121212;
}

.category-checkbox input:checked ~ .category-name {
    color: #121212;
}

.expand-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6C7275;
    transition: transform 0.2s ease;
}

.expand-btn.expanded {
    transform: rotate(180deg);
}

/* Subcategories */
.subcategory-list {
    list-style: none;
    padding: 8px 0 8px 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subcategory-item {
    margin: 0;
}

.subcategory-item .category-checkbox .category-name {
    font-size: 13px;
}

/* Price checkbox multi-select */
.price-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 4px 0;
    justify-content: flex-start;
}

.price-checkbox input[type="checkbox"] {
    display: none;
}

.price-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 1.5px solid #6C7275;
    border-radius: 4px;
    background: #FCFCFD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    order: 1;
}

.price-checkbox input:checked + .checkmark {
    background: #D63585;
    border-color: #D63585;
}

.price-checkbox input:checked + .checkmark::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -2px;
}

.price-checkbox .price-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #6C7275;
    order: 2;
}

.price-checkbox input:checked ~ .price-label {
    color: #121212;
}

/* ========================================
   INQUIRY BUTTON STYLING
   ======================================== */

.add-to-cart-btn.inquiry-btn {
    background: #377DFF !important;
}

.add-to-cart-btn.inquiry-btn:hover {
    background: #2563EB !important;
}

/* Product Meta (SKU + Category) */
.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-sku {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #D63585;
    font-weight: 500;
}

.product-category-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6C7275;
    background: #F3F5F7;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Sale Badge */
.badge-sale {
    background: #EF4444 !important;
    color: white !important;
}
