/*
Theme Name: My Custom Theme
Author: Deepak
Description: Custom theme with a custom home page.
Version: 1.1
Text Domain: mytheme
*/

@font-face {
  font-family: 'Arabian OneNightStand';
  src: url('assets/fonts/XXII-ARABIAN-ONENIGHTSTAND.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #14100b;
  --dark-soft: #1e1812;
  --gold: #d9a94e;
  --gold-bright: #eebd54;
  --cream: #f3e9d8;
  --text-muted: #cfc4b2;

  /* Product page theme (default: warm brown, e.g. Cinnamon Tea) */
  --pp-bg: #26100a;
  --pp-overlay: 18, 9, 4;
  --pp-glow-top: rgba(90, 30, 12, 0.55);
  --pp-glow: rgba(110, 40, 16, 0.45);
  --pp-glow-soft: rgba(110, 40, 16, 0.4);
  --pp-glow-faint: rgba(110, 40, 16, 0.35);
  --pp-card-end: rgba(28, 11, 5, 0.75);
  --pp-card-end-soft: rgba(28, 11, 5, 0.7);
}

.product-green-tea {
  --pp-bg: #0d2117;
  --pp-overlay: 6, 20, 13;
  --pp-glow-top: rgba(24, 110, 68, 0.5);
  --pp-glow: rgba(28, 122, 71, 0.4);
  --pp-glow-soft: rgba(28, 122, 71, 0.32);
  --pp-glow-faint: rgba(28, 122, 71, 0.28);
  --pp-card-end: rgba(6, 20, 14, 0.8);
  --pp-card-end-soft: rgba(6, 20, 14, 0.75);
}

.product-black-tea {
  --pp-bg: #0a1220;
  --pp-overlay: 7, 12, 22;
  --pp-glow-top: rgba(35, 70, 130, 0.5);
  --pp-glow: rgba(40, 80, 145, 0.4);
  --pp-glow-soft: rgba(40, 80, 145, 0.32);
  --pp-glow-faint: rgba(40, 80, 145, 0.28);
  --pp-card-end: rgba(6, 10, 20, 0.8);
  --pp-card-end-soft: rgba(6, 10, 20, 0.75);
}

.product-cardamom-tea {
  --pp-bg: #16210c;
  --pp-overlay: 10, 16, 6;
  --pp-glow-top: rgba(94, 122, 30, 0.5);
  --pp-glow: rgba(104, 132, 34, 0.4);
  --pp-glow-soft: rgba(104, 132, 34, 0.32);
  --pp-glow-faint: rgba(104, 132, 34, 0.28);
  --pp-card-end: rgba(9, 14, 5, 0.8);
  --pp-card-end-soft: rgba(9, 14, 5, 0.75);
}

.product-saffron-tea {
  --pp-bg: #1c1206;
  --pp-overlay: 20, 12, 4;
  --pp-glow-top: rgba(150, 95, 15, 0.5);
  --pp-glow: rgba(165, 105, 20, 0.4);
  --pp-glow-soft: rgba(165, 105, 20, 0.32);
  --pp-glow-faint: rgba(165, 105, 20, 0.28);
  --pp-card-end: rgba(14, 8, 3, 0.8);
  --pp-card-end-soft: rgba(14, 8, 3, 0.75);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--cream);
  background: var(--dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header: floating pill nav over the hero ---- */
.site-header {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 32px;
}

.header-bar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 36px;
  background: rgba(12, 9, 5, 0.82);
  border: 1px solid rgba(217, 169, 78, 0.25);
  border-radius: 40px;
  backdrop-filter: blur(6px);
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  text-decoration: none;
}

.logo-fa {
  font-family: 'Aref Ruqaa', serif;
  font-size: 2rem;
  color: var(--gold-bright);
}

.logo-en {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  font-family: 'Arabian OneNightStand', 'Aref Ruqaa', serif;
  font-size: 1.15rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero (Home Page) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../../uploads/2026/07/hero-bg.png') center / cover no-repeat var(--dark);
  padding: 140px 0 80px;
}

/* subtle darkening so the text stays readable over the image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 9, 5, 0.55) 0%, rgba(12, 9, 5, 0.15) 55%, rgba(12, 9, 5, 0) 100%);
}

.hero .container {
  position: relative;
  width: 100%;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-family: 'Arabian OneNightStand', 'Aref Ruqaa', serif;
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 440px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-bright);
  color: #2b1d08;
}

.btn-gold:hover {
  background: #f6cd6e;
}

.btn-outline {
  border: 1px solid rgba(243, 233, 216, 0.5);
  color: var(--gold-bright);
  background: rgba(12, 9, 5, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
}

/* ---- Sections & Cards ---- */
.section {
  padding: 60px 0;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--gold-bright);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--dark-soft);
  border: 1px solid rgba(217, 169, 78, 0.18);
  padding: 24px;
  border-radius: 8px;
}

.card a {
  color: var(--cream);
  text-decoration: none;
}

.card a:hover {
  color: var(--gold-bright);
}

/* ---- Section labels & titles ---- */
.section-label {
  font-family: 'Arabian OneNightStand', 'Aref Ruqaa', serif;
  font-size: 1.5rem;
  text-align: center;
  color: #b8860b;
  margin-bottom: 4px;
}

.section-label::after {
  content: '';
  display: block;
  width: 180px;
  height: 1px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, transparent, #b8860b, transparent);
}

.section-label.gold {
  color: var(--gold-bright);
}

.section-label.gold::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
  color: #3b2a1a;
  margin-bottom: 48px;
}

.section-title.light {
  color: var(--cream);
}

/* ---- Our Story ---- */
.story-section {
  position: relative;
  background: url('../../uploads/2026/07/our-story-bg.png') center / cover #efe3cb;
  padding: 110px 0 110px;
  /* margin-top: 46px; */
}

/* ornate crown trim riding the top edge of the parchment */
/* .story-section::before {
  content: '';
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  height: 46px;
  background: url('assets/border-trim.png') bottom center repeat-x;
  background-size: auto 46px;
} */

.story-pendant {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
  z-index: 2;
}

.timeline-v {
  margin-top: 24px;
}

.tlv-marker {
  position: relative;
}

.tlv-icon {
  position: relative;
  z-index: 2;
  display: block;
  object-fit: contain;
}

.tlv-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #274a43;
  line-height: 1.3;
  margin-bottom: 6px;
}

.tlv-body p {
  font-size: 0.85rem;
  color: #6b5638;
}

/* ---- Mobile: connected vertical list (icon left, text right) ---- */
@media (max-width: 820px) {
  .timeline-v {
    max-width: 360px;
    margin: 24px auto 0;
  }

  .tlv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .tlv-item:not(:last-child) {
    padding-bottom: 30px;
  }

  .tlv-marker {
    flex: 0 0 52px;
    display: flex;
    justify-content: center;
  }

  .tlv-icon {
    width: 52px;
    height: 52px;
  }

  /* dashed connector running down to the next marker */
  .tlv-item:not(:last-child) .tlv-marker::after {
    content: '';
    position: absolute;
    top: 52px;
    bottom: 0;
    left: 50%;
    border-left: 2px dashed #a8875a;
    transform: translateX(-1px);
  }

  /* bead sitting at the midpoint of the connector */
  .tlv-item:not(:last-child) .tlv-marker::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: calc(50% + 26px);
    left: 50%;
    width: 16px;
    height: 16px;
    background: url('../../uploads/2026/07/Seperator-bullet.png') center / contain no-repeat;
    transform: translate(-50%, -50%);
  }

  .tlv-body {
    padding-top: 4px;
  }
}

/* ---- Desktop: horizontal row with a shared connecting line ---- */
@media (min-width: 821px) {
  .timeline-v {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    position: relative;
  }

  .timeline-v::before {
    content: '';
    position: absolute;
    top: 106px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: #8a6a3f;
  }

  .tlv-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tlv-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tlv-icon {
    height: 88px;
    width: auto;
    max-width: 76px;
    object-fit: contain;
    object-position: bottom center;
  }

  /* dot sitting on the shared horizontal line, below every icon */
  .tlv-marker::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('../../uploads/2026/07/Seperator-bullet.png') center / contain no-repeat;
    margin-top: 6px;
    margin-bottom: 14px;
  }

  .tlv-body p {
    max-width: 150px;
    margin: 0 auto;
  }
}

.journey-pill {
  display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    /* margin: 48px auto 0; */
    padding: 12px 26px;
    background: #205E69;
    border-radius: 32px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(14, 34, 51, 0.35);
    position: absolute;
    top: 96%;
    left: 50%;
    transform: translateX(-50%);
    /* height: 150px; */
    z-index: 2;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
}

.social-fb { background: #1877f2; }
.social-ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-x  { background: #fff; color: #000; border-radius: 50%; }

/* ---- Collection ---- */
.collection-section {
  background:
    linear-gradient(rgba(10, 22, 44, 0.55), rgba(10, 22, 44, 0.55)),
    url('../../uploads/2026/07/collection-bg.png') center / cover no-repeat;
  padding: 90px 0 80px;
}

.container-wide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-divider {
  height: 1px;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tea-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  padding: 48px 0;
}

.tea-card {
  position: relative;
  display: block;
  padding: 26px 18px 24px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  /* border: 1px solid rgba(217, 169, 78, 0.55); */
  transition: transform 0.2s, box-shadow 0.2s;
}

/* CSS-drawn corner brackets: sit on the crisp box edge, so the frame */
/* never crops or stretches unevenly the way a baked-in raster border would */
/* once the card's aspect ratio drifts away from the background image's own. */
/* .tea-card::before {
  content: '';
  position: absolute;
  inset: 7px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: top left, top left, top right, top right, bottom left, bottom left, bottom right, bottom right;
  background-image:
    linear-gradient(to right, var(--gold) 2px, transparent 2px),
    linear-gradient(to bottom, var(--gold) 2px, transparent 2px),
    linear-gradient(to left, var(--gold) 2px, transparent 2px),
    linear-gradient(to bottom, var(--gold) 2px, transparent 2px),
    linear-gradient(to right, var(--gold) 2px, transparent 2px),
    linear-gradient(to top, var(--gold) 2px, transparent 2px),
    linear-gradient(to left, var(--gold) 2px, transparent 2px),
    linear-gradient(to top, var(--gold) 2px, transparent 2px);
  pointer-events: none;
} */

.tea-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

/* Background art is zoomed past its own baked-in border/corners so that art */
/* is never left showing a partially-cropped edge; the CSS border above is the */
/* only frame the user sees, and it stays crisp at any card width or height. */
.tea-cinnamon { background: url('../../uploads/2026/07/cinnamon-tea-bg.png') center / 104% 104% no-repeat; }
.tea-black    { background: url('../../uploads/2026/07/black-tea-bg.png') center / 104% 104% no-repeat; }
.tea-cardamom { background: url('../../uploads/2026/07/Cardamom-tea-bg.png') center / 104% 104% no-repeat; }
.tea-saffron  { background: url('../../uploads/2026/07/Saffron-tea-bg.png') center / 104% 104% no-repeat; }
.tea-green    { background: url('../../uploads/2026/07/green-tea-bg.png') center / 104% 104% no-repeat; }

.tea-jar {
  width: 100%;
  max-width: 190px;
  /* margin-bottom: 14px; */
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.45));
}

.tea-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tea-card p {
  font-size: 0.78rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Crafted with Care ---- */
.craft-section {
  background: var(--dark);
  /* padding: 16px; */
}

.craft-panel {
  background: url('../../uploads/2026/07/Crafted-with-care-bg.png') center / cover #efe3cb;
  padding: 64px 0;
}

.craft-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.craft-intro {
  flex: 0 0 300px;
  padding-right: 40px;
  border-right: 1px solid #b8945f;
}

.craft-label {
  font-family: 'Arabian OneNightStand', 'Aref Ruqaa', serif;
  font-size: 1.35rem;
  color: #b8860b;
  margin-bottom: 6px;
}

.craft-intro h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  color: #3b2a1a;
  margin-bottom: 14px;
}

.craft-text {
  font-size: 0.82rem;
  color: #6b5638;
}

.craft-steps {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.craft-step {
  position: relative;
  flex: 1;
  text-align: center;
}

/* small dot between steps */
.craft-step + .craft-step::before {
  content: '';
  position: absolute;
  top: 34px;
  left: -6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b2a1a;
}

.craft-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.craft-step p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #4a3826;
}

/* ---- Partner with Us ---- */
.partner-section {
  position: relative;
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(32, 94, 105, 0.4), transparent 70%),
    linear-gradient(rgba(9, 17, 36, 0.72), rgba(9, 17, 36, 0.8)),
    url('../../uploads/2026/07/Partner-with-us-bg.png') center / cover no-repeat;
  padding: 90px 0 80px;
  overflow : hidden;
}

/* faint archway silhouette behind the content */
.partner-section::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  max-width: 90%;
  height: 130%;
  border-radius: 350px 350px 0 0;
  background: rgba(243, 233, 216, 0.04);
  border: 1px solid rgba(217, 169, 78, 0.14);
}

.partner-section .container {
  position: relative;
}

.partner-text {
  max-width: 460px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 48px 0 8px;
}

.partner-item {
  text-align: center;
}

.partner-icon {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.partner-item p {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

.partner-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.partner-cta::before,
.partner-cta::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---- Footer ---- */
.site-footer {
  background:
    linear-gradient(rgba(10, 16, 34, 0.85), rgba(10, 16, 34, 0.85)),
    url('../../uploads/2026/07/Footer-bg.png') center / cover no-repeat;
  color: var(--text-muted);
  padding: 64px 0 0;
  border-top: 1px solid rgba(217, 169, 78, 0.25);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand .site-logo {
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social .social {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.btn-contact {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright) !important;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: rgba(217, 169, 78, 0.15);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(217, 169, 78, 0.35);
  font-size: 0.78rem;
}

.foot-orn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(217, 169, 78, 0.5);
  border-radius: 50%;
  font-size: 0.6rem;
  color: var(--gold);
}

/* ---- Product Page ---- */
.product-hero {
  position: relative;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--pp-bg);
  padding: 150px 0 80px;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--pp-overlay), 0.9) 0%, rgba(var(--pp-overlay), 0.6) 42%, rgba(var(--pp-overlay), 0.15) 72%, rgba(var(--pp-overlay), 0) 100%);
}

.product-hero .container {
  position: relative;
}

.hero-product-cutout {
  position: absolute;
  right: 4%;
  bottom: 0;
  max-width: 44%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-bright);
}

.breadcrumb span {
  margin: 0 6px;
  color: var(--gold);
}

.breadcrumb .current {
  color: var(--gold-bright);
}

.product-hero-content {
  max-width: 560px;
}

.product-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.product-desc-short {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.product-features {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.feature-sep {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
}

.product-feature {
  text-align: center;
}

.feature-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  filter: sepia(0.7) saturate(1.4);
}

.product-feature p {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  max-width: 100px;
}

/* Shared product-page body (color set by --pp-* theme variables) */
.product-highlights,
.product-detail-section,
.quote-banner,
.product-specs-section,
.product-cta-section {
  background: var(--pp-bg);
}

/* ---- Highlights Cards ---- */
.product-highlights {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--pp-glow-top), transparent 70%),
    var(--pp-bg);
  padding: 70px 0 40px;
}

.highlights-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-item {
  text-align: center;
  padding: 30px 22px 26px;
  background: radial-gradient(circle at 50% 0%, var(--pp-glow), var(--pp-card-end));
  border: 1px solid rgba(217, 169, 78, 0.45);
  border-radius: 8px;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.3rem;
  filter: sepia(0.6) saturate(1.3);
}

.highlight-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---- About + Brewing Guide Cards ---- */
.product-detail-section {
  padding: 30px 0 40px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  align-items: stretch;
}

.detail-card {
  background: radial-gradient(circle at 50% 0%, var(--pp-glow-soft), var(--pp-card-end));
  border: 1px solid rgba(217, 169, 78, 0.45);
  border-radius: 8px;
  padding: 40px 36px;
}

.detail-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.35;
  margin-bottom: 14px;
}

.card-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
}

.about-photo-frame {
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(217, 169, 78, 0.4);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.about-photo {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.brew-card {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.brew-info {
  flex: 1.2;
}

.brew-photo {
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(217, 169, 78, 0.35);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.brew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brew-photo--contain {
  background: radial-gradient(circle at 50% 42%, var(--pp-glow-soft), var(--pp-card-end));
}

.brew-photo--contain img {
  width: 68%;
  height: 68%;
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
}

.brewing-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brewing-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-icon {
  flex: 0 0 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  filter: sepia(0.6) saturate(1.3);
}

.brewing-step h4 {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 3px;
}

.brewing-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- Quote Banner ---- */
.quote-banner {
  text-align: center;
  padding: 60px 20px 50px;
}

.quote-fa {
  font-family: 'Aref Ruqaa', serif;
  font-size: 2rem;
  color: var(--gold-bright);
  direction: rtl;
  margin-bottom: 14px;
}

.quote-en {
  font-family: 'Arabian OneNightStand', 'Aref Ruqaa', serif;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--gold);
}

/* ---- Product Details ---- */
.product-specs-section {
  padding: 40px 0 60px;
}

.specs-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-bright);
  margin-bottom: 32px;
}

.specs-panel {
  border: 1px solid rgba(217, 169, 78, 0.45);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 0%, var(--pp-glow-faint), var(--pp-card-end-soft));
  padding: 44px 28px;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.spec-item {
  text-align: center;
}

.spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  filter: sepia(1) saturate(1.6) brightness(1.1);
}

.spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.spec-value {
  font-size: 0.82rem;
  color: var(--cream);
}

/* ---- Product CTA ---- */
.product-cta-section {
  text-align: center;
  padding: 10px 20px 80px;
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .site-header {
    top: 16px;
    padding: 0 16px;
  }

  .header-bar {
    position: relative;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 30px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(12, 9, 5, 0.95);
    border: 1px solid rgba(217, 169, 78, 0.25);
    border-radius: 20px;
    padding: 22px 20px;
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hero {
    min-height: 70vh;
    padding: 110px 0 60px;
    background-image: url('../../uploads/2026/07/hero-bg-mobile.png');
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .story-pendant {
    height: 110px;
    top: -52px;
  }

  .journey-pill {
    flex-wrap: wrap;
    justify-content: center;
    width: 60%;
  }

  .craft-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .craft-intro {
    flex: none;
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid #b8945f;
    text-align: center;
  }

  .craft-steps {
    flex-wrap: wrap;
  }

  .craft-step {
    flex: 1 1 30%;
    margin-bottom: 18px;
  }

  .craft-step + .craft-step::before {
    display: none;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .product-hero {
    padding: 110px 0 50px;
    background-position: 70% center;
  }

  .product-hero-content {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .product-desc-short {
    margin-left: auto;
    margin-right: auto;
  }

  .product-features {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .brew-card {
    flex-direction: column;
  }

  .brew-photo {
    min-height: 220px;
    background-size: cover;
    background-position: center;
  }

  .product-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
