:root {
  --white: #f2f5f7;
  --navy: #1c2b3a;
  --blue: #a8c8d8;
  --navy-dim: rgba(28,43,58,0.55);
  --navy-faint: rgba(28,43,58,0.08);
}

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

html, body {
  min-height: 100vh;
  background: var(--white);
}

.hm-wrap {
  background: var(--white);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── TICKER ── */
.hm-ticker {
  background: var(--navy);
  overflow: hidden;
  padding: 8px 0;
}
.hm-ticker-inner {
  display: flex;
  animation: hmTicker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hm-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.55);
}
.hm-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  opacity: 0.6;
}
@keyframes hmTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
.hm-nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.hm-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.hm-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.hm-nav-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.hm-nav-links a:hover,
.hm-nav-links a.hm-active { color: var(--white); }
.hm-season { color: var(--blue) !important; }
.hm-nav-actions { display: flex; gap: 20px; align-items: center; }
.hm-nav-btn {
  color: rgba(242,245,247,0.55);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
}
.hm-nav-btn:hover { color: var(--white); }

/* ── SHOP HEADER ── */
.hm-shop-header {
  padding: 64px 48px 40px;
  border-bottom: 0.5px solid var(--navy-faint);
}
.hm-shop-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-shop-eyebrow::before {
  content: '';
  width: 32px; height: 0.5px;
  background: var(--blue);
}
.hm-shop-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1;
}

/* ── PRODUCT GRID ── */
.hm-shop-body {
  padding: 48px;
  flex: 1 1 auto;
}

.hm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.hm-product-card {
  position: relative;
  overflow: hidden;
}

.hm-product-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.hm-product-img-link {
  display: block;
  overflow: hidden;
}

.hm-product-img {
  aspect-ratio: 1/1;
  background-color: #f5f5f3;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hm-product-card:hover .hm-product-img { transform: scale(1.03); }

/* alternate bg tones for placeholder state */
.hm-product-card:nth-child(2) .hm-product-img { background-color: #c5d5e2; }
.hm-product-card:nth-child(3) .hm-product-img { background-color: #e2eaee; }
.hm-product-card:nth-child(4) .hm-product-img { background-color: #cdd9e0; }
.hm-product-card:nth-child(5) .hm-product-img { background-color: #bfcfdb; }
.hm-product-card:nth-child(6) .hm-product-img { background-color: #d4e0e8; }

.hm-product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 1px;
  pointer-events: none;
}

.hm-product-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.hm-product-card:hover .hm-product-quick { transform: translateY(0); }
.hm-product-quick:hover { background: var(--blue); color: var(--navy); }

.hm-product-info {
  padding: 14px 2px 32px;
}
.hm-product-name {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.hm-product-name:hover { color: var(--blue); }
.hm-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-product-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--navy-dim);
}
.hm-product-price .woocommerce-Price-amount { font-size: 13px; color: var(--navy-dim); }


/* ── MOBILE ── */
@media (max-width: 768px) {
  .hm-nav { padding: 0 20px; }
  .hm-nav-links { display: none; }
  .hm-shop-header { padding: 40px 20px 28px; }
  .hm-shop-title { font-size: 36px; }
  .hm-shop-body { padding: 20px; }
  .hm-product-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-product-img { aspect-ratio: 1/1; }
  .hm-footer { padding: 24px 20px; }
}
/* ── FULL FOOTER ── */
.hm-footer {
  background: var(--navy);
  padding: 56px 48px 32px;
  margin-top: auto;
}
.hm-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.hm-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.hm-footer-desc {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(242,245,247,0.3);
  max-width: 220px;
  margin-bottom: 24px;
  font-family: 'Jost', sans-serif;
}
.hm-footer-socials { display: flex; gap: 14px; }
.hm-footer-social {
  width: 32px; height: 32px;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.hm-footer-social:hover {
  border-color: var(--blue);
  background: rgba(168,200,216,0.08);
}
.hm-footer-social:hover svg { stroke: var(--blue) !important; }

.hm-footer-col-title {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.25);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}
.hm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-footer-links a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(242,245,247,0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
}
.hm-footer-links a:hover { color: var(--white); }

.hm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-footer-copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(242,245,247,0.18);
  font-family: 'Jost', sans-serif;
}
.hm-footer-payments { display: flex; gap: 8px; align-items: center; }
.hm-payment-badge {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(242,245,247,0.25);
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 768px) {
  .hm-footer { padding: 40px 20px 24px; }
  .hm-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
