/* Olvera India — Product Verification Pages (Origin + D'oliva) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --cream: #FDF8F2;
  --cream-card: #F8F3EB;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-width: 1100px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* Origin — coffee brown + gold (matches mockup) */
.theme-origin {
  --primary: #3D271B;
  --primary-deep: #281910;
  --primary-soft: #5C3D2E;
  --accent: #C5A06B;
  --accent-light: #D4B48A;
  --accent-dark: #A0844E;
  --bg: #FDF8F2;
  --bg-soft: #F5EDE3;
  --text: #2A1A10;
  --text-muted: #7A6555;
  --table-stripe: #FBF7F2;
  --border: rgba(197, 160, 107, 0.38);
}

/* D'oliva — olive green + gold (matches brand logo) */
.theme-doliva {
  --primary: #474F2F;
  --primary-deep: #1E270A;
  --primary-soft: #60693E;
  --accent: #C5A46D;
  --accent-light: #D4C49A;
  --accent-dark: #9C8B56;
  --bg: #F7F5EF;
  --bg-soft: #F1EEE6;
  --text: #1A2210;
  --text-muted: #6E735F;
  --table-stripe: #F4F2EB;
  --border: rgba(156, 139, 86, 0.35);
}

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

html {
  scroll-behavior: smooth;
  min-width: 1024px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-width: 1024px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TOP HEADER ===== */
.site-header {
  background: var(--primary-deep);
  border-bottom: 2px solid var(--accent);
  position: relative;
  z-index: 5;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(280px, 1.3fr) minmax(220px, 1fr);
  align-items: center;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  line-height: 1;
}

.brand-mark-sub {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-logo {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

/* Black Origin wordmark → gold PNG used instead; keep no filter */
.theme-origin .header-logo {
  height: 44px;
  filter: none;
}

/* Full-color d'oliva logo on dark header */
.theme-doliva .header-logo {
  height: 56px;
  filter: none;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-brand-name {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.02em;
  line-height: 1;
}

.header-brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.header-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  min-width: 78px;
}

.header-feature-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.header-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.header-feature span {
  font-size: 0.48rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.header-verify {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  padding: 8px 10px;
  max-width: 260px;
}

.header-verify-qr {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  color: var(--accent-light);
}

.header-verify-qr svg {
  width: 46px;
  height: 46px;
}

.header-verify-text strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.header-verify-text p {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ===== HERO / PRODUCT ===== */
.product-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 28px 28px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.product-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.product-image-wrap img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.16));
}

.product-copy {
  min-width: 0;
}

.welcome-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.welcome-row::before,
.welcome-row::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.welcome-row span {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-line {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tag-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-light);
}

.details-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  position: relative;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}

.details-label {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  background: var(--white);
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.info-card-content label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.info-card-content .gtin,
.info-card-content .company-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

.info-card-content .company-address {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 2px;
}

/* ===== FEATURES RIBBON ===== */
.features-bar {
  max-width: var(--max-width);
  margin: 8px auto 36px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.feature-item h4 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== MANUFACTURER ===== */
.manufacturer-section {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  padding: 4px 12px 18px;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--accent);
}

.section-ornament::before,
.section-ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.section-ornament svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

.section-header p strong {
  color: var(--primary);
  font-weight: 700;
}

.table-wrap {
  overflow: hidden;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.manufacturer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
  min-width: 720px;
}

.manufacturer-table thead {
  background: var(--primary-deep);
}

.manufacturer-table th {
  padding: 13px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  font-size: 0.62rem;
  text-transform: uppercase;
  vertical-align: middle;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.manufacturer-table th:last-child { border-right: none; }

.th-inner {
  display: flex;
  align-items: center;
  gap: 7px;
}

.th-inner svg {
  width: 15px;
  height: 15px;
  fill: var(--accent-light);
  flex-shrink: 0;
}

.th-fssai-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.manufacturer-table th:nth-child(1),
.manufacturer-table td:nth-child(1) { width: 16%; }
.manufacturer-table th:nth-child(2),
.manufacturer-table td:nth-child(2) { width: 24%; }
.manufacturer-table th:nth-child(3),
.manufacturer-table td:nth-child(3) { width: 40%; }
.manufacturer-table th:nth-child(4),
.manufacturer-table td:nth-child(4) { width: 20%; }

.manufacturer-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
  line-height: 1.5;
  font-weight: 500;
  background: var(--white);
}

.manufacturer-table td:last-child { border-right: none; }
.manufacturer-table tbody tr:last-child td { border-bottom: none; }
.manufacturer-table td:first-child { text-align: center; }
.manufacturer-table tbody tr:nth-child(even) td { background: var(--table-stripe); }

.mfg-code {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.45rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.mfg-name {
  display: block;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.mfg-address {
  display: block;
  font-size: 0.68rem;
  color: var(--primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.fssai-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.fssai-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.fssai-number {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-bar .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.trust-bar .trust-item:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.trust-bar .trust-item:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.trust-bar .trust-item:not(:last-child) {
  border-right: none;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.trust-item h4 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.66rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.trust-item a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-deep);
  padding: 20px 28px;
  border-top: 2px solid var(--accent);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  line-height: 1.3;
  padding-right: 18px;
}

.footer-divider,
.footer-contact-divider {
  width: 1px;
  height: 28px;
  background: rgba(193, 154, 107, 0.45);
  flex-shrink: 0;
}

.footer-contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  color: #fff;
  white-space: nowrap;
  padding: 0 16px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

/* ===== INDEX PAGE ===== */
.page-body { background: var(--bg); }

.home-hero {
  text-align: center;
  padding: 36px 24px 12px;
}

.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.home-hero p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 28px 8px;
}

.brand-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-section-header img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-card-image {
  background: var(--bg-soft);
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.product-card-image img {
  max-height: 200px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.product-card-body {
  padding: 16px 18px 20px;
  text-align: center;
}

.product-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.btn-view {
  display: inline-block;
  background: var(--primary-deep);
  color: var(--accent-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.btn-view:hover {
  background: var(--accent-dark);
  color: #fff;
}


/* ===== D'OLIVA — PIXEL PERFECT (match brand logo + mockup) ===== */
.theme-doliva {
  --primary: #474F2F;
  --primary-deep: #1E270A;
  --primary-soft: #60693E;
  --accent: #C5A46D;
  --accent-light: #D4C49A;
  --accent-dark: #9C8B56;
  --bg: #F7F5EF;
  --bg-soft: #F1EEE6;
  --text: #1A2210;
  --text-muted: #6E735F;
  --table-stripe: #F4F2EB;
  --border: rgba(156, 139, 86, 0.35);
}

body.theme-doliva {
  background: var(--bg);
  color: var(--text);
}

/* Header */
.theme-doliva .site-header {
  background: var(--primary-deep);
  border-bottom: 2px solid var(--accent-dark);
  min-height: 92px;
}

.theme-doliva .header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 28px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.theme-doliva .header-logo {
  height: 58px;
  max-width: 140px;
  filter: none;
}

.theme-doliva .brand-mark {
  gap: 4px;
  align-items: center;
}

.theme-doliva .brand-mark-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.22em;
  font-size: 0.46rem;
  margin-top: 0;
}

.theme-doliva .brand-mark-sub::before,
.theme-doliva .brand-mark-sub::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.theme-doliva .header-features {
  gap: 0;
  justify-content: center;
}

.theme-doliva .header-feature {
  min-width: 0;
  padding: 0 12px;
  gap: 5px;
}

.theme-doliva .header-feature:not(:last-child) {
  border-right: 1px solid rgba(197, 164, 109, 0.45);
  margin: 0;
  padding-right: 12px;
}

.theme-doliva .header-feature-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.theme-doliva .header-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.theme-doliva .header-feature span {
  font-size: 0.48rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
}

.theme-doliva .header-verify {
  border: 1px solid rgba(197, 164, 109, 0.55);
  border-radius: 6px;
  background: transparent;
  padding: 8px 12px;
  width: max-content;
  max-width: 240px;
  gap: 8px;
  justify-self: end;
  flex-shrink: 0;
}

.theme-doliva .header-verify-qr {
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.theme-doliva .header-verify-qr svg {
  width: 34px;
  height: 34px;
}

.theme-doliva .header-verify-text strong {
  color: #fff;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.theme-doliva .header-verify-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.48rem;
  line-height: 1.35;
}

/* Hero */
.theme-doliva .product-section {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 32px 8px;
  overflow: visible;
}

.theme-doliva .product-section::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 20px;
  width: 240px;
  height: 300px;
  background: url('../assets/doliva/bg-olives.svg') left center / contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.theme-doliva .product-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 8px 28px;
  align-items: start;
}

.theme-doliva .product-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding: 4px 0 0;
}

.theme-doliva .product-image-wrap img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 12px 24px rgba(30, 39, 10, 0.16));
}

.theme-doliva .product-copy {
  text-align: center;
  padding: 10px 12px 0 4px;
}

.theme-doliva .welcome-row {
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.theme-doliva .welcome-row::before,
.theme-doliva .welcome-row::after { display: none; content: none; }

.theme-doliva .welcome-row > span:not(.leaf) {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.28em;
}

.theme-doliva .welcome-row .leaf,
.theme-doliva .tagline-divider .leaf {
  width: 15px;
  height: 15px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-doliva .welcome-row .leaf svg,
.theme-doliva .tagline-divider .leaf svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.theme-doliva .product-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 8px;
  text-transform: none;
}

.theme-doliva .product-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.theme-doliva .tagline-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.theme-doliva .tagline-divider::before,
.theme-doliva .tagline-divider::after {
  content: '';
  width: 72px;
  height: 1px;
  background: var(--accent-dark);
}

.theme-doliva .product-tagline-text {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--primary-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.theme-doliva .details-card {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(156, 139, 86, 0.4);
  border-radius: 12px;
  padding: 22px 18px 14px;
  box-shadow: 0 4px 18px rgba(30, 39, 10, 0.05);
  margin-top: 2px;
}

.theme-doliva .details-label {
  top: -11px;
  left: 14px;
  background: var(--primary-deep);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.theme-doliva .info-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 11px 2px;
  gap: 14px;
  align-items: center;
}

.theme-doliva .info-card + .info-card {
  border-top: 1px solid rgba(156, 139, 86, 0.22);
  margin-top: 0;
  padding-top: 12px;
}

.theme-doliva .info-card-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent-dark);
  background: #fff;
}

.theme-doliva .info-card-icon svg {
  fill: var(--primary);
  color: var(--primary);
}

.theme-doliva .info-card-content label {
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 2px;
}

.theme-doliva .info-card-content .gtin,
.theme-doliva .info-card-content .company-name {
  font-size: 0.86rem;
  color: var(--text);
}

.theme-doliva .info-card-content .company-address {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Features — bordered bar, icon LEFT + text RIGHT (mockup) */
.theme-doliva .features-bar {
  max-width: 1000px;
  margin: 10px auto 28px;
  padding: 14px 6px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #FFFEFA;
  border: 1px solid rgba(156, 139, 86, 0.38);
  border-radius: 12px;
  box-sizing: border-box;
}

.theme-doliva .feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
  padding: 6px 14px;
  min-width: 0;
}

.theme-doliva .feature-item:not(:last-child) {
  border-right: 1px solid rgba(156, 139, 86, 0.3);
}

.theme-doliva .feature-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  background: transparent;
  box-shadow: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
}

.theme-doliva .feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-dark);
}

.theme-doliva .feature-item .feature-text {
  min-width: 0;
  flex: 1;
}

.theme-doliva .feature-item h4 {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  color: var(--primary);
  white-space: normal;
  line-height: 1.2;
}

.theme-doliva .feature-item p {
  font-size: 0.52rem;
  color: var(--text-muted);
  white-space: normal;
  line-height: 1.3;
}

/* Manufacturer */
.theme-doliva .manufacturer-section {
  max-width: 1060px;
  padding: 0 32px;
  margin: 0 auto 22px;
}

.theme-doliva .section-header {
  padding-bottom: 14px;
}

.theme-doliva .section-ornament {
  gap: 14px;
  margin-bottom: 6px;
}

.theme-doliva .section-ornament::before,
.theme-doliva .section-ornament::after {
  width: 52px;
  background: var(--accent);
}

.theme-doliva .section-ornament svg {
  fill: var(--accent);
  width: 15px;
  height: 15px;
}

.theme-doliva .section-header h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.22rem;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.theme-doliva .section-header p {
  font-size: 0.68rem;
  max-width: 620px;
}

.theme-doliva .table-wrap {
  border-radius: 8px;
  border: 1px solid rgba(156, 139, 86, 0.28);
  overflow: hidden;
}

.theme-doliva .manufacturer-table thead {
  background: var(--primary-deep);
}

.theme-doliva .manufacturer-table th {
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  padding: 11px 12px;
}

.theme-doliva .mfg-code {
  font-size: 1.4rem;
  color: var(--primary);
}

.theme-doliva .mfg-name {
  font-size: 0.7rem;
}

/* Trust */
.theme-doliva .trust-bar {
  max-width: 1060px;
  padding: 0 32px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.theme-doliva .trust-bar .trust-item {
  background: var(--bg-soft);
  border: 1px solid rgba(156, 139, 86, 0.22);
  padding: 18px 16px;
}

.theme-doliva .trust-bar .trust-item:first-child { border-radius: 8px 0 0 8px; }
.theme-doliva .trust-bar .trust-item:last-child { border-radius: 0 8px 8px 0; }
.theme-doliva .trust-bar .trust-item:not(:last-child) { border-right: none; }

.theme-doliva .trust-icon {
  border-color: var(--accent-dark);
}

.theme-doliva .trust-icon svg { fill: var(--primary); }

.theme-doliva .trust-item h4 {
  font-size: 0.64rem;
  color: var(--primary);
}

.theme-doliva .trust-item p {
  font-size: 0.62rem;
}

/* Footer */
.theme-doliva .site-footer {
  background: var(--primary-deep);
  border-top: 2px solid var(--accent-dark);
  padding: 14px 28px;
}

.theme-doliva .footer-brand-text {
  color: var(--accent-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.theme-doliva .footer-contact-item {
  font-size: 0.62rem;
}

.theme-doliva .footer-contact-item svg {
  fill: var(--accent);
}


/* ===== ORIGIN — PIXEL PERFECT (match mockup) ===== */
.theme-origin {
  --primary: #3D271B;
  --primary-deep: #281910;
  --primary-soft: #5C3D2E;
  --accent: #C5A06B;
  --accent-light: #D4B48A;
  --accent-dark: #A0844E;
  --bg: #FDF8F2;
  --bg-soft: #F5EDE3;
  --text: #2A1A10;
  --text-muted: #7A6555;
  --table-stripe: #FBF7F2;
  --border: rgba(197, 160, 107, 0.38);
}

body.theme-origin {
  background: var(--bg);
  color: var(--text);
}

/* Header */
.theme-origin .site-header {
  background: var(--primary-deep);
  border-bottom: 3px solid var(--accent-dark);
  min-height: 92px;
}

.theme-origin .header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 26px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.theme-origin .header-logo {
  height: 42px;
  max-width: 160px;
  filter: none;
}

.theme-origin .brand-mark {
  gap: 5px;
  align-items: center;
}

.theme-origin .brand-mark-sub {
  color: var(--accent-light);
  letter-spacing: 0.2em;
  font-size: 0.48rem;
  font-weight: 600;
}

.theme-origin .header-features {
  gap: 0;
  justify-content: center;
}

.theme-origin .header-feature {
  min-width: 0;
  padding: 0 16px;
  gap: 5px;
}

.theme-origin .header-feature:not(:last-child) {
  border-right: 1px solid rgba(197, 160, 107, 0.4);
  margin: 0;
  padding-right: 16px;
}

.theme-origin .header-feature-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.theme-origin .header-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.theme-origin .header-feature span {
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.theme-origin .header-verify {
  border: 1px solid rgba(197, 160, 107, 0.65);
  border-radius: 6px;
  background: transparent;
  padding: 8px 12px;
  max-width: 260px;
  gap: 10px;
  justify-self: end;
  flex-shrink: 0;
}

.theme-origin .header-verify-qr {
  width: 42px;
  height: 42px;
  color: #fff;
  flex-shrink: 0;
}

.theme-origin .header-verify-qr svg {
  width: 42px;
  height: 42px;
}

.theme-origin .header-verify-text strong {
  color: var(--accent-light);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.theme-origin .header-verify-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.48rem;
  line-height: 1.35;
}

/* Hero */
.theme-origin .product-section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 34px 32px 10px;
}

.theme-origin .product-showcase {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 20px 36px;
  align-items: center;
}

.theme-origin .product-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.theme-origin .product-image-wrap img {
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 18px 32px rgba(40, 25, 16, 0.18));
}

.theme-origin .product-copy {
  text-align: center;
  padding: 8px 8px 0 0;
}

.theme-origin .welcome-row {
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.theme-origin .welcome-row::before,
.theme-origin .welcome-row::after {
  width: 36px;
  height: 1px;
  background: var(--primary);
}

.theme-origin .welcome-row span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.28em;
}

.theme-origin .product-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.theme-origin .product-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.theme-origin .tagline-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.theme-origin .tagline-divider::before,
.theme-origin .tagline-divider::after {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--accent-dark);
}

.theme-origin .tagline-divider .bean {
  width: 14px;
  height: 14px;
  color: var(--primary);
  display: inline-flex;
}

.theme-origin .tagline-divider .bean svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.theme-origin .tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-deep);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px 10px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 auto 22px;
  max-width: 100%;
}

.theme-origin .tag-pill .pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-origin .tag-pill .pill-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-deep);
}

.theme-origin .tag-pill > svg {
  display: none;
}

.theme-origin .info-cards {
  gap: 12px;
  text-align: left;
}

.theme-origin .info-card {
  background: #F8F2EA;
  border: 1px solid rgba(197, 160, 107, 0.42);
  border-radius: 12px;
  padding: 14px 16px;
  gap: 14px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(40, 25, 16, 0.04);
}

.theme-origin .info-card-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent-dark);
  background: #fff;
}

.theme-origin .info-card-icon svg {
  fill: var(--primary);
  color: var(--primary);
}

.theme-origin .info-card-content label {
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.theme-origin .info-card-content .gtin,
.theme-origin .info-card-content .company-name {
  font-size: 0.88rem;
  color: var(--primary-deep);
}

.theme-origin .info-card-content .company-address {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Manufacturer */
.theme-origin .manufacturer-section {
  max-width: 1060px;
  padding: 8px 32px 0;
  margin: 0 auto 20px;
}

.theme-origin .section-header {
  padding-bottom: 16px;
}

.theme-origin .section-ornament {
  gap: 12px;
  margin-bottom: 8px;
}

.theme-origin .section-ornament::before,
.theme-origin .section-ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.theme-origin .section-ornament svg {
  fill: var(--accent);
  width: 16px;
  height: 16px;
}

.theme-origin .section-header h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  letter-spacing: 0.12em;
  color: var(--primary-deep);
  font-weight: 700;
}

.theme-origin .section-header p {
  font-size: 0.7rem;
  max-width: 640px;
  margin: 8px auto 0;
  color: var(--text-muted);
}

.theme-origin .table-wrap {
  border-radius: 10px;
  border: 1px solid rgba(197, 160, 107, 0.28);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(40, 25, 16, 0.04);
}

.theme-origin .manufacturer-table thead {
  background: var(--primary-deep);
}

.theme-origin .manufacturer-table th {
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  padding: 12px 14px;
  color: #fff;
}

.theme-origin .th-inner svg {
  fill: var(--accent-light);
}

.theme-origin .manufacturer-table td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(197, 160, 107, 0.18);
}

.theme-origin .manufacturer-table tbody tr:nth-child(even) {
  background: var(--table-stripe);
}

.theme-origin .mfg-code {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.theme-origin .mfg-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.theme-origin .mfg-address {
  font-size: 0.68rem;
  color: var(--text);
  line-height: 1.45;
}

/* Features — cream rounded bar, solid brown icons */
.theme-origin .features-bar {
  max-width: 1060px;
  margin: 8px auto 28px;
  padding: 18px 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #F6EFE6;
  border: 1px solid rgba(197, 160, 107, 0.35);
  border-radius: 14px;
  box-sizing: border-box;
}

.theme-origin .feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 6px 14px;
  min-width: 0;
}

.theme-origin .feature-item:not(:last-child) {
  border-right: 1px dashed rgba(197, 160, 107, 0.55);
}

.theme-origin .feature-icon {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--primary-deep);
  box-shadow: none;
  border-radius: 50%;
  flex-shrink: 0;
}

.theme-origin .feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-light);
  color: var(--accent-light);
}

.theme-origin .feature-item .feature-text,
.theme-origin .feature-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.theme-origin .feature-item h4 {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  color: var(--primary-deep);
  line-height: 1.2;
}

.theme-origin .feature-item p {
  font-size: 0.52rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Trust bar not in Origin mockup */
.theme-origin .trust-bar {
  display: none;
}

/* Footer */
.theme-origin .site-footer {
  background: var(--primary-deep);
  border-top: 2px solid var(--accent-dark);
  padding: 14px 28px;
}

.theme-origin .footer-brand-text {
  color: var(--accent-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.theme-origin .footer-brand-text::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.theme-origin .footer-contact-item {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.9);
}

.theme-origin .footer-contact-item svg {
  fill: var(--accent);
}

.theme-origin .footer-divider,
.theme-origin .footer-contact-divider {
  background: rgba(197, 160, 107, 0.45);
}
