/* Recovered styles missing from truncated styles.css deploy */

/* Real packaging photo */
.pkg-photo {
  background-image: url('assets/packaging.jpg');
  background-repeat: no-repeat;
  background-color: #1a1714;
}
.pkg-photo.mantu { background-size: 200% auto; background-position: left center; }
.pkg-photo.aushak { background-size: 200% auto; background-position: right center; }
.pkg-photo.both { background-size: cover; background-position: center; }
.pkg-photo.contain { background-size: contain; background-position: center; }

/* Color-block panels */
.color-block {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 3rem;
  aspect-ratio: 4 / 5;
  text-align: center;
}
.color-block.wide { aspect-ratio: 21 / 9; }
.color-block.short { aspect-ratio: 4 / 3; }
.color-block.burgundy { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%); color: var(--ivory); }
.color-block.sage { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); color: var(--ivory); }
.color-block.duotone { background: linear-gradient(110deg, var(--burgundy) 0% 50%, var(--sage) 50% 100%); color: var(--ivory); }
.color-block.dark { background: var(--black); color: var(--ivory); }
.color-block.cream { background: var(--cream); color: var(--charcoal); }
.color-block .pattern { position: absolute; inset: 0; pointer-events: none; opacity: 0.18; }
.color-block .badge { position: relative; z-index: 1; width: 88px; height: 88px; display: grid; place-items: center; margin-bottom: 1.5rem; }
.color-block .badge svg { width: 100%; height: 100%; color: var(--gold-light); }
.color-block h3 { position: relative; z-index: 1; font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: 0.04em; color: inherit; font-weight: 500; margin-bottom: 0.5rem; }
.color-block .sub { position: relative; z-index: 1; font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-light); }
.color-block .quote { position: relative; z-index: 1; font-family: var(--font-serif); font-style: italic; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.4; max-width: 24ch; color: rgba(255,255,255,0.94); }
.color-block .quote-attr { position: relative; z-index: 1; margin-top: 1.5rem; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); }

/* Icon cards */
.icons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .icons-grid { grid-template-columns: repeat(2, 1fr); } }
.icon-card { background: var(--paper); border: 1px solid var(--bone); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; aspect-ratio: 3 / 4; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease); }
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.icon-card .ico { width: 64px; height: 64px; color: var(--gold-deep); margin-bottom: 1.5rem; }
.icon-card small { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; display: block; }
.icon-card h4 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); }
.icon-card p { font-size: 13px; color: var(--graphite); margin-top: 8px; line-height: 1.5; }

/* Product card layout — text left, photo right */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.75rem 52% 2.75rem 2.75rem;
  color: var(--ivory);
  isolation: isolate;
  transition: transform 0.6s var(--ease-slow), box-shadow 0.6s var(--ease-slow);
}
.product-card > div { max-width: 100%; position: relative; z-index: 2; }
.product-card .product-foot { z-index: 2; }
@media (max-width: 600px) {
  .product-card { padding: 2rem; min-height: 540px; }
  .product-card .package-mini { display: none; }
}
.product-card .package-mini {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  z-index: 0;
  opacity: 1;
  border-radius: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, black 38%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, black 38%);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .product-bg-pattern { position: absolute; inset: 0; z-index: 0; opacity: 0.12; pointer-events: none; }

/* PDP image */
.pdp-image-svg {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}
.pdp-image-svg .package-svg { width: 100%; height: 100%; }

/* Coming-soon placeholder card */
.product-card.placeholder {
  background: var(--paper);
  color: var(--charcoal);
  border: 1px dashed var(--bone);
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 640px;
  padding: 2.5rem;
}
.product-card.placeholder .ico { width: 56px; height: 56px; color: var(--gold); margin: 0 auto 1.5rem; }
.product-card.placeholder h3 { color: var(--charcoal); }
.product-card.placeholder p { color: var(--graphite); margin-top: 0.5rem; max-width: 26ch; margin-left:auto; margin-right:auto; }
.product-card.placeholder .product-foot { display: none; }

/* Pair card */
.pair-card .pair-mini { width: 72px; height: 72px; border-radius: var(--radius-sm); flex-shrink: 0; display: grid; place-items: center; }
.pair-card .pair-mini svg { width: 100%; height: 100%; }

/* Journal card */
.journal-card { background: var(--paper); border: 1px solid var(--bone); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.journal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.journal-card .cover { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.journal-card .body { padding: 1.5rem 1.75rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.journal-card .meta { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--slate); display: flex; gap: 1rem; }
.journal-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--charcoal); }
.journal-card p { font-size: 14px; color: var(--graphite); line-height: 1.6; }
.journal-card .read { margin-top: auto; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: var(--gold-deep); }

/* Hero package image */
.hero-image-wrap { position: relative; display: grid; place-items: center; padding: 2rem 0; }
.hero-package {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 50px 90px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(184,153,104,0.12));
  position: relative;
  z-index: 2;
  transform: rotate(-1deg);
  transition: transform 0.8s var(--ease-slow);
}
.hero-image-wrap:hover .hero-package { transform: rotate(0); }
.hero-orbits { position: absolute; inset: 0; pointer-events: none; z-index: 1; width: 100%; height: 100%; }
.hero-orbits circle { fill: none; stroke: rgba(184,153,104,0.18); stroke-dasharray: 2 6; }
@media (max-width: 920px) { .hero-package { max-width: 90%; transform: none; } }

/* Fix placeholder card: hide the burgundy ::before showing through */
.product-card.placeholder::before,
.product-card.placeholder::after { display: none !important; }
.product-card.placeholder { background: var(--paper) !important; color: var(--charcoal); }
.product-card.placeholder h3 { color: var(--charcoal) !important; }
.product-card.placeholder p { color: var(--graphite) !important; }
