body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
a {
    text-decoration: none;
    color: #333; /* Set the color of the anchor text */
}

/* Styles the anchor tag when hovered */
a:hover {
    text-decoration: underline; /* Underline the anchor text on hover */
    color: #555; /* Set the color of the anchor text on hover */
}
.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.sidebar {
    flex: 0 0 200px; /* Sidebar width */
    background-color: #f4f4f4;
    padding: 20px;
}
main {
    flex: 1; /* Main content takes remaining width */
    padding: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 8px;
}

.ActivatorWrapper {
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
    justify-content: center;
}

.Polaris-Box {
    padding-inline-end: var(--pc-box-padding-inline-end-lg, var(--pc-box-padding-inline-end-md, var(--pc-box-padding-inline-end-sm, var(--pc-box-padding-inline-end-xs))));
}
.Polaris-Avatar.Polaris-Avatar--imageHasLoaded {
    background: transparent;
}
.Polaris-Avatar__Image {
    width: 45%;
    height: 40%;
    border-radius: inherit;
    transform: translate(-50%, -3%);
    object-fit: cover;
}
.header-title{
	display: flex;
	width:100%;
}
.header-title h2{
	width:80%;
}
.header-title .hdr-btn{
	text-align: right;
    padding-right: 20px;
    align-content: center;
    margin-left: 50px;
}

.header-title .hdr-btn a{
	background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 7px;
    text-decoration: none;
}

.header-title .flt-hdr-btn{
	text-align: right;
    padding-right: 20px;
    align-content: center;
}

.header-title .flt-hdr-btn a{
	background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 7px;
    text-decoration: none;
}
.search-bar {
    padding: 20px 17px;
    background-color: #f4f4f4;
    margin: 0 0 21px;
    border-radius: 5px;
    display: flex;
}
.search_section { align-content: center;  width: 80%; }
.cnt_prod { align-content: center; width: 20%; margin-left: 15px; }

.search-bar input[type="text"],.search-bar select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.search-bar input[type="submit"] {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.price-item-regular{
	text-decoration: line-through;
	color: rgba(var(--color-foreground), .75);
}
.more-btn{
	text-align: right;
    padding-right: 20px;
    align-content: center;
    margin-left: 50px;
}
.more-btn a{
	background-color: #007bff;
	color: white;
	padding: 10px;
	border-radius: 7px;
	text-decoration: none;
}
.pagination-container {
    text-align: center;
    margin-top: 20px; /* Adjust as needed */
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.pagination a.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.sidebar h2 {
    margin-bottom: 10px;
    color: #333;
}
.sidebar .main-nav ul {
    padding: 0;
    list-style-type: none;
}
.sidebar .main-nav ul li {
    margin-bottom: 5px;
}
.sidebar .main-nav ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.sidebar .main-nav ul li a:hover {
    background-color: #ddd;
}

.sidebar .main-nav ul li a.active {
    background-color: #007bff;
    color: white;
}

.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    display: flex;
    position: relative;
}

.main-nav a {
    display: block;
    padding: 10px 20px;
    color: inherit; /* Inherit color from .font-class */
    text-decoration: none;
    position: relative;
}

.main-nav a:hover {
    background-color: #f4f4f4;
}

/* Sub-nav styling */
.sub-nav, .sub-sub-nav {
    display: none;
    position: absolute;
    top: 100%; /* Places .sub-nav directly below its parent */
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Ensures sub-nav appears above other elements */
    min-width: 180px; /* Optional: set minimum width for submenu */
}

/* Sub-sub-nav positioned to the right of its parent */
.sub-nav li:hover > .sub-sub-nav {
    display: block;
    top: 0;
    left: 100%; /* Positions .sub-sub-nav to the right */
    z-index: 1;
}

/* Sub-nav items */
.sub-nav li, .sub-sub-nav li {
    position: relative;
}

/* Links inside sub-nav */
.sub-nav a, .sub-sub-nav a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
}

/* Hover effect for sub-nav links */
.sub-nav a:hover, .sub-sub-nav a:hover {
    background-color: #f4f4f4;
}

/* Show sub-nav on hover */
.main-nav li:hover > .sub-nav {
    display: block;
}

/* Font Awesome icons for items with sub-menus */
.main-nav li > a .fas.fa-chevron-down,
.main-nav li > a .fas.fa-chevron-right {
    margin-left: 5px;
}

/* Position arrow icons on sub-sub-nav items */
.sub-nav li > a .fas.fa-chevron-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}


#hideproducts {
	width: 100%;
    margin: 50px 0 0 0;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #218838;
}

.filter_body h1 {
	margin-top: 50px;
}

.divhide{
 display:none;
}

.listbrand {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.listbrand h3 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.three-column-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.three-column-list-grid li {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    text-align: center;
}

.three-column-list-grid li:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.price-range-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.price-range-form h3 {
    margin-top: 0;
    color: #333;
}

.range-container {
    margin-bottom: 20px;
    text-align: left;
}

.range-container label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.range-container input[type="range"] {
    width: 100%;
}

.range-container span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

.price-range-form button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.price-range-form button:hover {
    background-color: #45a049;
}

.btn-center {
    width: 100%;
    text-align: center;
}

.listbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.listbox-container select {
    width: 280px;
    height: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

form button[type="submit"] {
    background-color: #28a745;
    margin-top: 20px;
}

form button[type="submit"]:hover {
    background-color: #218838;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 26px;
    margin-top: 21px;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* The slider (the round part that moves) */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.txt-h3{width: 90%;}

/* CSS to display label and h1 tag in the same row */
.form-row {
    display: flex;
    align-items: center; /* Vertically center items */
    margin-bottom: 20px; /* Optional: Add some space below the row */
}

.form-row h1 {
    margin-right: 10px; /* Add some space between the h1 tag and the label */
}


.form-row {
	display: flex;
	flex-direction: column; /* Stack children vertically */
	align-items: center; /* Center children horizontally */
	gap: 10px; /* Optional: Add some space between the elements */
}

.form-row label {
	margin-right: 5px; /* Add some space between the label and the input */
}

.input-wrapper {
	display: flex;
	align-items: center;
}

#slider {
	width: 90%; /* Adjust width as needed */
	margin: 25px auto 10px auto; /* Center the slider horizontally */
}
.input-flex {
	display: flex;
	align-items: end;
}

.price-input {
	position: relative;
}

.price-input::before {
	content: '$';
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	color: #555;
}

.price-input input {
	padding-left: 15px; /* Adjust to make space for the $ sign */
	margin-right: 20px;
}


/* Align totals to the left */
.prodDetailsTable tbody tr td.totals-cell {
    text-align: left; /* Ensures the text aligns left */
    font-weight: bold; /* Makes the text bold to highlight totals */
}

/* Apply padding or spacing adjustments if needed */
.prodDetailsTable tbody tr td.totals-cell {
    padding-left: 10px;
}

/* Example for the rest of the table */
.prodDetailsTable th, .prodDetailsTable td {
    border: 1px solid #ddd;
    padding: 15px 4px;
}

.top-header {
    display: flex;
    justify-content: space-between; /* Distribute space between the elements */
    align-items: center; /* Align items vertically */
    padding: 10px 0;
    margin: 10px 0 30px 0;
}

.top-header h2 {
    margin: 0; /* Remove margin for consistent alignment */
}

.fulfillment-status {
    text-align: right;
    font-weight: bold; /* Optional: make it bold for emphasis */
}

