/* Daily New Arrivals Horizontal Scrollbar */
body {
  font-family: "Times New Roman", serif;
}

.horizontal-scroll {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

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

.product-card {
  display: inline-block;
  vertical-align: top;
  width: 280px;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.5rem;
  margin-right: 1.5rem;
  white-space: normal;
}

.product-price {
  color: #d99a1a;
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

.sales-volume {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: -0.25rem;
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #000;
  font-weight: 400;
}

/* Daily New Arrivals Horizontal Scrollbar */

/* Product detail */
product-image {
  max-width: 100%;
  border: 1px solid #ddd;
  padding: 10px;
}

.price-tag {
  font-size: 24px;
  font-weight: bold;
  color: #e74c3c;
}

.section-title {
  border-bottom: 2px solid #000;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

/* Login Page start */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
}

.btn-phone {
  background-color: #f59e0b;
  color: white;
}

.btn-phone:hover,
.btn-phone:focus {
  background-color: #d87f00;
  color: white;
}

.btn-email {
  background-color: #e9ecef;
  color: #6c757d;
}

.btn-email:hover,
.btn-email:focus {
  background-color: #d3d9df;
  color: #495057;
}

.form-control:focus {
  box-shadow: none;
  border-color: #f59e0b;
}

select.form-select:focus {
  box-shadow: none;
  border-color: #f59e0b;
}

.input-group-text {
  background-color: white;
  border-right: none;
}

.form-control.phone-input {
  border-left: none;
  background-color: #e6f0fb;
}

.password-input {
  background-color: #e6f0fb;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .btn-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

header {
  border-bottom: 1px solid #dee2e6;
}

header button {
  background: none;
  border: none;
  color: #212529;
  font-size: 1.25rem;
}

header button:focus {
  outline: none;
  box-shadow: none;
}

.logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* /Login page styling end here */

/* user side dashboard styling */
.overlap-box {
  margin-top: -75px;
  /* Negative margin to pull it up */
  z-index: 10;
  position: relative;
}

/* My page styling */
.overlap-box1 {
  margin-top: -180px;
  /* Negative margin to pull it up */
  z-index: 10;
  position: relative;
}

@media (max-width: 576px) {
  .bg-dark {
    padding: 20px 10px;
    /* Adjust padding for small screens */
  }

  .fs-1 {
    font-size: 1.5rem;
    /* Adjust font size for account balance */
  }
}





/* Products list page styling */

/* Base styles for the product title */
.product-title {
  line-height: 1.2;
  overflow: visible;
  /* Hide overflow */
  white-space: normal;
  text-overflow: initial;
  /* Add ellipsis for overflow */
}

/* Responsive font sizes and max-width */
@media (max-width: 1200px) {
  .product-title {
    font-size: 1.2rem;
    /* Adjust font size for medium screens */
  }
}

@media (max-width: 992px) {
  .product-title {
    font-size: 1rem;
    /* Adjust font size for smaller screens */
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 0.9rem;
    /* Further adjust for mobile screens */
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 0.8rem;
    /* Smallest font size for very small screens */
  }
}


/* /Products list page styling */


.cart-wrapper {
  margin-top: 80px;
  background-color: #f8f9fa;
  min-height: 100vh;
  padding: 40px 0;
}

.product-card1 {
  background: white;
  border-radius: 12px;
  transition: transform 0.2s;
}

.product-card1:hover {
  transform: translateY(-2px);
}

.quantity-input {
  width: 60px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.summary-card {
  background: white;
  border-radius: 12px;
  position: sticky;
  top: 20px;
}

.checkout-btn {
  /* background: linear-gradient(135deg, #6366f1, #4f46e5); */
  border: none;
  transition: transform 0.2s;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  /* background: linear-gradient(135deg, #4f46e5, #4338ca); */
}

.remove-btn {
  color: #dc2626;
  cursor: pointer;
  transition: all 0.2s;
}

.remove-btn:hover {
  color: #991b1b;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f3f4f6;
  border: none;
  transition: all 0.2s;
}

.quantity-btn:hover {
  background: #e5e7eb;
}

.discount-badge {
  background: #dcfce7;
  color: #166534;
  font-size: 0.875rem;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Product Detail */
.product-details {
  padding-top: 70px;
  padding-bottom: 30px;
}

.product__details__pic {
  overflow: hidden;
}

.product__details__pic__left {
  width: 22%;
  max-height: 400px;
  float: left;
  overflow-y: auto;
}

.product__details__pic__left .pt {
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}

.product__details__pic__left .pt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.product__details__pic__left .pt.active::after {
  opacity: 0.3;
}

.product__details__pic__left .pt:last-child {
  margin-bottom: 0;
}

.product__details__pic__left .pt img {
  min-width: 100%;
}

.product__details__slider__content {
  width: calc(78% - 20px);
  float: left;
  margin-left: 20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 22px;
  color: #111111;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  margin-top: -20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 10px;
}

.product__details__text h3 {
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product__details__text h3 span {
  display: block;
  font-size: 14px;
  color: #444444;
  text-transform: none;
  font-weight: 400;
  margin-top: 5px;
}

.product__details__text .rating {
  margin-bottom: 16px;
}

.product__details__text .rating i {
  font-size: 12px;
  color: #e3c01c;
  margin-right: -4px;
}

.product__details__text .rating span {
  font-size: 12px;
  color: #666666;
  margin-left: 5px;
}

.product__details__text p {
  color: #444444;
  margin-bottom: 28px;
}

.product__details__price {
  font-size: 30px;
  font-weight: 600;
  color: #ca1515;
  margin-bottom: 30px;
}

.product__details__price span {
  font-size: 18px;
  color: #b1b0b0;
  text-decoration: line-through;
  margin-left: 10px;
  display: inline-block;
}

.quantity {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.quantity>span {
  font-size: 14px;
  color: #111111;
  font-weight: 600;
  float: left;
  margin-top: 14px;
  margin-right: 15px;
}

.pro-qty {
  height: 50px;
  width: 120px;
  border: 1px solid #ebebeb;
  border-radius: 50px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
}

.pro-qty .qtybtn {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  float: left;
  width: 12px;
  line-height: 46px;
}

.pro-qty input {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  border: none;
  float: left;
  width: 50px;
  text-align: center;
  height: 48px;
}

.product__details__button {
  overflow: hidden;
  margin-bottom: 25px;
}

.product__details__button .cart-btn {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  /* background: #ca1515; */
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 30px 15px;
  border-radius: 50px;
  /* float: left; */
  margin-right: 10px;
  margin-bottom: 10px;
}

.product__details__button ul {
  float: left;
}

.product__details__button ul li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}

.product__details__button ul li:last-child {
  margin-right: 0;
}

.product__details__button ul li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  padding-top: 1px;
}

.product__details__button ul li a span {
  font-size: 18px;
  color: #666666;
}

.product__details__widget {
  border-top: 1px solid #ebebeb;
  padding-top: 35px;
}

.product__details__widget ul li {
  list-style: none;
  margin-bottom: 10px;
}

.product__details__widget ul li:last-child {
  margin-bottom: 0;
}

.product__details__widget ul li span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  width: 150px;
  /* float: left; */
}

.product__details__widget ul li .stock__checkbox {
  overflow: hidden;
}

.product__details__widget ul li .stock__checkbox label {
  display: block;
  padding-left: 20px;
  font-size: 14px;
  color: #666666;
  position: relative;
  cursor: pointer;
}

.product__details__widget ul li .stock__checkbox label input {
  position: absolute;
  visibility: hidden;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark {
  border-color: #ca1515;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark:after {
  border-color: #ca1515;
  opacity: 1;
}

.product__details__widget ul li .stock__checkbox label .checkmark {
  position: absolute;
  left: 0;
  top: 5px;
  height: 10px;
  width: 10px;
  border: 1px solid #444444;
  border-radius: 2px;
}

.product__details__widget ul li .stock__checkbox label .checkmark:after {
  position: absolute;
  left: 0px;
  top: -2px;
  width: 11px;
  height: 5px;
  border: solid #ffffff;
  border-width: 1.5px 1.5px 0px 0px;
  -webkit-transform: rotate(127deg);
  -ms-transform: rotate(127deg);
  transform: rotate(127deg);
  opacity: 0;
  content: "";
}

.product__details__widget ul li .color__checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-right: 20px;
}

.product__details__widget ul li .color__checkbox label.active input~.checkmark:after {
  border-color: #ffffff;
  opacity: 1;
}

.product__details__widget ul li .color__checkbox label:last-child {
  margin-right: 0;
}

.product__details__widget ul li .color__checkbox label input {
  position: absolute;
  visibility: hidden;
}

.product__details__widget ul li .color__checkbox label input:checked~.checkmark:after {
  border-color: #ffffff;
  opacity: 1;
}

.product__details__widget ul li .color__checkbox label .checkmark {
  position: absolute;
  left: 0;
  top: -10px;
  height: 20px;
  width: 20px;
  background: #e31e2f;
  border-radius: 50%;
  content: "";
}

.product__details__widget ul li .color__checkbox label .checkmark.black-bg {
  background: #111111;
}

.product__details__widget ul li .color__checkbox label .checkmark.grey-bg {
  background: #e4aa8b;
}

.product__details__widget ul li .color__checkbox label .checkmark:after {
  position: absolute;
  left: 3px;
  top: 5px;
  width: 13px;
  height: 6px;
  border: solid #ffffff;
  border-width: 1.5px 1.5px 0px 0px;
  -webkit-transform: rotate(127deg);
  -ms-transform: rotate(127deg);
  transform: rotate(127deg);
  opacity: 0;
  content: "";
}

.product__details__widget ul li .size__btn label {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 0;
}

.product__details__widget ul li .size__btn label:last-child {
  margin-right: 0;
}

.product__details__widget ul li .size__btn label.active {
  color: #ca1515;
}

.product__details__widget ul li .size__btn label input {
  position: absolute;
  visibility: hidden;
}

.product__details__widget ul li p {
  margin-bottom: 0;
  color: #666666;
}

.product__details__tab {
  padding-top: 80px;
  margin-bottom: 65px;
}

.nav {
  border-bottom: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.nav::before {
  position: absolute;
  left: 0;
  top: 13px;
  height: 1px;
  width: 335px;
  background: #e1e1e1;
  content: "";
}

.nav::after {
  position: absolute;
  right: 0;
  top: 13px;
  height: 1px;
  width: 335px;
  background: #e1e1e1;
  content: "";
}

.nav-item {
  margin-right: 46px;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-item .nav-link {
  font-size: 18px;
  color: #666666;
  font-weight: 600;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
}

.nav-item .nav-link.active {
  color: #111111;
}

.tab-content .tab-pane h6 {
  color: #666666;
  font-weight: 600;
  margin-bottom: 24px;
}

.tab-content .tab-pane p:last-child {
  margin-bottom: 0;
}

.related__title h5 {
  font-size: 20px;
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 35px;
}


.same-size-image {
  width: 150px;
  /* your desired width */
  height: 150px;
  /* your desired height */
  object-fit: cover;
  /* crop/scale image to fill */
  /* display: block;     removes bottom whitespace */
  border-radius: 4px;
  /* optional rounded corners */
}

.same-size-image1 {
  width: 100%;
  /* your desired width */
  height: 500px;
  /* your desired height */
  object-fit: fill;
  /*crop/scale image to fill */
  display: block;
  /*  removes bottom whitespace */
}

.size__btn input[type="radio"] {
  display: none;
  /* Hide the radio input */
}

.size__btn label {
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #ccc;
  margin-right: 8px;
  border-radius: 4px;
  user-select: none;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Show different style when radio is checked */
.size__btn input[type="radio"]:checked+label {
  background-color: #ffc107;
  /* Highlight background */
  border-color: #ffb300;
  color: white;
  font-weight: bold;
}

/* To make radio tick color yellow */


.cart-badge {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 10px;
  padding: 3px 6px;
  line-height: 1;
}

/* Orders Page Styling */
/* .custom_tabs .nav-link {
  font-weight: 600;
  color: #6b7280;
  border-bottom: 3px solid transparent;
}

.custom_tabs .nav-link.active {
  color: #2563eb;
  border-color: #2563eb;
} */

.custom_tabs {
  border-bottom: 2px solid gray;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: max-content;
  /* Ensure tabs don’t collapse */
}

.custom_tabs::-webkit-scrollbar {
  display: none;
}

.custom_tabs .nav-link {
  font-weight: 600;
  color: #6b7280;
  border: none;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  font-size: 1.1rem;
}

.custom_tabs .nav-link.active {
  color: #2563eb;
  border-bottom: 3px solid #2563eb;
}

.custom_tabs::before,
.custom_tabs::after {
  display: none !important;
}

@media (max-width: 460px) {
  .custom_tabs .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }
}




.search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-input {
  padding-left: 40px;
}

.order-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
}

.order-status-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  border: 2.5px solid #cbd5e1;
  border-radius: 50%;
}

.form-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
}


/* styling for home page catagoty scroll */

.scroll-wrapper {
  overflow: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  /* ✨ smooth scrolling enabled */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.scroll-track {
  display: inline-flex;
  gap: 40px;
  padding-bottom: 10px;
}

.scroll-item {
  flex: 0 0 auto;
  min-width: 150px;
}


