.logo {
  max-width: 150px;
}

nav a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

header input[type="text"] {
  width: 150px;
}

/* Nav bar styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}
.font {
  font-family: "Inter", sans-serif;
}

.header {
  background-color: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 160px;
  height: 80px;
}

/* Hamburger menu styling */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.hamburger-icon {
  font-size: 24px;
}

.search-and-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.auth-button {
  font-size: 12px;
  font-weight: normal;
  color: gray;
  margin-right: 16px;
  border: none;
  background: none;
  cursor: pointer;
}

.search-bar {
  position: relative;
}

.search-input {
  background-color: #f0f0f0;
  padding: 3px 12px;
  padding-left: 40px;
  border-radius: 0px;
  border: 1px solid #ddd;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

.nav-button,
.nav-link {
  margin-right: 16px;
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.nav-button:hover,
.nav-link:hover {
  color: black;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  margin-top: 8px;
  width: 200px;
  z-index: 1;
}

.dropdown-menu a {
  display: block;
  padding: 8px;
  color: gray;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.wishlist-cart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.wishlist-button,
.cart-button {
  padding: 8px 16px;
  font-size: 12px;
  border: 2px solid black;
  background: none;
  cursor: pointer;
  margin-right: 16px;
}

.wishlist-button:hover,
.cart-button:hover {
  background-color: #f0f0f0;
}

.separator {
  display: block;
  height: 1px;
  background-color: #ccc;
  margin-top: 8px;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px;
  }

  .nav-visible {
    display: flex;
  }

  .wishlist-cart {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 16px;
  }

  .menu-toggle {
    display: block;
  }
}

/* index styles */

body {
  padding: 20px;
}

.product-card img {
  width: 100%;
  height: auto;
}

.price {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}

.installments {
  color: gray;
  font-size: 18px;
}

.kokoimg {
  width: 100%;
}

.text-center {
  text-align: center;
}

h2 {
  font-size: 24px;
  font-weight: bold;
}

.btn-outline-dark {
  width: 80%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 0%;
}

/* footer styles */

body {
  font-size: 12px;
  font-family: "Inter", sans-serif;
}
.font {
  font-size: 12px;
}
.footer {
  background-color: #f5f5f5;
  padding: 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 250px;
  padding: 10px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section a {
  color: #6d747c;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section .social-icons {
  display: flex;
  justify-content: center;
  margin-right: 120px;
}

.footer-section .social-icons a {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #403f3d;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #000;
  margin-right: 10px;
}

/* .footer-section .social-icons a:hover {
  background-color: #6d747c;
} */

.footer-bottom {
  padding: 10px 0;
  text-align: left;
  padding-left: 11.6%;
}
.footer-section .bold {
  font-weight: bold;
}

.service {
  margin-left: 10%;
}





/* cart page */


 /* Custom styles for product images */

 .img-thumbnail {
  max-width: 100px;
  height: auto;
}
.table th, .table td {
  vertical-align: middle;
}
/* Recently viewed product styles */
.recently-viewed img {
  height: 300px;
  object-fit: cover;
}
.recently-viewed .card {
  border: none;
}
.btn-block {
  width: 100%;
}
.equal-image {
  height: 200px;
  object-fit: cover;
}










/* categorie style */

.CategorieItems a {
  text-decoration: none;
  color: #6b6b6b;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 31.78px;
  letter-spacing: 0.03em;
  text-align: left;
  margin-top: 20px;
}

.CategorieTitle {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Positions the button next to the text */
}

.CategorieTitle h3 {
  font-family: Inter;
  font-size: 28px;
  font-weight: 600;
  line-height: 33.89px;
  letter-spacing: 0.1em;
  text-align: left;
  margin: 0;
}

.CategorieTitle button {
  padding: 5px 25px;
  border-radius: 20px;
}

.CategorieTitleSize td {
  padding: 8px 30px; /* Adjust spacing between checkboxes */
}

.CategorieTitleSize input[type="radio"] {
  width: 25px; /* Increase size of checkbox */
  height: 25px; /* Increase size of checkbox */
  margin-right: 5px; /* Space between checkbox and label */
}

.CategorieTitleSize label {
  font-family: Inter;
  font-size: 25px;
  font-weight: 600;
  line-height: 30.26px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #6b6b6b;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px; /* Adjust negative margins to reduce spacing */
  margin-left: -10px;
}

.col-lg-6,
.col-md-6,
.col-sm-12 {
  padding-right: 10px; /* Smaller padding between columns */
  padding-left: 10px;
  margin-bottom: 15px; /* Adjust vertical spacing between cards */
}

.product-card {
  border: none !important; /* Forcefully remove any borders */
  box-shadow: none !important; /* Forcefully remove any shadows */
}

.mb-4 {
  margin-bottom: 0; /* Remove default margin to reduce space */
}

.installments img {
  width: auto; /* Allows the image to keep its original width */
  height: auto; /* Ensures the image retains its original height */
  max-height: 30px; /* Optional: Limit maximum height if needed */
  max-width: 100%; /* Ensures the image doesn't exceed its container's width */
}

.color-selector {
  display: flex;
  flex-wrap: wrap;
  width: 80%; /* Adjust width to your requirement */
  gap: 20px; /* Adjust space between the color circles */
}

.color-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #e0e0e0; /* Add slight border */
  display: block; /* Make the anchor tag behave like a block element */
}

.collection input[type="radio"] {
  width: 25px; /* Increase size of checkbox */
  height: 25px; /* Increase size of checkbox */
  margin-right: 5px; /* Space between checkbox and label */
}

.collection label {
  font-family: Inter;
  font-size: 25px;
  font-weight: 600;
  line-height: 30.26px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #6b6b6b;
}
/* wishlist */
.product-thumbnail img {
  width: 100px;
}
.product-name a{
  text-decoration: none;
  color: black;
  font-weight: 400;
}
/* wishlist */
.product-thumbnail img {
  width: 100px;
}
.product-name a{
  text-decoration: none;
  color: black;
  font-weight: 400;}