/* Tobacco Info — editorial archive theme */

:root {
  --gp-primary: #1F5F8B;
  --gp-accent: #2B8C82;
  --gp-accent-light: #E6EBEF;
  --gp-warm: #F7F1E6;
  --gp-text: #242933;
  --gp-text-muted: #5D6976;
  --gp-surface: #F7F1E6;
  --gp-red: #B3312C;
  --gp-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --gp-shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --gp-radius: 16px;
}

/* ── Base ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gp-text);
  background: var(--gp-surface);
  line-height: 1.65;
}
h1, h2, h3, h4, .page-title, .hero-title, .section-title, .article-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gp-primary);
}
a { color: var(--gp-accent); transition: color 0.3s ease; }
a:hover { color: var(--gp-primary); }

/* ── Logo Cross ── */
.logo-cross {
  width: 40px; height: 40px; background: var(--gp-primary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; font-weight: 700;
  flex-shrink: 0;
}
.logo-cross-sm { width: 32px; height: 32px; font-size: 1.2rem; border-radius: 6px; }
.brand-text { font-family: 'Merriweather', Georgia, serif; font-size: 1.15rem; font-weight: 900; color: var(--gp-primary); }
footer .brand-text { color: #fff; }

/* ── Buttons ── */
.btn-accent {
  background: var(--gp-accent); color: #fff; border: none;
  transition: all 0.3s ease;
}
.btn-accent:hover { background: var(--gp-primary); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,94,59,0.25); }
.btn-outline-accent {
  border: 2px solid var(--gp-accent); color: var(--gp-accent); background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-accent:hover { background: var(--gp-accent); color: #fff; }
.text-accent { color: var(--gp-accent) !important; }

/* ── Navbar ── */
.navbar { padding: 12px 0; }
.navbar .nav-link { font-weight: 500; color: var(--gp-text); position: relative; transition: color 0.3s; }
.navbar .nav-link:hover { color: var(--gp-accent); }
.navbar .nav-link::after { display: none; }
.navbar .nav-link.dropdown-toggle::after { display: inline-block; }
.dropdown-menu { border: none; box-shadow: var(--gp-shadow); border-radius: 12px; padding: 8px; }
.dropdown-item { border-radius: 8px; padding: 8px 16px; transition: all 0.2s; }
.dropdown-item:hover { background: var(--gp-accent-light); color: var(--gp-primary); }

/* ── Hero ── */
.hero-section {
  background: linear-gradient(135deg, var(--gp-accent-light) 0%, var(--gp-surface) 100%);
  min-height: 420px;
}
.hero-title { font-size: 2.8rem; line-height: 1.15; margin-bottom: 16px; }
.hero-text { font-size: 1.1rem; color: var(--gp-text-muted); }
.hero-visual {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto;
  background: rgba(46,139,87,0.1); display: flex; align-items: center; justify-content: center;
}
.hero-visual i { font-size: 5rem; color: var(--gp-accent); opacity: 0.4; }

/* ── Cards ── */
.info-card, .article-card, .team-card {
  border-radius: var(--gp-radius) !important;
  transition: all 0.3s ease;
}
.info-card:hover, .article-card:hover, .team-card:hover {
  box-shadow: var(--gp-shadow-hover) !important;
  transform: translateY(-2px);
}

/* ── Icon Badge ── */
.icon-badge {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gp-accent-light); color: var(--gp-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

/* ── Hours ── */
.day-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gp-accent-light); color: var(--gp-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem; flex-shrink: 0;
}
.hours-item { border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
.hours-item:last-child { border-bottom: none !important; }

/* ── Step circles (Prescription CTA) ── */
.cta-section { background: var(--gp-accent-light); }
.section-title { font-size: 2rem; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gp-accent); color: #fff;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Article teaser ── */
.article-teaser {
  background: var(--gp-accent-light); border-left: 3px solid var(--gp-accent);
  transition: all 0.3s ease;
}
.article-teaser:hover { border-left-color: var(--gp-primary); background: #d5eed8; }
.article-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gp-accent); font-weight: 600; }

/* ── Article pages ── */
.article-title { font-size: 2.2rem; }
.article-body { font-size: 1.05rem; line-height: 1.75; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }
.article-image img { object-fit: cover; }

/* ── Page title ── */
.page-title { font-size: 2rem; border-bottom: 3px solid var(--gp-accent-light); padding-bottom: 16px; }

/* ── Content blocks ── */
.content-block { font-size: 1rem; line-height: 1.75; }
.content-list li { padding: 6px 0; }
.faq-list li { padding: 8px 16px; border-left: 3px solid var(--gp-accent-light); border-radius: 0 8px 8px 0; }
.faq-list li:hover { border-left-color: var(--gp-accent); background: var(--gp-accent-light); }

/* ── Content publishing pages ── */
.content-page { background: #fff; }
.content-page-header {
  border-bottom: 1px solid rgba(27,94,59,0.12);
  padding-bottom: 18px;
}
.content-summary {
  font-size: 1.08rem;
  color: var(--gp-text-muted);
  max-width: 760px;
}
.content-prose {
  font-size: 1.04rem;
  line-height: 1.78;
}
.content-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.65rem;
}
.content-prose h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
.content-prose p,
.content-prose ul,
.content-prose ol,
.content-prose dl,
.content-prose table {
  margin-bottom: 1rem;
}
.content-prose table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--gp-shadow);
  border-radius: 8px;
  overflow: hidden;
}
.content-prose th,
.content-prose td {
  border: 1px solid rgba(27,94,59,0.12);
  padding: 0.75rem;
  vertical-align: top;
}
.content-prose th {
  background: var(--gp-accent-light);
  color: var(--gp-primary);
}
.content-prose aside {
  background: var(--gp-accent-light);
  border-left: 4px solid var(--gp-accent);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.content-prose dt {
  font-weight: 700;
  color: var(--gp-primary);
  margin-top: 1rem;
}
.content-prose dd {
  margin-left: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(27,94,59,0.1);
}
.content-toc {
  background: var(--gp-accent-light);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.content-toc ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.content-card {
  border: 1px solid rgba(27,94,59,0.12);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--gp-shadow);
  background: #fff;
}
.content-card h2 {
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
}

/* ── Team ── */
.team-avatar { opacity: 0.5; }

/* ── Footer ── */
.site-footer {
  background: var(--gp-primary);
  color: rgba(255,255,255,0.8);
}
.footer-heading { color: #fff; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-links li { margin-bottom: 6px; }
.footer-text { color: rgba(255,255,255,0.6); }
.onp-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

/* ── Breadcrumbs ── */
.breadcrumb-item a { color: var(--gp-accent); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gp-primary); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .page-title { font-size: 1.6rem; }
  .article-title { font-size: 1.8rem; }
}

/* ORLY Belarus cosmetics catalog overrides */
:root {
  --gp-primary: #0B0A08;
  --gp-accent: #E60012;
  --gp-accent-light: #FFF1F4;
  --gp-warm: #ED0C6E;
  --gp-text: #2B2B2B;
  --gp-text-muted: #8C8C8C;
  --gp-surface: #F7F4EF;
  --gp-red: #E60012;
  --gp-shadow: 0 14px 38px rgba(11,10,8,0.09);
  --gp-shadow-hover: 0 18px 48px rgba(11,10,8,0.14);
  --gp-radius: 8px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2B2B2B;
  background: #F7F4EF;
}

h1, h2, h3, h4, .page-title, .hero-title, .section-title, .article-title,
.brand-text {
  font-family: "Montserrat", "Inter", sans-serif;
  letter-spacing: 0;
}

.navbar { border-bottom: 3px solid #E60012; }
.logo-cross { background: #0B0A08; border-radius: 50%; color: #FFFFFF; font-family: "Montserrat", sans-serif; }
.brand-text { color: #0B0A08; text-transform: uppercase; letter-spacing: 0.04em; }
.nav-link { text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.03em; }
.btn-accent { background: #0B0A08; color: #FFFFFF; }
.btn-accent:hover { background: #E60012; box-shadow: 0 10px 24px rgba(230,0,18,0.22); }
.btn-outline-accent { border-color: #E60012; color: #E60012; }

.orly-hero {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7F4EF 58%, #FFE7EE 100%);
  border-bottom: 1px solid rgba(11,10,8,0.08);
}
.hero-title {
  color: #0B0A08;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.hero-text { color: #5D5D5D; max-width: 640px; }
.orly-kicker, .article-tag {
  display: inline-flex;
  align-items: center;
  color: #E60012;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.swatch-board {
  min-height: 280px;
  border-radius: 8px;
  background: #0B0A08;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  box-shadow: var(--gp-shadow);
}
.swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  box-shadow: inset -18px -22px 24px rgba(0,0,0,0.18), inset 16px 18px 18px rgba(255,255,255,0.25);
}
.swatch-berry { background: #85002B; }
.swatch-fuchsia { background: #ED0C6E; }
.swatch-red { background: #E60012; }
.section-heading { margin-bottom: 1.5rem; }
.content-card, .product-media-panel, .static-panel {
  background: #FFFFFF;
  border: 1px solid rgba(11,10,8,0.08);
  border-radius: 8px;
  box-shadow: var(--gp-shadow);
  padding: clamp(1.1rem, 2vw, 2rem);
}
.product-media-panel {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media-panel img, .product-figure img { max-width: 100%; height: auto; object-fit: contain; }
.lacquer-disc {
  width: min(260px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ff6d9d 0 12%, #ED0C6E 28%, #85002B 100%);
}
.orly-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.product-figure {
  background: #FFFFFF;
  border: 1px solid rgba(11,10,8,0.08);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}
.content-heading { margin-top: 1.5rem; color: #0B0A08; text-transform: uppercase; }
.content-list { display: grid; gap: 0.55rem; padding-left: 1.1rem; }
.content-list a { color: #0B0A08; font-weight: 600; }
.content-list a:hover { color: #E60012; }
.catalog-grid .orly-gallery { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.site-footer { background: #0B0A08; }
.footer-links a, .footer-text { color: rgba(255,255,255,0.78); }
.onp-badge { background: rgba(230,0,18,0.18); color: #FFFFFF; }

/* Tobacco Info overrides */
h1, h2, h3, h4, .page-title, .hero-title, .section-title, .article-title {
  font-family: 'Merriweather', Georgia, serif;
  color: #1F5F8B;
  text-transform: none;
  letter-spacing: 0;
}

body {
  background: #F7F1E6;
  color: #242933;
}

.logo-cross {
  background: #1F5F8B;
  border-radius: 8px;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.navbar {
  border-bottom: 4px solid #B3312C;
}

header {
  background: #B3312C;
}

.navbar-brand,
.navbar-brand .brand-text {
  color: #2B8C82 !important;
}

.navbar .nav-link {
  color: #242933;
}

.navbar .nav-link:hover,
a:hover {
  color: #B3312C;
}

.btn-accent {
  background: #B3312C;
}

.btn-accent:hover {
  background: #1F5F8B;
  box-shadow: 0 6px 20px rgba(31, 95, 139, 0.24);
}

.orly-kicker,
.article-tag {
  color: #B3312C;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tobacco-hero,
.orly-hero {
  background:
    linear-gradient(135deg, rgba(31, 95, 139, 0.12), rgba(43, 140, 130, 0.10)),
    #F7F1E6;
  border-bottom: 1px solid rgba(36, 41, 51, 0.10);
}

.hero-title {
  color: #1F5F8B;
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  line-height: 1.05;
}

.hero-text {
  color: #242933;
  max-width: 720px;
}

.issue-board {
  min-height: 280px;
  background: #FFFFFF;
  border: 1px solid #E6EBEF;
  border-left: 8px solid #2B8C82;
  border-radius: 8px;
  box-shadow: var(--gp-shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.issue-chip {
  aspect-ratio: 1;
  border-radius: 8px;
  background: #1F5F8B;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
}

.issue-chip:nth-child(2) { background: #B3312C; }
.issue-chip:nth-child(3) { background: #2B8C82; }
.issue-chip:nth-child(4) { background: #242933; }

.content-card,
.static-panel,
.product-media-panel {
  border-radius: 8px;
  border: 1px solid #E6EBEF;
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(36, 41, 51, 0.08);
}

.article-body,
.content-block,
.content-prose {
  font-size: 1.04rem;
  line-height: 1.8;
}

.article-body img,
.content-block img,
.content-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #E6EBEF;
  background: #FFFFFF;
}

.catalog-grid table,
.content-card table {
  width: 100%;
  border-collapse: collapse;
}

.catalog-grid td,
.catalog-grid th,
.content-card td,
.content-card th {
  border: 1px solid #E6EBEF;
  padding: 0.75rem;
  vertical-align: top;
}

.catalog-grid th,
.content-card th {
  background: #E6EBEF;
  color: #1F5F8B;
}

.site-footer {
  background: #242933;
}

.onp-badge {
  background: rgba(43, 140, 130, 0.22);
  color: #FFFFFF;
}

.page-title {
  border-bottom-color: #E6EBEF;
}

.card-grid {
  display: grid;
  gap: 1rem;
}
