
html {
  font-size: 14px;
  /* 1 rem 10px */
}

body {
  background-color: #ebe8e6;
}


ul {
  list-style: none;
}

.wishlist-btn {
  position: absolute;
  top: 0px; /* Adjust as needed to position the button */
  right: 0px; /* Adjust as needed to position the button */
  color: #fff;
  border: none;
  cursor: pointer;
}

.views_count {
  position: absolute;
  top: 10px; /* Adjust as needed to position the button */
  left: 10px; /* Adjust as needed to position the button */
  color: #34eb34;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.views_info {
    display: flex;
    flex-direction: column; /* Stack the count and 'views' vertically */
    align-items: flex-start; /* Align text to the right */
    margin-left: 3px; /* Add spacing between icon and text */
}

.views_count i {
    font-size: 2em; /* Adjust this size to match the height of the text */
    line-height: 1.5;
}

.views_info a {
    font-size: 12px; /* Adjust the size for better visibility */
    line-height: 1.2; /* Keep line-height consistent to match the icon height */
    margin: 0.5px 0; /* Add some vertical spacing between count and 'views' */
}


.rounded-img {
    margin: 0 auto;
    margin-top: 10px;
    background-color: #fff;
    display: inline-block;
    border-radius: 15px; /* Adjust border-radius to control corner roundness */
}
.img-wrap {
    position: relative;
    overflow: hidden; /* Hide any overflow */
    display: block;
    height:110px;
    width:110px;
    align-items: center;
    justify-content: center;
    background-color: #e6e6e8;
}

.img-wrap img {
    height: 260px;
    width: auto;
    max-width:100%;
    max-height: 100%;
    display: inline-block; /* Remove any unwanted gaps */
    object-fit: contain; /* Ensure the image covers the container without distortion */
}

.img-wrap:hover{
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1),
    -2px -2px 2px white;
    overflow: hidden; /* Ensures child elements don't overflow the card's border-radius */
}

.home-rounded-img:hover{
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1),
    -2px -2px 2px white;
    overflow: hidden; /* Ensures child elements don't overflow the card's border-radius */
}

.home-rounded-img {
    position: relative;
    width: 100%; /* Adjust based on your layout needs */
    height: 250px; /* Set the height you need */
    overflow: hidden; /* Hide any overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #f0f0f0;
    border: 0.5px solid #ededed; /* Border color and thickness */
    border-radius: 15px; /* Adjust border-radius to control corner roundness */
}

.card-shadow {
    box-shadow: 12px 12px 12px rgba(0,0,0,0.1),
    -10px -10px 10px white;
    border-radius: 8px; /* Optional: Adds rounded corners to the card */
    overflow: hidden; /* Ensures child elements don't overflow the card's border-radius */
}


.category-name {
    font-weight: bold;
}

.product-name {
    text-align: left;
    color: rgba(92, 89, 84,0.9);
    margin: 10px;
    font-weight: 500;
    display: inline-block;
}

.no-decoration {
    color: black;
    text-decoration: none; /* Optionally remove text decoration */
}
.no-decoration:hover {
    text-decoration: underline;
}

.nav-link {
    font-size: 14px;
    position: relative;
    color: inherit; /* Ensures that the color of the underline matches the color of the text */
}
.nav-link:hover {
    color: #DA9E28; /* Color of the text on hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust this value to control the distance of the underline from the text */
    width: 100%;
    height: 3px; /* Thickness of the underline */
    background-color: transparent; /* Initial color of the underline */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

.nav-link:hover::after {
    background-color: #DA9E28; /* Color of the underline on hover */
}

.price {
    font-weight: bold;
    font-size: 18px;
}

.product-flex{
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.products {
    background-color: rgba(237, 165, 97, 0.1);
    border-radius: 15px; /* Roundness of the scrollbar thumb */
    flex: 0 0 auto;
    width: 250px; /* Adjust the width as needed */
    margin-right: 10px; /* Adjust the margin between products */
    margin-bottom: 20px; /* Adjust the margin between products */
    display: inline-block;
    transition: transform .2s;
}

.products:hover {
    transform: scale(1.02)
}


.aiz-card-box {
    border-radius: 15px; /* Roundness of the container */
    overflow: hidden; /* Ensures content does not overflow the container */
    position: relative; /* Allows for absolute positioning inside if needed */
    transition: box-shadow 0.3s ease; /* Smooth transition for the hover effect */
    display: inline-block; /* Ensure it behaves as a block or inline-block element */
    padding-bottom: 10px;
    height: 300px; /* Fixed height to ensure uniform card size */
    width: 100%; /* Full width of the container or a set percentage */
    box-sizing: border-box; /* Includes padding in the width/height calculations */
}

.home-products {
    height: 200px; /* Set a fixed height for the image container */
    display: flex; /* Center the image horizontally and vertically */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents overflow issues */
}

/* Hover effect on the card */
.aiz-card-box:hover {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

.home-products img {
    height: 200px;
    width: auto;
    display: inline-block;
    width: 100%; /* Image will scale down but never exceed container width */
    max-height: 100%; /* Image will scale down but never exceed container height */
    object-fit: contain; /* Scales the image to cover the container while maintaining aspect ratio */
}
.product-gallery-container {
    display: flex;                 /* Use flexbox to align images horizontally */
    flex: 0 0;
    overflow-x: auto;              /* Enable horizontal scrolling */
    overflow-y:hidden;
    white-space: nowrap;           /* Prevent line breaks */
    padding: 1 1;               /* Optional padding */
    gap: 10px;                     /* Space between images */
}
.product-gallery {
    width: auto; /* Adjust the width as needed */
    display: inline-block;
    border-right: 1px solid #454135;
}

.similar-products-container {
    display: flex;                 /* Use flexbox to align images horizontally */
    flex: 0 0;
    overflow-x: auto;              /* Enable horizontal scrolling */
    overflow-y:hidden;
    white-space: nowrap;           /* Prevent line breaks */
    padding: 10px 2px;               /* Optional padding */
    gap: 10px;                     /* Space between images */
    background: linear-gradient(180deg, #fcba03, #fae6af);
}

.similar-products {
    flex: 0 0 auto;
    width: 200px;
}


/* For WebKit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px; /* Adjust the width as needed */
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2); /* Color of the scrollbar thumb */
  border-radius: 4px; /* Roundness of the scrollbar thumb */
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.collapsible {
  font-weight: bold;
  cursor: pointer;
  border: none;
  padding: 19px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 14px;
  background-color: transparent;
}


.collapsible:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 20px;
}

.active:after {
  content: "\2212";
}

.filter {
    text-decoration: none;
    padding: 0px;
}
.product_name{
    text-align: center;
    white-space: normal; /* Allow wrapping */
    word-wrap: break-word; /* Break long words */
}

.nav-item {
  padding: 0.5rem 0xp;
}

.dropdown-hover:hover>.dropdown-menu {
display: inline-block;
}

.dropdown-hover>.dropdown-toggle:active {
/*Without this, clicking will make it sticky*/
pointer-events: none;
}

.main-navbar{
    border-bottom: 1px solid #ccc;
}
.main-navbar .top-navbar{
    background-color: #DB7C27;
    padding-top: 15px;
    padding-bottom: 15px;
}
.main-navbar .top-navbar .brand-name{
    color: #fff;
}
.main-navbar .top-navbar .nav-link{
    font-size: 13px;

}
.main-navbar .top-navbar .dropdown-menu{
    padding: 0px 0px;
    border-radius: 0px;
}
.main-navbar .top-navbar .dropdown-menu .dropdown-item{
    padding: 8px 16px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}
.main-navbar .top-navbar .dropdown-menu .dropdown-item i{
    width: 20px;
    text-align: center;
    color: #2874f0;
    font-size: 14px;
}
.main-navbar .navbar{
    padding: 0px;
    background-color: #ddd;
}
.main-navbar .navbar .nav-item .nav-link{
    font-size: 14px;
}


.store {
     justify-content: center;
}


.rounded {
    border-radius: 30px; /* Adjust border-radius to control corner roundness */
}

.no-border {
    border: none;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 0.25rem;
  }

.card-no-border{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  border-radius: 0.25rem;
  }

.card img {
    max-width: 100%; /* Ensure images don't exceed the width of their container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevent extra space below inline images */
    transition: transform .2s;
}

.form-table {
    width: 100%;
    margin: 0 auto; /* Centering the table */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-table tbody tr {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px; /* Adjust as needed */
}

.form-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.form-table label {
    margin-right: 10px;
    min-width: 150px; /* Adjust label width as needed */
    display: inline-block;
    text-align: right;
}

/** Sidebar **/

.sidebar {
  margin: 0;
  padding: 0;
  width: 240px; /* Set sidebar width to 240px */
  background-color: #f1f1f1;
  position: fixed;
  height: 100%;
  overflow: auto;
}

.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
}

.sidebar a.active {
  background-color: #04AA6D;
  color: white;
}

.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

div.content {
  margin-left: 240px; /* Match the sidebar width */
  padding: 1px 16px;
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%; /* Full width on small screens */
    height: 100%;
    position: relative;
    display: block;
  }

  div.content {
    margin-left: 0; /* No margin on small screens */
  }

  /* Hide dropdown on small screens */
  .sidebar .nav-item.dropdown .dropdown-menu {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
}

.dropdown-menu {
left: auto !important;
right: 0 !important;
}

.static_card {
    width: 300px; /* Set the width as needed */
    height: 400px; /* Set the height to define the fixed size */
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Hide horizontal overflow if not needed */
    border: 1px solid #ddd; /* Optional: border for better visibility */
    padding: 15px; /* Optional: padding for inner spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: shadow for aesthetics */
    background: #fff; /* Optional: background color */
}

.side_content{
  border-bottom: 1px solid #333; /* Bottom border style */
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

a {
    text-decoration: none; /* Removes the underline */
    color: #7d5f3c; /* Sets the color to navy blue */
}
table {
    border-collapse: separate; /* Ensures that border-spacing is applied */
}

.status-label {
    background-color: #f0f0f0; /* Light gray background color */
    font-size: 14px; /* Adjusts font size */
    color: #333; /* Adjusts text color */
}

.home-image-container {
    position: relative;
    width: 100%;
    height: 50vh; /* or any preferred height */
    overflow: hidden;
}

.home-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Make the overlay the same height as the container */
    color: white;  /* Text color */
    background: linear-gradient(90deg, rgba(77, 40, 1, 1), transparent);
    box-sizing: border-box;
    font-size: 18px;
    display: flex;
    align-items: center; /* Center text vertically */
    justify-content: center; /* Center text horizontally */
}

.home-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image covers the container */
    object-position: center;
}

.category-header {
    display: flex; /* Use flexbox for the container */
    justify-content: space-between;  /* Space between category name and "See all" */
    align-items: center;  /* Vertically center the items */
}

.see-all-link {
    text-align: right;
    text-decoration: underline;
    color: black;
}

.payment-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.payment-option img{
    height:40px;
}

.header-row{
    background-color: #DB7C27;
}