/* ============================================================
   ALISH PHARMACEUTICALS — pages.css
   Inner-page styles for: About · Blog · Blog Detail ·
   Contact · FAQ · Privacy Policy · Testimonials · Checkout
   
   Dependencies: Bootstrap 5, style.css, product.css
   Last Updated: June 2026
   ============================================================ */

/* ============================================================
   0. CSS VARIABLES
   ============================================================ */
:root {
  --p-brand        : #1a1145;
  --p-brand-mid    : #2B1776;
  --p-brand-light  : #f0edf9;
  --p-brand-border : #d8d0f5;
  --p-blue         : #1a5fa8;
  --p-blue-dark    : #134a86;
  --p-blue-light   : #e8f0fb;
  --p-gold         : #c49a28;
  --p-gold-light   : #fdf6e3;
  --p-dark         : #1e1e2e;
  --p-text         : #374151;
  --p-muted        : #6b7280;
  --p-border       : #e8edf5;
  --p-bg           : #f8f7fc;
  --p-white        : #ffffff;
  --p-success      : #0f6e56;
  --p-success-bg   : #e1f5ee;
  --p-radius-sm    : 10px;
  --p-radius-md    : 14px;
  --p-radius-lg    : 20px;
  --p-shadow-sm    : 0 2px 12px rgba(43,23,118,.06);
  --p-shadow-md    : 0 8px 28px rgba(43,23,118,.10);
  --p-shadow-lg    : 0 16px 48px rgba(43,23,118,.14);
  --p-transition   : .25s ease;
  --p-font-head    : 'Playfair Display', Georgia, serif;
  --p-font-body    : 'DM Sans', sans-serif;
}

/* ============================================================
   1. PAGE BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--p-brand) 0%, var(--p-brand-mid) 100%);
  padding: 72px 20px 68px;
  text-align: center;
  color: var(--p-white);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.06);
  top: -100px; right: -80px;
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  bottom: -70px; left: -50px;
  pointer-events: none;
}
.page-banner h1 {
  font-family: var(--p-font-head) !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 700 !important;
  color: var(--p-white) !important;
  margin-bottom: 14px !important;
  margin-top: 14px !important;
  letter-spacing: -.01em;
  position: relative;
}
.page-banner h1 .text-accent { color: var(--p-gold) !important; }
.page-banner p {
  font-family: var(--p-font-body);
  font-size: 15px;
  color: rgba(255,255,255,.7) !important;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.65;
  position: relative;
}
.banner-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.45);
  margin-bottom: 16px; letter-spacing: .06em; text-transform: uppercase;
  position: relative;
}
.banner-breadcrumb a   { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
.banner-breadcrumb a:hover { color: var(--p-gold); }
.banner-breadcrumb span { color: rgba(255,255,255,.22); }

/* ============================================================
   2. SHARED UTILITIES
   ============================================================ */
.section-tag {
  display: flex;
  justify-content: center;
  background: var(--p-brand-light);
  color: var(--p-brand-mid);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 14px;
}

/* ============================================================
   3. ABOUT PAGE
   ============================================================ */
.vm-card {
  background: var(--p-white);
  border-radius: var(--p-radius-lg);
  padding: 38px 32px;
  box-shadow: var(--p-shadow-md);
  height: 100%;
  border-top: 4px solid var(--p-brand-mid);
  transition: transform var(--p-transition), box-shadow var(--p-transition);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--p-shadow-lg); }
.vm-card .vm-icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--p-brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--p-brand-mid); margin-bottom: 20px;
}
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--p-border); }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item::before { content: ''; position: absolute; left: -24px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--p-brand-mid); border: 3px solid var(--p-white); box-shadow: 0 0 0 2px var(--p-brand-mid); }
.timeline-item .tl-year { display: inline-block; background: var(--p-brand-mid); color: var(--p-white); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 7px; }

/* ============================================================
   4. BLOG LISTING
   ============================================================ */
.insight-card {
  background: var(--p-white);
  border-radius: var(--p-radius-lg);
  overflow: hidden;
  box-shadow: var(--p-shadow-sm);
  height: 100%; display: flex; flex-direction: column;
  transition: transform var(--p-transition), box-shadow var(--p-transition);
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--p-shadow-md); }
.insight-img-wrap { position: relative; overflow: hidden; }
.insight-img-wrap img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform .5s ease; }
.insight-card:hover .insight-img-wrap img { transform: scale(1.05); }
.insight-category { position: absolute; top: 14px; left: 14px; background: var(--p-gold); color: var(--p-white); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; }
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-title { font-family: var(--p-font-head); font-size: 19px; font-weight: 700; color: var(--p-dark); margin-bottom: 10px; line-height: 1.4; }
.insight-link { color: var(--p-brand-mid); font-weight: 700; font-size: 13.5px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   5. BLOG DETAIL
   ============================================================ */
.blog-content-area { font-family: var(--p-font-body); color: var(--p-text); font-size: 1.1rem; line-height: 1.9; }
.blog-content-area p { margin-bottom: 1.7rem; text-align: justify; }
.blog-content-area h2 { font-family: var(--p-font-head); font-weight: 700; color: var(--p-dark); margin-top: 3.2rem; margin-bottom: 1.4rem; border-left: 5px solid var(--p-brand-mid); padding-left: 16px; font-size: 1.8rem; }
.blog-content-area h3 { font-family: var(--p-font-body); font-weight: 700; color: #1e293b; margin-top: 2.4rem; margin-bottom: 1.1rem; font-size: 1.35rem; }
.blog-content-area ul { padding-left: 22px; margin-bottom: 1.8rem; }
.blog-content-area li { margin-bottom: 10px; list-style-type: square; }
.takeaway-box { background: var(--p-brand-light); border-left: 4px solid var(--p-brand-mid); border-right: 4px solid var(--p-brand-mid); padding: 1.6rem; border-radius: var(--p-radius-sm); margin-bottom: 2.8rem; font-size: 1.05rem; color: #2d1a6e; }
.quote-box { background: var(--p-bg); border-left: 5px solid var(--p-gold); padding: 1.6rem; font-style: italic; margin: 2.8rem 0; font-size: 1.25rem; color: #1e293b; font-family: var(--p-font-head); font-weight: 500; border-radius: 0 var(--p-radius-sm) var(--p-radius-sm) 0; }

/* ============================================================
   6. CONTACT PAGE
   ============================================================ */
.info-card { background: var(--p-white); padding: 34px 26px; border-radius: var(--p-radius-lg); text-align: center; height: 100%; box-shadow: var(--p-shadow-md); border-bottom: 4px solid transparent; transition: all var(--p-transition); }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--p-shadow-lg); border-bottom-color: var(--p-brand-mid); }
.info-card i { width: 68px; height: 68px; line-height: 68px; border-radius: 50%; background: var(--p-brand-light); color: var(--p-brand-mid); font-size: 26px; margin-bottom: 18px; display: inline-block; }
.contact-form-card { background: var(--p-white); padding: 42px 38px; border-radius: var(--p-radius-lg); box-shadow: var(--p-shadow-md); }
.contact-form-card .form-control { height: 50px; border-radius: var(--p-radius-sm); border: 1.5px solid var(--p-border); font-size: 14px; }
.contact-form-card .form-control:focus { border-color: var(--p-brand-mid); box-shadow: 0 0 0 4px rgba(43,23,118,.1); }

/* ============================================================
   7. ★ FAQ PAGE — NEXT LEVEL DESIGN ★
   ============================================================ */

/* Hero */
.faq-hero {
  background: linear-gradient(135deg, var(--p-brand) 0%, var(--p-brand-mid) 100%);
  padding: 56px 32px 60px;
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.faq-hero::before {
  content: '';
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.07);
  top: -100px; right: -80px; pointer-events: none;
}
.faq-hero::after {
  content: '';
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  bottom: -60px; left: -40px; pointer-events: none;
}
.faq-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 18px; border-radius: 50px;
  margin-bottom: 14px; position: relative;
  backdrop-filter: blur(4px);
}
.faq-hero h1 {
  font-family: var(--p-font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700; color: #fff;
  margin-bottom: 10px; line-height: 1.15; position: relative;
}
.faq-hero h1 span { color: var(--p-gold); }
.faq-hero p { color: rgba(255,255,255,.7); font-size: 14px; max-width: 460px; margin: 0 auto; position: relative; }

/* Search bar */
.faq-search-section {
  background: var(--p-white);
  padding: 24px 24px 0;
  border-bottom: 1px solid var(--p-border);
}
.faq-search-wrap {
  max-width: 560px;
  margin: 0 auto 20px;
  position: relative;
}
.faq-search-wrap input {
  width: 100%;
  padding: 13px 50px 13px 20px;
  border: 2px solid var(--p-border);
  border-radius: 50px;
  font-family: var(--p-font-body);
  font-size: 14px; outline: none;
  background: var(--p-bg);
  color: var(--p-dark);
  transition: border-color .2s, box-shadow .2s;
}
.faq-search-wrap input:focus {
  border-color: var(--p-brand-mid);
  box-shadow: 0 0 0 4px rgba(43,23,118,.08);
  background: var(--p-white);
}
.faq-search-wrap .search-icon {
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--p-muted); font-size: 16px;
}

/* Category filter pills */
.faq-cats {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px 20px;
  background: var(--p-white);
}
.faq-cat {
  padding: 6px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--p-border);
  background: var(--p-white);
  font-family: var(--p-font-body);
  font-size: 12.5px; font-weight: 600;
  color: var(--p-muted); cursor: pointer;
  transition: all .18s;
}
.faq-cat:hover,
.faq-cat.active {
  background: var(--p-brand-mid);
  color: #fff; border-color: var(--p-brand-mid);
  box-shadow: 0 4px 12px rgba(43,23,118,.22);
}

/* FAQ body area */
.faq-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

/* Group label */
.faq-group-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--p-brand-mid);
  padding: 0 0 10px 4px; margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.faq-group-label::after {
  content: ''; flex: 1;
  height: 1px; background: var(--p-border);
}

/* FAQ accordion items */
.faq-item {
  background: var(--p-white);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow .22s, border-color .22s;
}
.faq-item:hover {
  box-shadow: var(--p-shadow-sm);
}
.faq-item.open {
  border-color: var(--p-brand-border);
  box-shadow: 0 4px 20px rgba(43,23,118,.1);
}

/* Question row */
.faq-q {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  cursor: pointer; user-select: none;
}
.faq-q-num {
  min-width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--p-brand-light);
  color: var(--p-brand-mid);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .22s, color .22s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-num {
  background: var(--p-brand-mid); color: #fff;
}
.faq-q-text {
  flex: 1;
  font-weight: 600; font-size: 14.5px;
  color: var(--p-dark); line-height: 1.4;
}
.faq-item.open .faq-q-text { color: var(--p-brand-mid); }
.faq-toggle {
  font-size: 20px; color: var(--p-muted);
  font-weight: 300; line-height: 1;
  transition: transform .22s, color .22s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--p-brand-mid);
}

/* Answer */
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .22s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 20px 64px;
}
.faq-a p {
  font-size: 13.5px; color: var(--p-muted);
  line-height: 1.8; margin: 0;
}
.faq-a-tag {
  display: inline-block;
  background: var(--p-success-bg);
  color: var(--p-success);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-top: 10px;
}

/* Empty state */
.faq-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--p-muted);
  font-size: 14px;
}
.faq-empty i {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  color: var(--p-border);
}

/* Still have questions CTA */
.faq-cta {
  background: linear-gradient(135deg, var(--p-gold-light), #fff9ee);
  border: 1px solid #f0d890;
  border-radius: var(--p-radius-md);
  padding: 28px 24px;
  text-align: center;
  margin-top: 8px;
}
.faq-cta p {
  font-size: 14px; color: #7a6020;
  margin-bottom: 14px;
}
.faq-cta-btn {
  display: inline-block;
  background: var(--p-gold); color: #fff;
  font-family: var(--p-font-body);
  font-weight: 700; font-size: 13.5px;
  padding: 11px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .18s, transform .15s;
}
.faq-cta-btn:hover {
  background: #b08822; color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   8. ★ PRIVACY POLICY PAGE — NEXT LEVEL DESIGN ★
   ============================================================ */

/* Hero */
.priv-hero {
  background: linear-gradient(135deg, var(--p-brand) 0%, #3d2b8a 100%);
  padding: 56px 32px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.priv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.015) 0,
    rgba(255,255,255,.015) 1px,
    transparent 1px,
    transparent 10px
  );
  pointer-events: none;
}
.priv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 18px; border-radius: 50px;
  margin-bottom: 14px; position: relative;
}
.priv-badge i { font-size: 14px; }
.priv-hero h1 {
  font-family: var(--p-font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700; color: #fff;
  margin-bottom: 10px; position: relative;
}
.priv-hero p { color: rgba(255,255,255,.65); font-size: 13.5px; position: relative; }
.priv-meta {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 16px; flex-wrap: wrap; position: relative;
}
.priv-meta-pill {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  font-size: 11px; font-weight: 500;
  padding: 4px 14px; border-radius: 50px;
}

/* Table of Contents */
.priv-toc {
  background: var(--p-white);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-md);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.priv-toc-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--p-brand-mid);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.priv-toc-title::after {
  content: ''; flex: 1;
  height: 1px; background: var(--p-border);
}
.priv-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}
.priv-toc-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  color: var(--p-dark);
  transition: background .16s, color .16s;
}
.priv-toc-link:hover {
  background: var(--p-brand-light);
  color: var(--p-brand-mid);
}
.priv-toc-num {
  min-width: 24px; height: 24px;
  background: var(--p-brand-light);
  color: var(--p-brand-mid);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}

/* Section cards */
.priv-section {
  background: var(--p-white);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow .22s;
}
.priv-section:hover { box-shadow: var(--p-shadow-sm); }

.priv-sec-head {
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--p-border);
  background: var(--p-white);
}
.priv-sec-icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--p-brand-light); color: var(--p-brand-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.priv-sec-head h3 {
  font-family: var(--p-font-head);
  font-size: 16.5px; font-weight: 700;
  color: var(--p-dark); flex: 1;
}
.priv-sec-num {
  font-size: 10px; font-weight: 700;
  color: var(--p-brand-mid);
  background: var(--p-brand-light);
  padding: 3px 10px; border-radius: 20px;
}

.priv-sec-body {
  padding: 20px 22px;
  font-size: 13.5px; color: var(--p-muted);
  line-height: 1.85;
}
.priv-sec-body p { margin-bottom: 12px; }
.priv-sec-body p:last-child { margin-bottom: 0; }

/* Highlight info box */
.priv-highlight {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--p-brand-light);
  border-radius: 10px;
  padding: 13px 16px;
  margin-top: 12px;
}
.priv-highlight i {
  font-size: 16px; color: var(--p-brand-mid);
  margin-top: 1px; flex-shrink: 0;
}
.priv-highlight p {
  font-size: 13px !important;
  color: var(--p-brand-mid) !important;
  margin: 0 !important;
  font-weight: 500;
}

/* Chips */
.priv-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 12px;
}
.priv-chip {
  background: var(--p-bg);
  border: 1px solid var(--p-border);
  color: var(--p-dark);
  font-family: var(--p-font-body);
  font-size: 12px; font-weight: 500;
  padding: 4px 13px; border-radius: 50px;
}

/* Contact CTA box */
.priv-contact-box {
  background: linear-gradient(135deg, var(--p-brand-light) 0%, #fff 100%);
  border: 1px solid var(--p-brand-border);
  border-radius: var(--p-radius-md);
  padding: 28px 24px;
  margin-top: 20px;
  text-align: center;
}
.priv-contact-box h4 {
  font-family: var(--p-font-head);
  font-size: 19px; font-weight: 700;
  color: var(--p-brand-mid);
  margin-bottom: 8px;
}
.priv-contact-box p {
  font-size: 13.5px; color: var(--p-muted);
  margin-bottom: 16px;
}
.priv-contact-btn {
  display: inline-block;
  background: var(--p-brand-mid); color: #fff;
  font-family: var(--p-font-body);
  font-weight: 700; font-size: 13.5px;
  padding: 11px 28px; border-radius: 50px;
  text-decoration: none;
  transition: background .18s, transform .15s;
}
.priv-contact-btn:hover {
  background: var(--p-brand); color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   9. ACCORDION (General, non-FAQ)
   ============================================================ */
.accordion-item { border: none; border-radius: var(--p-radius-md) !important; margin-bottom: 12px; box-shadow: var(--p-shadow-sm); overflow: hidden; }
.accordion-button { font-family: var(--p-font-body); font-weight: 600; font-size: 15px; color: var(--p-dark); background: var(--p-white); padding: 20px 26px; }
.accordion-button:not(.collapsed) { color: var(--p-brand-mid); background: var(--p-brand-light); }
.accordion-button:focus { box-shadow: none; }

/* ============================================================
   10. TESTIMONIALS
   ============================================================ */
.testimonial-card { background: var(--p-white); border-radius: var(--p-radius-lg); padding: 34px 30px; height: 100%; box-shadow: var(--p-shadow-sm); transition: all var(--p-transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--p-shadow-md); }

/* ============================================================
   11. NAV CART
   ============================================================ */
/* .nav-cart-btn {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--p-brand-light); color: var(--p-brand-mid);
  padding: 8px 14px; border-radius: 30px;
  text-decoration: none; font-weight: 600;
  border: 1px solid var(--p-brand-border);
  transition: all var(--p-transition);
}
.nav-cart-btn:hover { background: var(--p-brand-mid); color: var(--p-white); }
.cart-count {
  background: #e74c3c; color: var(--p-white) !important;
  font-size: .7rem; font-weight: 700;
  border-radius: 50%; padding: 2px 6px;
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; text-align: center;
} */

/* ============================================================
   12. CHECKOUT PAGE
   ============================================================ */
.checkout-card, .summary-card {
  background: var(--p-white);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-md);
  padding: 30px;
  box-shadow: var(--p-shadow-sm);
}
.summary-card { background: var(--p-bg); position: sticky; top: 100px; }
.checkout-title { font-family: var(--p-font-head); font-weight: 700; color: var(--p-dark); margin-bottom: 22px; border-bottom: 2px solid var(--p-border); padding-bottom: 12px; }
.checkout-title i { color: var(--p-brand-mid); }
.checkout-card .form-label { font-family: var(--p-font-body); font-weight: 600; color: var(--p-text); font-size: 13.5px; margin-bottom: 6px; }
.checkout-card .form-control { border: 1px solid var(--p-border); padding: 11px 14px; border-radius: var(--p-radius-sm); font-size: 14px; transition: all var(--p-transition); height: auto; }
.checkout-card .form-control:focus { border-color: var(--p-brand-mid); box-shadow: 0 0 0 3px rgba(43,23,118,.12); }
.optional-text { font-size: 11px; color: var(--p-muted); font-weight: 400; }
.btn-checkout-submit { background: var(--p-brand-mid); color: var(--p-white); font-family: var(--p-font-body); font-weight: 700; padding: 14px; border: none; border-radius: var(--p-radius-sm); font-size: 15px; transition: all var(--p-transition); width: 100%; }
.btn-checkout-submit:hover { background: var(--p-brand); color: var(--p-white); transform: translateY(-1px); }
.checkout-items-list { max-height: 280px; overflow-y: auto; padding-right: 6px; }
.calc-row { display: flex; justify-content: space-between; font-family: var(--p-font-body); font-size: 13.5px; color: var(--p-muted); margin-bottom: 9px; }
.total-row { border-top: 1px solid var(--p-border); color: var(--p-dark); }
.total-row h5 { font-weight: 700; margin: 0; }
.total-row h4 { font-family: var(--p-font-head); font-weight: 700; color: var(--p-brand-mid); margin: 0; }
.pharma-disclaimer { background: var(--p-brand-light); border-left: 4px solid var(--p-brand-mid); padding: 14px 16px; font-size: 13px; color: #2d1a6e; line-height: 1.6; border-radius: 0 var(--p-radius-sm) var(--p-radius-sm) 0; }

/* ============================================================
   13. BLOG FAQ CARD (inside articles)
   ============================================================ */
.faq-card { background: var(--p-white); border: 1px solid var(--p-border); border-radius: var(--p-radius-md); padding: 20px 22px; margin-bottom: 14px; box-shadow: var(--p-shadow-sm); transition: box-shadow var(--p-transition); }
.faq-card:hover { box-shadow: var(--p-shadow-md); }
.faq-card h5 { font-size: 15px; margin-bottom: 8px; color: var(--p-brand-mid); font-weight: 700; }

/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .contact-form-card    { padding: 28px 22px; }
  .blog-content-area    { font-size: 1rem; }
  .blog-content-area h2 { font-size: 1.55rem; margin-top: 2.4rem; }
  .summary-card         { position: static; }
  .faq-item.open .faq-a { padding: 0 16px 16px 52px; }
   .insight-img-wrap img { height: 200px; }
  
}
@media (max-width: 767px) {
  .page-banner          { padding: 54px 16px; }
  .faq-hero             { padding: 44px 20px 48px; }
  .priv-hero            { padding: 44px 20px 48px; }
  .blog-content-area h2 { font-size: 1.35rem; padding-left: 12px; }
  .takeaway-box,
  .quote-box            { padding: 1.2rem; margin: 1.8rem 0; font-size: 1.05rem; }
  .checkout-card,
  .summary-card         { padding: 20px; }
  .priv-toc-grid        { grid-template-columns: 1fr; }
  .faq-body             { padding: 24px 16px 40px; }
  .insight-img-wrap { position: relative; overflow: hidden; }
.insight-img-wrap img { width: 100%; height: 150px; object-fit: cover; display: block; transition: transform .5s ease; }
}
@media (max-width: 480px) {
  .insight-img-wrap img { height: 160px; }
}

/* ============================================================
   CHECKOUT PAGE STYLES
   Add this to your /css/pages.css file
============================================================ */

.checkout-section {
  background-color: var(--p-bg);
}

.checkout-content {
  max-width: 1100px;
  margin: 0 auto;
}

/* Checkout Grid Layout */
.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Checkout Form Card */
.checkout-card {
  background: var(--p-white);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-md);
  padding: 30px;
  box-shadow: var(--p-shadow-sm);
}

.checkout-card h3 {
  color: var(--p-brand-mid);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Form Elements */
.checkout-card .form-label {
  font-weight: 600;
  color: var(--p-dark);
  font-size: 13px;
  margin-bottom: 6px;
}

.checkout-card .form-control,
.checkout-card .form-select {
  padding: 10px 12px;
  border: 1px solid var(--p-border);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.checkout-card .form-control:focus,
.checkout-card .form-select:focus {
  border-color: var(--p-brand-mid);
  box-shadow: 0 0 0 3px rgba(43, 23, 118, 0.1);
  outline: none;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .checkout-form-row {
    grid-template-columns: 1fr;
  }
}

/* Summary Card */
.summary-card {
  background: var(--p-white);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius-md);
  padding: 30px;
  box-shadow: var(--p-shadow-sm);
  height: fit-content;
  position: sticky;
  top: 100px;
}

@media (max-width: 768px) {
  .summary-card {
    position: static;
  }
}

.summary-card h3 {
  color: var(--p-brand-mid);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Order Items List */
.checkout-items-list {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 8px;
}

.checkout-item-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--p-border);
  font-size: 13px;
}

.checkout-item-row:last-child {
  border-bottom: none;
}

.checkout-item-name {
  color: var(--p-dark);
  flex: 1;
}

.checkout-item-qty {
  color: var(--p-muted);
  margin: 0 10px;
  font-size: 12px;
}

.checkout-item-price {
  color: var(--p-dark);
  font-weight: 600;
  text-align: right;
  min-width: 70px;
}

/* Summary Calculation */
.summary-divider {
  height: 1px;
  background: var(--p-border);
  margin: 16px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  color: var(--p-muted);
}

.summary-row.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--p-brand-mid);
  padding: 12px 0;
}

.summary-row.total .amount {
  color: var(--p-brand-mid);
}

/* Buttons */
.btn-checkout-submit {
  width: 100%;
  background: var(--p-brand-mid);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-checkout-submit:hover {
  background: var(--p-brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 23, 118, 0.2);
}

.btn-checkout-submit:active {
  transform: translateY(0);
}

/* Empty Cart State */
.checkout-empty {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--p-border);
}

.checkout-empty i {
  font-size: 64px;
  color: var(--p-border);
  margin-bottom: 20px;
}

.checkout-empty p {
  color: var(--p-muted);
  margin-bottom: 20px;
}

.checkout-empty a {
  display: inline-block;
  background: var(--p-brand-mid);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.checkout-empty a:hover {
  background: var(--p-brand);
}

/* Success Modal */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

.success-modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.success-content {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  z-index: 1051;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
  font-size: 48px;
  color: var(--p-success);
  margin-bottom: 16px;
}

.success-content h2 {
  color: var(--p-dark);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.success-content p {
  color: var(--p-muted);
  margin-bottom: 12px;
  font-size: 14px;
}

.success-email-note {
  font-size: 12px !important;
  color: var(--p-muted) !important;
}

.order-id {
  background: var(--p-brand-light);
  padding: 12px;
  border-radius: 6px;
  margin: 16px 0;
  color: var(--p-brand-mid);
  font-weight: 700;
  font-family: monospace;
}

.close-success-btn {
  background: var(--p-brand-mid);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.close-success-btn:hover {
  background: var(--p-brand);
}

/* Disclaimer Box */
.checkout-disclaimer {
  background: var(--p-brand-light);
  padding: 12px;
  border-left: 4px solid var(--p-brand-mid);
  border-radius: 4px;
  font-size: 12px;
  color: var(--p-brand-mid);
  margin-bottom: 20px;
}

/* Coupon Section */
.coupon-section {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.coupon-section input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--p-border);
  border-radius: 6px;
  font-size: 13px;
}

.coupon-section button {
  padding: 10px 16px;
  background: var(--p-brand-light);
  color: var(--p-brand-mid);
  border: 1px solid var(--p-brand-mid);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.coupon-section button:hover {
  background: var(--p-brand-mid);
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .checkout-card {
    padding: 20px;
  }

  .summary-card {
    padding: 20px;
  }

  .checkout-card h3,
  .summary-card h3 {
    font-size: 16px;
  }

  .success-content {
    padding: 30px 20px;
  }
}




