@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  height: 100%;
}

.nav-bg-light {
  background-color: white;
}

.navbar-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.navbar-top,
.navbar-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.navbar-top .center {
  flex: 1;
  text-align: center;
}

.navbar-bottom {
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #eee;
  padding-bottom: 10px;
}

.cart-count {
  background-color: olive;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  vertical-align: top;
  margin-left: 2px;
}

.nav-link-st {
  position: relative;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  font-weight: 450;
  color: black;
}

.nav-link-st::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  /* Matches text color */
  transition: width 0.3s ease-in-out;
}

.nav-link-st:hover::after {
  width: 100%;
  color: black;
}

.banner-bg {
  background-image: url('banner-head.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
}

.banner-category-bg {
  background-image: url('./images/banner-cat.png');
  height: 100vh;
  background-size: cover;
}

.banner-h1 {
  font-size: 4vw;
  font-weight: 600;
  letter-spacing: 6px;
  color: #000;
}

.banner-cat-h1 {
  font-size: 4vw;
  font-weight: 600;
  letter-spacing: 6px;
  color: white;
}

.nav-log {
  font-size: x-large;
}

.border-menu {
  outline: none;
  box-shadow: none;
  border: none;
}

.border-menu:focus,
.border-menu:active {
  outline: none;
  box-shadow: none;
  border: none;

}


/* WORK MORQUE */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 12px 0;
  background: transparent;
  white-space: nowrap;
  position: relative;
  background-color: #C0C9FF;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 600px;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), transparent);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), transparent);
}

.logos:hover .logos-slide {
  animation-play-state: running;
}

.logos-slide {
  display: inline-block;
  animation: 7s slide infinite linear;
}

.logos-slide-1 {
  display: inline-block;
  animation: 7s slide infinite linear reverse;
}


.logos-slide h1 {
  height: 0px;
  margin: 0 10px;
  font-size: 18px;

}

.logos-slide i {
  font-size: 18px;
  font-weight: 600;
}

.title-1 {
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 18px;
}

/* Tablet and above (≥768px) */
@media (min-width: 768px) {
  .title-1 {
    font-size: 18px;
  }
}


.slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;

}

.product-card img {
  width: 100%;
  border-radius: 0px;
  /* max-height: 500px; REMOVED per user request */
  object-fit: cover;
}

body {
  /* padding-bottom: 60px; REMOVED: Caused white region below footer */
  min-height: 100%;
  display: flex;
  flex-direction: column;
}


.product-title {
  font-weight: 600;
  font-size: 18px;
  margin-top: 15px;
}

.product-price {
  font-size: 16px;
  color: #555;
}

.size-label {
  font-weight: 500;
  margin: 10px 0 5px;
  display: block;
}

.size-options .btn {
  border-radius: 0;
  border: 1px solid #000;
  font-size: 12px;
  color: #000;
  margin: 2px;
}

.size-options .btn.active {
  background-color: #000;
  color: #fff;
}

.add-to-cart {
  background-color: #343A40 !important;
  color: #ffffff !important;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease-in-out;
  opacity: 1 !important;
}

.add-to-cart i,
.add-to-cart span {
  color: #ffffff !important;
}

.add-to-cart:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* Handle disabled state */
.add-to-cart:disabled,
.add-to-cart[disabled] {
  background-color: #343A40 !important;
  color: #ffffff !important;
  opacity: 0.7;
  cursor: not-allowed;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  z-index: 1;
  color: #000;
  border-radius: 50%;
  padding: 5px 10px;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

@media (min-width: 768px) {
  .slider .product-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .size-options .btn {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .slider .product-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .size-options .btn {
    font-size: 12px;
  }
}

.image-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

.image-container2 {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

/* Tablet View (min-width: 768px) */
@media (min-width: 768px) {
  .image-container {
    height: 400px;
  }

}

/* Laptop/Desktop View (min-width: 1024px or 1200px) */
@media (min-width: 1024px) {
  .image-container {
    height: 400px;
  }
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.image-container2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.hover-img {
  opacity: 0;
}

.image-container:hover .hover-img {
  opacity: 1;
}

.image-container:hover .default-img {
  opacity: 0;
}

.image-container2:hover .hover-img {
  opacity: 1;
}

.image-container2:hover .default-img {
  opacity: 0;
}

.btn-view {
  background-color: #000;
}

.about-h1 {
  color: #000;
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-h1 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .about-h1 {
    font-size: 18px;
  }
}

.btn-banner {
  background-color: #343A40;
  width: 200px;
  color: #ccc;
  font-weight: 700;
  letter-spacing: 4px;
  padding-top: 14px;
  padding-bottom: 14px;
  border: 0;
  border-radius: 8px;
  transition: width 0.3s ease-in-out;
}

.btn-banner:hover {
  background-color: #343A40;
  color: #ccc;
  transition: width 0.3s ease-in-out;
}

.about-p {
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 42px;
}

@media (max-width: 768px) {
  .about-p {
    font-size: 24px;
    line-height: 22px;
    margin-top: 18px;
  }

}

@media (max-width: 576px) {
  .about-p {
    font-size: 14px;
  }
}



.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.collection-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.card-text-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 1px 1px 5px black;
}

@media (max-width: 767.98px) {
  .card-text-overlay {
    font-size: 1.2rem;
  }

  .collection-title {
    font-size: 1.5rem;
  }
}

.collection-title {
  font-size: 2rem;
  letter-spacing: 3px;
  font-weight: 500;
  text-align: left;
  margin: 30px 0;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

.collection-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.card-text-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 1px 1px 5px black;
}

.btn-gallery {
  background-color: #000;
  width: 90%;
  color: #ccc;
  font-weight: 700;
  letter-spacing: 4px;
  padding-top: 14px;
  padding-bottom: 14px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .collection-title {
    text-align: left;
  }

  .card-text-overlay {
    font-size: 1.2rem;
  }

  .exclusive-h1 {
    font-size: 48px;
  }
}

.exclusive-h1 {
  color: #000;
  text-align: center;
  letter-spacing: 4px;
  font-size: 44px;
}

.exclusive-h1-2 {
  color: #000;
  text-align: center;
  letter-spacing: 4px;
  font-size: 18px;
}





.feature-box {
  text-align: center;
  padding: 20px;
}

.feature-box i {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-box p {
  font-size: 12px;
  color: #4B4944;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .feature-box {
    margin-bottom: 30px;
  }
}



/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.custom-toast {
  background: white;
  color: #333;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  display: flex;
  align-items: center;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-blue);
  min-width: 300px;
}

.custom-toast.show {
  transform: translateX(0);
}

.custom-toast.success {
  border-left-color: #10B981;
}

.custom-toast.error {
  border-left-color: #EF4444;
}

.custom-toast i {
  font-size: 1.2rem;
}

.custom-toast.success i {
  color: #10B981;
}

.custom-toast.error i {
  color: #EF4444;
}

/* Large screen - bigger policy modals */
@media (min-width: 992px) {
  .modal-dialog.modal-lg {
    max-width: 900px;
  }

  .modal-content {
    border-radius: 16px;
  }

  .modal-content .modal-header h5 {
    font-size: 22px;
    font-weight: 700;
  }

  .modal-content .modal-body {
    font-size: 16px;
    line-height: 1.8;
    padding: 2rem 2.5rem;
  }

  .modal-content .modal-body h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .modal-content .modal-body p,
  .modal-content .modal-body li {
    font-size: 15px;
    line-height: 1.8;
  }

  /* For popup-modal style modals (blog/about pages) */
  .popup-modal {
    min-width: 800px;
    max-width: 900px;
    border-radius: 16px;
    padding: 2.5rem;
  }

  .popup-modal .popup-header h3 {
    font-size: 22px;
    font-weight: 700;
  }

  .popup-modal p,
  .popup-modal li {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* GLOBAL NAVBAR STYLES EXTRACTED FROM NAVBAR.PHP */