/* ════════════════════════════════════════
   SHRI SANGEETHAS – BULK ORDERS PAGE
   ════════════════════════════════════════ */

/* ── HERO ── */
.bulk-hero { width: 100%; line-height: 0; }
.bulk-hero img { width: 100%; height: auto; display: block; }

/* ── INTRO ── */
.bulk-intro {
  background: var(--cream);
  padding: 64px 60px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.bulk-intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 18px;
}
.bulk-intro-sub {
  font-size: 14.5px;
  line-height: 1.85;
  color: #888;
}

/* ── WHY CHOOSE US ── */
.bulk-why { background: var(--cream); padding-top: 20px; }
.bulk-why-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #5C2A0E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  flex-wrap: wrap;
}
.bulk-dot { color: #C8762A; font-size: 13px; flex-shrink: 0; }

.bulk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}
.bulk-card { text-align: center; }
.bulk-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.bulk-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.bulk-card:hover .bulk-card-img img { transform: scale(1.06); }
.bulk-card-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: #888;
  max-width: 300px;
  margin: 0 auto;
}

/* ── ORDERING PROCESS ── */
.bulk-process { background: var(--cream); padding-top: 10px; }
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.process-card { display: flex; flex-direction: column; align-items: center; }
.process-icon {
  width: 110px; height: 110px;
  border: 2px dashed rgba(139, 82, 40, 0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.process-card:hover .process-icon {
  border-color: var(--gold);
  transform: scale(1.06);
}
.process-icon img {
  width: 66px; height: 66px;
  object-fit: contain; display: block;
}
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.process-desc {
  font-size: 14px; line-height: 1.8;
  color: #888; max-width: 260px;
}

/* ── PICKUP & DELIVERY ── */
.bulk-delivery { background: var(--cream); padding-top: 10px; }

.delivery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1160px;
  margin: 0 auto 44px;
  overflow: hidden;
  min-height: 320px;
}
.delivery-photo { overflow: hidden; }
.delivery-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.delivery-panel {
  background: #EDAA88;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 44px 40px 28px;
  text-align: center;
}
.delivery-icon {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  color: #6B3520;
}
.delivery-icon svg { width: 72px; height: 72px; }
.delivery-opt-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: #4A2010; margin-bottom: 10px;
}
.delivery-opt-desc {
  font-size: 13.5px; line-height: 1.7; color: #7A3C20;
}
.delivery-pattern {
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpath d='M18 4 L32 18 L18 32 L4 18 Z' fill='none' stroke='rgba(100,40,10,0.2)' stroke-width='1.2'/%3E%3Cpath d='M18 10 L26 18 L18 26 L10 18 Z' fill='none' stroke='rgba(100,40,10,0.15)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 36px 48px;
}

/* Tagline */
.delivery-tagline {
  text-align: center;
  font-size: 14.5px; line-height: 1.8;
  color: #666;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Info strip */
.delivery-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.delivery-info-item {
  padding: 10px 20px;
  border-right: 1px solid #ddd8d2;
}
.delivery-info-item:last-child { border-right: none; }
.delivery-info-title {
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.delivery-info-val { font-size: 14px; color: #888; }

/* ── ORDER FORM ── */
.bulk-form-section { background: var(--cream); padding-top: 10px; }

.bulk-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1160px;
  margin: 0 auto;
  border: 2px solid #D44010;
  overflow: hidden;
  min-height: 420px;
}

/* Left orange panel */
.bfc-left {
  background: #E85A22;
  padding: 44px 48px 0;
  display: flex;
  flex-direction: column;
}
.bfc-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  font-style: italic;
}
.bfc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.bfc-form input,
.bfc-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
}
.bfc-form input::placeholder,
.bfc-form textarea::placeholder { color: rgba(255,255,255,0.65); }
.bfc-form input:focus,
.bfc-form textarea:focus { border-color: #fff; }
.bfc-form textarea { resize: none; min-height: 120px; }
.bfc-btn {
  align-self: flex-start;
  background: #fff;
  color: #E85A22;
  border: none;
  padding: 13px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  margin: 4px 0 44px;
  transition: background 0.25s, color 0.25s;
}
.bfc-btn:hover { background: var(--cream); color: #C9400E; }

/* Right photo panel */
.bfc-right { overflow: hidden; }
.bfc-right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bulk-cards { grid-template-columns: 1fr; max-width: 480px; gap: 28px; }
  .process-cards { grid-template-columns: 1fr; max-width: 340px; gap: 36px; }
  .delivery-card { grid-template-columns: 1fr; }
  .delivery-photo { min-height: 260px; }
  .delivery-options { padding: 32px 28px 24px; }
  .delivery-info { max-width: 100%; }
  .bulk-form-card { grid-template-columns: 1fr; }
  .bfc-right { min-height: 280px; }
}
@media (max-width: 768px) {
  .bulk-intro { padding: 48px 28px 36px; }
  .bulk-why { padding-left: 24px; padding-right: 24px; }
  .bulk-form-section { padding: 64px 24px; }
}
