/* //ornaments// */

.occasions-section {

  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.occasions-section h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.occasions-section p {
  color: #666;
  margin-bottom: 30px;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.occasion-card {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.occasion-card:hover img {
  transform: scale(1.08);
}

.occasion-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.occasion-card span {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

.placeholder {
  background: #e0e0e0;
}

.placeholder img {
  display: none;
}

/* ===============================
   OCCASION SLIDER
================================ */

.occasions-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.occasions-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.occasions-grid::-webkit-scrollbar {
  display: none;
}

/* Show 3 cards */
.occasion-card {
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.occasion-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Buttons */
.occ-btn {
  background: #fff;
  border: none;
  font-size: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.occ-btn.left {
  margin-right: 10px;
}

.occ-btn.right {
  margin-left: 10px;
}

/* Mobile */
@media (max-width: 1024px) {
  .occasion-card {
    min-width: 33.333%;
  }
}

@media (max-width: 768px) {
  .occasion-card {
    min-width: 70%;
  }
}


@media (max-width: 768px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }

  .occasion-card {
    height: 220px;
  }
}

.nearby-section {
  padding: 5px 0 30px;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.subtitle {
  color: #666;
  margin-bottom: 15px;
  /* Reduced for tighter spacing as per PDF */
}

.mt-60 {
  margin-top: 60px;
}

/* ===== TOP OFFERS - EXACT PDF DESIGN MATCH ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 60px;
  /* Match occasions wrapper padding */
  margin-bottom: 40px;
}

/* Legacy styles removed for Premium Card Upgrade */

/* ===== PLACEHOLDER ===== */
.placeholder {
  background: #e0e0e0;
  border-radius: 14px;
  height: 260px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .offers-grid,
  .stores-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }

  .offer-card {
    aspect-ratio: 2 / 1;
    /* Slightly taller on mobile */
  }
}

.popular-section {
  padding: 40px 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== COLLECTIONS ===== */
.collections-row {
  display: flex;
  gap: 16px;
  /* overflow-x: auto; */
  padding-bottom: 10px;
}

.collection-card {
  min-width: 260px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: #fff;
  flex-shrink: 0;
}

.collection-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.collection-card h4 {
  font-size: 16px;
  margin: 0;
}

.collection-card span {
  font-size: 13px;
  opacity: 0.8;
}

/* Gradients */
.antique {
  background: linear-gradient(135deg, #1f1c2c, #3f2b96);
}

.traditional {
  background: linear-gradient(135deg, #5a0f3c, #8c1d56);
}

.navaratna {
  background: linear-gradient(135deg, #6b1238, #b83250);
}

.collection-card.placeholder {
  background: #e57373;
}

/* ===== POPULAR ITEMS ===== */
h2 {
  margin: 30px 0 20px;
  font-size: 22px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item-card {
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
}

.item-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.item-info {
  padding: 12px;
}

.feature-label {
  display: inline-block;
  background: #8e8a8a;
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 4px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.info-bar {
  width: 60%;
  height: 14px;
  background: #9e9e9e;
  border-radius: 4px;
}

.action-btn {
  width: 70px;
  height: 32px;
  background: #c73443;
  border-radius: 6px;
  border: none;
}

/* ===== PLACEHOLDERS ===== */
.item-placeholder {
  background: #e0e0e0;
  border-radius: 14px;
  height: 300px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .items-grid {
    grid-template-columns: 1fr;
  }

  .item-card img {
    height: 180px;
  }

  h2 {
    font-size: 20px;
  }
}


/* ===== HEADINGS ===== */
.section h2 {
  font-size: 20px;
  margin: 32px 0 18px;
  font-weight: 600;
}

/* ===== NEW ARRIVALS ===== */
.new-arrivals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.new-card {
  position: relative;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
}

.new-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.45));
  padding: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-card h3 {
  font-size: 15px;
  font-weight: 500;
}

.view-btn {
  background: #c73443;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  width: fit-content;
  cursor: pointer;
}

.brand-logo {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 32px;
}

.placeholder {
  background: #e0e0e0;
  border-radius: 16px;
}

.popular-stores-section {
  max-width: 1200px;
  margin: 40px auto;
}

.popular-stores-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Grid */
.popular-stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}