@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   GLOBAL RESET
   ============================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* =============================================
   BREADCRUMB (shared)
   ============================================= */
.breadcrumb-strip {
  background: #fff;
  border-bottom: 1px solid #e4eaf2;
  padding: 10px 0;
}
.breadcrumb-strip ol {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-strip ol a {
  color: #888;
  text-decoration: none;
}
.breadcrumb-strip ol a.blue { color: #185FA5; }
.breadcrumb-strip ol .sep { color: #ccc; }
.breadcrumb-strip ol .current { color: #333; font-weight: 500; }

/* =============================================
   HERO SECTION (shared)
   ============================================= */
.page-hero {
  background: #fff;
  text-align: center;
  padding: 40px 0 36px;
  border-bottom: 1px solid #e4eaf2;
}
.page-hero h1 {
  font-size: 26px;
  font-weight: 700;
  color: #1b1f3b;
  margin: 0 0 12px;
}
.page-hero .underline-bar {
  width: 46px;
  height: 3px;
  background: #1a9e8f;
  border-radius: 2px;
  margin: 0 auto;
}
.page-hero.checkout-hero h1 {
  font-size: 30px;
  color: #4f46e5;
  letter-spacing: -0.5px;
}
.page-hero.checkout-hero p {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.page-hero.thankyou-hero h1 {
  font-size: 26px;
  color: #1b1f3b;
  margin-bottom: 12px;
}
.page-hero.thankyou-hero .underline-bar { background: #185FA5; }

/* =============================================
   GENERIC CONTENT PAGE (about, delivery, etc.)
   ============================================= */
.blog_page {
  background: #f7f9fc;
  padding: 32px 0 48px;
}
.content-widget {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dce5f0;
  padding: 36px 40px;
}
.content-widget p {
  font-size: 15px;
  line-height: 1.8;
  color: #5F5E5A;
  margin: 0 0 24px;
}
.content-widget p:last-child { margin: 0; }
.content-widget hr {
  border: none;
  border-top: 1px solid #e4eaf2;
  margin: 0 0 24px;
}

/* Products Collapse (About page) */
.products-collapse-wrapper {
  margin-top: 12px;
  border: 1px solid #dce5f0;
  border-radius: 10px;
  padding: 20px 24px;
  background: #fafbfd;
}
.products-collapse-wrapper .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid #dce5f0;
  border-radius: 999px;
  font-size: 13px;
  color: #2C2C2A;
  text-decoration: none;
}
.product-pill i { color: #185FA5; }
.btn-our-products {
  background: #185FA5;
  border-color: #185FA5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-wrapper,
.contact-wrapper * {
  font-family: 'Inter', sans-serif;
}
.contact-wrapper {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}
.contact-header {
  text-align: center;
  margin-bottom: 36px;
}
.contact-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.contact-header p {
  font-size: 14px;
  color: #64748b;
  font-weight: 400;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form-box h4,
.contact-info-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #334155;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
::placeholder { color: #aaa; }
.btn-send {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.btn-send:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220,38,38,0.25);
}
.contact-info-box {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 30px 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #444;
}
.info-icon { width: 20px; height: 20px; flex-shrink: 0; }
.info-icon.location { color: #ef4444; }
.info-icon.phone    { color: #22c55e; }
.info-icon.email    { color: #3b82f6; }
.alert-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alert-success .close {
  color: #065f46;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-form-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4eaf2;
  padding: 32px 36px;
}
.section-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.section-bar .bar-line {
  width: 28px;
  height: 3px;
  background: #4f46e5;
  border-radius: 2px;
  display: block;
}
.section-bar h5 {
  font-size: 17px;
  font-weight: 700;
  color: #1b1f3b;
  margin: 0;
}
.checkout-form-box input,
.checkout-form-box textarea,
.checkout-form-box select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dce5f0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  background: #fff;
}
.checkout-form-box label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}
.checkout-form-box textarea { resize: vertical; }
.btn-place-order {
  width: 100%;
  padding: 14px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
}

/* Order Summary Box */
.order-summary-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4eaf2;
  padding: 28px 24px;
}
.summary-product-name {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4eaf2;
}
.summary-product-name p:first-child { font-size: 13px; color: #888; margin: 0 0 4px; }
.summary-product-name p:last-child  { font-size: 14px; font-weight: 600; color: #1b1f3b; margin: 0; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.summary-row span:first-child { font-size: 13px; color: #555; }
.summary-row span:last-child  { font-size: 13px; color: #333; }
.summary-row.total-row {
  margin-bottom: 20px;
}
.summary-row.total-row span:first-child { font-size: 15px; font-weight: 700; color: #e53e3e; }
.summary-row.total-row span:last-child  { font-size: 17px; font-weight: 700; color: #e53e3e; }
.summary-divider {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4eaf2;
}
.cod-badge {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-section {
  background: #f7f9fc;
  padding: 40px 0 60px;
}
.thankyou-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
}
.thankyou-card .check-icon {
  width: 56px;
  height: 56px;
  background: #22c55e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.thankyou-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1b1f3b;
  margin: 0 0 10px;
}
.thankyou-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin: 0 0 24px;
}
.btn-back-shop {
  display: inline-block;
  padding: 12px 32px;
  background: #4f46e5;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
}
.thankyou-card .whatsapp-help {
  border-top: 1px solid #e4eaf2;
  padding-top: 18px;
}
.thankyou-card .whatsapp-help a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}