/* ============================================================
   primaoro.com — Standalone Luxury Jewelry Stylesheet
   Design: Dark navy/obsidian + gold + champagne glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg-deep:        #09090f;
  --bg-surface:     #0e0e1a;
  --bg-card:        rgba(20, 20, 35, 0.85);
  --bg-card-hover:  rgba(28, 28, 48, 0.95);

  --gold:           #c9a84c;
  --gold-light:     #e8c96a;
  --gold-dim:       rgba(201, 168, 76, 0.12);
  --champagne:      #f0dfa0;
  --cream:          #faf6ec;

  --text-primary:   #f0ece4;
  --text-secondary: #a89f8c;
  --text-dim:       #5e5a52;

  --border:         rgba(201, 168, 76, 0.15);
  --border-hover:   rgba(201, 168, 76, 0.4);
  --glow:           rgba(201, 168, 76, 0.25);

  --nav-h:          64px;
  --sidebar-w:      240px;
  --radius-card:    14px;
  --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(100,70,180,0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

#primaoro-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.po-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(9, 9, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.po-nav__logo { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.po-nav__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.po-nav__logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.po-nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.po-nav__links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.po-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.po-nav__links a:hover { color: var(--gold); }
.po-nav__links a:hover::after { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.po-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 40px;
  overflow: hidden;
}
.po-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(80,50,160,0.05) 100%);
  border-bottom: 1px solid var(--border);
}
.po-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.po-hero__ring:nth-child(1) { width: 700px; height: 700px; }
.po-hero__ring:nth-child(2) { width: 500px; height: 500px; border-color: rgba(201,168,76,0.04); }
.po-hero__content { position: relative; z-index: 1; max-width: 680px; }
.po-hero__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.po-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: 2px;
}
.po-hero__title em { font-style: italic; color: var(--gold-light); }
.po-hero__sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 38px;
  line-height: 1.9;
}
.po-hero__cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.po-hero__cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}

/* ══════════════════════════════════════════════════════════════
   BODY LAYOUT
══════════════════════════════════════════════════════════════ */
.po-body {
  display: flex;
  flex: 1;
  gap: 0;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 52px 40px 80px;
  align-items: flex-start;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.po-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding-right: 36px;
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
}
.po-sidebar::-webkit-scrollbar { width: 3px; }
.po-sidebar::-webkit-scrollbar-track { background: transparent; }
.po-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.po-sidebar__section { margin-bottom: 28px; }
.po-sidebar__heading {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.po-sidebar__list { list-style: none; }
.po-sidebar__list li { margin-bottom: 1px; }
.po-sidebar__list a {
  display: block;
  padding: 5px 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 5px;
  transition: all var(--transition);
}
.po-sidebar__list a:hover {
  color: var(--gold);
  background: var(--gold-dim);
  padding-left: 15px;
}
.po-sidebar__cat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 12px 0 4px 10px;
  letter-spacing: 0.3px;
}

/* ── Content ───────────────────────────────────────────────── */
.po-content { flex: 1; min-width: 0; }

.po-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.po-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 2px;
  white-space: nowrap;
}
.po-section-head__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}
.po-section-head__line--l {
  background: linear-gradient(to left, var(--border), transparent);
}

/* ── Category tiles ────────────────────────────────────────── */
.po-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 52px;
}
.po-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition);
  gap: 10px;
}
.po-cat-tile:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.14);
}
.po-cat-tile__icon { font-size: 26px; }
.po-cat-tile__name {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.po-cat-tile:hover .po-cat-tile__name { color: var(--gold); }

/* ── Product grid ──────────────────────────────────────────── */
.po-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  margin-bottom: 52px;
}
.po-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.po-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px var(--gold-dim);
}
.po-card__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(201,168,76,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.po-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.po-card:hover .po-card__img-wrap img { transform: scale(1.06); }
.po-card__placeholder {
  font-size: 40px;
  opacity: 0.25;
  user-select: none;
}
.po-card__body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.po-card__cat {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.po-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}
.po-card__excerpt {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.po-card__price {
  margin-top: 14px;
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── Article / post content ────────────────────────────────── */
.po-article { max-width: 800px; }
.po-article h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.po-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.po-article h3 { font-size: 16px; font-weight: 500; color: var(--champagne); margin: 22px 0 10px; }
.po-article p { margin-bottom: 17px; color: var(--text-secondary); font-size: 14.5px; }
.po-article strong { color: var(--text-primary); font-weight: 500; }
.po-article a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); transition: border-color var(--transition); }
.po-article a:hover { border-color: var(--gold); }
.po-article ul, .po-article ol { padding-left: 22px; margin-bottom: 17px; color: var(--text-secondary); font-size: 14.5px; }
.po-article li { margin-bottom: 6px; }
.po-article blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 22px 0;
  background: var(--gold-dim);
  border-radius: 0 8px 8px 0;
  color: var(--champagne);
  font-style: italic;
  font-size: 15px;
}
.po-article img { max-width: 100%; border-radius: 10px; border: 1px solid var(--border); margin: 20px 0; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.po-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--text-dim);
}
.po-breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.po-breadcrumb a:hover { color: var(--gold); }
.po-breadcrumb span { color: var(--text-dim); }

/* ── Footer ────────────────────────────────────────────────── */
.po-footer {
  border-top: 1px solid var(--border);
  padding: 44px 40px;
  text-align: center;
  background: rgba(9,9,15,0.7);
  margin-top: auto;
}
.po-footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.po-footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin-bottom: 20px;
}
.po-footer__links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.po-footer__links a:hover { color: var(--gold); }
.po-footer__copy { font-size: 11px; color: var(--text-dim); }

/* ── Utilities ─────────────────────────────────────────────── */
.po-divider {
  width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .po-body { flex-direction: column; padding: 32px 24px 60px; }
  .po-sidebar { width: 100%; position: static; padding-right: 0; max-height: none; margin-bottom: 32px; }
  .po-nav { padding: 0 24px; }
  .po-hero { padding: 64px 24px; min-height: 340px; }
  .po-footer { padding: 36px 24px; }
}
@media (max-width: 600px) {
  .po-nav__links { display: none; }
  .po-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .po-cats { grid-template-columns: repeat(3, 1fr); }
}
