.logo {
  max-width: 150px;
}

nav a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* 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 */
.img-thumbnail {
  max-width: 100px;
  height: auto;
}
.table th,
.table td {
  vertical-align: middle;
}
.recently-viewed img {
  height: 300px;
  object-fit: cover;
}
.recently-viewed .card {
  border: none;
}
.btn-block {
  width: 100%;
}

.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;
}

.installmentsIndex {
  flex-wrap: nowrap;
  margin-top: -15px;
}

@media (max-width: 768px) {
  .installmentsIndex {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }
}

.responsive-img {
  max-width: 40px; /* Controls size of icons */
  height: auto; /* Maintains aspect ratio */
}

.responsive-imgo {
  max-width: 20px; /* Controls size of icons */
  height: auto; /* Maintains aspect ratio */
}

.text-nowrap {
  white-space: nowrap; /* Prevents wrapping of 'or' */
}

.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 */
.img-thumbnail {
  max-width: 100px;
  height: auto;
}
.table th,
.table td {
  vertical-align: middle;
}
.recently-viewed img {
  height: 300px;
  object-fit: cover;
}
.recently-viewed .card {
  border: none;
}
.btn-block {
  width: 100%;
}
.equal-image {
  height: 200px; /* Set equal height for all images */
  object-fit: cover; /* Ensures that the image fits the given space without distortion */
}

/* categorie style */

.sort select,
.refine button {
  width: 30%;
  padding: 8px;
  font-family: Inter;
  color: #6b6b6b;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.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;
}

.Item-card-body {
  margin-top: 25px;
}

@media (max-width: 770px) {
  .webresponsive {
    display: none;
  }

  .product-card .price {
    font-size: 0.8rem; /* Adjust size for better visibility */
    font-weight: bold;
    margin: 1px 0;
  }

  .product-card .installments {
    font-size: 0.7rem;
  }

  .product-card .card-body {
    padding: 5px; /* Reduce padding for mobile */
  }

  .product-card .installments img {
    height: 10px; /* Smaller icons for mobile */
  }

  .product-card .fs-4 {
    font-size: 2rem; /* Smaller font for "Pay" on mobile */
  }

  /* Container to center the dropdown */

  /* Dropdown Styles */
  .dropdow {
    position: relative;
    display: inline-block;
  }

  .dropdown-toggle {
    text-align: center; /* Center the text */
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: #18181a;
    width: 100%; /* Fixed width to center the text */
    font-weight: 600;
    line-height: 33.89px;
    letter-spacing: 0.1em;
    text-align: left;
    margin: 0;
  }

  .dropdown-item {
    font-size: 16px;
    padding: 8px 5px;
    color: #6b6b6b;
    text-decoration: none;
    display: block;
  }

  .dropdown-item:hover {
    background-color: #eaeaea;
    color: #000;
  }

  .dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    padding-top: 10px;
  }

  .dropdown-content 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;
  }

  .dropdown-toggle::after {
    content: " ▼";
    float: right;
  }

  .show {
    display: block;
  }

  .CategorieTitleSizeMobile td {
    padding: 8px 10px; /* Adjust spacing between checkboxes */
  }

  .CategorieTitleSizeMobile input[type="radio"] {
    width: 18px; /* Increase size of checkbox */
    height: 18px; /* Increase size of checkbox */
    margin-right: 3px; /* Space between checkbox and label */
  }

  .CategorieTitleSizeMobile label {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 30.26px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #6b6b6b;
  }

  .color-selectorMobile {
    display: flex;
    flex-wrap: wrap;
    width: 100%; /* Adjust width to your requirement */
    gap: 5px; /* Adjust space between the color circles */
  }

  .color-circleMobile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #e0e0e0; /* Add slight border */
    display: block; /* Make the anchor tag behave like a block element */
  }

  .collectionMobile input[type="radio"] {
    width: 20px; /* Increase size of checkbox */
    height: 20px; /* Increase size of checkbox */
    margin-right: 5px; /* Space between checkbox and label */
  }

  .collectionMobile label {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 30.26px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #6b6b6b;
  }

  .sortMobile select,
  .refine button {
    width: 90%;
    padding: 8px;
    font-family: Inter;
    color: #6b6b6b;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
}

@media (min-width: 770px) {
  .MobileResponsive {
    display: none;
  }
}

/* Single product css */

.zoom-container {
  position: relative;
  overflow: hidden;
}

.zoom-image {
  transition: transform 0.3s ease, opacity 0.5s ease;
  /* Smooth transition for zoom and fade-in */
  width: 100%;
  height: auto;
}

.zoom-container:hover .zoom-image {
  transform: scale(1.5);
  cursor: zoom-in;
}

@media (max-width: 767.98px) {
  .main-product {
    margin-left: -1px;
  }
}

/* ipad-Mini size-Responsive Action Buttons */
@media (max-width: 768px) {
  .btnbuynow {
    width: 685px;
    /* Set specific width */
  }

  .btnaddtocart {
    width: 685px;
    /* Set specific width */
  }

  .btnaddtowishlist {
    width: 685px;
    /* Set specific width */
  }

  .btnaddtowishlist-2 {
    width: 685px;
    /* Set specific width */
  }
}

/* Mobile-Responsive Action Buttons */
@media (max-width: 375px) {
  .btnbuynow {
    width: 310px;
    /* Set specific width */
  }

  .btnaddtocart {
    width: 340px;
    /* Set specific width */
  }

  .btnaddtowishlist {
    width: 310px;
    /* Set specific width */
  }

  .btnaddtowishlist-2 {
    width: 310px;
    /* Set specific width */
  }

  .quantity-selector {
    width: 100%;
    /* Make it full-width */
    max-width: 200px;
    /* Optional: Set a max width for better layout */
    display: flex;
    justify-content: space-between;
  }

  .quantity-selector .btn {
    padding: 6px 8px;
    /* Reduce button padding */
    font-size: 0.85rem;
    /* Reduce font size for icons */
    width: 20px;
    /* Narrow button width */
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #inputQuantitySelector {
    width: 30px;
    /* Make input narrower */
    padding: 3px;
    /* Reduce padding inside input */
    text-align: center;
    /* Center-align text */
    font-size: 0.75rem;
    /* Reduce font size */
  }
}

/* Write a Review Button */

body {
  font-family: Arial, sans-serif;
  margin: 20px;
  line-height: 1.6;
}

#reviewForm {
  display: none;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

#reviewForm label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#reviewForm input[type="text"],
#reviewForm input[type="email"],
#reviewForm textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#reviewForm textarea {
  height: 100px;
  resize: vertical;
}

#reviewForm input[type="file"] {
  margin-bottom: 10px;
}

#reviewForm button {
  padding: 4px 10px; /* Reduced width */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


#reviewForm .submit {
  background-color: #222020;
  color: #ffffff;
}

#reviewForm .cancel {
  background-color: #ffffff;
  color: #000000;
  margin-left: 10px;
  border: 1px solid #000000;
}

#writeReviewBtn {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#writeReviewBtn:hover {
  background-color: #444;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  font-size: 1.5rem;
}

.star-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  color: #ccc;
  cursor: pointer;
  margin: 0 5px;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f5b301;
}

.rating-label {
  margin-right: 10px;
  font-weight: bold;
}
