/* --- Section 1: Base Theme & Wrapper --- */
.lps-showroom-wrapper-bbd6a1ff {
    background: #ffdf0000;
    color: #FAF5E5;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

/* --- Section 2: Sticky Header Row --- */
.lps-sticky-header-row-bbd6a1ff {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    background-color: #000000;
    top: 0;
    z-index: 100;
    padding: 15px !important;
    margin-bottom: 20px;
    gap: 15px;
}
/* --- Section 3: Product Grid (4 Per Row) --- */
.lps-grid-bbd6a1ff {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

@media (max-width: 1024px) { .lps-grid-bbd6a1ff { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lps-grid-bbd6a1ff { grid-template-columns: 1fr; } }

/* --- Section 4: Product Card (Border stays constant, only glow/scale) --- */
.lps-card-bbd6a1ff {
    background: #141006;
    border: 1px solid #2E2D2A;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lps-card-bbd6a1ff:hover {
    box-shadow: 0 0 25px rgba(220, 165, 74, 0.25);
    transform: translateY(-5px);
}

/* --- Section 5: Image Zoom Effect --- */
.lps-card-bbd6a1ff img {
    width: 100%;
    transition: transform 0.5s ease;
}

.lps-card-bbd6a1ff:hover img {
    transform: scale(1.1);
}

/* --- Section 4: Image Zoom Effect --- */
.lps-card-bbd6a1ff img {
    width: 100%;
    transition: transform 0.5s ease;
}

.lps-card-bbd6a1ff:hover img {
    transform: scale(1.1);
}
/* --- Section 5: Product Cards --- */
.lps-card-bbd6a1ff {
    background: #141006;
    border: 1px solid #2E2D2A;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}



/* --- Section 6: Price & Shop Now Button --- */
.price { font-size: 1.2rem; color: #FFFFFF; font-weight: bold; margin: 10px 0; display: flex; justify-content: center; align-items: baseline; gap: 8px; }
.price del { font-size: 0.8rem; color: #888; font-weight: normal; }

.shop-now-btn { 
    background: transparent;
    color: #DCA54A;
    border: 1px solid #DCA54A;
    padding: 10px 20px; 
    border-radius: 4px; 
    cursor: pointer; 
    text-transform: uppercase; 
    font-weight: bold; 
    transition: all 0.3s ease;
}

.shop-now-btn:hover { 
    background: #DCA54A; 
    color: #0E0D06; 
    box-shadow: 0 0 15px rgba(220, 165, 74, 0.4);
}
/* --- Section 7: Modal Overlay (Mac-style Animation) --- */
.lps-popover-bbd6a1ff {
    display: none;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(14, 13, 6, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 20px;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lps-popover-bbd6a1ff.lps-popover-active { 
    display: flex !important; 
    opacity: 1; 
    transform: scale(1);
}

/* --- Section 7: Modal Overlay (Mac-style Animation) --- */
.lps-popover-bbd6a1ff {
    display: none;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(14, 13, 6, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 20px;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lps-popover-bbd6a1ff.lps-popover-active { 
    display: flex !important; 
    opacity: 1; 
    transform: scale(1);
}

/* --- Section 8: Modal Circular Close Icon --- */
.lps-close-popover-bbd6a1ff {
    position: absolute;
    top: 15px; right: 15px;
    width: 30px; height: 30px;
    background: transparent;
    border: 1px solid #FAF5E5;
    border-radius: 50%; /* Circle */
    color: #FAF5E5;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.lps-close-popover-bbd6a1ff:hover {
    border-color: #DCA54A;
    color: #DCA54A;
    transform: rotate(90deg) scale(1.1);
}
/* --- Section 9: Modal Order Buttons --- */
.lps-popover-bbd6a1ff a {
    display: block; 
    padding: 12px; 
    margin: 6px 0; 
    border: 1px solid #2E2D2A;
    color: #FAF5E5; 
    text-decoration: none; 
    border-radius: 4px; 
    transition: 0.3s; 
    text-transform: uppercase; 
    font-size: 0.8rem;
    text-align: center;
}

.lps-popover-bbd6a1ff a:hover { 
    background: #DCA54A; 
    color: #0E0D06; 
    border-color: #DCA54A; 
}

/* --- Section 10: Active Filter Styles --- */
.lps-filter-bar-bbd6a1ff button {
    background: #1B1B1B;
    color: #FAF5E5;
    border: 1px solid #2E2D2A;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: 0.3s;
}

.lps-filter-bar-bbd6a1ff button.active { 
    background: #DCA54A; 
    color: #0E0D06; 
    border-color: #DCA54A; 
}

/* --- Section 11: Optimized Mobile Sidebar & Toggle --- */
@media (min-width: 769px) {
    .lps-mobile-filter-toggle-bbd6a1ff { display: none !important; }
    
    /* Ensure the filter bar stays horizontal on desktop */
    .lps-filter-bar-bbd6a1ff {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        height: auto !important;
        width: auto !important;
    }
    
    .lps-close-filter-sidebar-bbd6a1ff { display: none !important; }
}

@media (max-width: 768px) {
    .lps-sticky-header-row-bbd6a1ff {
       
    }

    .lps-mobile-filter-toggle-bbd6a1ff {
        display: block !important;
        background: #1B1B1B !important;
        border: 1px solid #DCA54A !important;
        color: #DCA54A !important;
        padding: 10px 15px !important;
        border-radius: 4px !important;
    }

    .lps-filter-bar-bbd6a1ff {
        display: none;
        position: fixed; top: 0; left: 0; height: 100%; width: 280px;
        background: #0E0D06;
        padding: 40px 20px;
        flex-direction: column;
        z-index: 999;
        box-shadow: 5px 0 20px rgba(0,0,0,0.8);
        border-right: 1px solid #DCA54A;
        gap: 15px;
    }
    
    .lps-filter-bar-bbd6a1ff.open { display: flex !important; }

    .lps-close-filter-sidebar-bbd6a1ff {
        display: block !important;
        background: transparent;
        border: 1px solid #DCA54A;
        color: #DCA54A;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-bottom: 20px;
        cursor: pointer;
    }
}

/* --- Section 12: Load More --- */
.load-more-btn {
    background: transparent;
    border: 1px solid #DCA54A;
    color: #DCA54A;
    padding: 12px 40px;
    margin: 40px auto;
    display: block;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.load-more-btn:hover { background: #DCA54A; color: #0E0D06; }

/* --- Section 13: Search Input Field Styling (High Specificity) --- */
.lps-search-input-bbd6a1ff {
    background: #1B1B1B !important;
    border: 1px solid #2E2D2A !important;
    color: #FFFFFF !important;
    padding: 12px 24px !important;
    width: 450px !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    height: auto !important; /* Forces reset of the theme's default height */
    box-shadow: none !important;
}

.lps-search-input-bbd6a1ff::placeholder {
    color: #888888 !important;
}

.lps-search-input-bbd6a1ff:focus {
    border-color: #DCA54A !important;
    box-shadow: 0 0 10px rgba(220, 165, 74, 0.2) !important;
}

@media (max-width: 900px) {
    .lps-search-input-bbd6a1ff {
        width: 100% !important;
        margin-top: 15px !important;
    }
}

/* Update the Sidebar Close Button */
.lps-close-filter-sidebar-bbd6a1ff {
    display: none; /* Only show in mobile sidebar */
    background: none;
    border: 1px solid #DCA54A;
    color: #DCA54A;
    font-size: 1.5rem;
    padding: 5px 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lps-close-filter-sidebar-bbd6a1ff { display: block; }
    
    /* Make Filter Toggle look like an Icon */
    .lps-mobile-filter-toggle-bbd6a1ff {
        background: #1B1B1B !important;
        border: 1px solid #DCA54A !important;
        color: #DCA54A !important;
        padding: 8px 15px !important;
        width: auto !important;
    }
}

/* --- Modal Circular Close Icon --- */
.lps-close-popover-bbd6a1ff {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 35px !important;
    height: 35px !important;
    background: transparent !important;
    border: 1px solid #DCA54A !important;
    border-radius: 50% !important;
    color: #DCA54A !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
}

/* --- Hover State --- */
.lps-close-popover-bbd6a1ff:hover {
    background: #DCA54A !important;
    color: #0E0D06 !important;
    border-color: #DCA54A !important;
    transform: rotate(90deg) scale(1.1) !important;
}
/* --- Section 14: Header & Description Styling --- */
.lps-header-section-bbd6a1ff {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.lps-title-bbd6a1ff {
    font-size: 2.5rem;
    color: #FAF5E5;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lps-description-bbd6a1ff {
    font-size: 1.1rem;
    color: #888888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive adjustment for the heading */
@media (max-width: 768px) {
    .lps-title-bbd6a1ff {
        font-size: 1.8rem;
    }
    .lps-header-section-bbd6a1ff {
        margin-bottom: 30px;
    }
}

