.btn-primary {
  background: #0d6efd;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #084298;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content h3 {
  margin-top: 0;
  color: #0d6efd;
}

.popup-content p {
  font-size: 15px;
  line-height: 1.6;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Action Button */
.popup-btn {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  background: #0d6efd;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.product-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

.product-card {
  position: relative;
  /*width: 500px;*/
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #f6efef;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: bottom 0.5s ease;
}

.product-card:hover .product-info {
  bottom: 0;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 30px;
  color: #f2f0f0;
  font-weight: bold;
}

.product-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}




.modal-content {
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.modal-header {
  background: linear-gradient(135deg, #00c853, #2e7d32);
  color: #fff;
}

.modal-header .btn-close {
  filter: invert(1);
}



@media (max-width: 576px) {
  .product-img-box {
    width: 100%;
    height: auto;
  }

  .product-img-box img {
    height: auto;
  }
}


.product-img-box {
  width: 500px;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* keeps image proportional */
  display: block;
}


.gradient-section {
  background: linear-gradient(
    to right,
    #e3f2fd,
    #bbdefb
  );
  padding: 60px;
  border-radius: 12px;
}




.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sitename {
  color: #8E3889;
  font-size: 24px;
  margin: 0;
}