*{
    font-family: "Josefin Sans", sans-serif;
    margin: 0;
    list-style: none;
    text-decoration: none;
}


@keyframes ani {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

header {
    z-index: 2;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
    background-color: white;
    display: flex;
    justify-content: center; /* Center all header content horizontally */
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 8%;
    box-shadow: 0 5px 10px #e6ebf0;

}


header .logo {
    background-image: url(../images/logos/nav_logo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100px;
    height: 50px;

    transition: transform 0.3s ease, filter 0.3s ease;

}

header .logo:hover {
    transform: scale(1.2);
}

header nav ul li {
    position: relative;
    float: left;
}

header nav ul li a {
    border: 1px solid #e6ebf0;
    padding: 15px;
    color: black;
    font-size: 20px;
    display: block;
    transition: 0.5s;
    text-decoration: none;

}


header nav ul li a:hover {
    color: red;

}


nav ul li ul {
    position: absolute;
    left: 0px;
    padding: 0;
    width: 180px;
    background-color: white;
    display: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 5px 10px #e6ebf0;
}
nav ul li ul li {
    width: 100%;
    border: 1px solid rgba(0,0,0,.1)
}

nav ul li:hover > ul {
    display: initial;
}
/* OUR STORE */

.productebis-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-top: 0; /* remove extra space from header */
    padding-bottom: 0; /* remove bottom padding */
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.breadcrumbala {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LUKAS JS */

#languageSwitchButton {
    right: 8%; 
    cursor: pointer;
}
.btn-language {
    background-color: black;
}
.delete-btn {
    display: none;
    color: red;
    cursor: pointer;
    font-weight: bold;
}

.product {
    flex: 1 1 300px; 
    max-width: 300px; 
    min-height: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}

.product {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s ease, filter 0.5s ease, background-color 0.7s ease;
    border: 1px solid #e6ebf0;
    background-color: white;
    pointer-events: auto;
}


.product-photo img {
    width: 100%;
    height: auto;
}
.edit-btn {
    display: none;
    color: blue;
    cursor: pointer;
    font-weight: bold;
}
.cart-btn {
    background-color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
   color: white;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    transition: background 0.2s;
    align-self: center; /* Always center horizontally in flex column */
    margin-top: 10px;
}


/* Cart and language switch button container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0;
    position: static;
    top: unset;
    right: unset;
    width: auto;
}

/* Language switch button styles */
#languageSwitchButton {
    background: #fff;
    color: #222;
    border: 1.5px solid #222;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    padding: 6px 16px;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    display: flex;
    align-items: center;
    height: 36px;
    margin-left: 0;
    margin-right: 0;
}
#languageSwitchButton:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}

#cartButton {
    margin-left: 0;
    margin-right: 0;
    align-self: center;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
}

/* store */

.home_library {
    padding: 50px;
    display: flex;
    justify-content: center;
}

.store_title {
    padding: 18px 0 10px 0; /* reduce bottom padding to 10px */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}
/* store admin */

#adminConsole {
    position: fixed;
    top: 80px;
    right: 30px;
    /* z-index: 2000; */ /* Removed z-index */
    background: #fff;
    border: 2px solid #222;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    padding: 18px 20px 14px 20px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
#adminConsole button, #adminConsole span {
    width: 100%;
}
#categoryFilterSidebar {
    position: static; /* was: fixed */
    top: unset;
    left: unset;
    width: 210px;
    min-width: 180px;
    max-width: 240px;
    background: #fff;
    border: 1.5px solid #e6ebf0;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 18px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    margin-left: 18px;
    margin-bottom: 18px;
    height: fit-content;
}
#categoryFilterSidebar .filter-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.05em;
}
#categoryFilterSidebar .filter-list {
    overflow-y: auto;
    max-height: 270px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.category-filter-group {
    width: 100%;
}
.category-filter-main {
    width: 100%;
    border: none;
    background: #f3f3f3;
    border-radius: 6px;
    padding: 6px 0;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category-filter-main.active,
.category-filter-main:hover {
    background: #d1eaff;
    color: #0074d9;
    font-weight: bold;
}
.category-filter-arrow {
    transition: transform 0.2s;
    margin-left: 8px;
    font-size: 1em;
}
.category-filter-main.active .category-filter-arrow {
    transform: rotate(90deg);
}
.category-filter-sublist {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
    background: #f9f9f9;
    border-radius: 0 0 6px 6px;
    margin-bottom: 4px;
    padding-left: 6px;
}
.category-filter-group.open .category-filter-sublist {
    max-height: 300px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.category-filter-subbtn {
    width: 100%;
    border: none;
    background: #eaf6ff;
    border-radius: 4px;
    padding: 5px 0 5px 10px;
    font-size: 0.97em;
    cursor: pointer;
    text-align: left;
    margin-bottom: 2px;
    transition: background 0.2s;
}
.category-filter-subbtn.active,
.category-filter-subbtn:hover {
    background: #bfe3ff;
    color: #0074d9;
    font-weight: bold;
}
/* store products */

.product_flexbox1 {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

/* product_photos hover */

a {
    text-decoration: none;
    color: inherit;
}

.product_name a, 
.product_description a {
    text-decoration: none;
    color: inherit;
}

.product_flexbox1 a {
    text-decoration: none;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center; /* ensure products are centered in the available space */
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    pointer-events: auto;
    box-sizing: border-box;
}

.product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Ensure content starts below admin buttons */
    padding-top: 38px;
    min-height: 420px;
    box-sizing: border-box;
    width: 250px;
    margin: 10px;
    background: #fff;
}
.product-photo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 38px;
    margin-left: auto;
    margin-right: auto;
}
.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Admin button container inside product card */
.product-admin-btns {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

/* Style for edit and delete buttons */
.editbtn, .deletebtn {
    display: none;
    padding: 2px 8px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: background 0.2s;
    z-index: 11;
}
.editbtn {
    color: #0074d9;
    border: 1px solid #0074d9;
}
.deletebtn {
    color: #c62828;
    border: 1px solid #c62828;
}
.editbtn:hover {
    background: #e3f2fd;
}
.deletebtn:hover {
    background: #ffebee;
}

/* Always show admin buttons if admin is logged in (JS will toggle display) */
.product .editbtn[style*="display: inline"], 
.product .editbtn[style*="display: block"], 
.product .editbtn[style*="display: inline-block"],
.product .deletebtn[style*="display: inline"], 
.product .deletebtn[style*="display: block"], 
.product .deletebtn[style*="display: inline-block"] {
    display: inline-block !important;
}
.title {
    font-weight: bold;
    color: #222;
    font-size: 1.2em;
    display: block;
    margin-bottom: 6px;
    text-align: center;
    word-break: break-word;
}


.product {
    width: 30%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.delete-btn {
    display: none;
    color: red;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 18px;
    cursor: pointer;
}

.product:hover .delete-btn {
    display: block;
}

.product-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.product-description,
.store-product-description {
    color: #666;
    font-size: 0.95em;
    margin: 10px 0;
    text-align: center;
    padding: 0 10px 15px 10px;
    max-height: 40px;           /* Limit height */
    overflow: hidden;           /* Hide overflow */
    text-overflow: ellipsis;    /* Show ... if too long */
    white-space: nowrap;        /* Single line, ellipsis */
    display: block;
}

.product:hover .product_photo1 {
    transform: scale(1.05); 
}

/* .product:hover {
    background-color: #cccccc; 
} */

.product:hover .product_photo2 {
    transform: scale(1.05); 
}

.product:hover .product_photo4 {
    transform: scale(1.05); 
}

.product:hover .product_photo5 {
    transform: scale(1.05); 
}

.product:hover .product_photo6 {
    transform: scale(1.05); 
} 

#restoreButton {
    padding: 5px 10px;
    font-size: 14px;
}

#restoreButton:hover {
    background-color: #0056b3;
}

.delete-btn {
    display: none;
    color: red;
    cursor: pointer;
    font-weight: bold;
}
.product-photo {
    width: 300px;
    height: 270px;
    background-size: cover;
    background-position: center;
}

/* store */

.products-container {
    padding: 50px;
    text-align: center;
    box-sizing: border-box;
    width: 100%; /* Changed from 100vw */
    max-width: 100%; /* Changed from 100vw */
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.product-cameras-card {
    width: 300px;
    border: 1px solid #e6ebf0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
    overflow: hidden;
    text-align: center;
}

.product-cameras-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
}
/* OUR STORE PRODUCT CAMERAS IMAGES */
.product-cameras-image1 {
    background-image: url(../images/store/product-types/type-cctv.png);
    transition: transform 0.3s ease, filter 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 100%;
    height: 200px;
}

.product-cameras-image2 {
    background-image: url(../images/store/product-types/type-dvr.png);
    transition: transform 0.3s ease, filter 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 100%;
    height: 200px;
}

.product-cameras-image3 {
    background-image: url(../images/store/product-types/type-other.png);
    transition: transform 0.3s ease, filter 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 100%;
    height: 200px;
}

.product-cameras-title {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

.learn-more-btn {
    display: inline-block;
    margin: 15px 0 20px;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #4682B4;
    color: #fff;
}

/* companies */

.product-company-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px; 
    border: 2px solid #dcdcdc; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: border-color 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease; 
}

.product-company-card:hover {
    border-color: #a9a9a9; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
    background-color: #ebebeb; 
}

.product-cameras-company-photo1,
.product-cameras-company-photo2,
.product-cameras-company-photo3,
.product-cameras-company-photo4,
.product-cameras-company-photo5,
.product-cameras-company-photo6 {
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 100px; 
    height: 100px;
}

.product-cameras-company-photo1 {
    background-image: url('../images/companies/dahua.png');

}

.product-cameras-company-photo2 {
    background-image: url('../images/companies/hikvision.png');
}

.product-cameras-company-photo3 {
    background-image: url('../images/companies/third_company.png');
}
.product-cameras-company-photo4 {
    background-image: url('../images/companies/third_company.png');
}
.product-cameras-company-photo5 {
    background-image: url('../images/companies/third_company.png');
}
.product-cameras-company-photo6 {
    background-image: url('../images/companies/third_company.png');
}

.products-container a {
    text-decoration: none;
}

/* ending */

.flexbox_end {
    padding-top: 200px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-bottom: 50px; 
    z-index: -1;
}

.flexbox_end a {
    text-decoration: none;
    list-style-type: none;
    color: black;
    animation: ani 0.5s forwards;
    z-index: -1;
}


.flexbox_end a:hover {
    color: red;
}
.end_logo {
    background-image: url(images/logos/DigitalZone.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 350px;
    height: 150px;

}

/* titles */

.support_title {
    font-size: 30px;
}

.company_title {
    font-size: 30px;
}

.other_title {
    font-size: 30px;
}


.button-white-cube {
    border-color: transparent;
    height: 20px;
    width: 20px;   
}

.bottom_container {
    display: flex;
    justify-content: flex-start;
}

/* Store-specific product card styles (to avoid homepage interference) */
.store-product-photo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 38px;
    margin-left: auto;
    margin-right: auto;
}
.store-product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.store-product-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
    color: #c62828;
    text-align: center;
}

.store-title {
    font-weight: bold;
    color: #222;
    font-size: 1.2em;
    display: block;
    margin-bottom: 6px;
    text-align: center;
    word-break: break-word;
}

.store-product-price {
    color: #222;
    font-size: 1.1em;
    margin: 8px 0;
    text-align: center;
}

/* === Begin pasted styles from droebiti_page.html === */

.Product_first_section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.second_boot_carousel {
    flex: 1 1 500px;
    max-width: 500px;
}

.second_boot_carousel img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.product_info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Product_name_WEB {
    color: #c62828;
    font-size: 30px;
    font-weight: bold;
}

.auto_description {
    font-size: 18px;
    color: #333;
}

.product_company_name {
    font-size: 16px;
    color: #777;
}

.Price_web {
    font-size: 20px;
    color: #2e7d32;
    font-weight: 600;
}

.add-to-cart-btn {
    margin-top: 20px;
    width: fit-content;
    padding: 12px 24px;
    background-color: #ff6f00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #e65100;
}

/* === End pasted styles === */

#storeFilter {
    margin-bottom: 10px;
    min-width: 180px;
}

#storeFilterPanel {
    margin-bottom: 18px;
    gap: 16px;
    flex-wrap: wrap;
}
#storeFilterPanel select, #storeFilterPanel input[type="number"] {
    margin-right: 0;
    margin-bottom: 0;
    font-size: 1em;
}
#storeFilterPanel label {
    margin-bottom: 2px;
}
#storeFilterPanel button {
    cursor: pointer;
}
#storeFilterSidebar {
    position: static; /* was: fixed */
    top: unset;
    left: unset;
    width: 210px;
    min-width: 180px;
    max-width: 240px;
    background: #fff;
    border: 1.5px solid #e6ebf0;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 18px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    margin-left: 18px;
    margin-bottom: 18px;
    height: fit-content;
}
#storeFilterSidebar .filter-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0074d9;
}
#storeFilterSidebar select,
#storeFilterSidebar input[type="number"] {
    width: 100%;
    margin-bottom: 6px;
    font-size: 1em;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 5px 8px;
}
#storeFilterSidebar label {
    font-size: 0.97em;
    margin-bottom: 2px;
    color: #444;
}
#storeFilterSidebar .filter-range-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}
#storeFilterSidebar .filter-range-group input[type="number"] {
    width: 70px;
    display: inline-block;
}
#storeFilterSidebar .filter-range-group span {
    margin: 0 4px;
}
#storeFilterSidebar button {
    margin-top: 6px;
    padding: 6px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
#storeFilterSidebar button:hover {
    background: #e6ebf0;
}
.productebis-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-top: 0; /* remove extra space from header */
    padding-bottom: 0; /* remove bottom padding */
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}
.product-container {
    flex: 1 1 0%;
    margin-left: 18px;
    /* leave space for sidebar */
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center; /* ensure products are centered in the available space */
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    pointer-events: auto;
    box-sizing: border-box;
    margin-top: 0; /* ensure no extra margin at the top */
}
/* Responsive: sidebar collapses to top on mobile */
@media (max-width: 900px) {
    #storeFilterSidebar {
        position: static;
        width: 100%;
        max-width: 100vw;
        margin-left: 0;
        margin-bottom: 18px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        border-radius: 10px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    }
    #storeFilterSidebar select,
    #storeFilterSidebar input[type="number"] {
        width: 120px;
        min-width: 80px;
        margin-bottom: 0;
    }
    #storeFilterSidebar .filter-range-group {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        margin-bottom: 0;
    }
    .productebis-container {
        flex-direction: column;
    }
    .product-container {
        margin-left: 0;
    }
}

/* Filter burger icon button styles */
.filter-burger-btn {
    background: #fff;
    border: 1.5px solid #222;
    border-radius: 8px;
    padding: 6px 10px;
    margin: 0 0 12px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, border 0.2s;
    z-index: 100;
}
.filter-burger-btn:hover {
    background: #f3f3f3;
    border-color: #0074d9;
}

/* Sidebar overlay styles */
#storeFilterSidebar {
    position: fixed;
    top: 80px;
    left: 30px;
    width: 240px;
    max-width: 90vw;
    min-width: 180px;
    background: #fff;
    border: 2px solid #222;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    padding: 18px 14px 14px 14px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.98);
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
    display: block;
}

/* Hidden by default */
#storeFilterSidebar.sidebar-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.98);
}

/* Visible when toggled */
#storeFilterSidebar.sidebar-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* On small screens, sidebar is full width at top */
@media (max-width: 900px) {
    #storeFilterSidebar {
        left: 0;
        top: 60px;
        width: 100vw;
        max-width: 100vw;
        border-radius: 0 0 12px 12px;
        margin-left: 0;
    }
    .filter-burger-btn {
        margin-left: 0;
    }
}
@media (max-width: 900px) {
    #storeFilterSidebar {
        left: 0;
        top: 60px;
        width: 100vw;
        max-width: 100vw;
        border-radius: 0 0 12px 12px;
        margin-left: 0;
    }
    .filter-burger-btn {
        margin-left: 0;
    }
}

#store-pagination {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 32px;
    margin-top: 0;
    min-width: 48px;
    /* Optional: visually separate from products */
    /* border-left: 1px solid #eee; */
    /* padding-left: 16px; */
}
@media (max-width: 900px) {
    #store-pagination {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        margin-top: 18px;
        margin-bottom: 18px;
        width: 100%;
    }
    .productebis-container {
        flex-direction: column;
    }
}
