body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #a8c6fa;
}
.navbar-nav .nav-link {
  margin: 0 5px;
}
.navbar .nav-link.active:hover {
    color: rgb(255, 0, 162);
}
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #88b1f7;
}
.hero-banner {
  background-image: url('/komi/images/shopherosection/blossoms.jpeg'); /* your background image */
  background-size: cover;
  background-position: center;
  height: 70vh;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}
/* Card Wrapper */
.card-wrapper {
  border-radius: 12px;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.card-wrapper:hover {
  transform: scale(1.02);
}

.card-img-top {
  height: 330px;
  object-fit: cover;
  width: 90%;
  margin: 0 auto;
  display: block;
  border-bottom: 1px solid #eaeaea;
}

.card-body {
  background-color: white;
  flex-grow: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1rem;
  line-height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* limit to 2 lines */
  -webkit-box-orient: vertical;
}
.btn-outline-primary {
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
}

/* Price Styles */
.price-now {
  color: #e74c3c;
  font-weight: 600;
}

/* Discount Section Title */
section h2 {
  font-size: 1.8rem;
}
/* Discount Banner Styling */
.discount-banner {
  background-color: #a8c6fa;
  color: #fff;
  font-weight: 600;
}

/* In your shop.css */

.modal-custom-size .modal-dialog {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.modal-content {
  max-width: 100%;
  overflow: hidden;
}

.modal-body {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 1rem;
  word-wrap: break-word;
  overflow: hidden;
}

.modal-product-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
}

.product-details {
  flex: 1;
  min-width: 0; /* Allows flex item to shrink properly */
  font-size: 0.95rem;
  overflow-wrap: break-word;
}


.custom-add-btn {
  background-color: #d69bf1b4; /* your desired background */
  color: white;
}

.custom-add-btn:hover {
  background-color: #50e6d5;
}

.custom-view-btn {
  background-color: #7fc8d2;
  color: white;
}

.custom-view-btn:hover {
  background-color: #d651aa84;
}