/* /Components/Controls/SearchableDropdownList.razor.rz.scp.css */
/* Container for the entire component, essential for positioning the dropdown list relative to the input */
.searchable-dropdown[b-sfy1mtednm] {
    position: relative;
    display: inline-block; /* Allows the container to size itself based on content or parent container width */
    width: 100%; /* Adjust width as needed */
    max-width: 300px; /* Optional: Constrain maximum width */
}

/* Styles for the input field itself (assuming Bootstrap's form-control class is also used) */
.searchable-dropdown .form-control[b-sfy1mtednm] {
    width: 100%;
}

/* The container for the filtered results */
.dropdown-list[b-sfy1mtednm] {
    position: absolute; /* Positions the list absolutely within the relative container */
    background-color: #fff; /* White background */
    border: 1px solid #ccc; /* Subtle border */
    max-height: 200px; /* Limits the height and introduces scrolling if many items */
    overflow-y: auto; /* Adds a vertical scrollbar when needed */
    width: 100%; /* Matches the width of the input field above it */
    z-index: 100; /* Ensures the dropdown appears above other page content */
    list-style-type: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow for depth */
}

/* Individual items within the dropdown list */
.dropdown-list li[b-sfy1mtednm] {
    padding: 8px 12px; /* Spacing inside list items */
    cursor: pointer; /* Changes cursor to a hand icon on hover */
    font-size: 14px; /* Optional: Adjust font size */
}

/* Hover effect for list items */
.dropdown-list li:hover[b-sfy1mtednm] {
    background-color: #f1f1f1; /* Light gray background on hover */
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/*Removes the padding around the body of the website*/
.body-content[b-hm33a3ewq5] {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}

/* Footer */
a[b-hm33a3ewq5] {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

span[b-hm33a3ewq5] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

footer[b-hm33a3ewq5] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content[b-hm33a3ewq5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3[b-hm33a3ewq5] {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p[b-hm33a3ewq5] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li[b-hm33a3ewq5] {
    margin-bottom: 8px;
}

.footer-section ul li a[b-hm33a3ewq5] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-section ul li a:hover[b-hm33a3ewq5] {
    color: var(--text-light);
}

.social-icons[b-hm33a3ewq5] {
    display: flex;
    gap: 15px;
}

.social-icons a[b-hm33a3ewq5] {
    color: var(--text-light);
    font-size: 18px;
    transition: color var(--transition-speed);
}

.social-icons a:hover[b-hm33a3ewq5] {
    color: var(--accent-color);
}

.footer-bottom[b-hm33a3ewq5] {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/*Navbar*/
.navbar-dark[b-n5z83oa8mt] {
    background-color: black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/*Navbar Icon*/
.navbar-brand[b-n5z83oa8mt] {
    width: 45px;
    height: 45px;
    margin-left: 30px;
    background-image: url('/Icons/Logo.svg');
    background-size: cover;
}

/*.navbar-brand:hover {
    background-color: #153453;
}*/

.companyName[b-n5z83oa8mt] {
    color: white;
    font-size: 30px;
}

/*Main Menu*/
.nav-item span[b-n5z83oa8mt] {
    color: white;
    font-size: 20px;
}

.nav-item span:hover[b-n5z83oa8mt] {
    color: antiquewhite;
}

/*Main Menu Dropdown*/
.navbar-nav li a[b-n5z83oa8mt] {
    font-size: 20px;
    color: white;
}

.navbar-nav li a:hover[b-n5z83oa8mt] {
    color: antiquewhite;
    border-radius: 5px;
}

.MenuItem:hover[b-n5z83oa8mt] {
    background-color: #353a40;
    border-radius: 5px;
}

/*Dropdown Menu*/

.dropdown[b-n5z83oa8mt] {
    z-index: 9999 !important;
}

.dropdown-menu[b-n5z83oa8mt] {   
    border-radius: 5px;
}

.navbar-nav li a[b-n5z83oa8mt] {
    font-size: 16px;
    font-size: 20px;
    color: white;
    font-family: mina-regular, sans-serif;
}

/*Navbar Dropdown Items*/
.dropdown-menu li a:hover[b-n5z83oa8mt] {
    color: antiquewhite;
    background-color: #6c757d;
    border-radius: 5px;
}

/*.dropdown-submenu li a:hover {
    color: white;
}*/

.dropdown-menu li[b-n5z83oa8mt] {
    position: relative;
}

.dropdown-menu .dropdown-submenu[b-n5z83oa8mt] {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
    background-color: #353a40;
}

.dropdown-menu .dropdown-submenu-left[b-n5z83oa8mt] {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu[b-n5z83oa8mt] {
    display: block;
}

/*.cartButton {
    border: 1px solid gray;
    border-radius: 10px;
    background-color: white;
    padding: 4px 12px;
    font-size: 20px;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}*/
/* /Components/Layout/Pagination.razor.rz.scp.css */
.page-link[b-bbu8j2o9sy] {
    background: black;
    color: white;
    border-color: white;
}

.active > .page-link[b-bbu8j2o9sy] {
    background: #495057;
    color: white;
    border-color: white;
}

.page-link:hover[b-bbu8j2o9sy] {
    background-color: #6c757d;
}
/* /Components/Layout/ShoppingCartDisplay.razor.rz.scp.css */
.CartButton[b-kcgw2wgbdc] {
    padding-left: 20px;
}

.badge[b-kcgw2wgbdc] {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.btn-outline-primary:hover[b-kcgw2wgbdc], .btn-outline-primary:focus[b-kcgw2wgbdc], .btn-outline-primary:active[b-kcgw2wgbdc], .btn-outline-primary.active[b-kcgw2wgbdc], .open > .dropdown-toggle.btn-outline-primary[b-kcgw2wgbdc] {
    background-color: black;
}
/* /Components/Pages/Backend/Client/ClientOrderDetails.razor.rz.scp.css */
.ProductImage[b-b4kroxd9vf]
{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.ImageButton[b-b4kroxd9vf] {
    
    background-color: white;
}
/* /Components/Pages/Backend/Client/ClientOrganisationOrders.razor.rz.scp.css */
.ProductImage[b-2f9qpam1n5]
{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.ImageButton[b-2f9qpam1n5] {
    
    background-color: white;
}
/* /Components/Pages/Backend/Client/ClientOrganisationPhysicalAddressCollectionContact.razor.rz.scp.css */
.autocomplete[b-4kdnu9l0ln] {
    position: relative;
}

.autocomplete .options[b-4kdnu9l0ln] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-4kdnu9l0ln] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-4kdnu9l0ln] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-4kdnu9l0ln] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-4kdnu9l0ln] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-4kdnu9l0ln] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-4kdnu9l0ln] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-4kdnu9l0ln] {
    width: 20%;
}

.content[b-4kdnu9l0ln] {
    width: 80%;
}

.column[b-4kdnu9l0ln] {
    float: left;
    padding: 15px;
}

#business[b-4kdnu9l0ln] {
    background-color: #ced4da;
    ;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-4kdnu9l0ln] {
    background-color: rgba(0, 0, 0, 0.1);
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-4kdnu9l0ln] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/Client/ClientOrganisationPhysicalAddresses.razor.rz.scp.css */
.autocomplete[b-e8yzbw2hgt] {
    position: relative;
}

.autocomplete .options[b-e8yzbw2hgt] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-e8yzbw2hgt] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-e8yzbw2hgt] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-e8yzbw2hgt] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-e8yzbw2hgt] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-e8yzbw2hgt] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-e8yzbw2hgt] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-e8yzbw2hgt] {
    width: 20%;
}

.content[b-e8yzbw2hgt] {
    width: 80%;
}

.column[b-e8yzbw2hgt] {
    float: left;
    padding: 15px;
}

#business[b-e8yzbw2hgt] {
    background-color: #ced4da;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-e8yzbw2hgt] {
    background-color: rgba(0, 0, 0, 0.1);
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-e8yzbw2hgt] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/Client/ClientProductDescription.razor.rz.scp.css */
.Editor[b-kf0b20spex] {
    overflow-y: auto;
    height: 250px;
    font-size: medium;
}
/* /Components/Pages/Backend/Client/ClientProductImages.razor.rz.scp.css */
.ProductImage[b-zqb9dvrl18] {
    height: 50%;
    width: 20%;
    object-fit: fill;
}
/* /Components/Pages/Backend/Client/ClientProducts.razor.rz.scp.css */
/*th:nth-child(2), td:nth-child(2) {
    position: sticky;
    left: 60px;
    background-color: #FFF;
}

th:nth-child(3), td:nth-child(3) {
    position: sticky;
    left: 140px;
    background-color: #FFF;
}*/


.well[b-98qkzttw8d] {
    font-family: 'Open Sans', Helvetica, sans-serif;
    background: -moz-linear-gradient(top, #FFFFFF 20%, #D3D3D3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #FFFFFF), color-stop(100%, #D3D3D3));
    background: -webkit-linear-gradient(top, #FFFFFF 20%, #D3D3D3 50%);
    background: -o-linear-gradient(top, #FFFFFF 20%, #F8F8FF 100%);
    background: linear-gradient(to bottom, #FFFFFF 20%, #D3D3D3 100%);
    padding: 12px 12px;
    position: fixed;
    width: 100%;
    z-index: 100;
    font-size: clamp(20px, 7vw, 35px);
    font-weight: 700;
    color: #1b1a3c; 
    letter-spacing: 1px;
}

.HelpButton[b-98qkzttw8d] {
    font-size: clamp(15px, 2vw, 20px);
    display: inline-block;
}
/* /Components/Pages/Backend/Client/ProcessReturn.razor.rz.scp.css */
.menu[b-lytyhtajsp]
{
    width: 20%;
}

.content[b-lytyhtajsp]
{
    width: 80%;
}

.column[b-lytyhtajsp] {
    float: left;
    padding: 15px;
}

.invoiceheader[b-lytyhtajsp]{
    font-weight: bold;
}

.btn-success[b-lytyhtajsp] {
    width: 100px;
}
/* /Components/Pages/Backend/IndividualPhysicalAddresses.razor.rz.scp.css */
.autocomplete[b-kybk7jfr6p] {
    position: relative;
}

.autocomplete .options[b-kybk7jfr6p] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-kybk7jfr6p] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-kybk7jfr6p] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-kybk7jfr6p] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-kybk7jfr6p] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-kybk7jfr6p] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-kybk7jfr6p] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-kybk7jfr6p] {
    width: 20%;
}

.content[b-kybk7jfr6p] {
    width: 80%;
}

.column[b-kybk7jfr6p] {
    float: left;
    padding: 15px;
}

#business[b-kybk7jfr6p] {
    background-color: #ced4da;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-kybk7jfr6p] {
    background-color: rgba(0, 0, 0, 0.1);
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-kybk7jfr6p] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/OrganisationPhysicalAddresses.razor.rz.scp.css */
.autocomplete[b-5oju0o5k11] {
    position: relative;
}

.autocomplete .options[b-5oju0o5k11] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-5oju0o5k11] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-5oju0o5k11] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-5oju0o5k11] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-5oju0o5k11] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-5oju0o5k11] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-5oju0o5k11] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-5oju0o5k11] {
    width: 20%;
}

.content[b-5oju0o5k11] {
    width: 80%;
}

.column[b-5oju0o5k11] {
    float: left;
    padding: 15px;
}

#business[b-5oju0o5k11] {
    background-color: #ced4da;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-5oju0o5k11] {
    background-color: rgba(0, 0, 0, 0.1);
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-5oju0o5k11] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/ProductDescription.razor.rz.scp.css */
.Editor[b-x99mwo3w81] {
    overflow-y: auto;
    height: 250px;
    font-size: medium;
}
/* /Components/Pages/Backend/ProductImages.razor.rz.scp.css */
.ProductImage[b-1ncv6uscg8] {
    height: 50%;
    width: 20%;
    object-fit: fill;
}
/* /Components/Pages/Backend/Products.razor.rz.scp.css */
/*th:nth-child(2), td:nth-child(2) {
    position: sticky;
    left: 60px;
    background-color: #FFF;
}

th:nth-child(3), td:nth-child(3) {
    position: sticky;
    left: 140px;
    background-color: #FFF;
}*/


.well[b-9hwfalckv8] {
    font-family: 'Open Sans', Helvetica, sans-serif;
    background: -moz-linear-gradient(top, #FFFFFF 20%, #D3D3D3 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #FFFFFF), color-stop(100%, #D3D3D3));
    background: -webkit-linear-gradient(top, #FFFFFF 20%, #D3D3D3 50%);
    background: -o-linear-gradient(top, #FFFFFF 20%, #F8F8FF 100%);
    background: linear-gradient(to bottom, #FFFFFF 20%, #D3D3D3 100%);
    padding: 12px 12px;
    position: fixed;
    width: 100%;
    z-index: 100;
    font-size: clamp(20px, 7vw, 35px);
    font-weight: 700;
    color: #1b1a3c; 
    letter-spacing: 1px;
}

.HelpButton[b-9hwfalckv8] {
    font-size: clamp(15px, 2vw, 20px);
    display: inline-block;
}
/* /Components/Pages/Backend/Shopper/DeliveryContacts.razor.rz.scp.css */
.autocomplete[b-opknhdwvcr] {
    position: relative;
}

.autocomplete .options[b-opknhdwvcr] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-opknhdwvcr] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-opknhdwvcr] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-opknhdwvcr] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-opknhdwvcr] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-opknhdwvcr] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-opknhdwvcr] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-opknhdwvcr] {
    width: 20%;
}

.content[b-opknhdwvcr] {
    width: 80%;
}

.column[b-opknhdwvcr] {
    float: left;
    padding: 15px;
}

#business[b-opknhdwvcr] {
    background-color: #ced4da;
    ;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-opknhdwvcr] {
    background-color: rgba(0, 0, 0, 0.1);
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-opknhdwvcr] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/Shopper/InvoiceDetails.razor.rz.scp.css */
.autocomplete[b-c9wr2on671] {
    position: relative;
}

.autocomplete .options[b-c9wr2on671] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-c9wr2on671] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-c9wr2on671] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-c9wr2on671] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-c9wr2on671] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-c9wr2on671] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-c9wr2on671] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-c9wr2on671] {
    width: 20%;
}

.content[b-c9wr2on671] {
    width: 80%;
}

.column[b-c9wr2on671] {
    float: left;
    padding: 15px;
}

#business[b-c9wr2on671] {
    background-color: linen;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-c9wr2on671] {
    background-color: paleturquoise;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-c9wr2on671] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/Shopper/MyAccount.razor.rz.scp.css */
.autocomplete[b-gtop3eku39] {
    position: relative;
}

.autocomplete .options[b-gtop3eku39] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-gtop3eku39] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-gtop3eku39] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-gtop3eku39] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-gtop3eku39] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-gtop3eku39] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-gtop3eku39] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu[b-gtop3eku39] {
    width: 20%;
}

.content[b-gtop3eku39] {
    width: 80%;
}

.column[b-gtop3eku39] {
    float: left;
    padding: 15px;
}

#business[b-gtop3eku39] {
    background-color: #ced4da;
    ;
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

#residential[b-gtop3eku39] {
    background-color: rgba(0, 0, 0, 0.1);
    height: 3rem;
    padding-top: 0.6rem;
    padding-inline-start: 1rem;
}

.badge[b-gtop3eku39] {
    padding-left: .75em;
    padding-top: .55em;
    padding-bottom: .55em;
    padding-right: .75em;
    background-color: red;
}
/* /Components/Pages/Backend/Shopper/OrderDetails.razor.rz.scp.css */
.ProductImage[b-ozwwus6b6f]
{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.ImageButton[b-ozwwus6b6f] {
    
    background-color: white;
}
/* /Components/Pages/Backend/Shopper/ProductReturns.razor.rz.scp.css */
.ProductImage[b-jsqvo8faod]
{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.ImageButton[b-jsqvo8faod] {
    
    background-color: white;
}
/* /Components/Pages/Backend/Shopper/YourOrder.razor.rz.scp.css */
.menu[b-tf9s5zbwhb]
{
    width: 20%;
}

.content[b-tf9s5zbwhb]
{
    width: 80%;
}

.column[b-tf9s5zbwhb] {
    float: left;
    padding: 15px;
}

.invoiceheader[b-tf9s5zbwhb]{
    font-weight: bold;
}

.btn-success[b-tf9s5zbwhb] {
    width: 100px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/*For custom dropdown styling*/
.autocomplete[b-9t6ozbe265] {
    position: relative;
}

.autocomplete .options[b-9t6ozbe265] {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 100%;
    padding: 0;
    z-index: 10;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0;
}

.autocomplete .option[b-9t6ozbe265] {
    display: block;
    padding: 0.25rem;
}

.autocomplete .option .option-text[b-9t6ozbe265] {
    padding: 0.25rem 0.5rem;
}

.autocomplete .option:hover[b-9t6ozbe265] {
    background: #1E90FF;
    color: #fff;
}

.autocomplete .option.disabled[b-9t6ozbe265] {
    background-color: lightgrey;
    cursor: not-allowed;
}

.autocomplete .option.disabled:hover[b-9t6ozbe265] {
    background: lightgrey;
    color: var(--bs-body);
}

.options[b-9t6ozbe265] {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Joe css */

/* Base Styles */


/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/

/*body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}*/

.container[b-9t6ozbe265] {
    /*width: 90%;*/
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 15px;
}

a[b-9t6ozbe265] {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul[b-9t6ozbe265] {
    list-style: none;
}

img[b-9t6ozbe265] {
    max-width: 100%;
    height: auto;
    display: block;
}

button[b-9t6ozbe265] {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    transition: all var(--transition-speed);
}

input[b-9t6ozbe265] {
    font-family: inherit;
}


/* Products Grid */
.products-grid[b-9t6ozbe265] {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.products-grid[b-9t6ozbe265]
{
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
}

@media (min-width: 1200px)
{
    .products-grid[b-9t6ozbe265] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .products-grid[b-9t6ozbe265] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .products-grid[b-9t6ozbe265] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid[b-9t6ozbe265] {
        grid-template-columns: 1fr;
    }
}

.product-card[b-9t6ozbe265] {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    min-height: 450px;
}

.product-badge[b-9t6ozbe265] {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.product-badge.sale[b-9t6ozbe265] {
    background-color: var(--secondary-accent);
    color: var(--text-light);
}

.product-badge.new[b-9t6ozbe265] {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.product-img[b-9t6ozbe265] {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-img img[b-9t6ozbe265] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

/* Make product-info a flex container with column direction */
.product-info[b-9t6ozbe265] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    z-index: 1;
    justify-content: space-between;
}

/* Make description take up available space, pushing actions to bottom */
.product-info .description[b-9t6ozbe265] {
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 60px;
}

.product-info h3[b-9t6ozbe265] {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
}

.rating[b-9t6ozbe265] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-container[b-9t6ozbe265] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price[b-9t6ozbe265] {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
}

.original-price[b-9t6ozbe265] {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
}

/* Style the product actions to stick to bottom */
.product-actions[b-9t6ozbe265] {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
}

.new-btn[b-9t6ozbe265], .secondhand-btn[b-9t6ozbe265] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.new-btn[b-9t6ozbe265] {
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    margin-top: 5px;
}

.secondhand-btn[b-9t6ozbe265] {
    background-color: rgba(27, 29, 37, 0.1);
    color: #606075;
    border-left: 3px solid #606075;
    border-right: 3px solid #606075;
    margin-top: 5px;
}

.view-btn[b-9t6ozbe265] {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    flex-grow: 1;
    background-color: var(--accent-color);
}

.view-btn[b-9t6ozbe265] {
    flex-grow: 1;
    text-align: center;
    display: flex;
}

/* Additional improvements to prevent hidden elements */
.product-card:hover .product-actions[b-9t6ozbe265] {
    opacity: 1;
    visibility: visible;
}

.view-btn[b-9t6ozbe265], .add-to-cart-btn[b-9t6ozbe265] {
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important;
}

.view-btn:hover[b-9t6ozbe265] {
    background-color: blue;
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* Product Details Page */


/*.qty-btn {
    width: 44px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}*/

   /* .qty-btn:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }*/

/*#product-quantity {
    width: 44px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
}*/

/*.add-to-cart-btn-large {
    flex-grow: 1;
    height: 44px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}
*/
    /*.add-to-cart-btn-large:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
    }*/

/* Custom scrollbar styling for WebKit browsers */
.product-info-detailed[b-9t6ozbe265]::-webkit-scrollbar {
    width: 6px;
}

.product-info-detailed[b-9t6ozbe265]::-webkit-scrollbar-track {
    background: transparent;
}

.product-info-detailed[b-9t6ozbe265]::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

    .product-info-detailed[b-9t6ozbe265]::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-view[b-9t6ozbe265] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-images[b-9t6ozbe265] {
        position: relative;
        top: 0;
    }

    .product-info-detailed[b-9t6ozbe265] {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .product-options[b-9t6ozbe265] {
        gap: 15px;
    }

    .storage-options[b-9t6ozbe265] {
        gap: 6px;
    }

    .storage-option[b-9t6ozbe265] {
        padding: 5px 10px;
        font-size: 12px;
    }
}

.product-images[b-9t6ozbe265] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image[b-9t6ozbe265] {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    margin-bottom: 20px;
}

    .main-image img.product-image[b-9t6ozbe265] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Shows entire product without cropping */
        padding: 30px; /* Provides space around the product */
        transition: transform 0.3s ease;
    }


/*.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
}*/

/*.thumbnail {
    position: relative;
    width: 100%;
    padding-top: 100%;*/ /* Creates perfect square aspect ratio */
    /*border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}*/

    /*.thumbnail:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }*/

    /*.thumbnail.active {
        border-color: var(--accent-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }*/

    /*.thumbnail img.product-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;*/ /* Contains the entire image within the square */
        /*padding: 8px;*/ /* Adds some padding so the image doesn't touch the edges */
        /*transition: transform 0.3s ease;
    }*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .thumbnail-gallery[b-9t6ozbe265] {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .thumbnail-gallery[b-9t6ozbe265] {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .thumbnail img.product-thumbnail[b-9t6ozbe265] {
        padding: 4px;
    }
}

.thumbnail:hover[b-9t6ozbe265] {
    transform: translateY(-3px);
    opacity: 0.9;
}

.thumbnail.active[b-9t6ozbe265] {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.product-info-detailed[b-9t6ozbe265] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info-detailed h2[b-9t6ozbe265] {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.product-meta[b-9t6ozbe265] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price[b-9t6ozbe265] {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
}

.product-rating[b-9t6ozbe265] {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fd9a16;
}

.product-rating span[b-9t6ozbe265] {
    color: var(--text-gray);
    font-size: 14px;
    margin-left: 5px;
}

.product-description[b-9t6ozbe265] {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.product-specs h3[b-9t6ozbe265] {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-specs ul[b-9t6ozbe265] {
    list-style: none;
}

.product-specs li[b-9t6ozbe265] {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-specs li[b-9t6ozbe265]::before {
    content: '•';
    color: var(--accent-color);
}

.product-actions-detailed[b-9t6ozbe265] {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.quantity-selector[b-9t6ozbe265] {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 120px;
}

.qty-btn[b-9t6ozbe265] {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

.qty-btn:hover[b-9t6ozbe265] {
    background-color: rgba(0, 0, 0, 0.05);
}

#product-quantity[b-9t6ozbe265], .cart-quantity[b-9t6ozbe265] {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
}

#product-quantity[b-9t6ozbe265]::-webkit-inner-spin-button,
#product-quantity[b-9t6ozbe265]::-webkit-outer-spin-button,
.cart-quantity[b-9t6ozbe265]::-webkit-inner-spin-button,
.cart-quantity[b-9t6ozbe265]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-extras[b-9t6ozbe265] {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-info[b-9t6ozbe265], .warranty-info[b-9t6ozbe265] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Cart Page */
/*.cart-section {
    margin-top: 20px;
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 1rem;
    border-radius: 1rem;
}*/

    /*.cart-section h2 {
        margin-bottom: 30px;
        font-size: 28px;
        font-weight: 600;
    }*/

/*.cart-empty {
    text-align: center;
    padding: 60px 0;
}*/

    /*.cart-empty i {
        font-size: 60px;
        color: var(--text-gray);
        margin-bottom: 20px;
    }*/

    /*.cart-empty p {
        font-size: 18px;
        color: var(--text-gray);
        margin-bottom: 30px;
    }*/

/*.continue-shopping-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color var(--transition-speed);
}*/

    /*.continue-shopping-btn:hover {
        background-color: var(--accent-color);
    }*/

/*.cart-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}*/

/*.cart-table {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}*/

/*.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}*/

/*.cart-items {
    padding: 10px 0;
}*/

/*.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    font-size: 14px;
    text-align: center;
}*/

/*.cart-col.product-col {
    text-align: left;
}

.cart-actions {
    display: block;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.clear-cart-btn, .calculate-delivery-btn {
    padding: 10px 15px;
    border-radius: 25px;
    display: block;*/
    /* display: flex; */
    /*width: 250px;
    padding-bottom: 10px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-cart-btn {
    background-color: #f8f8f8;
    color: #d9534f;
    border: 1px solid #d9534f;
}

    .clear-cart-btn:hover {
        background-color: #d9534f;
        color: white;
    }

.calculate-delivery-btn {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

    .calculate-delivery-btn:hover {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }*/

@media (max-width: 1200px) {
    .cart-header[b-9t6ozbe265], .cart-item[b-9t6ozbe265] {
        font-size: 12px;
        padding: 12px 10px;
    }
}

@media (max-width: 992px) {
    .cart-table[b-9t6ozbe265] {
        overflow-x: auto;
        display: block;
    }

    .cart-header[b-9t6ozbe265], .cart-item[b-9t6ozbe265] {
        width: 1200px;
    }
}

@media (max-width: 768px) {
    .cart-actions[b-9t6ozbe265] {
        flex-direction: column;
    }

    .clear-cart-btn[b-9t6ozbe265], .calculate-delivery-btn[b-9t6ozbe265], .checkout-btn[b-9t6ozbe265] {
        width: 100%;
        justify-content: center;
    }
}

/*.cart-item:last-child {
    border-bottom: none;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .cart-product-info img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        border-radius: 8px;
    }

    .cart-product-info h3 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .cart-product-info p {
        font-size: 14px;
        color: var(--text-gray);
    }

.remove-item-btn {
    color: var(--secondary-accent);
    font-size: 18px;
    transition: color var(--transition-speed);
}

    .remove-item-btn:hover {
        color: var(--secondary-accent);
    }

.cart-bottom {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.coupon-section {
    display: flex;
    gap: 10px;
}

    .coupon-section input {
        flex-grow: 1;
        padding: 10px 15px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 14px;
    }

.apply-coupon-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

    .apply-coupon-btn:hover {
        background-color: var(--accent-color);
    }

.cart-summary {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-small);
    height: 100%;
}

    .cart-summary h3 {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.total-row {
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.checkout-btn {
    width: 250px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 25px;
    display: block;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .checkout-btn:hover {
        background-color: var(--accent-color);
    }

.continue-shopping-link {
    display: block;
    padding-left: 10px;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: underline;
}*/



/* Animations */
@keyframes fadeIn-b-9t6ozbe265 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-9t6ozbe265 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-b-9t6ozbe265 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInCard-b-9t6ozbe265 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Animation Classes */
.fade-in[b-9t6ozbe265] {
    animation: fadeInCard-b-9t6ozbe265 0.5s ease forwards;
}

.slide-up[b-9t6ozbe265] {
    animation: slideUp-b-9t6ozbe265 0.5s ease forwards;
}

.pulse[b-9t6ozbe265] {
    animation: pulse-b-9t6ozbe265 0.6s ease-in-out;
}

@keyframes fadeInCard-b-9t6ozbe265 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product-card:hover .product-actions[b-9t6ozbe265] {
    opacity: 1;
    visibility: visible;
}

.view-btn[b-9t6ozbe265], .add-to-cart-btn[b-9t6ozbe265] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-view[b-9t6ozbe265] {
        grid-template-columns: 1fr;
    }

    .cart-bottom[b-9t6ozbe265] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu[b-9t6ozbe265] {
        display: block;
    }

    header .container[b-9t6ozbe265] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav[b-9t6ozbe265] {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

        nav.active[b-9t6ozbe265] {
            left: 0;
        }

        nav ul[b-9t6ozbe265] {
            flex-direction: column;
            gap: 20px;
        }

            nav ul li[b-9t6ozbe265] {
                margin: 0;
            }

                nav ul li a[b-9t6ozbe265] {
                    font-size: 16px;
                    display: block;
                    padding: 10px 0;
                }

    .burger-btn.active .burger-line:nth-child(1)[b-9t6ozbe265] {
        transform: translateY(11px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2)[b-9t6ozbe265] {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3)[b-9t6ozbe265] {
        transform: translateY(-11px) rotate(-45deg);
    }

    .nav-overlay[b-9t6ozbe265] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

        .nav-overlay.active[b-9t6ozbe265] {
            opacity: 1;
            visibility: visible;
        }

    .hero h2[b-9t6ozbe265] {
        font-size: 2.2rem;
    }

    .hero p[b-9t6ozbe265] {
        font-size: 1rem;
    }

    .cart-item[b-9t6ozbe265] {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: var(--shadow-small);
        background-color: var(--bg-white);
    }

    .cart-col[b-9t6ozbe265] {
        display: flex;
        justify-content: space-between;
        align-items: left;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 70%;
    }

        .cart-col:last-child[b-9t6ozbe265] {
            border-bottom: none;
        }

        .cart-col[b-9t6ozbe265]:before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--text-dark);
            padding-right: 10px;
            flex-shrink: 0;
            width: 30%;
        }

        .cart-col.product-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
        }

            .cart-col.product-col[b-9t6ozbe265]:before {
                margin-bottom: 10px;
            }

    .cart-product-info[b-9t6ozbe265] {
        width: 100%;
    }

    .quantity-selector[b-9t6ozbe265] {
        width: 100px;
    }

    .cart-quantity[b-9t6ozbe265] {
        width: 100%;
    }

    .qty-btn[b-9t6ozbe265] {
        width: 30px;
        height: 30px;
    }

    .remove-item-btn[b-9t6ozbe265] {
        width: 100%;
        color: var(--secondary-accent);
        font-size: 16px;
    }

    .cart-col.line-total-col[b-9t6ozbe265] {
        width: 100%;
        font-weight: 600;
        background-color: rgba(0,0,0,0.02);
        border-radius: 4px;
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    /* Hide table headers if you have them */
    .cart-header[b-9t6ozbe265] {
        display: none !important;
    }

    .cart-item[b-9t6ozbe265] {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: var(--shadow-small);
        background-color: var(--bg-white);
    }

    .cart-col[b-9t6ozbe265] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
        font-size: 1rem;
        position: relative;
    }

        .cart-col:last-child[b-9t6ozbe265] {
            border-bottom: none;
        }

        .cart-col[b-9t6ozbe265]:before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--text-dark);
            padding-right: 10px;
            flex-shrink: 0;
            width: 20%;
            text-align: left;
            display: block;
        }

        .cart-col.product-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.supplier-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.condition-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.stock-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.order-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.price-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.prod-total-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.delivery-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.delivery-total-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.line-total-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.action-col[b-9t6ozbe265] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.product-col[b-9t6ozbe265]:before {
            margin-bottom: 4px;
        }

    .cart-product-info[b-9t6ozbe265] {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .cart-product-info img[b-9t6ozbe265] {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 6px;
        }

        .cart-product-info h3[b-9t6ozbe265] {
            font-size: 1rem;
            margin: 0;
        }

    .quantity-selector[b-9t6ozbe265] {
        width: 100px;
        min-width: 80px;
    }

    .cart-quantity[b-9t6ozbe265] {
        width: 100%;
    }

    .qty-btn[b-9t6ozbe265] {
        width: 30px;
        height: 30px;
    }

    .remove-item-btn[b-9t6ozbe265] {
        flex-direction: column;
        align-items: left;
        width: 5%;
        color: var(--secondary-accent);
        font-size: 16px;
    }

    .cart-col.line-total-col[b-9t6ozbe265] {
        width: 100%;
        font-weight: 600;
        background-color: rgba(0,0,0,0.02);
        border-radius: 4px;
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .cart-col[b-9t6ozbe265]:before {
        width: 50%;
        font-size: 0.95rem;
    }

    .cart-product-info img[b-9t6ozbe265] {
        width: 48px;
        height: 48px;
    }

    .cart-product-info h3[b-9t6ozbe265] {
        font-size: 0.95rem;
    }

    .cart-item[b-9t6ozbe265] {
        padding: 12px;
    }

    .quantity-selector[b-9t6ozbe265] {
        width: 100%;
        min-width: 60px;
    }
}


/* Add-to-cart button animation */
.add-to-cart-btn.adding[b-9t6ozbe265] {
    background-color: var(--accent-color);
    animation: pulse-b-9t6ozbe265 0.6s ease-in-out;
}

/* Product Detail Page Enhancements */
.product-gallery[b-9t6ozbe265] {
    position: relative;
    overflow: hidden;
}

.main-image-container[b-9t6ozbe265] {
    position: relative;
    padding-top: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

    .main-image-container img[b-9t6ozbe265] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }
/* Enhanced image switching effect */
#main-product-image[b-9t6ozbe265] {
    transition: opacity 0.3s ease;
}

/* Add zoom effect when hovering on main product image */
.main-image:hover img.product-image[b-9t6ozbe265] {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.thumbnail-gallery[b-9t6ozbe265] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.thumbnail[b-9t6ozbe265] {
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .thumbnail img[b-9t6ozbe265] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail:hover[b-9t6ozbe265] {
        transform: translateY(-3px);
    }

    /* Enhance the active thumbnail indicator */
    .thumbnail.active[b-9t6ozbe265] {
        border-color: var(--accent-color);
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

.color-options[b-9t6ozbe265], .storage-options[b-9t6ozbe265] {
    margin: 20px 0;
}

.option-label[b-9t6ozbe265] {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.color-select[b-9t6ozbe265], .storage-select[b-9t6ozbe265] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option[b-9t6ozbe265], .storage-option[b-9t6ozbe265] {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .color-option.selected[b-9t6ozbe265], .storage-option.selected[b-9t6ozbe265] {
        background: var(--primary-color);
        color: var(--text-light);
        border-color: var(--primary-color);
    }

/* Enhanced Product Recommendations */
.product-recommendations[b-9t6ozbe265] {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

    .product-recommendations h3[b-9t6ozbe265] {
        font-size: 22px;
        margin-bottom: 25px;
        font-weight: 600;
    }

.recommendation-grid[b-9t6ozbe265] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.recommendation-card[b-9t6ozbe265] {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .recommendation-card:hover[b-9t6ozbe265] {
        transform: translateY(-7px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Image container with fixed aspect ratio */
.recommendation-img-container[b-9t6ozbe265] {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a perfect square */
    background-color: var(--bg-white);
    overflow: hidden;
}

/* Image sizing and positioning */
.recommendation-img[b-9t6ozbe265] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures entire product is visible */
    padding: 15px; /* Adds padding around the image */
    transition: transform 0.4s ease;
}

.recommendation-card:hover .recommendation-img[b-9t6ozbe265] {
    transform: scale(1.08);
}

.recommendation-info[b-9t6ozbe265] {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recommendation-card h4[b-9t6ozbe265] {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-card:hover h4[b-9t6ozbe265] {
    color: var(--accent-color);
}

.recommendation-price[b-9t6ozbe265] {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.recommendation-view-btn[b-9t6ozbe265] {
    margin-top: auto;
    padding: 8px 0;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
    text-align: center;
}

    .recommendation-view-btn:hover[b-9t6ozbe265] {
        color: var(--accent-color);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .recommendation-grid[b-9t6ozbe265] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .recommendation-grid[b-9t6ozbe265] {
        grid-template-columns: 1fr;
    }

    .recommendation-img-container[b-9t6ozbe265] {
        padding-top: 80%; /* Slightly shorter aspect ratio on mobile */
    }
}

@keyframes fadeSlide-b-9t6ozbe265 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-extras[b-9t6ozbe265] {
    animation: fadeSlide-b-9t6ozbe265 0.3s ease forwards;
}

.image-switch[b-9t6ozbe265] {
    opacity: 0;
    animation: fadeIn-b-9t6ozbe265 0.3s ease forwards;
}

.add-to-cart-success[b-9t6ozbe265] {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    animation: slideIn-b-9t6ozbe265 0.3s ease forwards;
    z-index: 1000;
}

@keyframes slideIn-b-9t6ozbe265 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Product Image Display */

/* Maintain consistent product card image container */
.product-img[b-9t6ozbe265] {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* Maintains square aspect ratio */
    background-color: var(--bg-white);
}

/* Ensure product images display properly without distortion */
.product-img img.product-image[b-9t6ozbe265] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' to show entire image */
    padding: 15px; /* Add padding so image doesn't touch edges */
    transition: transform 0.4s ease;
}

/* Enhanced hover effect that zooms without cropping */
.product-card:hover .product-img img.product-image[b-9t6ozbe265] {
    transform: scale(1.08);
}
/* Additional improvements to prevent hidden elements */
.product-card:hover .product-actions[b-9t6ozbe265] {
    opacity: 1;
    visibility: visible;
}

/* Better badge positioning that doesn't interfere with image */
.product-badge[b-9t6ozbe265] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Better loading appearance */
.product-image[b-9t6ozbe265] {
    opacity: 0;
    animation: fadeIn-b-9t6ozbe265 0.3s ease forwards;
}

@keyframes fadeIn-b-9t6ozbe265 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Components/Pages/ProductDetails.razor.rz.scp.css */
.container[b-5fh2cn9a9y] {
    /*width: 90%;
    max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 15px;
}

a[b-5fh2cn9a9y] {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul[b-5fh2cn9a9y] {
    list-style: none;
}

img[b-5fh2cn9a9y] {
    max-width: 100%;
    height: auto;
    display: block;
}

input[b-5fh2cn9a9y] {
    font-family: inherit;
}

/* Header */
header[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* Fixed header layout */
header .container[b-5fh2cn9a9y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

/* Group burger menu and cart icon together */
.header-right[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Ensure burger menu is visible on mobile */
@media (max-width: 768px) {
    .burger-menu[b-5fh2cn9a9y] {
        display: block !important; /* Force display */
    }

    nav[b-5fh2cn9a9y] {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        z-index: 1000;
        transition: left 0.3s ease;
        padding-top: 70px;
        overflow-y: auto;
    }

        nav.active[b-5fh2cn9a9y] {
            left: 0;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        nav ul[b-5fh2cn9a9y] {
            flex-direction: column;
            padding: 0 20px;
        }

        nav ul li[b-5fh2cn9a9y] {
            margin: 0;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav ul li:last-child[b-5fh2cn9a9y] {
            border-bottom: none;
        }
}

.logo h1[b-5fh2cn9a9y] {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img[b-5fh2cn9a9y] {
    height: 50px; /* Adjust as needed */
    width: auto;
    display: block;
}

.logo-text[b-5fh2cn9a9y] {
    font-size: 1.5rem;
    /* font-weight: bold; */
    color: #ffffff;
    letter-spacing: 0.0px;
}

nav ul[b-5fh2cn9a9y] {
    display: flex;
}

    nav ul li[b-5fh2cn9a9y] {
        margin-left: 25px;
    }

        nav ul li a[b-5fh2cn9a9y] {
            font-size: 14px;
            font-weight: 400;
            padding: 5px 0;
            position: relative;
        }

            nav ul li a[b-5fh2cn9a9y]::after {
                content: '';
                position: absolute;
                width: 0;
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: var(--text-light);
                transition: width var(--transition-speed);
            }

            nav ul li a:hover[b-5fh2cn9a9y]::after {
                width: 100%;
            }

.cart-icon[b-5fh2cn9a9y] {
    position: relative;
}

.cart-count[b-5fh2cn9a9y] {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Content */
main[b-5fh2cn9a9y] {
    margin-top: 70px;
    padding: 30px 0;
    min-height: calc(100vh - 70px - 200px);
}

/* Filters */
.filters[b-5fh2cn9a9y] {
    margin-bottom: 30px;
}

.filter-container[b-5fh2cn9a9y] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.filter-container[b-5fh2cn9a9y] {
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
}

.product-view[b-5fh2cn9a9y] {
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
}

.product-info-detailed[b-5fh2cn9a9y] {
    background-color: #ffff;
    background-size: cover;
    background-position: center;
    flex-grow: 1;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-small);
    height: 536px; /* Match main-image height */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.filter-dropdown[b-5fh2cn9a9y] {
    position: relative;
    z-index: 100;
}

.filter-btn[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

    .filter-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--primary-color);
        color: var(--text-light);
    }

.filter-content[b-5fh2cn9a9y] {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    width: 180px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-speed), opacity var(--transition-speed);
    margin-top: 5px;
    z-index: 101;
}

.filter-dropdown:hover .filter-content[b-5fh2cn9a9y] {
    max-height: 300px;
    opacity: 1;
}

.filter-content a[b-5fh2cn9a9y] {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

    .filter-content a:hover[b-5fh2cn9a9y] {
        background-color: rgba(0, 0, 0, 0.05);
    }

.active-filters[b-5fh2cn9a9y] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.filter-tag[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

/* Products Grid */
.products-grid[b-5fh2cn9a9y] {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.products-grid[b-5fh2cn9a9y] {
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
}

@media (min-width: 1200px) {
    .products-grid[b-5fh2cn9a9y] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .products-grid[b-5fh2cn9a9y] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .products-grid[b-5fh2cn9a9y] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
    }
}

.product-card[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    min-height: 450px;
}

.product-badge[b-5fh2cn9a9y] {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.product-badge.sale[b-5fh2cn9a9y] {
    background-color: var(--secondary-accent);
    color: var(--text-light);
}

.product-badge.new[b-5fh2cn9a9y] {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.product-img[b-5fh2cn9a9y] {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-img img[b-5fh2cn9a9y] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

/* Make product-info a flex container with column direction */
.product-info[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    z-index: 1;
    justify-content: space-between;
}
    /* Make description take up available space, pushing actions to bottom */
    .product-info .description[b-5fh2cn9a9y] {
        margin-bottom: 15px;
        flex-grow: 1;
        min-height: 60px;
    }

    .product-info h3[b-5fh2cn9a9y] {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 500;
        line-height: 1.4;
    }

.rating[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars[b-5fh2cn9a9y] {
    color: #ffd700;
    font-size: 14px;
}

.rating-count[b-5fh2cn9a9y] {
    font-size: 12px;
    color: var(--text-gray);
}

.price-container[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price[b-5fh2cn9a9y] {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    padding-bottom: 10px;
}

.original-price[b-5fh2cn9a9y] {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
}

/* Style the product actions to stick to bottom */
.product-actions[b-5fh2cn9a9y] {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
}

.view-btn[b-5fh2cn9a9y] {
    padding: 8px 15px;
    background-color: var(--accent-color);    
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    flex-grow: 1;
}

.view-btn[b-5fh2cn9a9y] {
    flex-grow: 1;
    text-align: center;
    display: flex;
}

/* Product condition labels */
.new-btn-2[b-5fh2cn9a9y], .secondhand-btn-2[b-5fh2cn9a9y] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.new-btn-2[b-5fh2cn9a9y] {
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    margin-top: 5px;
}

.secondhand-btn-2[b-5fh2cn9a9y] {
    background-color: rgba(27, 29, 37, 0.1);
    color: #606075;
    border-left: 3px solid #606075;
    border-right: 3px solid #606075;
    margin-top: 5px;
}

/* Add subtle transition */
.new-btn[b-5fh2cn9a9y], .secondhand-btn-2[b-5fh2cn9a9y] {
    transition: transform 0.2s ease;
}

    .new-btn:hover[b-5fh2cn9a9y], .secondhand-btn-2:hover[b-5fh2cn9a9y] {
        transform: translateX(2px);
    }
/*Old new and second hand Buttons*/
.new-btn[b-5fh2cn9a9y] {
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    margin-top: 5px;
}

.secondhand-btn[b-5fh2cn9a9y] {
    background-color: rgba(27, 29, 37, 0.1);
    color: #606075;
    border-left: 3px solid #606075;
    border-right: 3px solid #606075;
    margin-top: 5px;
}

/* Add subtle transition */
.new-btn[b-5fh2cn9a9y], .secondhand-btn[b-5fh2cn9a9y] {
    transition: transform 0.2s ease;
}

    .new-btn:hover[b-5fh2cn9a9y], .secondhand-btn:hover[b-5fh2cn9a9y] {
        transform: translateX(2px);
    }
/* Additional improvements to prevent hidden elements */
.product-card:hover .product-actions[b-5fh2cn9a9y] {
    opacity: 1;
    visibility: visible;
}

.view-btn[b-5fh2cn9a9y], .add-to-cart-btn[b-5fh2cn9a9y] {
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important;
}

    .view-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--text-light);
    }

.add-to-cart-btn[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-speed);
}

.add-to-cart-btn:hover[b-5fh2cn9a9y] {
    background-color: var(--accent-color);
}

.add-to-cart-btn i[b-5fh2cn9a9y] {
    font-size: 16px;
}

/* Product Details Page */
.product-details[b-5fh2cn9a9y] {
    padding: 20px 0 40px;
}

.back-link[b-5fh2cn9a9y] {
    margin-bottom: 30px;
}

.back-link a[b-5fh2cn9a9y] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
    transition: color var(--transition-speed);
}

.back-link a:hover[b-5fh2cn9a9y] {
    color: var(--accent-color);
}

/* Product View Layout - Equal Heights */
.product-view[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Product Images Layout */
.product-images[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
}

/* Vertical Thumbnail Gallery */
.thumbnail-gallery.vertical-gallery[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 80px;
    flex-shrink: 0;
}

/* Scrollable thumbnail column wrapper (desktop/default) */
.thumbnail-scroll-wrapper[b-5fh2cn9a9y] {
    width: 140px; /* slightly wider than thumbnails */
    max-height: 500px; /* match .main-image height */
    overflow-y: auto; /* enable vertical scrolling */
    overflow-x: hidden; /* hide horizontal scroll */
    margin-right: 15px; /* spacing before main image */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.thumbnail-gallery.vertical-gallery .thumbnail[b-5fh2cn9a9y] {
    width: 80px;
    height: 80px;
    padding-top: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-gallery.vertical-gallery .thumbnail.active[b-5fh2cn9a9y] {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-gallery.vertical-gallery .thumbnail img[b-5fh2cn9a9y] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
/* Product Info Detailed - Match height */
.product-info-detailed[b-5fh2cn9a9y] {
    background-color: #ffff;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-small);
    height: 500px; /* Match main-image height */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar {
        width: 6px;
    }

    .product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar-track {
        background: transparent;
    }

    .product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }

        .product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar-thumb:hover {
            background-color: rgba(0, 0, 0, 0.3);
        }

.product-options[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column; /* Changed from flex-wrap to column */
    gap: 20px;
    margin-bottom: 10px;
}

.option-group[b-5fh2cn9a9y] {
    /* flex: 1;
    min-width: 200px; */
    width: 100%; /* Take full width instead of flex: 1 */
    margin-bottom: 1px;
}

    .option-group h3[b-5fh2cn9a9y] {
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 500;
    }

.color-options[b-5fh2cn9a9y] {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.color-option[b-5fh2cn9a9y] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .color-option:hover[b-5fh2cn9a9y] {
        transform: scale(1.1);
    }

    .color-option.active[b-5fh2cn9a9y] {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px white;
    }

.storage-options[b-5fh2cn9a9y] {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for storage options */
    gap: 8px;
}

.storage-option[b-5fh2cn9a9y] {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

    .storage-option:hover[b-5fh2cn9a9y] {
        border-color: var(--accent-color);
        background-color: rgba(0, 113, 227, 0.05);
    }

    .storage-option.active[b-5fh2cn9a9y] {
        background-color: var(--primary-color);
        color: var(--text-light);
        border-color: var(--primary-color);
    }

.product-actions-detailed[b-5fh2cn9a9y] {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 15px 0px; /* Increased padding */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 1px;
    z-index: 10;
    margin-top: auto;
    /* Add these properties to ensure solid background */
    /* box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05); /* Optional: adds subtle shadow */
}

.quantity-selector[b-5fh2cn9a9y] {
    height: 44px;
    border-radius: 22px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.qty-btn[b-5fh2cn9a9y] {
    width: 44px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

    .qty-btn:hover[b-5fh2cn9a9y] {
        background-color: rgba(0, 0, 0, 0.05);
    }

#product-quantity[b-5fh2cn9a9y] {
    width: 44px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.add-to-cart-btn-large[b-5fh2cn9a9y] {
    flex-grow: 1;
    height: 44px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}

    .add-to-cart-btn-large:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
        transform: translateY(-2px);
    }

/* Custom scrollbar styling for WebKit browsers */
.product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar {
    width: 6px;
}

.product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar-track {
    background: transparent;
}

.product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

    .product-info-detailed[b-5fh2cn9a9y]::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-view[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0;
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-images[b-5fh2cn9a9y] {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding-left: 0;
    }

    .product-info-detailed[b-5fh2cn9a9y] {
        height: auto;
        max-height: none;
        overflow-y: visible;
        position: absolute; /* Add this */
        z-index: 1; /* Set proper stacking context */
    }
    /* Thumbnails on top */
    .thumbnail-gallery.vertical-gallery[b-5fh2cn9a9y] {
        order: 1;
        flex-direction: row;
        width: 100%;
        height: auto;
        overflow-x: auto;
        padding-bottom: 10px;
        padding-top: 10px;
        margin-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    /* Main image below thumbnails */
    .main-image[b-5fh2cn9a9y] {
        order: 2;
        height: 400px;
        width: 100%;
        position: relative; /* Keep relative positioning */
    }

    .product-info-detailed[b-5fh2cn9a9y] {
        height: auto;
        max-height: none;
        overflow-y: visible;
    }

    .thumbnail-gallery.vertical-gallery .thumbnail[b-5fh2cn9a9y] {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .main-image[b-5fh2cn9a9y] {
        height: 350px;
    }

    .product-info-detailed[b-5fh2cn9a9y] {
        padding: 1.5rem;
    }

    .thumbnail-gallery.vertical-gallery .thumbnail[b-5fh2cn9a9y] {
        width: 60px;
        height: 60px;
    }

    /* Scrollbar styling for mobile */
    .thumbnail-gallery.vertical-gallery[b-5fh2cn9a9y]::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnail-gallery.vertical-gallery[b-5fh2cn9a9y]::-webkit-scrollbar-track {
        background: transparent;
    }

    .thumbnail-gallery.vertical-gallery[b-5fh2cn9a9y]::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 3px;
    }

    .product-options[b-5fh2cn9a9y] {
        gap: 15px;
    }
    /*
    .option-group {
        min-width: 160px;
    }
   */
    .storage-options[b-5fh2cn9a9y] {
        gap: 6px;
    }

    .storage-option[b-5fh2cn9a9y] {
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-image[b-5fh2cn9a9y] {
        height: 300px;
    }

    .thumbnail-gallery.vertical-gallery .thumbnail[b-5fh2cn9a9y] {
        width: 50px;
        height: 50px;
    }

        .thumbnail-gallery.vertical-gallery .thumbnail img[b-5fh2cn9a9y] {
            padding: 4px;
        }

    .add-to-cart-btn-large .btn-text[b-5fh2cn9a9y] {
        display: none;
    }
}
/* Remove all the conflicting absolute positioning styles from responsive queries */
@media (max-width: 992px) {
    .product-images[b-5fh2cn9a9y],
    .main-image[b-5fh2cn9a9y],
    .product-info-detailed[b-5fh2cn9a9y] {
        position: relative !important; /* Force relative positioning */
        display: block !important;
        z-index: auto !important;
    }
}
/*
.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
*/
.product-images[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    height: 100%; /* Ensure both columns stretch to same height */
}
/* Main Image Container */
.main-image[b-5fh2cn9a9y] {
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

    .main-image img.product-image[b-5fh2cn9a9y] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 30px;
        transition: transform 0.3s ease;
    }
    /*
.main-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; 
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    margin-bottom: 20px;
}
*/

    .main-image img.product-image[b-5fh2cn9a9y] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Shows entire product without cropping */
        padding: 30px; /* Provides space around the product */
        transition: transform 0.3s ease;
    }
/*
.main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}
    */

.thumbnail-gallery[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.thumbnail[b-5fh2cn9a9y] {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates perfect square aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .thumbnail:hover[b-5fh2cn9a9y] {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .thumbnail.active[b-5fh2cn9a9y] {
        border-color: var(--accent-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .thumbnail img.product-thumbnail[b-5fh2cn9a9y] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Contains the entire image within the square */
        padding: 8px; /* Adds some padding so the image doesn't touch the edges */
        transition: transform 0.3s ease;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .thumbnail-gallery[b-5fh2cn9a9y] {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .thumbnail-gallery[b-5fh2cn9a9y] {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .thumbnail img.product-thumbnail[b-5fh2cn9a9y] {
        padding: 4px;
    }
}

.thumbnail:hover[b-5fh2cn9a9y] {
    transform: translateY(-3px);
    opacity: 0.9;
}

.thumbnail.active[b-5fh2cn9a9y] {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.product-info-detailed[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .product-info-detailed h2[b-5fh2cn9a9y] {
        font-size: 28px;
        font-weight: 600;
        letter-spacing: -0.5px;
    }

.product-meta[b-5fh2cn9a9y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price[b-5fh2cn9a9y] {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
}

.product-rating[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fd9a16;
}

    .product-rating span[b-5fh2cn9a9y] {
        color: var(--text-gray);
        font-size: 14px;
        margin-left: 5px;
    }

.product-description[b-5fh2cn9a9y] {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.product-specs h3[b-5fh2cn9a9y] {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-specs ul[b-5fh2cn9a9y] {
    list-style: none;
}

.product-specs li[b-5fh2cn9a9y] {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .product-specs li[b-5fh2cn9a9y]::before {
        content: '•';
        color: var(--accent-color);
    }

.product-actions-detailed[b-5fh2cn9a9y] {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.quantity-selector[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 120px;
}

.qty-btn[b-5fh2cn9a9y] {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

    .qty-btn:hover[b-5fh2cn9a9y] {
        background-color: rgba(0, 0, 0, 0.05);
    }

#product-quantity[b-5fh2cn9a9y], .cart-quantity[b-5fh2cn9a9y] {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
}

    #product-quantity[b-5fh2cn9a9y]::-webkit-inner-spin-button,
    #product-quantity[b-5fh2cn9a9y]::-webkit-outer-spin-button,
    .cart-quantity[b-5fh2cn9a9y]::-webkit-inner-spin-button,
    .cart-quantity[b-5fh2cn9a9y]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.add-to-cart-btn-large[b-5fh2cn9a9y] {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 25px;
    padding: 0 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    height: 40px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .add-to-cart-btn-large:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
    }

    .add-to-cart-btn-large .btn-icon[b-5fh2cn9a9y] {
        margin-left: 5px;
    }

.product-extras[b-5fh2cn9a9y] {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-info[b-5fh2cn9a9y], .warranty-info[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Cart Page */
.cart-section[b-5fh2cn9a9y] {
    margin-top: 20px;
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 1rem;
    border-radius: 1rem;
}

    .cart-section h2[b-5fh2cn9a9y] {
        margin-bottom: 30px;
        font-size: 28px;
        font-weight: 600;
    }

.cart-empty[b-5fh2cn9a9y] {
    text-align: center;
    padding: 60px 0;
}

    .cart-empty i[b-5fh2cn9a9y] {
        font-size: 60px;
        color: var(--text-gray);
        margin-bottom: 20px;
    }

    .cart-empty p[b-5fh2cn9a9y] {
        font-size: 18px;
        color: var(--text-gray);
        margin-bottom: 30px;
    }

.continue-shopping-btn[b-5fh2cn9a9y] {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color var(--transition-speed);
}

    .continue-shopping-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
    }

.cart-content[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-table[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.cart-header[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}

.cart-items[b-5fh2cn9a9y] {
    padding: 10px 0;
}

.cart-item[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    font-size: 14px;
    text-align: center;
}

.cart-col.product-col[b-5fh2cn9a9y] {
    text-align: left;
}

.cart-actions[b-5fh2cn9a9y] {
    display: block;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.clear-cart-btn[b-5fh2cn9a9y], .calculate-delivery-btn[b-5fh2cn9a9y] {
    padding: 10px 15px;
    border-radius: 25px;
    display: block;
    /* display: flex; */
    width: 250px;
    padding-bottom: 10px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-cart-btn[b-5fh2cn9a9y] {
    background-color: #f8f8f8;
    color: #d9534f;
    border: 1px solid #d9534f;
}

    .clear-cart-btn:hover[b-5fh2cn9a9y] {
        background-color: #d9534f;
        color: white;
    }

.calculate-delivery-btn[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

    .calculate-delivery-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }

@media (max-width: 1200px) {
    .cart-header[b-5fh2cn9a9y], .cart-item[b-5fh2cn9a9y] {
        font-size: 12px;
        padding: 12px 10px;
    }
}

@media (max-width: 992px) {
    .cart-table[b-5fh2cn9a9y] {
        overflow-x: auto;
        display: block;
    }

    .cart-header[b-5fh2cn9a9y], .cart-item[b-5fh2cn9a9y] {
        width: 1200px;
    }
}

@media (max-width: 768px) {
    .cart-actions[b-5fh2cn9a9y] {
        flex-direction: column;
    }

    .clear-cart-btn[b-5fh2cn9a9y], .calculate-delivery-btn[b-5fh2cn9a9y], .checkout-btn[b-5fh2cn9a9y] {
        width: 100%;
        justify-content: center;
    }
}

.cart-item:last-child[b-5fh2cn9a9y] {
    border-bottom: none;
}

.cart-product-info[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .cart-product-info img[b-5fh2cn9a9y] {
        width: 70px;
        height: 70px;
        object-fit: contain;
        border-radius: 8px;
    }

    .cart-product-info h3[b-5fh2cn9a9y] {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .cart-product-info p[b-5fh2cn9a9y] {
        font-size: 14px;
        color: var(--text-gray);
    }

.remove-item-btn[b-5fh2cn9a9y] {
    color: var(--secondary-accent);
    font-size: 18px;
    transition: color var(--transition-speed);
}

    .remove-item-btn:hover[b-5fh2cn9a9y] {
        color: var(--secondary-accent);
    }

.cart-bottom[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.coupon-section[b-5fh2cn9a9y] {
    display: flex;
    gap: 10px;
}

    .coupon-section input[b-5fh2cn9a9y] {
        flex-grow: 1;
        padding: 10px 15px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 14px;
    }

.apply-coupon-btn[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

    .apply-coupon-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
    }

.cart-summary[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-small);
    height: 100%;
}

    .cart-summary h3[b-5fh2cn9a9y] {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
    }

.summary-row[b-5fh2cn9a9y] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.total-row[b-5fh2cn9a9y] {
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.checkout-btn[b-5fh2cn9a9y] {
    width: 250px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 25px;
    display: block;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .checkout-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
    }

.continue-shopping-link[b-5fh2cn9a9y] {
    display: block;
    padding-left: 10px;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: underline;
}

/* Footer */
footer[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3[b-5fh2cn9a9y] {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p[b-5fh2cn9a9y] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li[b-5fh2cn9a9y] {
    margin-bottom: 8px;
}

    .footer-section ul li a[b-5fh2cn9a9y] {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        transition: color var(--transition-speed);
    }

        .footer-section ul li a:hover[b-5fh2cn9a9y] {
            color: var(--text-light);
        }

.social-icons[b-5fh2cn9a9y] {
    display: flex;
    gap: 15px;
}

    .social-icons a[b-5fh2cn9a9y] {
        color: var(--text-light);
        font-size: 18px;
        transition: color var(--transition-speed);
    }

        .social-icons a:hover[b-5fh2cn9a9y] {
            color: var(--accent-color);
        }

.footer-bottom[b-5fh2cn9a9y] {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn-b-5fh2cn9a9y {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-5fh2cn9a9y {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-b-5fh2cn9a9y {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInCard-b-5fh2cn9a9y {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Animation Classes */
.fade-in[b-5fh2cn9a9y] {
    animation: fadeInCard-b-5fh2cn9a9y 0.5s ease forwards;
}

.slide-up[b-5fh2cn9a9y] {
    animation: slideUp-b-5fh2cn9a9y 0.5s ease forwards;
}

.pulse[b-5fh2cn9a9y] {
    animation: pulse-b-5fh2cn9a9y 0.6s ease-in-out;
}

@keyframes fadeInCard-b-5fh2cn9a9y {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product-card:hover .product-actions[b-5fh2cn9a9y] {
    opacity: 1;
    visibility: visible;
}

.view-btn[b-5fh2cn9a9y], .add-to-cart-btn[b-5fh2cn9a9y] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-view[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
    }

    .cart-bottom[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu[b-5fh2cn9a9y] {
        display: block;
    }

    header .container[b-5fh2cn9a9y] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav[b-5fh2cn9a9y] {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

        nav.active[b-5fh2cn9a9y] {
            left: 0;
        }

        nav ul[b-5fh2cn9a9y] {
            flex-direction: column;
            gap: 20px;
        }

            nav ul li[b-5fh2cn9a9y] {
                margin: 0;
            }

                nav ul li a[b-5fh2cn9a9y] {
                    font-size: 16px;
                    display: block;
                    padding: 10px 0;
                }

    .burger-btn.active .burger-line:nth-child(1)[b-5fh2cn9a9y] {
        transform: translateY(11px) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2)[b-5fh2cn9a9y] {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3)[b-5fh2cn9a9y] {
        transform: translateY(-11px) rotate(-45deg);
    }

    .nav-overlay[b-5fh2cn9a9y] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

        .nav-overlay.active[b-5fh2cn9a9y] {
            opacity: 1;
            visibility: visible;
        }

    .hero h2[b-5fh2cn9a9y] {
        font-size: 2.2rem;
    }

    .hero p[b-5fh2cn9a9y] {
        font-size: 1rem;
    }

    .cart-item[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: var(--shadow-small);
        background-color: var(--bg-white);
    }

    .cart-col[b-5fh2cn9a9y] {
        display: flex;
        justify-content: space-between;
        align-items: left;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 70%;
    }

        .cart-col:last-child[b-5fh2cn9a9y] {
            border-bottom: none;
        }

        .cart-col[b-5fh2cn9a9y]:before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--text-dark);
            padding-right: 10px;
            flex-shrink: 0;
            width: 30%;
        }

        .cart-col.product-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
        }

            .cart-col.product-col[b-5fh2cn9a9y]:before {
                margin-bottom: 10px;
            }

    .cart-product-info[b-5fh2cn9a9y] {
        width: 100%;
    }

    .quantity-selector[b-5fh2cn9a9y] {
        width: 100px;
    }

    .cart-quantity[b-5fh2cn9a9y] {
        width: 100%;
    }

    .qty-btn[b-5fh2cn9a9y] {
        width: 30px;
        height: 30px;
    }

    .remove-item-btn[b-5fh2cn9a9y] {
        width: 100%;
        color: var(--secondary-accent);
        font-size: 16px;
    }

    .cart-col.line-total-col[b-5fh2cn9a9y] {
        width: 100%;
        font-weight: 600;
        background-color: rgba(0,0,0,0.02);
        border-radius: 4px;
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    /* Hide table headers if you have them */
    .cart-header[b-5fh2cn9a9y] {
        display: none !important;
    }

    .cart-item[b-5fh2cn9a9y] {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: var(--shadow-small);
        background-color: var(--bg-white);
    }

    .cart-col[b-5fh2cn9a9y] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
        font-size: 1rem;
        position: relative;
    }

        .cart-col:last-child[b-5fh2cn9a9y] {
            border-bottom: none;
        }

        .cart-col[b-5fh2cn9a9y]:before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--text-dark);
            padding-right: 10px;
            flex-shrink: 0;
            width: 20%;
            text-align: left;
            display: block;
        }

        .cart-col.product-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.supplier-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.condition-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.stock-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.order-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.price-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.prod-total-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.delivery-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.delivery-total-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.line-total-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.action-col[b-5fh2cn9a9y] {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .cart-col.product-col[b-5fh2cn9a9y]:before {
            margin-bottom: 4px;
        }

    .cart-product-info[b-5fh2cn9a9y] {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .cart-product-info img[b-5fh2cn9a9y] {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 6px;
        }

        .cart-product-info h3[b-5fh2cn9a9y] {
            font-size: 1rem;
            margin: 0;
        }

    .quantity-selector[b-5fh2cn9a9y] {
        width: 100px;
        min-width: 80px;
    }

    .cart-quantity[b-5fh2cn9a9y] {
        width: 100%;
    }

    .qty-btn[b-5fh2cn9a9y] {
        width: 30px;
        height: 30px;
    }

    .remove-item-btn[b-5fh2cn9a9y] {
        flex-direction: column;
        align-items: left;
        width: 5%;
        color: var(--secondary-accent);
        font-size: 16px;
    }

    .cart-col.line-total-col[b-5fh2cn9a9y] {
        width: 100%;
        font-weight: 600;
        background-color: rgba(0,0,0,0.02);
        border-radius: 4px;
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .cart-col[b-5fh2cn9a9y]:before {
        width: 50%;
        font-size: 0.95rem;
    }

    .cart-product-info img[b-5fh2cn9a9y] {
        width: 48px;
        height: 48px;
    }

    .cart-product-info h3[b-5fh2cn9a9y] {
        font-size: 0.95rem;
    }

    .cart-item[b-5fh2cn9a9y] {
        padding: 12px;
    }

    .quantity-selector[b-5fh2cn9a9y] {
        width: 100%;
        min-width: 60px;
    }
}


/* Add-to-cart button animation */
.add-to-cart-btn.adding[b-5fh2cn9a9y] {
    background-color: var(--accent-color);
    animation: pulse-b-5fh2cn9a9y 0.6s ease-in-out;
}

/* Product Detail Page Enhancements */
.product-gallery[b-5fh2cn9a9y] {
    position: relative;
    overflow: hidden;
}

.main-image-container[b-5fh2cn9a9y] {
    position: relative;
    padding-top: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

    .main-image-container img[b-5fh2cn9a9y] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }
/* Enhanced image switching effect */
#main-product-image[b-5fh2cn9a9y] {
    transition: opacity 0.3s ease;
}

/* Add zoom effect when hovering on main product image */
.main-image:hover img.product-image[b-5fh2cn9a9y] {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.thumbnail-gallery[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.thumbnail[b-5fh2cn9a9y] {
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .thumbnail img[b-5fh2cn9a9y] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail:hover[b-5fh2cn9a9y] {
        transform: translateY(-3px);
    }

    /* Enhance the active thumbnail indicator */
    .thumbnail.active[b-5fh2cn9a9y] {
        border-color: var(--accent-color);
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

.color-options[b-5fh2cn9a9y], .storage-options[b-5fh2cn9a9y] {
    margin: 20px 0;
}

.option-label[b-5fh2cn9a9y] {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.color-select[b-5fh2cn9a9y], .storage-select[b-5fh2cn9a9y] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option[b-5fh2cn9a9y], .storage-option[b-5fh2cn9a9y] {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .color-option.selected[b-5fh2cn9a9y], .storage-option.selected[b-5fh2cn9a9y] {
        background: var(--primary-color);
        color: var(--text-light);
        border-color: var(--primary-color);
    }

/* Enhanced Product Recommendations */
.product-recommendations[b-5fh2cn9a9y] {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

    .product-recommendations h3[b-5fh2cn9a9y] {
        font-size: 22px;
        margin-bottom: 25px;
        font-weight: 600;
    }

.recommendation-grid[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.recommendation-card[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .recommendation-card:hover[b-5fh2cn9a9y] {
        transform: translateY(-7px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Image container with fixed aspect ratio */
.recommendation-img-container[b-5fh2cn9a9y] {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a perfect square */
    background-color: var(--bg-white);
    overflow: hidden;
}

/* Image sizing and positioning */
.recommendation-img[b-5fh2cn9a9y] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures entire product is visible */
    padding: 15px; /* Adds padding around the image */
    transition: transform 0.4s ease;
}

.recommendation-card:hover .recommendation-img[b-5fh2cn9a9y] {
    transform: scale(1.08);
}

.recommendation-info[b-5fh2cn9a9y] {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recommendation-card h4[b-5fh2cn9a9y] {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-card:hover h4[b-5fh2cn9a9y] {
    color: var(--accent-color);
}

.recommendation-price[b-5fh2cn9a9y] {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.recommendation-view-btn[b-5fh2cn9a9y] {
    margin-top: auto;
    padding: 8px 0;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
    text-align: center;
}

    .recommendation-view-btn:hover[b-5fh2cn9a9y] {
        color: var(--accent-color);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .recommendation-grid[b-5fh2cn9a9y] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .recommendation-grid[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
    }

    .recommendation-img-container[b-5fh2cn9a9y] {
        padding-top: 80%; /* Slightly shorter aspect ratio on mobile */
    }
}

@keyframes fadeSlide-b-5fh2cn9a9y {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-extras[b-5fh2cn9a9y] {
    animation: fadeSlide-b-5fh2cn9a9y 0.3s ease forwards;
}

.image-switch[b-5fh2cn9a9y] {
    opacity: 0;
    animation: fadeIn-b-5fh2cn9a9y 0.3s ease forwards;
}

.add-to-cart-success[b-5fh2cn9a9y] {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    animation: slideIn-b-5fh2cn9a9y 0.3s ease forwards;
    z-index: 1000;
}

@keyframes slideIn-b-5fh2cn9a9y {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Enhanced Product Image Display */

/* Maintain consistent product card image container */
.product-img[b-5fh2cn9a9y] {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* Maintains square aspect ratio */
    background-color: var(--bg-white);
}

    /* Ensure product images display properly without distortion */
    .product-img img.product-image[b-5fh2cn9a9y] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from 'cover' to 'contain' to show entire image */
        padding: 15px; /* Add padding so image doesn't touch edges */
        transition: transform 0.4s ease;
    }

/* Enhanced hover effect that zooms without cropping */
.product-card:hover .product-img img.product-image[b-5fh2cn9a9y] {
    transform: scale(1.08);
}
/* Additional improvements to prevent hidden elements */
.product-card:hover .product-actions[b-5fh2cn9a9y] {
    opacity: 1;
    visibility: visible;
}

/* Better badge positioning that doesn't interfere with image */
.product-badge[b-5fh2cn9a9y] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Better loading appearance */
.product-image[b-5fh2cn9a9y] {
    opacity: 0;
    animation: fadeIn-b-5fh2cn9a9y 0.3s ease forwards;
}

@keyframes fadeIn-b-5fh2cn9a9y {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Multiple Suppliers Section Styles */
/* Multiple Suppliers Container with gradient background */
.multiple-suppliers-container[b-5fh2cn9a9y] {
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
}

/* Multiple Suppliers table container with white background */
.multiple-suppliers[b-5fh2cn9a9y] {
    margin-top: 50px;
    padding: 30px;
    border-radius: 12px;
    /*background-color: var(--bg-white); */
    background-image: linear-gradient(rgba(31, 51, 71, 0.05), rgba(13, 52, 83, 0.1));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-small);
}

.table-container-white[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: all var(--transition-speed);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.multiple-suppliers h3[b-5fh2cn9a9y] {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Filter Section */
.suppliers-filter[b-5fh2cn9a9y] {
    margin-bottom: 25px;
}

.filter-wrapper[b-5fh2cn9a9y] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-group[b-5fh2cn9a9y] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select[b-5fh2cn9a9y] {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background-color: var(--bg-white);
}

.search-group[b-5fh2cn9a9y] {
    position: relative;
    flex-grow: 1;
}

#supplier-search[b-5fh2cn9a9y] {
    width: 100%;
    padding: 8px 40px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.search-btn[b-5fh2cn9a9y] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

    .search-btn:hover[b-5fh2cn9a9y] {
        color: var(--accent-color);
    }

/* Suppliers Table */
.suppliers-table-container[b-5fh2cn9a9y] {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
}

.suppliers-table[b-5fh2cn9a9y] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
    /* Ensure table body has white background */
    .suppliers-table tbody[b-5fh2cn9a9y] {
        background-color: var(--bg-white);
    }

    .suppliers-table thead[b-5fh2cn9a9y] {
        background-color: var(--primary-color);
        color: var(--text-light);
    }

    .suppliers-table th[b-5fh2cn9a9y] {
        padding: 12px;
        text-align: left;
        font-weight: 500;
    }

    .suppliers-table tbody tr[b-5fh2cn9a9y] {
        border-bottom: 1px solid var(--border-color);
        transition: background-color 0.3s ease;
    }

        .suppliers-table tbody tr:last-child[b-5fh2cn9a9y] {
            border-bottom: none;
        }

        /* Enhance hover effect slightly for better visibility */
        .suppliers-table tbody tr:hover[b-5fh2cn9a9y] {
            background-color: rgba(0, 0, 0, 0.09); /* Light grey hover effect */
        }

        /* Ensure even rows maintain consistent styling */
        .suppliers-table tbody tr:nth-child(even)[b-5fh2cn9a9y] {
            background-color: rgba(0, 0, 0, 0.03); /* Very subtle alternating row color */
        }

    .suppliers-table td[b-5fh2cn9a9y] {
        padding: 12px;
    }

.supplier-add-btn[b-5fh2cn9a9y] {
    padding: 6px 12px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .supplier-add-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .filter-wrapper[b-5fh2cn9a9y] {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-group[b-5fh2cn9a9y], .search-group[b-5fh2cn9a9y] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .suppliers-table[b-5fh2cn9a9y] {
        font-size: 13px;
    }

        .suppliers-table th[b-5fh2cn9a9y],
        .suppliers-table td[b-5fh2cn9a9y] {
            padding: 8px;
        }
}

@media (max-width: 640px) {
    /* On very small screens, create a card view instead of a table */
    .suppliers-table thead[b-5fh2cn9a9y] {
        display: none;
    }

    .suppliers-table tbody tr[b-5fh2cn9a9y] {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px;
    }

    .suppliers-table td[b-5fh2cn9a9y] {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed var(--border-color);
    }

        .suppliers-table td:last-child[b-5fh2cn9a9y] {
            border-bottom: none;
            justify-content: flex-end;
        }

        .suppliers-table td[b-5fh2cn9a9y]:before {
            content: attr(data-label);
            font-weight: 600;
        }
}

/* About Page Styles */
.about-hero[b-5fh2cn9a9y] {
    text-align: center;
    padding: 60px 0;
    /*background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%); */
    background-image: linear-gradient(rgba(64, 123, 172, 0.507), rgba(0, 0, 0, 0.5)), url('./images/background_images/pexels-thepaintedsquare-189378.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    margin-bottom: 40px;
    border-radius: 12px;
}

    .about-hero h1[b-5fh2cn9a9y] {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .about-hero p[b-5fh2cn9a9y] {
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.9);
    }

.about-section[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

    .about-section.reverse[b-5fh2cn9a9y] {
        direction: rtl;
    }

        .about-section.reverse .about-text[b-5fh2cn9a9y] {
            direction: ltr;
        }

.about-image img[b-5fh2cn9a9y] {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.about-text h2[b-5fh2cn9a9y] {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p[b-5fh2cn9a9y] {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-mission[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .mission-card:hover[b-5fh2cn9a9y] {
        transform: translateY(-10px);
        box-shadow: var(--shadow-medium);
    }

.icon-container[b-5fh2cn9a9y] {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .icon-container i[b-5fh2cn9a9y] {
        font-size: 28px;
    }

.mission-card h3[b-5fh2cn9a9y] {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-section[b-5fh2cn9a9y] {
    margin-bottom: 60px;
    text-align: center;
}

    .team-section h2[b-5fh2cn9a9y] {
        font-size: 2rem;
        margin-bottom: 40px;
        font-weight: 600;
    }

.team-grid[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform 0.3s ease;
}

    .team-member:hover[b-5fh2cn9a9y] {
        transform: translateY(-10px);
    }

.member-photo[b-5fh2cn9a9y] {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

    .member-photo img[b-5fh2cn9a9y] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.team-member:hover .member-photo img[b-5fh2cn9a9y] {
    transform: scale(1.05);
}

.team-member h3[b-5fh2cn9a9y] {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.position[b-5fh2cn9a9y] {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member p[b-5fh2cn9a9y] {
    padding: 0 20px 20px;
}

.stats-section[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-item[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-small);
}

.stat-number[b-5fh2cn9a9y] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label[b-5fh2cn9a9y] {
    font-size: 1.1rem;
}

.testimonials-section[b-5fh2cn9a9y] {
    margin-bottom: 60px;
}

    .testimonials-section h2[b-5fh2cn9a9y] {
        font-size: 2rem;
        margin-bottom: 40px;
        font-weight: 600;
        text-align: center;
    }

.testimonial-grid[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    position: relative;
}

.quote-icon[b-5fh2cn9a9y] {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text[b-5fh2cn9a9y] {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-name[b-5fh2cn9a9y] {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-location[b-5fh2cn9a9y] {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-cta[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-medium);
}

    .about-cta h2[b-5fh2cn9a9y] {
        font-size: 2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .about-cta p[b-5fh2cn9a9y] {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-button[b-5fh2cn9a9y] {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .cta-button:hover[b-5fh2cn9a9y] {
        background-color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-section[b-5fh2cn9a9y],
    .team-grid[b-5fh2cn9a9y],
    .stats-section[b-5fh2cn9a9y],
    .testimonial-grid[b-5fh2cn9a9y],
    .about-mission[b-5fh2cn9a9y] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1[b-5fh2cn9a9y] {
        font-size: 2.5rem;
    }

    .about-hero p[b-5fh2cn9a9y] {
        font-size: 1.2rem;
    }

    .about-section[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .about-section.reverse[b-5fh2cn9a9y] {
            direction: ltr;
        }

    .stats-section[b-5fh2cn9a9y] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid[b-5fh2cn9a9y],
    .testimonial-grid[b-5fh2cn9a9y],
    .about-mission[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
    }

    .about-cta[b-5fh2cn9a9y] {
        padding: 40px 20px;
    }
}

/* Contact Page Styles */
.contact-hero[b-5fh2cn9a9y] {
    text-align: center;
    padding: 60px 0;
    /*background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%); */
    background-image: linear-gradient(rgba(64, 123, 172, 0.507), rgba(0, 0, 0, 0.5)), url('./images/background_images/pexels-francesco-ungaro-396547.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    margin-bottom: 40px;
    border-radius: 12px;
}

    .contact-hero h1[b-5fh2cn9a9y] {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .contact-hero p[b-5fh2cn9a9y] {
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.9);
    }

.contact-grid[b-5fh2cn9a9y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container[b-5fh2cn9a9y],
.contact-info-container[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    padding: 30px;
}

    .contact-form-container h2[b-5fh2cn9a9y],
    .contact-info-container h2[b-5fh2cn9a9y],
    .map-section h2[b-5fh2cn9a9y],
    .faq-section h2[b-5fh2cn9a9y] {
        font-size: 1.8rem;
        margin-bottom: 25px;
        font-weight: 600;
    }

/* Form Styles */
.form-group[b-5fh2cn9a9y] {
    margin-bottom: 20px;
}

    .form-group label[b-5fh2cn9a9y] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 0.95rem;
    }

    .form-group input[b-5fh2cn9a9y],
    .form-group select[b-5fh2cn9a9y],
    .form-group textarea[b-5fh2cn9a9y] {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .form-group input:focus[b-5fh2cn9a9y],
        .form-group select:focus[b-5fh2cn9a9y],
        .form-group textarea:focus[b-5fh2cn9a9y] {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
            outline: none;
        }

.submit-btn[b-5fh2cn9a9y] {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

    .submit-btn:hover[b-5fh2cn9a9y] {
        background-color: var(--accent-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .submit-btn i[b-5fh2cn9a9y] {
        transition: transform 0.3s ease;
    }

    .submit-btn:hover i[b-5fh2cn9a9y] {
        transform: translateX(5px);
    }

/* Contact Info Styles */
.contact-info[b-5fh2cn9a9y] {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-info-item[b-5fh2cn9a9y] {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box[b-5fh2cn9a9y] {
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h3[b-5fh2cn9a9y] {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item p[b-5fh2cn9a9y] {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-item a[b-5fh2cn9a9y] {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

    .contact-info-item a:hover[b-5fh2cn9a9y] {
        text-decoration: underline;
    }

.social-connect[b-5fh2cn9a9y] {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

    .social-connect h3[b-5fh2cn9a9y] {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .social-connect p[b-5fh2cn9a9y] {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

.whatsapp-btn[b-5fh2cn9a9y] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .whatsapp-btn:hover[b-5fh2cn9a9y] {
        background-color: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

/* Map Section */
.map-section[b-5fh2cn9a9y] {
    margin-bottom: 60px;
    text-align: center;
}

.map-container[b-5fh2cn9a9y] {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

/* FAQ Section */
.faq-section[b-5fh2cn9a9y] {
    margin-bottom: 60px;
    text-align: center;
}

.faq-container[b-5fh2cn9a9y] {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-small);
    overflow: hidden;
}

.faq-question[b-5fh2cn9a9y] {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

    .faq-question:hover[b-5fh2cn9a9y] {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .faq-question h3[b-5fh2cn9a9y] {
        font-size: 1.1rem;
        font-weight: 500;
        text-align: left;
    }

.faq-toggle[b-5fh2cn9a9y] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.faq-answer[b-5fh2cn9a9y] {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer[b-5fh2cn9a9y] {
    padding: 0 25px 20px;
}

.faq-answer p[b-5fh2cn9a9y] {
    line-height: 1.6;
    color: var(--text-gray);
}

/* Form Success Message */
.form-success[b-5fh2cn9a9y] {
    text-align: center;
    padding: 30px;
}

    .form-success i[b-5fh2cn9a9y] {
        font-size: 5rem;
        color: #4CAF50;
        margin-bottom: 20px;
    }

    .form-success h3[b-5fh2cn9a9y] {
        font-size: 2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-grid[b-5fh2cn9a9y] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-container[b-5fh2cn9a9y] {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero h1[b-5fh2cn9a9y] {
        font-size: 2.5rem;
    }

    .contact-hero p[b-5fh2cn9a9y] {
        font-size: 1.2rem;
    }

    .contact-form-container[b-5fh2cn9a9y],
    .contact-info-container[b-5fh2cn9a9y] {
        padding: 25px 20px;
    }

    .icon-box[b-5fh2cn9a9y] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-question h3[b-5fh2cn9a9y] {
        font-size: 1rem;
    }

    .contact-form-container h2[b-5fh2cn9a9y],
    .contact-info-container h2[b-5fh2cn9a9y],
    .map-section h2[b-5fh2cn9a9y],
    .faq-section h2[b-5fh2cn9a9y] {
        font-size: 1.5rem;
    }
}
/* Actions Container Styling */
.cart-actions-container[b-5fh2cn9a9y] {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-small);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
/* /Components/Pages/ShoppingCart.razor.rz.scp.css */
/*.cart-page
{
    margin: 20px auto;
}

.cart-info{
    display: flex;
    flex-wrap: wrap;
}*/

/*th{
    text-align: left;
    padding: 5px;
    color: #ffffff;
    background: #808080;
    font-weight: normal;
}*/

/*td{
    padding: 10px 5px;
}*/

/*td input {
    width: 40px;
    height: 30px;
    padding: 5px;
}*/

/*td a{
    color: #ff523b;
    font-size: 5px;
}*/

.ProductImage[b-ic03ck7u3d]
{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.total-price[b-ic03ck7u3d]
{
    display: flex;
    justify-content: flex-end;
}

.total-price table[b-ic03ck7u3d] {
    border-top: 3px solid #ff532b;
    width: 100%;
    max-width: 400px;
}


/*td:last-child
{
    text-align: right;
}*/
    /*th:last-child {
    text-align: right;
}*/

.ImageButton[b-ic03ck7u3d] {
    
    background-color: white;
}
