/* hero section start */

#hero-section {
    height: 40vh;
    background: url('../images/shop/shop-hero-section.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    color: white;
    padding: 40px;
    text-align: center;
}

/* hero section end */


.section-title {
    font-size: 22px;
    font-weight: 500;
    color: #1A1A1C;
}

.section-subtitle {
    font-size: 14px;
    color: #777;
}

.view-all-link {
    font-size: 14px;
    color: #c86a79;
    text-decoration: none;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Product Card */
.product-card {
    border: 1px solid #e4a7af;
    background: #fff;
    /* padding: 40px 20px; */
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Image Wrapper */
.product-image-wrapper {
   /* height: 220px;        
    display: flex;
    align-items: center;
    justify-content: center; */
    overflow: hidden;   
}

.product-image-wrapper img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: contain;  */
    height: 443px;
}

/* Badge */
.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c86a79;
    color: #fff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Text */
.product-title {
    font-size: 15px;
    font-weight: 500;
}

.product-price {
    font-size: 14px;
    color: #555;
}

.best-sellers-section,
.earrings-section,
.bangles-section,
.rings-section {
    background-color: #F7F7F8;
}


#breadcrumb_section {
    font-size: 14px;
}

#breadcrumb_section .breadcrumb-item a {
    color: #777 !important;
    transition: 0.3s ease;
}

#breadcrumb_section .breadcrumb-item a:hover {
    color: #000;
}

#breadcrumb_section .breadcrumb-item.active {
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: " > ";
}

/* Mobile Responsive */
@media (max-width: 576px) {
    #breadcrumb_section {
        font-size: 12px;
    }

    #breadcrumb_section .breadcrumb {
        flex-wrap: wrap;
    }
}

.product-image-wrapper {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important; 
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f8f8; /* optional */
}

.product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;   /* IMPORTANT */
}




/* ===== FILTER WRAP ===== */
.filter-wrap {
    background: #fff;
    border: 0.5px solid #f0d0d5;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 13px;
    font-weight: 500;
    color: #c86a79;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title::after {
    content: '';
    flex: 1;
    height: 0.5px;
    background: #f0d0d5;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 4px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-label {
    font-size: 11px;
    color: #b0899a;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.filter-select,
.filter-input {
    height: 38px;
    border: 0.5px solid #e8c0c8;
    border-radius: 8px;
    background-color: #fdf7f8;
    color: #3a2530;
    font-size: 13px;
    padding: 0 12px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c86a79' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.filter-input {
    background-image: none;
    padding-right: 12px;
}

.filter-select:hover,
.filter-input:hover {
    border-color: #c86a79;
}

.filter-select:focus,
.filter-input:focus {
    border-color: #c86a79;
    box-shadow: 0 0 0 3px rgba(200, 106, 121, 0.1);
    background-color: #fff;
}

.filter-input::placeholder {
    color: #c4a0aa;
}

/* Price Range Row */
.price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-sep {
    color: #c86a79;
    font-size: 13px;
    flex-shrink: 0;
}

/* Buttons */
.btn-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
}

.btn-apply {
    height: 38px;
    padding: 0 22px;
    background: #c86a79;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-apply:hover {
    background: #b55868;
}

.btn-apply:active {
    transform: scale(0.98);
}

.btn-reset {
    height: 38px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #c86a79;
    border: 0.5px solid #e8c0c8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-reset:hover {
    background: #fdf0f2;
    border-color: #c86a79;
    color: #c86a79;
}

/* Mobile */
@media (max-width: 576px) {
    .filter-grid {
        grid-template-columns: 1fr 1fr;
    }
    .filter-wrap {
        padding: 16px;
    }
}







/* Desktop - filter bar show, mobile button hide */
.desktop-filter {
    display: block;
}

.mobile-filter {
    display: none;
}

/* Mobile - filter bar hide, mobile button show */
@media (max-width: 767px) {
    .desktop-filter {
        display: none;
    }

    .mobile-filter {
        display: block;
    }

/* ===== FILTER TOGGLE BUTTON ===== */
.filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 18px;
    background: #c86a79;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-toggle-btn:hover {
    background: #b55868;
}

.filter-active-badge {
    background: #fff;
    color: #c86a79;
    font-size: 11px;
    font-weight: 500;
    border-radius: 20px;
    padding: 2px 7px;
    line-height: 1.4;
}

.results-count {
    font-size: 13px;
    color: #888;
}

/* ===== OVERLAY ===== */
.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    transition: opacity 0.3s;
}

.filter-overlay.show {
    display: block;
}

/* ===== SIDEBAR ===== */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background: #fff;
    border-right: 0.5px solid #f0d0d5;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.filter-sidebar.open {
    transform: translateX(0);
}

/* Sidebar Header */
.sb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 0.5px solid #f0d0d5;
    flex-shrink: 0;
}

.sb-title {
    font-size: 13px;
    font-weight: 500;
    color: #c86a79;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sb-close {
    width: 28px;
    height: 28px;
    border: 0.5px solid #e8c0c8;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c86a79;
    font-size: 15px;
    line-height: 1;
}

.sb-close:hover {
    background: #fdf0f2;
}

/* Sidebar Body */
.sb-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sb-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-label {
    font-size: 11px;
    font-weight: 500;
    color: #b0899a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sb-select,
.sb-input {
    height: 38px;
    border: 0.5px solid #e8c0c8;
    border-radius: 8px;
    background-color: #fdf7f8;
    color: #3a2530;
    font-size: 13px;
    padding: 0 10px;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.sb-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23c86a79' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.sb-select:focus,
.sb-input:focus {
    border-color: #c86a79;
    box-shadow: 0 0 0 3px rgba(200, 106, 121, 0.1);
    background-color: #fff;
}

.sb-input::placeholder {
    color: #c4a0aa;
}

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

.price-sep {
    color: #c86a79;
    font-size: 13px;
    flex-shrink: 0;
}

/* Sidebar Footer */
.sb-footer {
    padding: 14px 18px;
    border-top: 0.5px solid #f0d0d5;
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-apply {
    flex: 1;
    height: 38px;
    background: #c86a79;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-apply:hover {
    background: #b55868;
}

.btn-reset {
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #c86a79;
    border: 0.5px solid #e8c0c8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-reset:hover {
    background: #fdf0f2;
    border-color: #c86a79;
}

/* Body scroll lock */
body.filter-open {
    overflow: hidden;
}

}}