@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --bg-color: #ffffff;
  --container-color: #6B6B6B;
  --container-color-2: #93BCFF1F;
  --container-color-3: #bbb8b879;
  --container-color-4: rgba(147, 188, 255, 0.15);
  --container-color-5: #cacaca;
  --headings-color: #A49966;
  --disabled-color: #605C4E;
  --dark-color: #043873;
  --min-color: #FFB901;
  --text-color-1: #A1A1A1;
  --btn-color: #4285F4;
  --image-border-color: #00000040;
  --yes-color: #098931;
  --black-color: #000;
  --white-color: #fff;
  --no-color: #EA4335;
  --qty-count-color: #04387340;
  --add-to-cart-color: #0D99FF;
}

/* Cart Styles */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark-color);
  color: white;
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
}

.cart-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.clear-cart-btn {
  background: var(--no-color);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.close-cart-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
  color: var(--dark-color);
}

.cart-item-warranty {
  font-size: 12px;
  color: #666;
  margin: 0 0 5px 0;
}

.cart-item-attributes {
  margin: 5px 0;
}

.cart-item-attributes .attribute-tag {
  display: inline-block;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
  color: #495057;
  margin: 2px 4px 2px 0;
}

/* Checkout Modal Styles */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.checkout-modal.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.checkout-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
}

.checkout-modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--dark-color);
}

.checkout-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-modal-close:hover {
  color: #333;
}

.checkout-modal-body {
  padding: 25px;
}

.checkout-modal-body .form-group {
  margin-bottom: 20px;
}

.checkout-modal-body .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--dark-color);
}

.checkout-modal-body .form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.checkout-modal-body .form-group input:focus {
  outline: none;
  border-color: var(--add-to-cart-color);
}

.order-summary {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.order-summary h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: var(--dark-color);
}

.checkout-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.checkout-item-attributes {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.checkout-item-pricing {
  font-size: 14px;
  color: #333;
}

.checkout-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #eee;
  font-size: 18px;
  color: var(--dark-color);
}

.checkout-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.cancel-checkout-btn,
.place-order-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-checkout-btn {
  background-color: #f8f9fa;
  color: #495057;
  border: 2px solid #dee2e6;
}

.cancel-checkout-btn:hover {
  background-color: #e9ecef;
}

.place-order-btn {
  background-color: var(--add-to-cart-color);
  color: white;
}

.place-order-btn:hover {
  background-color: #0b8ce8;
}

.place-order-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

body.modal-open {
  overflow: hidden;
}

.cart-item-price {
  font-size: 14px;
  font-weight: bold;
  color: var(--add-to-cart-color);
  margin: 0;
}

.cart-item-total {
  font-size: 12px;
  color: var(--dark-color);
  margin: 5px 0 0 0;
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: var(--add-to-cart-color);
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.quantity {
  font-weight: bold;
  min-width: 20px;
  text-align: center;
  color: var(--dark-color);
  font-size: 14px;
}

.remove-item {
  background: var(--no-color);
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}

.cart-summary {
  margin-bottom: 15px;
}

.cart-stats {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.cart-total {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-color);
}

.cart-actions {
  display: flex;
  gap: 10px;
}

.continue-shopping-btn {
  flex: 1;
  background: #f0f0f0;
  color: var(--dark-color);
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.checkout-btn {
  flex: 1;
  background: var(--add-to-cart-color);
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.empty-cart h4 {
  margin: 15px 0 10px 0;
  color: var(--dark-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--no-color);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile responsive cart */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  body.cart-open {
    overflow: hidden;
  }
}

/* Fix cursor issue */
.cart-sidebar * {
  cursor: default;
}

.cart-sidebar button,
.cart-sidebar a,
.cart-sidebar [onclick] {
  cursor: pointer;
}

body {
  font-family: 'Roboto', sans-serif;
  margin-top: 130px;
}

.fw-600 {
  font-weight: 600;
}

#bluenav {
  display: grid;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: var(--bg-color);
  background-color: var(--dark-color);
  height: 80px;
  padding: 0px 5%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-size: 14px;
}

#search-bar {
  width: 33%;
  height: 32px;
  border-radius: 5px;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
}

#search-bar input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 14px;
  color: var(--dark-color);
}

#search-bar input:focus {
  outline: none;
}

#search-icon {
  color: var(--dark-color);
  opacity: 0.5;
  font-size: 11px;
}

#white-navbar {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-color: var(--bg-color);
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  z-index: 999;
}

.show {
  gap: 10%;
}

#white-navbar nav a {
  cursor: pointer;
  color: var(--container-color);
  text-decoration: none;
  color: inherit;
}

#white-navbar nav a:hover {
  color: var(--dark-color);
  font-weight: 600;
}

.focused-navitem {
  color: var(--dark-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--dark-color);
  height: calc(100% + 2px);
  display: flex;
}

.focused-navitem-1 {
  color: var(--bg-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--dark-color);
}

.standard-width {
  width: 80%;
  margin: 0px auto;
}

.standard-width-1 {
  width: 90%;
  margin: 0px auto;
}

.image-cards {
  background-color: var(--container-color-4);
}

.top-products {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.top-products::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.top-products {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
}

.top-products::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.dot-navigation {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--dark-color);
}

.image {
  position: relative;
}

.img-main {
  position: relative;
  z-index: 1;
}

.img-overlap {
  position: absolute;
  top: 53%;
  /* 10% from the top of the container */
  left: 45%;
  /* 10% from the left of the container */
  z-index: 2;
  /* Prevent overflow on small screens */
  transform: translate(-10%, -10%);
  /* Fine-tune positioning */
}

.card-scroll-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.card-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.card-group {
  scroll-snap-type: x mandatory;
  gap: 1rem;
}

.nav-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.nav-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.nav-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

.nav-scroll {
  display: flex;
  min-width: max-content;
  width: fit-content;
}

.container-1 {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.top-products-image {
  width: 40vw;
  height: 40vh;
}

.text-color {
  color: var(--text-color-1);
}

.text-color-2 {
  color: var(--dark-color);
  font-size: 42px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 30px;
}

.text-color-4 {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}

.text-color-3 {
  color: var(--bg-color);
  font-size: 21.65px;
}

.text-color-5 {
  color: var(--text-color-1);
  font-size: 2vw;
}

.text-color-6 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 600;
}

.text-color-7 {
  grid-area: header;
  color: var(--bg-color);
}

.text-color-8 {
  color: black;
  font-size: 10px;
}

.text-color-10 {
  color: var(--text-color-1);
  font-size: 18px;
}

.text-color-9 {
  color: var(--bg-color);
  font-size: 12px;
}

.text-color-11 {
  color: var(--dark-color);
  font-size: 20px;
}

.text-color-12 {
  color: var(--bg-color);
  font-size: 14px;
}

.text-color-21 {
  color: var(--container-color);
  font-size: 14px;
  margin-left: 20px;
}


.button-decor {
  background-color: var(--btn-color);
  color: var(--bg-color);
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-top: 50px;
}

.container-bg-2 {
  background-color: var(--bg-color);

}


.prod-card {
  flex: 1 0 40%;
  min-width: 250px;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.scroll-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background-color: rgb(231, 231, 231);
  color: rgb(38, 37, 37);
  border: none;
  padding-left: 5px;
  padding-right: 5px;
  box-shadow: #333 0px 0px 5px;
  cursor: pointer;
  z-index: 2;
  font-size: 24px;
  border-radius: 50%;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

.scroll-btn:hover {
  background-color: rgba(165, 165, 165, 0.7);
}


.custom-bg {
  background-color: var(--dark-color) !important;
}

.custom-fg {
  color: var(--dark-color);
}

.container-bg {
  background-color: var(--text-color-1);
}

.container-bg-2 {
  background-color: var(--bg-color);
}

.container-bg-3 {
  background-color: var(--container-color-4);
}

.btn-dynamic-bg {
  background-color: var(--btn-color) !important;
}

.btn-dynamic-bg:hover {
  filter: brightness(90%);
}

.hover-text {
  position: relative;
  cursor: pointer;
  color: var(--container-color);

}

.circle-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
}


.hover-bg:hover {
  color: var(--dark-color);
  font-weight: 600;
}

.hover-text:hover {
  color: var(--dark-color);
  transition-duration: 0.7s;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 200px;
}

select.custom-select-box {
  background-color: transparent;
  border: none;
  color: var(--bg-color);
  font-size: 16px;
  /* padding: 10px 40px 10px 10px; */
}

select.custom-select-box:focus {
  outline: none;
  box-shadow: none;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  color: #999;
}

.search-input {
  width: 400px;
  padding: 10px 10px 10px 35px;
  /* ← this gives space for the icon */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-input::placeholder {
  color: #aaa;
}

.lorem-field {
  color: var(--bg-color);
}

.pincode {
  font-size: 12px;
}

.city-name {
  font-size: 18px;
}

.arrow {
  width: 11.9px;
  height: 7.13px;
  top: 6.24px;
  left: 8.93px;

}

h5 {
  color: var(--dark-color);
}

.view-all-button {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 20px;
  cursor: pointer;
}

.category-heading {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 2rem;
}


.carousel-indicators {
  background-color: var(--dark-color);
  color: var(--dark-color);
}

.category-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.scrollspy {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  /* For smoother scrolling on mobile */

}

.controllers {
  height: 10px;
  width: 10px;
  background-color: var(--container-color);
  border-radius: 50%;
}


.all-images {
  height: 60%;

}

.active-image {
  max-width: 480px;
  width: 90%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  padding: 15px;
  border: 1px solid var(--image-border-color);
  margin: 14px;
}

.product-images {
  width: 100%;
}

.acive-product-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.product-image {
  height: 75px;
  width: 75px;
  padding: 5px;
  object-fit: cover;
  border: 1px solid var(--image-border-color);
  margin-top: 14px;
  border-radius: 5px;
}

.active {
  box-shadow: 0px 0px 3px var(--dark-color);
}

.add-to-cart,
.buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 45px;
  padding: 0 16px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart {
  background: linear-gradient(135deg, var(--add-to-cart-color), #0b87e6);
}

.add-to-cart:hover {
  background: linear-gradient(135deg, #0b87e6, var(--add-to-cart-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(13, 153, 255, 0.3);
}

.add-to-cart:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(13, 153, 255, 0.2);
}

/* Remove HTML number input arrows and clean styling */
.product-qty {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  width: 70px;
  height: 45px;
  outline: none;
  background: #ffffff;
  color: var(--dark-color);
  border-left: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
  margin: 0;
  padding: 0;
}

/* Remove all possible HTML arrows */
.product-qty::-webkit-outer-spin-button,
.product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.product-qty::-moz-inner-spin-button,
.product-qty::-moz-outer-spin-button {
  appearance: none;
  margin: 0;
  display: none;
}

.product-qty[type="number"] {
  -moz-appearance: textfield;
}

.product-qty:focus {
  background: #f8f9fa;
  outline: none;
  box-shadow: none;
}

/* Quantity buttons styling */
.qty-input {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--add-to-cart-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white;
  display: flex;
  align-items: center;
  height: 45px;
}

.qty-count {
  background: var(--add-to-cart-color);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}

.qty-count:hover {
  background: rgba(13, 153, 255, 0.95);
  transform: none;
  box-shadow: none;
}

.qty-count:active {
  background: rgba(13, 153, 255, 0.85);
  transform: none;
}

.qty-count:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Product layout - 45/55 split */
.product-left-section {
  width: 45%;
  flex: 0 0 45%;
  margin-right: 2rem;
}

.details {
  width: 55%;
  flex: 0 0 55%;
}

/* Fixed size for thumbnail images */
.all-image-containers {
  height: 80px;
  width: 80px;
  flex-shrink: 0;
}

/* Responsive main image - Always square */
.main-image-wrapper {
  flex: 1;
  width: 100%;
}

.active-image {
  aspect-ratio: 1;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.acive-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.acive-product-image:hover {
  transform: scale(1.05);
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

.standard-width {
  max-width: 100%;
  overflow-x: hidden;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-details {
    flex-direction: column !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .product-left-section {
    width: 100% !important;
    flex: none !important;
    margin-right: 0 !important;
    margin-bottom: 2rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .details {
    width: 100% !important;
    flex: none !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .quantity-buttons {
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
  }
  
  /* Mobile quantity controls - smaller and fit in one row */
  .qty-input {
    border-radius: 6px;
    height: 36px;
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  
  .qty-count {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .product-qty {
    width: 50px;
    height: 36px;
    font-size: 16px;
  }
  
  .buy-now, .add-to-cart {
    height: 36px;
    font-size: 12px;
    padding: 0 12px;
    min-width: 100px;
    flex: 1;
    margin: 0 0.25rem;
    box-sizing: border-box;
  }
  
  .quantity-buttons {
    flex-wrap: nowrap !important;
    gap: 0.5rem;
  }
  
  .product-images {
    width: 100% !important;
    max-width: 100%;
  }
  
  .all-images {
    max-width: fit-content;
  }
}

.buy-now {
  background: linear-gradient(135deg, var(--no-color), #d73527);
}

.buy-now:hover {
  background: linear-gradient(135deg, #d73527, var(--no-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(234, 67, 53, 0.3);
}

.buy-now:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(234, 67, 53, 0.2);
}

ul,
ol {
  margin: 0.75em 0;
  padding: 0 1em;
  list-style: none;
}

ul li::before {
  content: "";
  border-color: transparent var(--dark-color);
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 0.9em;
  position: relative;
}

ol li::marker {
  content: "▶";
}

.quantity-buttons {
  height: 40px;
}

.quantity-input {
  height: 40px;
}


.qty-input {
  width: fit-content;
  height: 40px;
  border: 1px solid var(--image-border-color);
  box-shadow: 0px 0px 4px var(--image-border-color);
  text-align: center;
}

.qty-count,
.product-qty {
  border: none;
  background-color: transparent;

}

.qty-count--minus {
  color: var(--no-color);
  font-weight: bolder;
  border-right: var(--qty-count-color) 1px solid;
}

.qty-count--add {
  color: var(--yes-color);
  font-weight: bolder;
  border-left: var(--qty-count-color) 1px solid;
}

.product-qty {
  text-align: center;
}


/* Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
/* input[type="number"] {
  -moz-appearance: textfield;
} */

.quantity-buttons {
  width: 95%;
}

.stock-bool {
  font-size: 18px;
  font-weight: 500;
  color: var(--yes-color);
  padding-top: 14px;
}

.product-name {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  color: var(--black-color);
}

.pricing-new {
  font-size: 35px;
  color: var(--no-color);
  font-weight: 500;
}

.pricing-striked {
  font-size: 22px;
  font-weight: 400;
  color: var(--image-border-color);
  text-decoration: line-through;
}

.pricing-offer {
  font-size: 18px;
  font-weight: 600;
  color: var(--no-color);
}

.offers {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-color);
}

.offers-all {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
}

.configurations {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-color);
}

label {
  color: var(--container-color);
  font-size: 14px;
  font-weight: 400;
}

.delivery-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.location-text {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 18px;
}

.location {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
}

.active-select-label {
  color: var(--dark-color);
}

.active-select {
  border: 1px solid var(--dark-color);
  padding: 5px;
  border-radius: 5px;
}

.inactive-select {
  min-width: 200px;
  border: none;
  background-color: var(--white-color);
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px var(--image-border-color);
}

select {
  border-radius: 5px;

}

.horizontal-line {
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  margin-top: 30px;
  margin-bottom: 30px;
}

.specifications-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--black-color);
}

.specifications-container {
  width: 70%;
}

.specifications-table {
  border: none;
}

.main {
  font-size: 18px;
  font-weight: 400;
  color: var(--container-color);
  margin-top: 30px;
}

.desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  margin-top: 30px;
}

td {
  height: 40px;
  width: 50%;
}

.configurations-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.attributes-container {
  flex: 1 0 40%;
  margin-top: 28px;

}

.sort-by {
  margin-right: 6%;
  max-width: fit-content;
}


.all-image-containers {
  height: 80px;
  width: 80px;
  cursor: pointer;
}

.whatsapp-icon {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
}

.grid-container {
  display: grid;

}

.brand-name .word-1,
.brand-name .word-2 {
  display: block;
  /* default: stacked vertically */
}

.order-1 {
  display: none;
}

#white-navbar-1 {
  display: none;
}

a {
  text-decoration: none;
}


.left-arrow,
.right-arrow {
  height: 10px;
  width: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: var(--bg-color);
  border: 1px solid var(--bg-color);
  box-shadow: 0px 0px 3px var(--dark-color);
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.features-container {
  width: calc(80% + 30px);
  margin: 0px auto;
}

.features-container div {
  margin-bottom: 15px;
}

.circle {
  max-width: 120px;
  max-height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--container-color-3);
  margin-top: 50px;
  cursor: pointer;
}

.product-scroll-container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.product-scroll-container::-webkit-scrollbar {
  display: none;
}

.product-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 280px;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.card-actions .btn {
  flex: 1;
  font-size: 14px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
}

.add-to-cart-btn {
  transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .product-card {
    width: 220px;
    height: 360px;
  }
  
  .card-actions .btn {
    height: 32px;
    font-size: 12px;
    padding: 4px 8px;
  }
}

.headings {
  padding: 2rem 0.5rem 1rem;
}

@media only screen and (max-width: 992px) {

  .product-details {
    flex-direction: column;
  }

  .features-container {
    width: calc(90% + 30px);
    margin: 0px auto;
  }

  .standard-width {
    width: 90%;
    margin: 0px auto;
  }

  .text-color-7 {
    font-size: 20px;
  }

  .dropdown-wrapper {
    display: none;
  }

  .text-color-9 {
    display: none;
  }

  #search-bar {
    display: none;
  }

  .brand-name .word-1,
  .brand-name .word-2 {
    display: inline;
    /* inline on small screens */
  }

  #search-bar-1 {
    display: block;
    width: 100%;
    height: 32px;
    border-radius: 5px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
  }

  #search-bar-1 input {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 14px;
    color: var(--dark-color);
  }

  #bluenav {
    height: fit-content;
    max-height: 122px;
    padding-bottom: 20px;
  }

  #about {
    display: none;
  }

  .about {
    display: none;
  }

  #white-navbar {
    display: none;
  }

  #white-navbar-1 {
    display: block;
    padding: 0px 5%;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    position: fixed;
    color: var(--container-color-5);
    background-color: var(--dark-color);
    font-size: 12px;
    box-shadow: 5px 10px 8px 10px #252525;
  }

  #white-navbar-1 nav {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  #white-navbar-1 nav a {
    cursor: pointer;
    color: white;
    text-decoration: none;
    gap: 6px;
    padding-top: 10px;
    color: inherit;
  }

  #white-navbar-1 nav a:hover {
    z-index: 100;
    color: var(--bg-color);
    font-weight: 600;
  }

  .nav-link {
    padding: 0px;
    color: #444;
    text-decoration: none;
  }

  .nav-link:hover,
  .focused-navitem-1 {
    color: #6a0dad;
    /* violet */
    font-weight: bold;
  }

  .features-container {
    justify-content: center;
  }

  .add-to-cart,
  .buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 90px;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    color: var(--bg-color);
  }

  .add-to-cart {
    background-color: var(--add-to-cart-color);
  }

  .buy-now {
    background-color: var(--no-color);
  }

  .whatsapp-icon {
    bottom: 6rem;
    right: 5%;
  }

  .headings {
    padding: 2rem 0 1rem;
  }

  .category-heading {
    text-align: center;
    margin: 2rem;
  }
}

@media only screen and (max-width: 1100px) {
  .product-details {
    flex-direction: column;
  }


  .product-images {
    width: 90%;
  }

  .text-color-2 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .text-color-11 {
    font-size: 16px;
  }

  .button-decor {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 20px;
  }

  .text-color-10 {
    font-size: 14px;
  }

  .explore-icon {
    transform: translate(0px, 2px) ;
  }
}

.product-image-container {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-icon {
  font-size: 14px !important;
  cursor: pointer;
}

.card {
  border: none;
}