body {
  font-family: 'Roboto', sans-serif;
  background-color: white;
  color: black;
  padding-top: 76px;
}

.text-black {
  color: black !important;
}

.card {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.navbar-brand img {
  max-height: 40px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link:hover {
  color: #b3b1b1 !important; 
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #000 !important; 
  color: #fff !important; 
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #000 !important; 
  color: #fff !important;
}

.btn-home {
  background-color: #fff;
  border-radius: 0;
  padding: 15px 40px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn-home:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

.btn-dark.btn-lg {
  background-color: #000;
  border-radius: 0;
  padding: 15px 40px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn-dark.btn-lg:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

.btn-outline-dark {
  border-color: black;
  color: black;
}

.btn-outline-dark:hover {
  background-color: black;
  color: white;
}

.btn-dark {
  background-color: #000;
  border-radius: 0;
  padding: 15px 40px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn-dark:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .navbar-collapse {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
  }

  .carousel-caption {
    bottom: 20%;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }
}

.custom-footer {
  background-color: #000;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.custom-footer h5 {
  color: #fff;
}

.custom-footer p {
  color: #ddd;
}

.custom-footer a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

section {
  padding: 60px 0;
}

h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

.main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb-img:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-title {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.product-price {
  font-size: 1.2rem;
  color: #555;
}

.product-description {
  color: #333;
  line-height: 1.6;
}

#sizeSelect,
#quantity {
  border-radius: 0;
  border: 1px solid #ccc;
}

#quantity {
  width: 80px;
  text-align: center;
}

.btn-add-cart {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 35px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  transform: scale(1.05);
}

/* Image Popup Overlay */
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  animation: zoomIn 0.3s ease;
}

.image-popup .close-popup {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
}

#cartModal .modal-content {
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  border: none;
  border-radius: 15px;
}

#cartModalImage {
  transition: transform 0.3s ease;
}

#cartModalImage:hover {
  transform: scale(1.05);
}

del {
  color: gray;
  opacity: 0.8;
}
.text-danger {
  font-weight: bold;
}
.text-success {
  font-size: 0.9em;
}

.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #dc3545;
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.card {
  position: relative;
  overflow: hidden;
}

.card-text del {
  color: #888;
  font-size: 0.9rem;
}

.text-danger {
  font-weight: bold;
}

body {
  background-color: #f8f9fa;
  font-family: 'Roboto', sans-serif;
}

.policy-header {
  background-color: #000;
  color: white;
  padding: 100px 0 60px 0;
  text-align: center;
}

.policy-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.policy-container {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.policy-container h2 {
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.policy-container p {
  color: #333;
  line-height: 1.7;
}

.policy-container ul {
  margin-top: 10px;
  margin-left: 20px;
  color: #333;
}

.policy-container ul li {
  margin-bottom: 6px;
}

footer {
  margin-top: 50px;
}


@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .main-img {
    height: 300px;
  }

  .thumb-img {
    width: 60px;
    height: 60px;
  }

  .product-title {
    font-size: 1.5rem;
  }
}



