/** Shopify CDN: Minification failed

Line 2227:0 Unexpected "`"

**/
/* =============================================
   CRAFTD — Premium Edition
   Full Device Coverage
   Luxury · Editorial · Refined
   ============================================= */

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

:root {
  /* Core Palette */
  --bg-primary: #0b0b0c;
  --bg-elevated: #111111;
  --bg-soft: #1a1a1a;

  --text-primary: #ffffff;
  --text-muted: #bcbcbc;
  --text-subtle: #7a7a7a;

  --border-soft: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --max-w: 1320px;
  --gutter: 60px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;

  /* Touch target minimum */
  --touch-min: 44px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: #000000;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.p-bar {
  background: var(--bg-elevated);
  color: var(--text-primary);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.p-bar__track {
  display: flex;
  white-space: nowrap;
  animation: pMarquee 24s linear infinite;
  will-change: transform;
}

.p-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding: 0 56px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(248,246,242,0.65);
}

.p-bar__item b {
  color: #ffffff;
  font-weight: 500;
}

.p-bar__item::after {
  content: '—';
  opacity: 0.3;
}

@keyframes pMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   NAVIGATION
   ============================================= */
.p-nav {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.p-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.p-nav__left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.p-nav__left a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.p-nav__left a:hover {
  color: #ffffff;
}

.p-nav__logo {
  justify-self: start;
  display: flex;
  align-items: center;
}

.p-nav__logo img {
  height: 28px;
  filter: invert(1);
}

.p-nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  color: #ffffff;
}

/* Right links */
.p-nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.p-nav__right a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.p-nav__right a:hover {
  color: #ffffff;
}

.p-nav__cart {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 22px;
  min-height: var(--touch-min);
  transition: background 0.25s, color 0.25s;
}

.p-nav__cart:hover {
  background: #ffffff;
  color: #000000;
}

.p-nav__cart-count {
  background: #ffffff;
  color: #000000;
}

/* ---- Mobile Hamburger ---- */
.p-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: var(--touch-min);
  height: var(--touch-min);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.p-nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #ffffff;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.p-nav__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.p-nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.p-nav__toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Mobile Drawer ---- */
.p-nav__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: #000000;
  z-index: 300;
  padding: 80px var(--gutter) var(--gutter);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  border-left: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.p-nav__drawer.open {
  transform: translateX(0);
}

.p-nav__drawer a {
  display: block;
  padding: 16px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: var(--touch-min);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}

.p-nav__drawer a:hover,
.p-nav__drawer a:active {
  color: #ffffff;
  padding-left: 12px;
}

.p-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 250;
  opacity: 0;
  transition: opacity 0.4s;
}

.p-nav__overlay.visible {
  opacity: 1;
}

/* =============================================
   HERO
   ============================================= */
.p-hero {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  min-height: clamp(520px, 88vh, 980px);
  display: flex;
  align-items: flex-end;
  color: #ffffff;
}

.p-hero,
.p-hero * {
  color: #ffffff !important;
}

.p-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: grayscale(30%);
}

.p-hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.p-hero__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
}

.p-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.1) 100%
  );
}

.p-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 64px;
}

.p-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.45) !important;
  margin-bottom: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(248,246,242,0.3);
}

.p-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.p-hero__title em {
  font-style: italic;
  font-weight: 300;
}

.p-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 36px;
  border: 1px solid rgba(248,246,242,0.35);
  transition: background 0.3s, border-color 0.3s;
  min-height: var(--touch-min);
}

.p-hero__cta:hover {
  background: rgba(248,246,242,0.08);
  border-color: rgba(248,246,242,0.7);
}

.p-hero__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.p-hero__cta:hover svg {
  transform: translateX(5px);
}

.p-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 8px;
}

.p-hero__desc {
  font-size: 13px;
  line-height: 2;
  color: rgba(248,246,242,0.45) !important;
  text-align: right;
  max-width: 320px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.p-hero__stats {
  display: flex;
  gap: 40px;
}

.p-hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

.p-hero__stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.35) !important;
  margin-top: 6px;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.p-trust {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 0;
}

.p-trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.p-trust__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 30px;
  border-right: 1px solid #eaeaea;
}

.p-trust__item:last-child {
  border-right: none;
}

.p-trust__icon {
  font-size: 1.4rem;
  color: #000;
}

.p-trust__title {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.05em;
  margin: 0;
}

.p-trust__sub {
  font-size: 12px;
  color: #555;
  margin: 0;
}

/* =============================================
   SECTION PRIMITIVES
   ============================================= */
.p-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  background: #000000;
  color: #ffffff;
}

.p-section--flush { padding-top: 0; }
.p-section--sm { padding: 64px var(--gutter); }

.p-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 24px;
}

.p-section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 12px;
  font-weight: 400;
}

.p-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.p-section-title em { font-style: italic; }

.p-link {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1px solid #ffffff;
  transition: opacity 0.2s;
  min-height: var(--touch-min);
}

.p-link:hover { opacity: 0.4; }

.p-link--light {
  color: var(--text-primary);
  border-color: rgba(248,246,242,0.4);
}

.p-link--light:hover { opacity: 0.6; }

/* =============================================
   CATEGORY GRID
   ============================================= */
.p-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.08);
}

.p-cat {
  background: #111111;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.p-cat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), opacity 0.3s;
  opacity: .9;
  filter: none;
}

.p-cat__placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.5;
}

.p-cat:hover .p-cat__img {
  transform: scale(1.06);
  opacity: 0.4;
}

.p-cat__name {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  margin-top: 8px;
  transition: letter-spacing 0.3s;
}

.p-cat:hover .p-cat__name {
  letter-spacing: 0.28em;
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.p-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.p-product {
  background: #111111;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.4s var(--ease-out);
}

.p-product:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 1;
}

.p-product__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1a;
}

.p-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: grayscale(15%);
}

.p-product:hover .p-product__img { transform: scale(1.04); }

.p-product__placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

/* Badges */
.p-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 12px;
}

.p-badge--new { background: #ffffff; color: #000000; }
.p-badge--sale { background: transparent; color: #ffffff; border: 1px solid #ffffff; }

.p-badge--off {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  background: transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-display);
  font-style: italic;
}

.p-product__quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  min-height: var(--touch-min);
}

.p-product:hover .p-product__quick { transform: translateY(0); }

.p-product__body {
  padding: 22px 24px 28px;
  flex: 1;
}

.p-product__type {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.p-product__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.p-product__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.p-stars { font-size: 10px; letter-spacing: 2px; color: #ffffff; }
.p-review-count { font-size: 10px; color: var(--text-subtle); }

.p-product__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.p-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.p-price-compare {
  font-size: 12px;
  color: var(--text-subtle);
  text-decoration: line-through;
  font-weight: 300;
}

/* =============================================
   EDITORIAL STRIP
   ============================================= */
.p-editorial {
  background: #0a0a0a;
  padding: 96px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p-editorial::before {
  content: 'CRAFTD';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 22rem);
  font-weight: 300;
  color: rgba(248,246,242,0.03);
  letter-spacing: 0.15em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.p-editorial__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.p-editorial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.p-editorial__attr {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.35);
}

/* =============================================
   REVIEWS
   ============================================= */
.p-reviews-wrap {
  background: #000000;
  color: #ffffff;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.p-reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.p-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.p-review {
  background: #ffffff;
  padding: 40px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-review:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.p-review__stars {
  font-size: 11px;
  letter-spacing: 3px;
  color: #000000;
  margin-bottom: 20px;
}

.p-review__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.p-review__divider {
  width: 32px;
  height: 1px;
  background: #eaeaea;
  margin-bottom: 20px;
}

.p-review__name {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
}

.p-review__verified {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #666666;
  margin-top: 4px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.p-nl {
  background: #000000;
  color: #ffffff;
  padding: 100px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.p-nl__inner {
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.p-nl__label {
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}



.p-nl__sub {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.p-nl__form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  max-width: 420px;
  margin: 0 auto;
}

.p-nl__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.04em;
  min-height: var(--touch-min);
}

.p-nl__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.p-nl__btn {
  background: transparent;
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 20px;
  transition: opacity 0.2s;
  min-height: var(--touch-min);
}

.p-nl__btn:hover {
  opacity: 0.6;
}

/* =============================================
   FOOTER
   ============================================= */
.p-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 0 40px;
}

.p-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.p-footer__logo img {
  height: 26px;
  filter: invert(1);
  margin-bottom: 20px;
}

.p-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #ffffff;
  margin-bottom: 16px;
}

.p-footer__desc {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.3);
  max-width: 240px;
  font-weight: 300;
}

.p-footer__col h4 {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  font-weight: 500;
}

.p-footer__col ul { list-style: none; }
.p-footer__col li { margin-bottom: 12px; }

.p-footer__col a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  font-weight: 300;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 4px 0;
}

.p-footer__col a:hover { color: rgba(255,255,255,0.85); }

.p-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.p-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.p-reveal.in { opacity: 1; transform: translateY(0); }
.p-reveal[data-delay="1"] { transition-delay: 0.1s; }
.p-reveal[data-delay="2"] { transition-delay: 0.2s; }
.p-reveal[data-delay="3"] { transition-delay: 0.3s; }


/* ==============================================
   ==============================================
   RESPONSIVE BREAKPOINTS — ALL DEVICES
   ==============================================
   ============================================== */


/* =============================================
   LARGE DESKTOP (1440px+)
   ============================================= */
@media (min-width: 1441px) {
  :root {
    --max-w: 1440px;
    --gutter: 80px;
  }

  .p-hero {
    min-height: clamp(600px, 90vh, 1080px);
  }

  .p-hero__title {
    font-size: 8rem;
  }

  .p-hero__content {
    padding-bottom: 120px;
  }

  .p-products {
    grid-template-columns: repeat(4, 1fr);
  }

  .p-editorial {
    padding: 120px var(--gutter);
  }

  .p-reviews-wrap {
    padding: 120px 0;
  }

  .p-nl {
    padding: 120px var(--gutter);
  }

  .p-footer {
    padding: 100px 0 48px;
  }
}

/* =============================================
   LAPTOP (1025px – 1440px)
   Typical: MacBook Air/Pro, Windows Laptops
   ============================================= */
@media (max-width: 1440px) and (min-width: 1025px) {
  :root {
    --gutter: 48px;
    --max-w: 1200px;
  }

  /* Nav — Slightly tighter */
  .p-nav__inner {
    height: 70px;
    gap: 24px;
  }

  .p-nav__right {
    gap: 20px;
  }

  .p-nav__right a {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .p-nav__logo-text {
    font-size: 1.6rem;
    letter-spacing: 0.22em;
  }

  /* Hero — Comfortable sizing */
  .p-hero {
    min-height: clamp(480px, 85vh, 860px);
  }

  .p-hero__content {
    gap: 48px;
    padding-bottom: 80px;
  }

  .p-hero__title {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    margin-bottom: 28px;
  }

  .p-hero__desc {
    max-width: 280px;
    font-size: 12px;
  }

  .p-hero__stat-num {
    font-size: 1.9rem;
  }

  .p-hero__stats {
    gap: 32px;
  }

  /* Products — 3 columns on laptop */
  .p-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-product__body {
    padding: 20px 22px 26px;
  }

  .p-product__name {
    font-size: 1.15rem;
  }

  .p-price {
    font-size: 1.3rem;
  }

  /* Categories — Keep 4 but tighter */
  .p-cats {
    grid-template-columns: repeat(4, 1fr);
  }

  .p-cat {
    padding: 24px 18px;
  }

  /* Reviews */
  .p-reviews-wrap {
    padding: 80px 0;
  }

  .p-reviews-grid {
    gap: 20px;
  }

  .p-review {
    padding: 36px 32px;
  }

  /* Editorial */
  .p-editorial {
    padding: 80px var(--gutter);
  }

  .p-editorial__quote {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
  }

  /* Newsletter */
  .p-nl {
    padding: 80px var(--gutter);
  }

  /* Section heads */
  .p-section-head {
    margin-bottom: 48px;
  }

  .p-section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
  }

  /* Footer */
  .p-footer__inner {
    gap: 40px;
  }

  .p-footer__desc {
    max-width: 220px;
    font-size: 11px;
  }
}

/* =============================================
   SMALL LAPTOP (1025px – 1280px)
   Typical: 13" MacBook, Small Windows Laptops
   ============================================= */
@media (max-width: 1280px) and (min-width: 1025px) {
  :root {
    --gutter: 40px;
    --max-w: 1100px;
  }

  .p-nav__inner {
    height: 66px;
  }

  .p-nav__right {
    gap: 16px;
  }

  .p-nav__logo-text {
    font-size: 1.5rem;
  }

  /* Hero */
  .p-hero__content {
    gap: 40px;
    padding-bottom: 72px;
  }

  .p-hero__title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
  }

  .p-hero__right {
    gap: 20px;
  }

  .p-hero__desc {
    max-width: 260px;
    font-size: 12px;
    line-height: 1.85;
  }

  .p-hero__stat-num {
    font-size: 1.7rem;
  }

  /* Products — 3 columns */
  .p-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-product__name {
    font-size: 1.1rem;
  }

  .p-price {
    font-size: 1.2rem;
  }

  /* Reviews — can go to 2 if tight */
  .p-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .p-review {
    padding: 32px 28px;
  }

  .p-review__text {
    font-size: 1rem;
  }

  /* Footer */
  .p-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }

  .p-footer__desc {
    max-width: 200px;
  }
}

/* =============================================
   TABLET LANDSCAPE (769px – 1024px)
   Typical: iPad Landscape, Surface
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --gutter: 36px;
  }

  /* Nav — Switch to hamburger */
  .p-nav__inner {
    grid-template-columns: auto 1fr auto;
    height: 64px;
    gap: 16px;
  }

  .p-nav__left { display: none; }

  .p-nav__right .p-nav__link {
    display: none;
  }

  .p-nav__toggle {
    display: flex;
  }

  .p-nav__drawer {
    display: block;
  }

  .p-nav__logo-text {
    font-size: 1.4rem;
  }

  /* Hero — Single column */
  .p-hero {
    min-height: clamp(420px, 72vh, 680px);
  }

  .p-hero__content {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
    gap: 32px;
  }

  .p-hero__right { display: none; }

  .p-hero__title {
    font-size: clamp(2.6rem, 7vw, 4.2rem);
  }

  /* Categories — Stay at 4 */
  .p-cats {
    grid-template-columns: repeat(4, 1fr);
  }

  .p-cat {
    padding: 22px 16px;
  }

  /* Products — 2 columns */
  .p-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-product__body {
    padding: 18px 20px 24px;
  }

  /* Reviews — 2 columns */
  .p-reviews-wrap {
    padding: 72px 0;
  }

  .p-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .p-review {
    padding: 32px 28px;
  }

  /* Editorial */
  .p-editorial {
    padding: 72px var(--gutter);
  }

  /* Newsletter */
  .p-nl {
    padding: 72px var(--gutter);
  }

  /* Section heads */
  .p-section-head {
    margin-bottom: 36px;
  }

  /* Footer */
  .p-footer {
    padding: 64px 0 32px;
  }

  .p-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .p-footer__desc {
    max-width: 100%;
  }
}

/* =============================================
   TABLET PORTRAIT (641px – 768px)
   Typical: iPad Portrait, Large Phones Landscape
   ============================================= */
@media (max-width: 768px) {
  :root {
    --gutter: 28px;
  }

  /* Bar */
  .p-bar {
    height: 34px;
  }

  .p-bar__item {
    gap: 32px;
    padding: 0 32px;
    font-size: 9px;
  }

  /* Nav */
  .p-nav__inner {
    height: 60px;
  }

  .p-nav__logo-text {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
  }

  .p-nav__logo img {
    height: 22px;
  }

  /* Hero */
  .p-hero {
    min-height: clamp(380px, 65vh, 580px);
  }

  .p-hero__content {
    padding-bottom: 52px;
  }

  .p-hero__title {
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    margin-bottom: 22px;
  }

  .p-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .p-hero__cta {
    padding: 14px 28px;
    font-size: 10px;
  }

  /* Trust — 2×2 grid */
  .p-trust__inner {
    flex-wrap: wrap;
  }

  .p-trust__item {
    flex: 1 1 50%;
    min-width: 50%;
    padding: 16px 20px;
    border-bottom: 1px solid #eaeaea;
  }

  .p-trust__item:nth-child(even) {
    border-right: none;
  }

  .p-trust__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Categories — 2 columns */
  .p-cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-cat__name {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  /* Products */
  .p-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-product__body {
    padding: 16px 16px 22px;
  }

  .p-product__name {
    font-size: 1.05rem;
  }

  .p-price {
    font-size: 1.15rem;
  }

  /* Reviews — Single column */
  .p-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Section heads — Stack */
  .p-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  /* Footer */
  .p-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .p-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* =============================================
   MOBILE (481px – 640px)
   Typical: Large Phones (iPhone Plus/Max, Pixel)
   ============================================= */
@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }

  /* Trust — Full stack */
  .p-trust__inner {
    flex-direction: column;
  }

  .p-trust__item {
    flex: none;
    width: 100%;
    min-width: 100%;
    flex-direction: row;
    gap: 14px;
    text-align: left;
    padding: 14px var(--gutter);
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }

  .p-trust__item:last-child {
    border-bottom: none;
  }

  /* Product quick-add always visible */
  .p-product__quick {
    position: relative;
    transform: none;
    background: #1a1a1a;
    color: #ffffff;
  }

  /* Newsletter stacks */
  .p-nl__form {
    flex-direction: column;
    border-bottom: none;
    gap: 0;
  }

  .p-nl__input {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 14px; /* Prevent iOS zoom */
  }

  .p-nl__btn {
    padding: 16px 0;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 12px;
  }
}

/* =============================================
   SMALL MOBILE (361px – 480px)
   Typical: iPhone 12/13/14/15, Pixel 7
   ============================================= */
@media (max-width: 480px) {
  :root {
    --gutter: 20px;
  }

  /* Bar */
  .p-bar {
    height: 32px;
  }

  .p-bar__item {
    gap: 24px;
    padding: 0 24px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  /* Nav */
  .p-nav__inner {
    height: 56px;
  }

  .p-nav__logo-text {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
  }

  .p-nav__logo img {
    height: 20px;
  }

  .p-nav__cart {
    padding: 7px 14px;
    font-size: 10px;
  }

  .p-nav__drawer {
    max-width: 100%;
    padding: 72px var(--gutter) var(--gutter);
  }

  /* Hero */
  .p-hero {
    min-height: clamp(340px, 60vh, 500px);
  }

  .p-hero__content {
    padding-bottom: 36px;
  }

  .p-hero__eyebrow {
    font-size: 8px;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
  }

  .p-hero__eyebrow::before {
    width: 20px;
  }

  .p-hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
    margin-bottom: 18px;
    line-height: 1.05;
  }

  .p-hero__cta {
    padding: 14px 24px;
    font-size: 9px;
    letter-spacing: 0.16em;
    width: 100%;
    justify-content: center;
  }

  /* Categories */
  .p-cat {
    padding: 16px 12px;
  }

  .p-cat__name {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .p-cat__placeholder {
    font-size: 2rem;
  }

  /* Products */
  .p-products {
    gap: 1px;
  }

  .p-product__img-wrap {
    aspect-ratio: 3/4;
  }

  .p-product__body {
    padding: 14px 14px 18px;
  }

  .p-product__type {
    font-size: 8px;
    letter-spacing: 0.18em;
    margin-bottom: 5px;
  }

  .p-product__name {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .p-product__reviews {
    margin-bottom: 8px;
  }

  .p-stars { font-size: 8px; }
  .p-review-count { font-size: 9px; }

  .p-price {
    font-size: 1.1rem;
  }

  .p-price-compare {
    font-size: 10px;
  }

  .p-badge {
    top: 12px;
    left: 12px;
    font-size: 7px;
    padding: 4px 8px;
  }

  .p-badge--off {
    top: 12px;
    right: 12px;
    font-size: 9px;
  }

  .p-product__quick {
    font-size: 8px;
    padding: 12px;
  }

  /* Editorial */
  .p-editorial {
    padding: 52px var(--gutter);
  }

  .p-editorial__quote {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 22px;
    line-height: 1.5;
  }

  .p-editorial__attr {
    font-size: 8px;
  }

  /* Reviews */
  .p-reviews-wrap {
    padding: 52px 0;
  }

  .p-reviews-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .p-review {
    padding: 26px 20px;
  }

  .p-review__text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .p-review__stars {
    font-size: 10px;
    margin-bottom: 14px;
  }

  /* Newsletter */
  .p-nl {
    padding: 52px var(--gutter);
  }

  .p-nl__title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .p-nl__sub {
    font-size: 12px;
    margin-bottom: 24px;
  }

  /* Section primitives */
  .p-section-head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    gap: 10px;
  }

  .p-section-label {
    font-size: 8px;
    margin-bottom: 6px;
  }

  .p-section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .p-link {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  /* Footer */
  .p-footer {
    padding: 44px 0 28px;
  }

  .p-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
    margin-bottom: 20px;
  }

  .p-footer__logo-text {
    font-size: 1.15rem;
  }

  .p-footer__desc {
    max-width: 100%;
    font-size: 11px;
  }

  .p-footer__col h4 {
    font-size: 8px;
    margin-bottom: 14px;
  }

  .p-footer__col a {
    font-size: 12px;
    padding: 6px 0;
  }

  .p-footer__col li {
    margin-bottom: 4px;
  }

  .p-footer__bottom {
    font-size: 9px;
    gap: 6px;
  }
}

/* =============================================
   EXTRA SMALL MOBILE (≤360px)
   Typical: iPhone SE, Galaxy A series
   ============================================= */
@media (max-width: 360px) {
  :root {
    --gutter: 16px;
  }

  .p-nav__inner {
    height: 52px;
  }

  .p-nav__logo-text {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .p-hero {
    min-height: 300px;
  }

  .p-hero__title {
    font-size: 1.8rem;
  }

  .p-hero__cta {
    padding: 12px 18px;
    font-size: 8px;
  }

  .p-products {
    grid-template-columns: 1fr;
  }

  .p-product__img-wrap {
    aspect-ratio: 4/5;
  }

  .p-product__body {
    padding: 16px 16px 20px;
  }

  .p-product__name {
    font-size: 1.05rem;
  }

  .p-cats {
    grid-template-columns: 1fr 1fr;
  }

  .p-review {
    padding: 22px 18px;
  }

  .p-editorial__quote {
    font-size: 1.15rem;
  }
}

/* =============================================
   LANDSCAPE PHONE
   ============================================= */
@media (max-height: 500px) and (orientation: landscape) {
  .p-hero {
    min-height: 100vh;
  }

  .p-hero__content {
    padding-bottom: 28px;
  }

  .p-hero__title {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .p-hero__eyebrow {
    margin-bottom: 10px;
  }

  .p-nav__inner {
    height: 48px;
  }

  .p-bar {
    height: 28px;
  }

  .p-editorial {
    padding: 40px var(--gutter);
  }

  .p-reviews-wrap {
    padding: 40px 0;
  }

  .p-nl {
    padding: 40px var(--gutter);
  }
}

/* =============================================
   HIGH-DPI / RETINA
   ============================================= */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
  .p-cat__img,
  .p-product__img,
  .p-hero__img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* =============================================
   SAFE AREA (Notch / Dynamic Island / Pill)
   ============================================= */
@supports (padding: env(safe-area-inset-top)) {
  .p-bar {
    padding-top: env(safe-area-inset-top);
  }

  .p-nav {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .p-footer__bottom {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .p-nav__drawer {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* =============================================
   HOVER CAPABILITY QUERY
   ============================================= */
@media (hover: none) {
  .p-product__quick {
    transform: translateY(0);
    position: relative;
    background: #1a1a1a;
    color: #ffffff;
  }

  .p-cat:hover .p-cat__img {
    transform: none;
    opacity: 0.55;
  }

  .p-cat:hover .p-cat__name {
    letter-spacing: 0.22em;
  }

  .p-product:hover .p-product__img {
    transform: none;
  }

  .p-product:hover {
    box-shadow: none;
  }

  .p-review:hover {
    transform: none;
    box-shadow: none;
  }

  .p-product:active {
    opacity: 0.85;
  }

  .p-cat:active {
    opacity: 0.85;
  }

  .p-hero__cta:active {
    background: rgba(248,246,242,0.12);
  }

  .p-nl__btn:active {
    opacity: 0.5;
  }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .p-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .p-bar__track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .p-bar,
  .p-nav,
  .p-hero__gradient,
  .p-hero__placeholder,
  .p-product__quick,
  .p-nl,
  .p-nav__drawer,
  .p-nav__overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .p-section,
  .p-reviews-wrap,
  .p-editorial,
  .p-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* Remove logo underline */
.p-nav__logo svg line,
.p-nav__logo img + *,
.p-nav__logo-text::after,
.p-nav__logo::after { display: none !important; }

/* Move nav links to right, next to Bag */
.p-nav__inner {
  justify-content: space-between;
}
.p-nav__links {
  margin-left: auto;
  margin-right: 32px;
  list-style: none !important;
}
.p-nav__links li { list-style: none !important; }
.p-nav__links li::marker { display: none; }
```

**In `craftd-logo.svg`**, remove the `<line>` at the bottom — open the file and delete this line:
```
<line x1="0" y1="52" x2="288" y2="52" stroke="#ffffff" stroke-width="0.5" opacity="0.25"/>
/* Nav links horizontal, no bullets */
.p-nav__links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 96px !important;
  list-style: none !important;
  margin-left: auto !important;
  margin-right: 48px !important;
}
.p-nav__links li {
  list-style: none !important;
  display: inline-flex !important;
}
.p-nav__links li::before,
.p-nav__links li::marker {
  display: none !important;
  content: none !important;
}

/* ── Icons Nav ── */
.p-nav__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.p-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  transition: opacity 0.2s;
}
.p-nav__icon:hover { opacity: 0.5; }
.p-nav__badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #ffffff;
  color: #000000;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.p-nav__active {
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .p-nav__links { display: none !important; }
  .p-nav__hamburger { display: flex !important; }
}
@media (min-width: 769px) {
  .p-nav__hamburger { display: none !important; }
  .p-nav__drawer { display: none !important; }
}

@media (max-width: 768px) {
  .p-nav__icons {
    margin-left: auto !important;
    justify-content: flex-end !important;
  }

  .p-nav__links {
    display: none !important;
  }

  .p-nav__inner {
    justify-content: space-between !important;
  }
}

/* ── Nav Links Animation & Remove Home Border ── */

.p-nav__links a {
  position: relative;
  padding-bottom: 4px;
  border: none !important;
  transition: color 0.25s;
}

.p-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.p-nav__links a:hover::after {
  width: 100%;
}

.p-nav__links a:hover {
  color: #ffffff !important;
}

/* Remove border/box from active link */
.p-nav__active {
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.p-nav__active::after {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  background: #ffffff !important;
  margin-top: 4px !important;
}
/* ── Hamburger mobile only ── */
.p-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.p-nav__hamburger span {
  display: block;
  width: 100%; height: 1px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.p-nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.p-nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0);}
.p-nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.p-nav__drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000000;
  padding: 80px 24px 40px;
  z-index: 299;
  flex-direction: column;
  overflow-y: auto;
}
.p-nav__drawer.open { display: flex; }
.p-nav__drawer a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.p-nav__drawer a:last-child { border-bottom: none; }
.p-nav__drawer a:hover { color: #ffffff; }
.p-nav__drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
}
.p-nav__drawer-logo {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .p-nav__inner {
    display: grid !important;
    grid-template-columns: 40px 1fr 40px !important;
    align-items: center !important;
    padding: 0 16px !important;
  }

  .p-nav__hamburger {
    display: flex !important;
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .p-nav__logo {
    grid-column: 2 !important;
    justify-self: center !important;
    margin: 0 !important;
  }

  .p-nav__icons {
    grid-column: 3 !important;
    justify-self: end !important;
    display: flex !important;
    gap: 12px !important;
  }

  /* Show only account + cart */
  .p-nav__icons a.p-nav__icon { display: none !important; }
  .p-nav__icons a.p-nav__icon:nth-child(1) { display: flex !important; }
  .p-nav__icons a.p-nav__icon--cart { display: flex !important; }

  .p-nav__links { display: none !important; }
}

/* ── Trust Bar Marquee Mobile ── */
.p-trust--mobile { display: none; }
.p-trust--desktop { display: block; }

@media (max-width: 768px) {
  .p-trust--desktop { display: none !important; }
  .p-trust--mobile {
    display: block !important;
    background: var(--black-2);
    border-bottom: 1px solid var(--white-06);
    overflow: hidden;
    padding: 18px 0;
  }

  .p-trust__marquee { overflow: hidden; }

  .p-trust__track {
    display: flex;
    white-space: nowrap;
    animation: trustMarquee 18s linear infinite;
    will-change: transform;
  }

  .p-trust__slide {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .p-trust__slide .p-trust__title {
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
  }

  .p-trust__slide .p-trust__sub {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
  }
}

@keyframes trustMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Trust Bar Mobile Slider ── */
.p-trust--mobile { display: none; }
.p-trust--desktop { display: block; }

@media (max-width: 768px) {
  .p-trust--desktop { display: none !important; }
  .p-trust--mobile {
    display: block !important;
    background: #ffffff !important;
    padding: 20px 24px;
    text-align: center;
    overflow: hidden;
  }

  .p-trust__slide {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: trustFade 0.5s ease;
  }

  .p-trust__slide.active { display: flex; }

  .p-trust__slide .p-trust__icon {
    font-size: 1.6rem;
  }

  .p-trust__slide .p-trust__title {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.06em;
  }

  .p-trust__slide .p-trust__sub {
    font-size: 11px;
    color: #666666;
    letter-spacing: 0.04em;
  }

  @keyframes trustFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ── Reviews Mobile Slider ── */
.p-reviews--mobile { display: none; }
.p-reviews--desktop { display: grid; }

@media (max-width: 768px) {
  .p-reviews--desktop { display: none !important; }

  .p-reviews--mobile {
    display: block !important;
    background: #ffffff;
    padding: 32px 24px 24px;
    margin-top: 32px;
  }

  .p-review-slide {
    display: none;
    animation: reviewFade 0.5s ease;
  }

  .p-review-slide.active { display: block; }

  .p-review-slide .p-review__stars {
    color: #000000;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .p-review-slide .p-review__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .p-review-slide .p-review__divider {
    width: 32px;
    height: 1px;
    background: #cccccc;
    margin-bottom: 16px;
  }

  .p-review-slide .p-review__name {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333333;
  }

  .p-review-slide .p-review__verified {
    font-size: 10px;
    color: #999999;
    margin-top: 4px;
  }

  .p-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .p-reviews-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #cccccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
  }

  .p-reviews-dot.active { background: #000000; }

  @keyframes reviewFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
/* ── Reviews Desktop Slider ── */
@media (min-width: 769px) {
  .p-reviews--desktop { display: none !important; }

  .p-reviews--mobile {
    display: block !important;
    background: transparent;
    padding: 0;
    margin-top: 0;
  }

  .p-review-slide {
    display: none;
    background: var(--black-3);
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    animation: reviewFade 0.6s ease;
  }

  .p-review-slide.active { display: block; }

  .p-review-slide .p-review__stars {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .p-review-slide .p-review__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    color: #ffffff;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .p-review-slide .p-review__divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 20px;
  }

  .p-review-slide .p-review__name {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }

  .p-review-slide .p-review__verified {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
  }

  .p-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
  }

  .p-reviews-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
  }

  .p-reviews-dot.active { background: #ffffff; }
}
@media (min-width: 769px) {
  .p-review-slide {
    background: #ffffff !important;
  }

  .p-review-slide .p-review__stars { color: #000000 !important; }
  .p-review-slide .p-review__text { color: #000000 !important; }
  .p-review-slide .p-review__divider { background: #cccccc !important; }
  .p-review-slide .p-review__name { color: #333333 !important; }
  .p-review-slide .p-review__verified { color: #999999 !important; }
}
/* ── Reviews Desktop 3-up Carousel ── */
@media (min-width: 769px) {
  .p-reviews--mobile { display: none !important; }

  .p-reviews--desktop {
    display: block !important;
    overflow: hidden;
    margin-top: 40px;
  }

  .p-reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .p-review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    margin-right: 24px;
    background: #ffffff;
    padding: 36px 32px;
    box-sizing: border-box;
  }

  .p-review-card .p-review__stars {
    color: #000000;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .p-review-card .p-review__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .p-review-card .p-review__divider {
    width: 32px;
    height: 1px;
    background: #cccccc;
    margin-bottom: 16px;
  }

  .p-review-card .p-review__name {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333333;
  }

  .p-review-card .p-review__verified {
    font-size: 9px;
    color: #999999;
    margin-top: 4px;
  }

  #craftd-reviews-dots-desktop {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
  }

  #craftd-reviews-dots-desktop .p-reviews-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
  }

  #craftd-reviews-dots-desktop .p-reviews-dot.active {
    background: #ffffff;
  }
}

/* ── Reviews Mobile Slider ── */
@media (max-width: 768px) {
  .p-reviews--desktop { display: none !important; }

  .p-reviews--mobile {
    display: block !important;
    background: #ffffff;
    padding: 32px 24px 24px;
    margin-top: 32px;
  }

  .p-review-slide { display: none; animation: reviewFade 0.5s ease; }
  .p-review-slide.active { display: block; }

  .p-review-slide .p-review__stars { color: #000000; font-size: 14px; margin-bottom: 16px; }
  .p-review-slide .p-review__text { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: #000000; line-height: 1.65; margin-bottom: 20px; }
  .p-review-slide .p-review__divider { width: 32px; height: 1px; background: #cccccc; margin-bottom: 16px; }
  .p-review-slide .p-review__name { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #333333; }
  .p-review-slide .p-review__verified { font-size: 10px; color: #999999; margin-top: 4px; }

  .p-reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
  .p-reviews-dot { width: 6px; height: 6px; border-radius: 50%; background: #cccccc; border: none; cursor: pointer; padding: 0; transition: background 0.3s; }
  .p-reviews-dot.active { background: #000000; }

  @keyframes reviewFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* =============================================
   PRODUCT PAGE
   ============================================= */

/* Breadcrumb */
.p-product-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--gutter) 96px;
}
.p-breadcrumb {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.p-breadcrumb a:hover { color: #ffffff; }
.p-breadcrumb span { opacity: 0.3; }

/* Main layout */
.p-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Image gallery */
.p-product-gallery {}
.p-product-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #0d0d0d;
  display: block;
  margin-bottom: 12px;
}
.p-product-main-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.15;
  margin-bottom: 12px;
}
.p-product-thumbs {
  display: flex;
  gap: 8px;
}
.p-product-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  background: #0d0d0d;
}
.p-product-thumb:hover,
.p-product-thumb.active {
  opacity: 1;
  border-color: #ffffff;
}

/* Product info */
.p-product-info {}
.p-product-info__type {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.p-product-info__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.p-product-info__reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.p-product-info__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.p-product-info__price-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: #ffffff;
}
.p-product-info__price-compare {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.p-product-info__badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  padding: 4px 10px;
  font-weight: 600;
}

/* Description */
.p-product-info__desc {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

/* Variant selector */
.p-variant-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.p-variants {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.p-variant-btn {
  padding: 9px 20px;
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.p-variant-btn:hover,
.p-variant-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.p-variant-btn.sold-out {
  opacity: 0.25;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity */
.p-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  width: fit-content;
}
.p-qty-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.p-qty-btn:hover { background: rgba(255,255,255,0.08); }
.p-qty-input {
  width: 52px;
  height: 44px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  outline: none;
}

/* Add to cart */
.p-add-to-cart {
  width: 100%;
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-bottom: 12px;
  display: block;
}
.p-add-to-cart:hover { background: rgba(255,255,255,0.85); }

.p-buy-now {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
.p-buy-now:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

/* Trust icons */
.p-product-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.p-product-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.p-product-trust__item span:first-child { font-size: 1rem; }

/* Accordion */
.p-accordion {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.p-accordion__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.p-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.p-accordion__icon {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.p-accordion__item.open .p-accordion__icon { transform: rotate(45deg); }
.p-accordion__body {
  display: none;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.45);
  padding-bottom: 24px;
}
.p-accordion__item.open .p-accordion__body { display: block; }

/* Related products */
.p-related {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .p-product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-product-page { padding: 24px var(--gutter) 64px; }
  .p-product-info__title { font-size: 2rem; }
}

/* ── Footer Collapsible Mobile ── */
@media (max-width: 768px) {
  .p-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .p-footer__col {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .p-footer__col h4 {
    cursor: pointer;
    padding: 18px 0;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  .p-footer__col h4::after {
    content: '+';
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    transition: transform 0.3s;
    font-weight: 300;
  }

  .p-footer__col.open h4::after {
    transform: rotate(45deg);
  }

  .p-footer__col ul {
    display: none;
    padding-bottom: 16px;
  }

  .p-footer__col.open ul {
    display: block;
  }

  /* Keep logo and desc always visible */
  .p-footer__inner > div:first-child {
    padding: 32px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}/* ── Product Page Mobile Fix ── */
@media (max-width: 768px) {
  .p-product-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  }
.p-product__type { display: none !important; }
/* ── Product Card Full Click Area ── */
.p-product {
  position: relative;
}
.p-product__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}
.p-product__quick {
  position: relative;
  z-index: 3;
}
.p-product__badge,
.p-badge,
.p-badge--off {
  position: relative;
  z-index: 3;
}


/* ── Nav Search Bar ── */
.p-nav__search-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  height: 36px;
  overflow: hidden;
}
.p-nav__search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 0 12px;
  width: 160px;
}
.p-nav__search-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.p-nav__search-btn {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.p-nav__search-btn:hover { color: #ffffff; }
@media (max-width: 768px) {
  .p-nav__search-form { display: none; }
}
.p-product-info__desc {
  color: rgba(255,255,255,0.8);
}
.p-accordion__body {
  color: rgba(255,255,255,0.9);
}


@media (max-width: 768px) {
  .p-about-heading {
    margin-left: 0 !important;
    text-align: right !important;
  }
}
