/* input(26,15): run-time error CSS1031: Expected selector, found '-'
input(26,15): run-time error CSS1025: Expected comma or open brace, found '-' */
/* Professional Compact Layout for Aarav Clothing */

:root {
    --primary-navy: #1a2332;
    --muted-gold: #D4AF37;
    --warm-ivory: #F9F7F1;
    --elegant-white: #FFFFFF;
    --cool-gray: #A1A1A1;

    /* Layout Colors */
    --page-bg: #f5f5f5;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --discount-green: #2ecc71;

    /* Derived Colors */
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    background-color: var(--page-bg);
}

* Hero Slider - Picture Element Responsive Images */ .hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide picture img,
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ensure only one image source is used */
.hero-slide picture source {
    display: none;
}

/* Swiper Pagination Dots - Custom Styling */
.hero-slider-container .swiper-pagination {
    bottom: 20px;
    z-index: 10;
}

.hero-slider-container .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.hero-slider-container .swiper-pagination-bullet:hover {
    background: rgba(212, 175, 55, 0.7);
    transform: scale(1.2);
}

.hero-slider-container .swiper-pagination-bullet-active {
    background: #D4AF37;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Mobile responsive - Pagination dots */
@media (max-width: 768px) {
    .hero-slider-container .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* ===== TRUST STRIP (Aarav Brand Identity) ===== */
.trust-strip {
    background: var(--elegant-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.2rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    box-shadow: var(--card-shadow);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    /* Brand Serif Font */
    font-size: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-item i {
    color: var(--muted-gold);
    /* Brand Gold Icon */
    font-size: 1.4rem;
}

.trust-divider {
    height: 25px;
    width: 1px;
    background: var(--muted-gold);
    opacity: 0.3;
}

@media (max-width: 991px) {
    .trust-strip {
        flex-direction: row !important;
        justify-content: space-around !important;
        gap: 0.5rem !important;
        padding: 0.75rem 0.5rem !important;
        margin-bottom: 1rem !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .trust-item {
        flex-direction: column;
        gap: 4px;
        font-size: 0.7rem;
        text-align: center;
        font-weight: 500;
    }

    .trust-item i {
        font-size: 1.8rem;
    }

    .trust-divider {
        display: none;
    }
}


/* ===== CATEGORY ARCH STRIP ===== */
.category-arch-scroll {
    background: #ffffff;
    /* Clean white background */
    padding: 1.5rem 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.category-arch-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-arch-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-arch-scroll::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 2px;
}

.arch-container {
    display: inline-flex;
    gap: 2.5rem;
    padding: 0 1.5rem;
    min-width: 100%;
    justify-content: center;
    /* Center items for a balanced look */
}

/* Arch Item Wrapper */
.arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 90px;
    flex-shrink: 0;
    cursor: pointer;
}

.arch-item:hover {
    transform: translateY(-5px);
}

/* The Arch Shape - Stronger Definition */
.arch-img-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* standard circle for cleaner look, or keep arch if preferred */
    overflow: hidden;
    margin-bottom: 0.8rem;
    border: 2px solid var(--muted-gold);
    /* Gold border for brand definition */
    background: #f8f9fa;
    /* Light grey background so shape is always visible */
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Specific styling for the 'All' placeholder to make it look like a UI element */
.arch-img-placeholder {
    font-size: 2rem;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures image fits without cropping */
    padding: 8px;
    /* Breathing room inside the circle */
    object-position: center;
    transition: transform 0.4s ease;
}

.arch-item:hover .arch-img-container {
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
    /* Gold glow on hover */
    border-color: var(--primary-navy);
}

.arch-item:hover .arch-img {
    transform: scale(1.1);
}

.arch-label {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 600;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    /* Consistent Serif font */
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {

    /* Hide scrollbar on mobile */
    .category-arch-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-arch-scroll {
        scrollbar-width: none;
        padding: 1rem 0;
        /* slightly less top/bottom padding */
    }

    .arch-container {
        justify-content: flex-start;
        gap: 1rem;
        /* Tighter spacing */
        padding: 0 1rem;
        /* Add side padding */
    }

    .arch-item {
        width: 65px;
        /* Smaller item width */
    }

    .arch-img-container {
        width: 60px;
        /* Smaller circle */
        height: 60px;
        margin-bottom: 0.5rem;
        border-width: 1.5px;
        /* Thinner border */
    }

    .arch-label {
        font-size: 0.7rem;
        /* Smaller text */
        line-height: 1.1;
    }
}


/* ===== TOP CATEGORIES STRIP ===== */
.category-nav-scroll {
    background: var(--elegant-white);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.8rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    -webkit-overflow-scrolling: touch;
}

.category-nav-scroll::-webkit-scrollbar {
    height: 3px;
}

.category-nav-scroll::-webkit-scrollbar-thumb {
    background: var(--muted-gold);
}

.nav-pill-item {
    display: inline-block;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    margin: 0 0.4rem;
    color: var(--text-muted);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    background: #fdfdfd;
}

.nav-pill-item:hover,
.nav-pill-item.active {
    color: var(--elegant-white);
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(26, 35, 50, 0.2);
}

/* ===== SIDEBAR FILTERS (High Fidelity) ===== */
.filter-sidebar {
    position: sticky;
    top: 90px;
    background: transparent;
    height: auto;
    width: 100%;
    /* Ensure width is stable */
    z-index: 50;
}

/* Sort Dropdown Box */
.sort-box {
    background: var(--elegant-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.2s;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sort-box:hover {
    border-color: var(--primary-navy);
}

.sort-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.sort-selected {
    font-weight: 600;
    color: var(--primary-navy);
}

/* Custom Dropdown Menu */
.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    /* Hidden by default */
    margin-top: 5px;
    padding: 0.5rem 0;
}

.sort-box.active .sort-dropdown-menu {
    display: block;
}

.sort-option {
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sort-option:hover {
    background: #f8f9fa;
    color: var(--primary-navy);
}

.sort-option.selected {
    background: #f0f7ff;
    /* Very light blue for active */
    color: var(--primary-navy);
    font-weight: 500;
}

.sort-option.selected::after {
    content: '\f00c';
    /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-navy);
    font-size: 0.8rem;
}

/* Main Filter Panel */
.filter-panel {
    background: var(--elegant-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Internal scrolling logic */
    max-height: calc(100vh - 200px);
    /* Leave room for header + sort box */
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Hide Scrollbar Chrome/Safari/Edge */
.filter-panel::-webkit-scrollbar {
    display: none;
}

.filter-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

/* ===== MOBILE FILTER BAR ===== */
.mobile-filter-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    /* Clean border */
    border-radius: 4px;
    /* Slight roundness or 0 for sharp bar */
    padding: 0;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 70px;
    /* Adjust based on header height */
    z-index: 900;
}

.btn-mobile-filter {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.filter-divider {
    width: 1px;
    height: 25px;
    background: #e0e0e0;
}

.filter-main-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-clear-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted-gold);
    text-decoration: none;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-clear-all:hover {
    color: var(--primary-navy);
}

/* Accordion Sections */
.filter-section {
    border-bottom: 1px solid #eee;
    padding: 1.2rem 0;
}

.filter-section:last-child {
    border-bottom: none;
}

/* ===== MOBILE FILTER MODAL ===== */
.mobile-filter-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    flex-direction: column;
}

.mobile-filter-modal.active {
    display: flex;
}

.filter-modal-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.filter-modal-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.filter-types-col {
    width: 35%;
    background: #f5f5f5;
    overflow-y: auto;
    border-right: 1px solid #eee;
}

.type-item {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
    cursor: pointer;
    border-left: 3px solid transparent;
}

.type-item.active {
    background: white;
    color: var(--primary-navy);
    font-weight: 600;
    border-left-color: var(--muted-gold);
}

.filter-options-col {
    width: 65%;
    background: white;
    padding: 1rem;
    overflow-y: auto;
}

.filter-tab-content {
    display: none;
}

.filter-tab-content.active {
    display: block;
}

.filter-modal-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

/* ===== MOBILE BOTTOM SHEETS ===== */
.mobile-bottom-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 2050;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    max-height: 85vh;
    animation: slideUpSheet 0.3s ease-out;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-sheet.active {
    display: flex;
}

@keyframes slideUpSheet {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.sheet-header {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: var(--primary-navy);
    border-radius: 18px 18px 0 0;
}

.sheet-header h6 {
    color: var(--primary-navy);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.btn-close-sheet {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #333;
    opacity: 0.8;
}

.sheet-body {
    padding: 0;
    overflow-y: auto;
    max-height: 60vh;
}

.sheet-footer {
    padding: 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

/* Sort Options */
.sort-option {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-navy);
}

.sort-option:active {
    background: #f5f5f5;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

.radio-circle.selected {
    border-color: var(--muted-gold);
}

.radio-circle.selected::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--muted-gold);
    border-radius: 50%;
}

/* Gender Visuals */
.gender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.gender-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.gender-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #eee;
    overflow: hidden;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.gender-circle.selected {
    border-color: var(--muted-gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.gender-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MOBILE FILTER WRAPPER (STICKY BOTTOM) ===== */
.mobile-filter-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
    z-index: 1040;
    padding-bottom: env(safe-area-inset-bottom);
    height: 56px;
    /* Standard mobile navbar height */
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.mobile-filter-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
}

.filter-divider {
    display: none;
}

.mobile-filter-item {
    display: flex;
    flex-direction: row;
    /* Icon + Text side by side */
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    /* Reduced font size */
    color: var(--primary-navy);
    gap: 6px;
    /* Reduced gap */
    flex: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    height: 100%;
    position: relative;
    padding: 0 4px;
}

/* Add subtle separator if needed, but 'simple' implies none. Let's skip dividers. */

.mobile-filter-item i {
    font-size: 0.9rem;
    /* Smaller icons */
    color: var(--primary-navy);
    margin: 0;
    opacity: 0.9;
}



/* Optional: Active state touch feedback */
.mobile-filter-item:active {
    background: #f9f9f9;
}

.filter-section summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.filter-section summary::-webkit-details-marker {
    display: none;
}

.filter-section summary::after {
    content: '\f107';
    /* FontAwesome standard chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.filter-section[open] summary::after {
    transform: rotate(180deg);
}

/* Checkbox Style Links */
.checkbox-item {
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s;
}

.checkbox-item:hover {
    color: var(--primary-navy);
}

.checkbox-box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 3px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-item.active .checkbox-box {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.checkbox-item.active .checkbox-box::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    font-size: 10px;
}

.checkbox-label {
    flex-grow: 1;
}

/* Pill/Chip Style Links */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-item {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    background: white;
    transition: all 0.2s;
    display: inline-block;
}

.pill-item:hover {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.pill-item.active {
    background-color: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
    box-shadow: 0 2px 6px rgba(26, 35, 50, 0.2);
}

/* Hide native select for desktop but use logic */
.desktop-sort-hidden {
    display: none;
}

/* ===== MAIN PRODUCT FEED ===== */
.feed-header {
    border-left: 5px solid var(--muted-gold);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.feed-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}

/* ===== PRODUCT CARD DESIGN ===== */
.pro-card {
    background: var(--elegant-white);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.pro-img-container {
    position: relative;
    overflow: hidden;
    padding-top: 125%;
    /* Slightly Taller aspect ratio for luxury feel */
    background: #f8f8f8;
}

.pro-card-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    background: #ffffff;
    /* White bg for contained images */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Padding for 'contain' look */
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image always */
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
    /* Helps blend white backgrounds if image has one */
}

.pro-card:hover .pro-card-img {
    transform: scale(1.05);
}

/* Refined Actions Overlay */
.pro-actions-overlay {
    position: absolute;
    bottom: 0px;
    /* Init hidden */
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.1));
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.pro-card:hover .pro-actions-overlay {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {

    /* Mobile Card Optimizations */
    .pro-actions-overlay {
        display: none !important;
        /* Hide overlay on mobile */
    }

    .pro-card {
        margin-bottom: 0.5rem;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .pro-card-body {
        padding: 0.8rem;
    }

    .pro-title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .pro-price {
        font-size: 1rem;
    }

    /* Force 2 column grid look cleaner */
    .pro-img-container {
        padding-top: 120%;
        /* Slightly shorter */
    }

    .pro-card-img {
        padding: 5px;
        /* Less padding around image */
    }
}

.btn-pro-add {
    flex: 2;
    background: var(--elegant-white);
    color: var(--primary-navy);
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 10px 0;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-pro-add:hover {
    background: var(--primary-navy);
    color: var(--elegant-white);
}

.btn-pro-wish {
    flex: 1;
    max-width: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-navy);
    border-radius: 6px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-pro-wish:hover {
    background: var(--elegant-white);
    color: #e74c3c;
    transform: scale(1.05);
}

/* Card Content */
.pro-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

.pro-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pro-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.pro-mrp {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.pro-off {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--discount-green);
    background: rgba(46, 204, 113, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.pro-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.rating-badge {
    background: var(--primary-navy);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 4px;
}

.badge-featured {
    background: var(--muted-gold);
    color: var(--primary-navy);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.rating-badge i {
    font-size: 0.65rem;
    color: var(--muted-gold);
}

.delivery-text {
    font-size: 0.75rem;
    color: var(--discount-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
    /* Pushes text to the right */
}

/* ===== TRUST BADGES ===== */
.trust-icons-strip {
    background: white;
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.trust-col {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border-right: 1px solid #eee;
}

.trust-col:last-child {
    border-right: none;
}

.trust-col:hover {
    transform: translateY(-5px);
}

.trust-col i {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.trust-col h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 576px) {
    .filter-sidebar {
        display: none;
    }

    .row.g-3 {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .pro-card {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .pro-card-body {
        padding: 0.5rem;
        /* Reduce padding on mobile body */
    }

    .pro-card-img {
        padding: 0;
        /* Remove padding to maximize image size */
        object-fit: cover;
        /* Fill the container */
        object-position: top center;
        /* Focus on top (heads) if cropped */
    }

    .pro-title {
        font-size: 0.75rem;
        /* Reduced per user request */
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: auto;
        min-height: 2.1em;
        line-height: 1.3;
        margin-bottom: 6px;
        /* Increased gap */
    }

    .pro-price {
        font-size: 1rem;
        /* Increased per user request */
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 4px;
        font-weight: 700;
    }

    /* Force Discount to new line on mobile */
    .pro-price-box {
        flex-wrap: wrap;
        row-gap: 4px;
        /* Increased gap */
    }

    .pro-off {
        width: 100%;
        font-size: 0.7rem;
        margin-top: 2px;
        line-height: 1;
        color: var(--success-color);
        background: transparent !important;
        text-align: left;
    }



    .pro-meta {
        margin-top: 6px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Simplify badges on mobile */
    .badge-featured {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .rating-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .pro-actions-overlay {
        display: none !important;
    }

    .btn-pro-wish {
        display: none;
    }

    .btn-pro-add {
        background: white;
        color: var(--primary-navy);
        border: 1px solid var(--primary-navy);
        padding: 6px 0;
        font-size: 0.75rem;
        box-shadow: none;
    }

    .filter-header-label {
        display: none;
    }

    .trust-col {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 1rem;
    }
}

/* Global Utilities */
.text-gold {
    color: #D4AF37 !important;
}