.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-3883 .elementor-element.elementor-element-4196e97{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3883 .elementor-element.elementor-element-4196e97:not(.elementor-motion-effects-element-type-background), .elementor-3883 .elementor-element.elementor-element-4196e97 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F3EC;}.elementor-widget-shortcode .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-shortcode .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}@media(max-width:1024px){.elementor-widget-container .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-container .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-shortcode .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-shortcode .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-container .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-container .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-shortcode .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-shortcode .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}}/* Start custom CSS for shortcode, class: .elementor-element-cd626cb */.figma-shop-wrapper {
    padding: 40px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    /* Prevents padding from breaking layout */
    box-sizing: border-box; 
}

/* Ensure all elements inside inherit this safe spacing */
.figma-shop-wrapper * {
    box-sizing: border-box;
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-header h2 {
    font-size: 36px;
    color: #2b3a1f;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Main Flex Container */
.shop-main-layout {
    display: flex;
    gap: 50px; /* Safe gap between Sidebar and Products */
    align-items: flex-start;
    width: 100%;
}

/* =========================================
   2. SIDEBAR STYLING (Big & Clear)
   ========================================= */
.shop-sidebar {
    width: 250px;
    flex-shrink: 0; /* Forces sidebar to stay fixed width */
}

.filter-group {
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 5px solid #5D8C3E; /* Green Accent Line */
}

/* BIG TITLES */
.filter-group h3 {
    font-size: 20px; /* Big Text */
    text-transform: uppercase;
    color: #222;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Checkbox Items */
.checkbox-list label {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Spaced out items */
    font-size: 15px;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}

.checkbox-list label:hover {
    color: #5D8C3E;
    transform: translateX(5px);
}

.checkbox-list input[type="checkbox"] {
    accent-color: #5D8C3E;
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Scrollbar for Brands */
.brand-scroll {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
}
.brand-scroll::-webkit-scrollbar { width: 6px; }
.brand-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* =========================================
   3. TOP BAR (Categories Hidden)
   ========================================= */
.shop-content {
    flex-grow: 1;
    width: 100%;
    min-width: 0; /* CSS Grid fix */
}

.filter-bar-top {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    align-items: center;
}

/* HIDE THE CATEGORY DROPDOWN */
#filter-category {
    display: none !important;
}

/* Search Box - Full Width */
.shop-search-inline {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    height: 50px; /* Taller search bar */
}

.shop-search-inline input {
    flex-grow: 1;
    border: none;
    padding: 0 20px;
    outline: none;
    font-size: 15px;
}

.shop-search-inline button {
    background: #5D8C3E;
    color: white;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}
.shop-search-inline button:hover { background: #41632b; }

/* =========================================
   4. PRODUCT GRID
   ========================================= */
.product-grid {
    display: grid;
    /* Responsive columns that auto-fit */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.custom-prod-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures equal height */
    transition: transform 0.3s ease, border-color 0.3s;
    border: 2px solid #eee;
}

.custom-prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.prod-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.prod-img img { max-height: 100%; width: auto; height: 200px; object-fit: contain; }

.sale-badge {
    position: absolute; top: -10px; left: -10px;
    background: red; color: white; padding: 5px 15px;
    font-size: 12px; font-weight: 700; border-radius: 20px 20px 20px 0;
}

.sale-badge:hover{ background:white;
color:red;}

.prod-details { display: flex; flex-direction: column; flex-grow: 1; }
.prod-details h4 { font-size: 16px; margin: 20px 0 10px; font-weight: 800; color: #222; }
.prod-desc { font-size: 13px; color: #777; margin-bottom: 15px; }
.prod-details .price { font-weight: 800; color: #333; margin-bottom: 20px; font-size: 18px; }

.btn-add-cart {
    margin-top: auto;
    display: block; width: 100%;
    background: #5D8C3E; color: white !important;
    text-align: center; padding: 14px 0;
    border-radius: 6px; text-decoration: none;
    font-weight: 600; font-size: 14px; text-transform: uppercase;
    transition: background 0.3s;
}
.btn-add-cart:hover { background: #41632b;
    color:white;
}

/* =========================================
   5. PAGINATION (RESTORED TO FIGMA STYLE)
   ========================================= */
.shop-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* Space between circles */
}

/* Number Circles */
.shop-pagination span, 
.shop-pagination a {
    width: 45px; /* Fixed width circle */
    height: 45px; /* Fixed height circle */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Perfect Circle */
    background: white;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

/* Hover State */
.shop-pagination a:hover {
    border-color: #5D8C3E;
    color: #5D8C3E;
    background: #fff;
}

/* Active Page State */
.shop-pagination span.current {
    background: #5D8C3E;
    color: white;
    border-color: #5D8C3E;
    box-shadow: 0 4px 10px rgba(93, 140, 62, 0.3);
}

/* Next / Prev Arrows (If they appear) */
.shop-pagination .next,
.shop-pagination .prev {
    width: auto; /* Allow arrows to be pill shaped if they have text */
    padding: 0 15px;
    border-radius: 30px;
}

/* =========================================
   6. RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .shop-main-layout { flex-direction: column; }
    
    .shop-sidebar {
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        background: white; padding: 20px; border-radius: 8px;
    }
    .filter-group { 
        border-left: none; border-top: 4px solid #5D8C3E; 
        padding-top: 15px; padding-left: 0; 
        flex: 1; min-width: 200px; margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: repeat(1, 1fr); }
    .shop-header h2 { font-size: 28px; }
}/* End custom CSS */