/** Shopify CDN: Minification failed

Line 3143:0 Unexpected "}"

**/
:root {
  --pd-ink: #1b1815;
  --pd-ink-soft: #4a453f;
  --pd-paper: #faf7f2;
  --pd-paper-warm: #f3ede3;
  --pd-sand: #ede4d6;
  --pd-sand-deep: #ddcfb8;
  --pd-line: #e4dccd;
  --pd-line-soft: #ece5d8;
  --pd-gold: #a8834f;
  --pd-charcoal: #201d1a;

  --pd-container: 1440px;
  --pd-serif: "Cormorant Garamond", "Times New Roman", serif;
  --pd-sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

html {
  background: var(--pd-paper);
}

body {
  margin: 0;
  background: var(--pd-paper);
  color: var(--pd-ink);
  font-family: var(--pd-sans);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.pd-container {
  width: min(calc(100% - 96px), var(--pd-container));
  margin-inline: auto;
}

/* ANNOUNCEMENT */

.pd-announcement {
  background: linear-gradient(100deg, #292720, #191815 50%, #292720);
  border-bottom: 1px solid rgba(186, 155, 96, .25);
  color: #eee4d4;
}

.pd-announcement__inner {
  min-height: 37px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.pd-announcement__signature {
  font-family: var(--pd-serif);
  font-size: 13px;
  font-style: italic;
  color: #c2af90;
  letter-spacing: .025em;
}

.pd-announcement__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 10px;
  letter-spacing: .16em;
  white-space: nowrap;
}

.pd-announcement__diamond {
  width: 4px;
  height: 4px;
  background: #c8ad7d;
  transform: rotate(45deg);
}

.pd-announcement__help {
  justify-self: end;
  font-size: 10px;
  color: #c3b8a5;
  transition: color .2s ease;
}

.pd-announcement__help:hover {
  color: #fff8e9;
}

/* HEADER */

.pd-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, .97);
  border-bottom: 1px solid var(--pd-line-soft);
  backdrop-filter: blur(14px);
}

.pd-header__inner {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.pd-header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.pd-header__nav > a,
.pd-nav-dropdown > summary {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;

  font-size: 13px;
  font-weight: 500;
  letter-spacing: .015em;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.pd-header__nav > a::after,
.pd-nav-dropdown > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--pd-ink);
  transition: right .25s ease;
}

.pd-header__nav > a:hover::after,
.pd-nav-dropdown > summary:hover::after {
  right: 0;
}

.pd-nav-dropdown {
  position: relative;
}

.pd-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.pd-nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 220px;
  padding: 8px 0;

  background: var(--pd-paper);
  border: 1px solid var(--pd-line);
  box-shadow: 0 14px 32px rgba(27, 24, 21, .08);
}

.pd-nav-dropdown__panel a {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
}

.pd-nav-dropdown__panel a:hover {
  background: var(--pd-sand);
}

.pd-header__logo {
  width: 170px;
  display: block;
}

.pd-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.pd-header__tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 3px;
}

.pd-icon-link,
.pd-mobile-menu > summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--pd-ink);
  transition: background .2s ease;
}

.pd-icon-link:hover,
.pd-mobile-menu > summary:hover {
  background: var(--pd-sand);
}

.pd-icon-link svg,
.pd-mobile-menu svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.pd-cart-link {
  position: relative;
}

.pd-cart-count {
  position: absolute;
  top: 2px;
  right: 0;

  min-width: 17px;
  height: 17px;
  padding: 0 4px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: var(--pd-ink);
  color: var(--pd-paper);

  font-size: 9px;
  font-weight: 600;
}

/* MOBILE MENU */

.pd-mobile-menu {
  display: none;
  justify-self: start;
}

.pd-mobile-menu > summary {
  list-style: none;
  cursor: pointer;
}

.pd-mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.pd-mobile-menu__panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  z-index: 100;

  padding: 28px 24px;
  overflow-y: auto;

  background: var(--pd-paper);
  border-right: 1px solid var(--pd-line);
  box-shadow: 20px 0 60px rgba(27,24,21,.12);
}

.pd-mobile-menu__title {
  margin-bottom: 28px;
  font-family: var(--pd-serif);
  font-size: 27px;
}

.pd-mobile-menu__panel nav {
  display: grid;
}

.pd-mobile-menu__panel nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--pd-line-soft);
  font-size: 15px;
}

@media (max-width: 1399px) {
  .pd-header__nav {
    display: none;
  }

  .pd-mobile-menu {
    display: block;
  }

  .pd-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }
}

@media (max-width: 1100px) {
  .pd-container {
    width: min(calc(100% - 64px), var(--pd-container));
  }

  .pd-announcement__inner {
    grid-template-columns: 1fr;
  }

  .pd-announcement__signature,
  .pd-announcement__help {
    display: none;
  }
}

@media (max-width: 639px) {
  .pd-container {
    width: calc(100% - 40px);
  }

  .pd-announcement__inner {
    min-height: 34px;
  }

  .pd-announcement__center {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .pd-header__inner {
    min-height: 62px;
    gap: 8px;
  }

  .pd-header__logo {
    width: 130px;
  }

  .pd-header__tools .pd-account-link {
    display: none;
  }
}
/* =========================
   PANDONIKS HERO
========================= */

.pd-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: clamp(480px, 34vw, 580px);
  background: #f7f0e6;
}

.pd-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e7d7c0;
}

.pd-hero__poster,
.pd-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 24%;
}

.pd-hero__video {
  z-index: 1;
}

.pd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(247, 237, 223, .60) 0%,
      rgba(247, 237, 223, .25) 28%,
      rgba(247, 237, 223, 0) 48%
    );
}

.pd-hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.pd-hero__copy {
  width: 420px;
  max-width: 43%;
}

.pd-hero__copy h1 {
  margin: 0;

  font-family: var(--pd-serif);
  font-size: clamp(48px, 4.1vw, 68px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
}

.pd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.pd-hero__primary {
  min-height: 46px;
  padding: 12px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  background: #211e19;
  color: #fffaf3;

  font-size: 12px;
  transition:
    background .25s ease,
    box-shadow .25s ease;
}

.pd-hero__primary:hover {
  background: #493b2b;
  box-shadow: 0 8px 20px -12px rgba(57, 41, 27, .5);
}

.pd-hero__secondary {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-bottom: 1px solid #8c7761;

  font-size: 12px;
}

.pd-hero__actions a span {
  transition: transform .3s ease;
}

.pd-hero__actions a:hover span {
  transform: translateX(3px);
}

.pd-hero__playback {
  position: absolute;
  right: 28px;
  bottom: 18px;
  z-index: 4;

  min-height: 44px;
  padding: 0 15px;

  display: flex;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(255, 248, 237, .69);
  border-radius: 999px;

  background: rgba(255, 249, 239, .79);
  color: #30271c;

  font-family: var(--pd-sans);
  font-size: 10px;
  cursor: pointer;
}

.pd-hero__playback:hover {
  background: #fffaf3;
}

@keyframes pd-hero-title {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pd-hero-media {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pd-hero__copy h1 {
    animation: pd-hero-title .85s cubic-bezier(.22,1,.36,1) both;
  }

  .pd-hero__actions {
    animation: pd-hero-title .7s .18s cubic-bezier(.22,1,.36,1) both;
  }

  .pd-hero__media {
    animation: pd-hero-media 1.6s cubic-bezier(.22,1,.36,1) both;
  }
}

@media (max-width: 1199px) {
  .pd-hero__copy {
    max-width: 44%;
  }

  .pd-hero__copy h1 {
    font-size: 52px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .pd-hero {
    height: 440px;
  }

  .pd-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(246, 235, 220, .88),
        transparent 65%
      );
  }

  .pd-hero__copy {
    max-width: 47%;
  }

  .pd-hero__copy h1 {
    font-size: 46px;
  }
}

@media (max-width: 639px) {
  .pd-hero {
    height: auto;
    overflow: visible;
  }

  .pd-hero__media {
    position: relative;
    height: clamp(240px, 43svh, 350px);
  }

  .pd-hero__poster,
  .pd-hero__video {
    object-position: 76% 18%;
  }

  .pd-hero__overlay {
    display: none;
  }

  .pd-hero__inner {
    height: auto;
    display: block;
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .pd-hero__copy {
    width: auto;
    max-width: none;
  }

  .pd-hero__copy h1 {
    font-size: 36px;
  }

  .pd-hero__actions {
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 18px;
  }

  .pd-hero__primary {
    min-height: 44px;
    padding: 10px 14px;
    gap: 10px;
    font-size: 11px;
  }

  .pd-hero__secondary {
    font-size: 11px;
  }

  .pd-hero__playback {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-hero__video {
    display: none;
  }
}

/* =========================
   PRODUCT SECTIONS
========================= */

.pd-products {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
  background: var(--pd-paper);
}

.pd-products__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.pd-products__intro {
  position: sticky;
  top: 130px;
}

.pd-products__eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pd-ink-soft);
}

.pd-products__intro h2 {
  margin: 0;
  font-family: var(--pd-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}

.pd-products__description {
  margin: 18px 0 0;
  max-width: 230px;
  color: var(--pd-ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
}

.pd-products__all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--pd-ink);
  font-size: 11px;
  font-weight: 600;
}

.pd-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pd-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pd-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pd-sand);
  border-radius: 2px;
}

.pd-card__image-link {
  position: absolute;
  inset: 0;
  display: block;
}

.pd-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity .5s ease,
    transform .6s cubic-bezier(.22,1,.36,1);
}

.pd-card__image--secondary {
  opacity: 0;
}

.pd-card:hover .pd-card__image--primary {
  opacity: 0;
}

.pd-card:hover .pd-card__image--secondary {
  opacity: 1;
}

.pd-card:hover .pd-card__image {
  transform: scale(1.015);
}

.pd-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--pd-sand);
}

.pd-card__badge,
.pd-card__soldout {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 5px 8px;
  background: var(--pd-ink);
  color: var(--pd-paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.pd-card__soldout {
  top: auto;
  bottom: 12px;
  background: rgba(255,255,255,.9);
  color: var(--pd-ink);
}

.pd-card__favorite {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;

  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: rgba(255,255,255,.90);
  color: var(--pd-ink);
  cursor: pointer;
}

.pd-card__favorite svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.pd-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 2px 0;
}

.pd-card__title {
  min-height: 2.6em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.pd-card__title:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pd-card__prices {
  min-height: 25px;
  margin-top: 7px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-card__price {
  font-size: 15.5px;
  font-weight: 700;
}

.pd-card__compare {
  color: var(--pd-ink-soft);
  font-size: 12px;
  text-decoration: line-through;
}

.pd-card__form {
  margin-top: auto;
  padding-top: 17px;
}

.pd-card__cart {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid rgba(27,24,21,.8);
  background: transparent;
  color: var(--pd-ink);

  font-family: var(--pd-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;

  cursor: pointer;
  transition:
    background .2s ease,
    color .2s ease;
}

.pd-card__cart svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.pd-card__cart:hover:not(:disabled) {
  background: var(--pd-ink);
  color: var(--pd-paper);
}

.pd-card__cart:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.pd-products__note,
.pd-products__signature {
  position: absolute;
  color: var(--pd-ink);
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: .18em;
  opacity: .26;
  pointer-events: none;
}

.pd-products__note {
  top: 90px;
  left: 15px;
}

.pd-products__signature {
  right: 15px;
  bottom: 50px;
  text-align: right;
}

@media (max-width: 1199px) {
  .pd-products__layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 35px;
  }

  .pd-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 850px) {
  .pd-products {
    padding: 62px 0 72px;
  }

  .pd-products__layout {
    display: block;
  }

  .pd-products__intro {
    position: static;
    margin-bottom: 30px;
  }

  .pd-products__description {
    max-width: 480px;
  }

  .pd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .pd-products__note,
  .pd-products__signature {
    display: none;
  }
}

@media (max-width: 639px) {
  .pd-products {
    padding: 48px 0 58px;
  }

  .pd-products__intro h2 {
    font-size: 34px;
  }

  .pd-products__description {
    margin-top: 12px;
    font-size: 13px;
  }

  .pd-products__all {
    margin-top: 18px;
  }

  .pd-product-grid {
    gap: 28px 12px;
  }

  .pd-card__favorite {
    width: 38px;
    height: 38px;
    right: 8px;
    top: 8px;
  }

  .pd-card__title {
    font-size: 13px;
  }

  .pd-card__price {
    font-size: 14px;
  }

  .pd-card__cart {
    font-size: 10px;
  }
}

/* =========================
   CAMPAIGN BANNER
========================= */

.pd-campaign {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #eee4d6;
}

.pd-campaign__media {
  position: absolute;
  inset: 0;
}

.pd-campaign__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% 28%;
}

.pd-campaign__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250,247,242,.10) 20%,
      rgba(250,247,242,.30) 55%,
      rgba(250,247,242,.88) 100%
    );
}

.pd-campaign__inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pd-campaign__content {
  width: 390px;
  max-width: 42%;
}

.pd-campaign__eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}

.pd-campaign__content h2 {
  margin: 0;

  font-family: var(--pd-serif);
  font-size: clamp(44px,4vw,64px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.pd-campaign__description {
  margin: 18px 0 0;
  max-width: 340px;

  color: var(--pd-ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.pd-campaign__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  min-height: 46px;
  margin-top: 28px;
  padding: 12px 22px;

  background: var(--pd-ink);
  color: var(--pd-paper);

  font-size: 11px;
  font-weight: 600;
}

.pd-campaign__link span {
  transition: transform .25s ease;
}

.pd-campaign__link:hover span {
  transform: translateX(4px);
}

@media (max-width: 800px) {
  .pd-campaign {
    min-height: auto;
  }

  .pd-campaign__media {
    position: relative;
    height: 390px;
  }

  .pd-campaign__media img {
    object-position: 26% 22%;
  }

  .pd-campaign__shade {
    display: none;
  }

  .pd-campaign__inner {
    min-height: auto;
    display: block;
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .pd-campaign__content {
    width: auto;
    max-width: none;
  }

  .pd-campaign__content h2 {
    font-size: 38px;
  }
}

/* =========================
   DISCOUNT RAIL
========================= */

.pd-discount {
  padding: 88px 0 96px;
  background: var(--pd-paper-warm);
  border-top: 1px solid var(--pd-line-soft);
  border-bottom: 1px solid var(--pd-line-soft);
}

.pd-discount__heading {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.pd-discount__heading h2 {
  margin: 0;
  font-family: var(--pd-serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
}

.pd-discount__heading p {
  margin: 10px 0 0;
  color: var(--pd-ink-soft);
  font-size: 13.5px;
}

.pd-discount__heading > a {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

.pd-discount__heading > a span {
  transition: transform .25s ease;
}

.pd-discount__heading > a:hover span {
  transform: translateX(4px);
}

.pd-discount__rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;

  padding-bottom: 20px;

  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--pd-ink-soft) transparent;
}

.pd-discount__rail::-webkit-scrollbar {
  height: 3px;
}

.pd-discount__rail::-webkit-scrollbar-track {
  background: var(--pd-line);
}

.pd-discount__rail::-webkit-scrollbar-thumb {
  background: var(--pd-ink);
}

.pd-discount__item {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
}

.pd-discount__empty {
  color: var(--pd-ink-soft);
  font-size: 13px;
}

@media (max-width: 1000px) {
  .pd-discount__item {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media (max-width: 700px) {
  .pd-discount {
    padding: 56px 0 64px;
  }

  .pd-discount__heading {
    align-items: flex-start;
  }

  .pd-discount__heading h2 {
    font-size: 32px;
  }

  .pd-discount__item {
    flex-basis: 72%;
  }
}

@media (max-width: 430px) {
  .pd-discount__heading {
    display: block;
  }

  .pd-discount__heading > a {
    margin-top: 18px;
  }

  .pd-discount__item {
    flex-basis: 82%;
  }
}

/* =========================
   CLOSING CTA
========================= */

.pd-closing {
  background: #1d1b18;
  color: #faf7f2;
  padding: 88px 0;
}

.pd-closing__inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}

.pd-closing__copy {
  max-width: 680px;
}

.pd-closing__eyebrow {
  margin: 0 0 18px;
  color: rgba(250,247,242,.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}

.pd-closing h2 {
  margin: 0;
  font-family: var(--pd-serif);
  font-size: clamp(46px,5vw,72px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.04em;
}

.pd-closing__description {
  margin: 24px 0 0;
  max-width: 510px;
  color: rgba(250,247,242,.68);
  font-size: 14px;
  line-height: 1.65;
}

.pd-closing__button {
  flex-shrink: 0;
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #faf7f2;
  color: #1d1b18;
  font-size: 11px;
  font-weight: 600;
}

.pd-closing__button span {
  font-size: 17px;
}


/* =========================
   BENEFITS
========================= */

.pd-benefits {
  padding: 42px 0;
  background: #f3ede3;
  border-bottom: 1px solid var(--pd-line);
}

.pd-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.pd-benefit {
  padding: 10px 32px;
  border-right: 1px solid var(--pd-line);
}

.pd-benefit:first-child {
  padding-left: 0;
}

.pd-benefit:last-child {
  border-right: 0;
}

.pd-benefit__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-benefit__icon {
  width: 22px;
  height: 22px;
}

.pd-benefit__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.pd-benefit h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.pd-benefit p {
  margin: 9px 0 0 32px;
  color: var(--pd-ink-soft);
  font-size: 12px;
  line-height: 1.55;
}


/* =========================
   FOOTER
========================= */

.pd-footer {
  background: #1b1916;
  color: #faf7f2;
}

.pd-footer__main {
  padding-top: 68px;
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr .9fr 1.25fr;
  gap: 48px;
}

.pd-footer__logo {
  display: block;
  width: 185px;
  filter: invert(1);
}

.pd-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.pd-footer__brand > p {
  max-width: 290px;
  margin: 22px 0 0;
  color: rgba(250,247,242,.65);
  font-size: 13px;
  line-height: 1.7;
}

.pd-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 24px;
}

.pd-footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250,247,242,.22);
  border-radius: 50%;
  color: rgba(250,247,242,.72);
  font-size: 9px;
}

.pd-footer h3 {
  margin: 0;
  color: rgba(250,247,242,.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.5;
}

.pd-footer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.pd-footer li + li {
  margin-top: 13px;
}

.pd-footer li a {
  color: rgba(250,247,242,.82);
  font-size: 13px;
}

.pd-footer li a:hover {
  color: #fff;
}

.pd-footer__form {
  margin-top: 22px;
}

.pd-footer__email {
  display: flex;
  border-bottom: 1px solid rgba(250,247,242,.4);
}

.pd-footer__email input {
  width: 100%;
  min-height: 45px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #faf7f2;
  font: inherit;
  font-size: 12px;
}

.pd-footer__email input::placeholder {
  color: rgba(250,247,242,.48);
}

.pd-footer__email button {
  width: 44px;
  border: 0;
  background: transparent;
  color: #faf7f2;
  cursor: pointer;
  font-size: 17px;
}

.pd-footer__message {
  font-size: 11px;
  color: rgba(250,247,242,.65);
}

.pd-footer__bottom {
  border-top: 1px solid rgba(250,247,242,.13);
}

.pd-footer__bottom-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pd-footer__bottom p {
  margin: 0;
  color: rgba(250,247,242,.52);
  font-size: 11px;
  letter-spacing: .03em;
}

.pd-footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-footer__payment-icon {
  width: 34px;
  height: 22px;
}

.pd-footer__secure {
  margin-left: 8px;
  color: rgba(250,247,242,.55);
  font-size: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {

  .pd-closing__inner {
    align-items: flex-start;
  }

  .pd-benefits__grid {
    grid-template-columns: repeat(2,1fr);
    gap: 28px 0;
  }

  .pd-benefit:nth-child(2) {
    border-right: 0;
  }

  .pd-benefit:nth-child(3) {
    padding-left: 0;
  }

  .pd-footer__main {
    grid-template-columns: repeat(2,1fr);
  }

  .pd-footer__brand {
    grid-column: 1 / -1;
  }

}


@media (max-width: 639px) {

  .pd-closing {
    padding: 58px 0;
  }

  .pd-closing__inner {
    display: block;
  }

  .pd-closing h2 {
    font-size: 44px;
  }

  .pd-closing__button {
    margin-top: 30px;
  }

  .pd-benefits {
    padding: 34px 0;
  }

  .pd-benefits__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pd-benefit,
  .pd-benefit:first-child,
  .pd-benefit:nth-child(3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--pd-line);
  }

  .pd-benefit:last-child {
    border-bottom: 0;
  }

  .pd-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-top: 52px;
  }

  .pd-footer__brand,
  .pd-footer__newsletter {
    grid-column: 1 / -1;
  }

  .pd-footer__bottom-inner {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
  }

  .pd-footer__payments {
    margin-top: 16px;
    flex-wrap: wrap;
  }

}
/* =========================
   HEADER FAVORITES + MOBILE PATCH
========================= */

.pd-favorite-link {
  position: relative;
}

.pd-favorite-count {
  position: absolute;
  top: 2px;
  right: 0;

  min-width: 17px;
  height: 17px;
  padding: 0 4px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--pd-ink);
  color: var(--pd-paper);

  font-size: 9px;
  font-weight: 600;
}

.pd-card__favorite.is-favorite svg {
  fill: currentColor;
}

.pd-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;

  display: none;

  border: 0;
  background: rgba(27,24,21,.42);
}

.pd-mobile-menu[open] .pd-mobile-menu__overlay {
  display: block;
}

.pd-mobile-menu__panel {
  z-index: 100;
}

.pd-mobile-menu__head {
  min-height: 64px;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--pd-line);
}

.pd-mobile-menu__head > span {
  font-family: var(--pd-serif);
  font-size: 21px;
  letter-spacing: .13em;
}

.pd-mobile-menu__close {
  width: 44px;
  height: 44px;

  border: 0;
  background: transparent;

  color: var(--pd-ink);
  font-size: 28px;
  font-weight: 300;

  cursor: pointer;
}

.pd-mobile-menu__utility {
  margin-top: 24px;
  padding-top: 12px;

  display: grid;

  border-top: 1px solid var(--pd-line);
}

.pd-mobile-menu__utility a {
  min-height: 50px;

  display: flex;
  align-items: center;
  gap: 11px;

  font-size: 13px;
}

.pd-mobile-menu__utility svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

body:has(.pd-mobile-menu[open]) {
  overflow: hidden;
}
/* =========================================================
   PANDONIKS VISUAL PARITY PATCH
   Eski storefront ölçüleriyle hizalama
========================================================= */

/* Shopify Skeleton temasının sayfayı yaklaşık 1200px içine
   hapsetmesini kesin olarak devre dışı bırak. */
html,
body {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body {
  overflow-x: hidden;
}

/* Tüm Shopify section wrapper'ları full width kalmalı. */
.shopify-section,
.shopify-section-group-header-group,
.shopify-section-group-footer-group,
main,
#MainContent {
  width: 100% !important;
  max-width: none !important;
}

/* Eski PANDONIKS gerçek container sistemi:
   max 1480px / desktop 64px / tablet 32px / mobile 20px */
.pd-container {
  width: 100%;
  max-width: 1480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 64px !important;
  padding-right: 64px !important;
}


/* =========================================================
   HEADER
========================================================= */

.pd-announcement,
.pd-header {
  width: 100%;
}

.pd-header__inner {
  max-width: 1480px !important;
}

.pd-header__nav {
  gap: 26px;
}

.pd-header__logo {
  width: 172px;
}


/* =========================================================
   HERO
========================================================= */

.pd-hero {
  width: 100%;
  height: clamp(480px, 34vw, 620px);
}

.pd-hero__inner {
  max-width: 1480px !important;
}

.pd-hero__copy {
  width: 440px;
  max-width: 440px;
}

.pd-hero__copy h1 {
  font-size: clamp(48px, 3.8vw, 64px);
  line-height: .96;
  letter-spacing: -.05em;
}

.pd-hero__actions {
  margin-top: 28px;
}


/* =========================================================
   PRODUCT SECTIONS
   Eski reference.css ölçüleri
========================================================= */

.pd-products {
  padding: 64px 0 !important;
  border-top: 1px solid var(--pd-line-soft);
  background: #fdfaf6;
}

/* Ana sayfadaki ürün bölümlerini dönüşümlü sıcak ton yap */
main .shopify-section:nth-of-type(odd) .pd-products {
  background: #f5efe7;
}

.pd-products__layout {
  grid-template-columns: 240px minmax(0, 1fr) !important;
  gap: 40px !important;
  align-items: center !important;
}

.pd-products__intro {
  position: static !important;
}

.pd-products__intro h2 {
  margin-top: 16px;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.pd-products__intro h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 22px;
  background: #8f7961;
}

.pd-products__description {
  max-width: 240px;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.pd-products__all {
  min-height: 44px;
  margin-top: 28px;
  padding: 10px 0;
  gap: 12px;
  border-bottom-color: #baa18a;
  font-size: 12px;
}

.pd-product-grid {
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 22px !important;
}

.pd-card {
  overflow: hidden;
  border: 1px solid #e7dccf;
  border-radius: 4px;
  background: #fffcf8;
}

.pd-card__media {
  aspect-ratio: 1 !important;
  border-radius: 0;
}

.pd-card__content {
  padding: 15px 14px 14px !important;
}

.pd-card__title {
  min-height: 3em;
  font-size: 13px;
  line-height: 1.5;
}

.pd-card__prices {
  margin-top: 8px;
  margin-bottom: 16px;
}

.pd-card__price {
  font-size: 15px;
}

.pd-card__form {
  padding-top: 0;
}

.pd-card__cart {
  min-height: 44px;
  padding: 10px;
  border-color: #baa18a;
  font-size: 12px;
}


/* =========================================================
   CAMPAIGN
========================================================= */

.pd-campaign {
  width: 100%;
  min-height: 460px;
}

.pd-campaign__inner {
  min-height: 460px;
}

.pd-campaign__content {
  width: 360px;
  max-width: 360px;
}

.pd-campaign__content h2 {
  font-size: 54px;
  line-height: .96;
}

.pd-campaign__description {
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================================
   DISCOUNT
========================================================= */

.pd-discount {
  padding: 64px 0 72px;
}

.pd-discount__heading h2 {
  font-size: 36px;
}


/* =========================================================
   DARK CLOSING CTA
========================================================= */

.pd-closing {
  width: 100%;
  padding: 0;
}

.pd-closing__inner {
  min-height: 360px;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.pd-closing h2 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.02;
}

.pd-closing__description {
  max-width: 380px;
}


/* =========================================================
   BENEFITS
   Eski tasarımda sıcak kart alanı değil, ince bölünmüş şerit
========================================================= */

.pd-benefits {
  width: 100%;
  padding: 0;
  background: var(--pd-paper);
  border-top: 1px solid var(--pd-line-soft);
}

.pd-benefits__grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.pd-benefit {
  padding: 28px 30px;
  border-right: 0;
  border-left: 1px solid var(--pd-line-soft);
}

.pd-benefit:first-child {
  padding-left: 0;
  border-left: 0;
}

.pd-benefit:last-child {
  padding-right: 0;
}

.pd-benefit p {
  max-width: 230px;
  margin: 9px 0 0 32px;
  font-size: 12.5px;
  line-height: 1.65;
}


/* =========================================================
   FOOTER
========================================================= */

.pd-footer {
  width: 100% !important;
  max-width: none !important;
  background:
    linear-gradient(
      115deg,
      #24221e,
      #171613
    );
}

.pd-footer__main {
  max-width: 1480px !important;
  padding-top: 44px;
  padding-bottom: 44px;
}

.pd-footer__bottom-inner {
  max-width: 1480px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

  .pd-container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .pd-products__layout {
    grid-template-columns: 190px minmax(0,1fr) !important;
    gap: 24px !important;
  }

  .pd-products__intro h2 {
    font-size: 36px;
  }

  .pd-product-grid {
    gap: 14px !important;
  }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 1023px) {

  .pd-products__layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .pd-products__intro h2::after {
    display: none;
  }

  .pd-products__description {
    max-width: 440px;
    margin-top: 14px;
  }

  .pd-product-grid {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 639px) {

  .pd-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .pd-products {
    padding: 36px 0 !important;
  }

  .pd-products__intro h2 {
    margin-top: 10px;
    font-size: 34px;
  }

  .pd-products__description {
    font-size: 13px;
    line-height: 1.6;
  }

  .pd-products__all {
    margin-top: 14px;
  }

  .pd-product-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 20px 12px !important;
  }

  .pd-card__content {
    padding: 12px 10px !important;
  }

  .pd-card__title {
    font-size: 12px;
  }

  .pd-card__price {
    font-size: 14px;
  }

  .pd-card__cart {
    padding: 8px 4px;
    font-size: 11px;
  }

  .pd-benefits__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .pd-benefit,
  .pd-benefit:first-child {
    padding: 20px 8px !important;
    border-bottom: 0;
  }

  .pd-benefit:nth-child(odd) {
    border-left: 0;
  }

  .pd-benefit p {
    margin-left: 0;
    font-size: 11px;
  }

  .pd-benefit h3 {
    font-size: 10px;
  }

}
/* =========================================================
   SHOPIFY SKELETON FULL WIDTH OVERRIDE
   Skeleton critical.css section grid kilidini kaldırır.
========================================================= */

.shopify-section > [class^="pd-"],
.shopify-section > [class*=" pd-"] {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none;
}

/* Header/footer section-group içindeki özel section'lar */
.shopify-section-group-header-group > .shopify-section,
.shopify-section-group-footer-group > .shopify-section {
  width: 100%;
}

/* PANDONIKS section'larının kendisi full viewport */
.pd-announcement,
.pd-header,
.pd-hero,
.pd-products,
.pd-campaign,
.pd-discount,
.pd-closing,
.pd-benefits,
.pd-footer,
.pd-collection,
.pd-product-page,
.pd-related,
.pd-cart,
.pd-search-page,
.pd-favorites-page,
.pd-page,
.pd-about,
.pd-contact,
.pd-collections-index,
.pd-status-page {
  width: 100% !important;
  max-width: none !important;
}

/* İçerik çizgisi eski PANDONIKS: 1480px */
.pd-container {
  width: 100% !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  padding-left: 64px !important;
  padding-right: 64px !important;
}

@media (max-width: 1199px) {
  .pd-container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (max-width: 639px) {
  .pd-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* =========================================================
   HEADER MOTION / PARITY
========================================================= */

.pd-header {
  position: sticky !important;
  top: 0;
  z-index: 50;

  background: var(--pd-paper);

  border-bottom: 1px solid var(--pd-line);

  transition:
    background-color .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease;
}

.pd-header__inner {
  min-height: 76px;

  transition:
    min-height .3s ease,
    height .3s ease;
}

.pd-header.is-scrolled {
  background: rgba(250,247,242,.88);

  box-shadow:
    0 1px 0 rgba(23,22,18,.10);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pd-header.is-scrolled .pd-header__inner {
  min-height: 64px;
}

.pd-header__nav > a,
.pd-nav-dropdown > summary {
  min-height: 44px;

  display: flex;
  align-items: center;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}

.pd-nav-dropdown {
  position: relative;
}

.pd-nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
}

.pd-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.pd-nav-dropdown__panel {
  min-width: 210px;
  padding: 8px 0;

  border: 1px solid var(--pd-line);

  background: var(--pd-paper);

  box-shadow:
    0 12px 24px rgba(0,0,0,.08);
}

.pd-nav-dropdown__panel a {
  min-height: 44px;
  padding: 10px 16px;

  display: flex;
  align-items: center;

  font-size: 13px;

  transition:
    background .2s ease;
}

.pd-nav-dropdown__panel a:hover {
  background: var(--pd-sand);
}

.pd-icon-link {
  min-width: 44px;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  transition:
    background .2s ease;
}

.pd-icon-link:hover {
  background: var(--pd-sand);
}

@media (max-width: 1399px) {
  .pd-header__nav {
    display: none !important;
  }

  .pd-mobile-menu {
    display: block !important;
  }
}

@media (min-width: 1400px) {
  .pd-mobile-menu {
    display: none !important;
  }

  .pd-header__nav {
    display: flex !important;
  }
}

@media (max-width: 639px) {
  .pd-header__inner {
    min-height: 60px;
  }

  .pd-header.is-scrolled .pd-header__inner {
    min-height: 60px;
  }

  .pd-header__logo {
    width: 132px;
  }
}
.pd-header-search-trigger {
  min-height: 44px;
  min-width: 270px;
  padding: 0 16px;

  display: none;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(30,25,20,.12);
  border-radius: 999px;

  background: rgba(247,243,236,.72);
  color: var(--pd-ink-soft);

  font-family: var(--pd-sans);
  font-size: 12.5px;

  cursor: pointer;

  box-shadow:
    inset 0 1px 2px rgba(23,22,18,.04);

  transition:
    border-color .2s ease,
    background .2s ease,
    color .2s ease;
}

.pd-header-search-trigger:hover {
  border-color: rgba(27,24,21,.32);
  background: var(--pd-paper-warm);
  color: var(--pd-ink);
}

.pd-header-search-trigger svg {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.pd-header-search-trigger span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (min-width: 1500px) {
  .pd-header-search-trigger {
    display: inline-flex;
  }

  .pd-header__tools > a[aria-label="Ara"] {
    display: none;
  }
}

/* =========================================================
   SEARCH OVERLAY
========================================================= */

.pd-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.pd-search-overlay[hidden] {
  display: none;
}

.pd-search-overlay__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;

  border: 0;

  background: rgba(27,24,21,.42);

  backdrop-filter: blur(2px);
}

.pd-search-overlay__panel {
  position: relative;
  z-index: 2;

  width: min(720px, 100%);
  max-height: min(700px, 90vh);
  margin: 96px auto 0;
  padding: 28px 38px;

  overflow: hidden;

  background: var(--pd-paper);

  box-shadow:
    0 24px 70px rgba(0,0,0,.22);
}

.pd-search-overlay__field {
  min-height: 54px;

  display: grid;
  grid-template-columns: 22px 1fr 44px;
  align-items: center;
  gap: 12px;

  border-bottom: 1px solid var(--pd-line);
}

.pd-search-overlay__field > svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: var(--pd-ink-soft);
  stroke-width: 1.5;
}

.pd-search-overlay__field input {
  width: 100%;

  border: 0;
  outline: 0;

  background: transparent;
  color: var(--pd-ink);

  font-family: var(--pd-serif);
  font-size: 19px;
}

.pd-search-overlay__field button {
  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;

  background: transparent;
  color: var(--pd-ink-soft);

  font-size: 26px;
  cursor: pointer;
}

.pd-search-overlay__field button:hover {
  background: var(--pd-sand);
}

.pd-search-overlay__results {
  max-height: 470px;
  overflow-y: auto;
}

.pd-search-overlay__hint,
.pd-search-overlay__state {
  margin: 0;
  padding: 32px 0;

  text-align: center;

  color: var(--pd-ink-soft);
  font-size: 13px;
}

.pd-search-overlay__item {
  min-height: 80px;
  padding: 11px 0;

  display: grid;
  grid-template-columns: 58px minmax(0,1fr) auto;
  align-items: center;
  gap: 14px;

  border-bottom: 1px solid var(--pd-line-soft);
}

.pd-search-overlay__image {
  width: 58px;
  height: 58px;

  overflow: hidden;

  background: var(--pd-sand);
}

.pd-search-overlay__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.pd-search-overlay__copy {
  min-width: 0;
}

.pd-search-overlay__copy strong {
  display: block;

  overflow: hidden;

  font-size: 13.5px;
  font-weight: 500;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.pd-search-overlay__copy small {
  display: block;
  margin-top: 4px;

  color: var(--pd-ink-soft);
  font-size: 11px;
}

.pd-search-overlay__price {
  padding-left: 12px;

  white-space: nowrap;

  font-size: 12.5px;
  font-weight: 600;
}

.pd-search-overlay__all {
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-top: 1px solid var(--pd-line-soft);

  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .09em;
}

@media (max-width: 639px) {
  .pd-search-overlay__panel {
    width: 100%;
    max-height: 100dvh;
    height: auto;
    margin-top: 0;
    padding: 20px;
  }
}

.pd-reading-progress {
  position: fixed;
  z-index: 200;

  left: 0;
  top: 0;

  width: 100%;
  height: 3px;

  pointer-events: none;

  background: #b89a6c;

  transform: scaleX(0);
  transform-origin: left center;
}

/* =========================================================
   HERO SCROLL SUMMARY
========================================================= */

.pd-hero-summary {
  position: sticky;
  z-index: 45;
  top: 64px;

  width: 100%;

  border-bottom: 1px solid var(--pd-line);

  background:
    rgba(250,247,242,.96);

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 25px -20px rgba(0,0,0,.45);
}

.pd-hero-summary[hidden] {
  display: none;
}

.pd-hero-summary__inner {
  min-height: 62px;

  display: grid;
  grid-template-columns: 86px 1fr auto 44px;
  align-items: center;
  gap: 16px;
}

.pd-hero-summary img {
  width: 86px;
  height: 42px;

  object-fit: cover;
}

.pd-hero-summary p {
  margin: 0;

  font-family: var(--pd-serif);
  font-size: 18px;
}

.pd-hero-summary a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 11px;
  font-weight: 600;
}

.pd-hero-summary button {
  width: 40px;
  height: 40px;

  border: 0;
  border-radius: 50%;

  background: transparent;

  color: var(--pd-ink);

  font-size: 24px;
  cursor: pointer;
}

.pd-hero-summary button:hover {
  background: var(--pd-sand);
}

@media (max-width: 639px) {

  .pd-hero-summary {
    top: 60px;
  }

  .pd-hero-summary__inner {
    grid-template-columns: 60px 1fr 36px;

    min-height: 56px;

    gap: 10px;
  }

  .pd-hero-summary img {
    width: 60px;
    height: 34px;
  }

  .pd-hero-summary p {
    font-size: 15px;
  }

  .pd-hero-summary a {
    display: none;
  }
}

html.pd-search-open,
html.pd-search-open body {
  overflow: hidden !important;
}

/* =========================================================
   SMART PRODUCT SECTION COUNTS
========================================================= */

@media (min-width: 851px) {

  .pd-product-grid.pd-product-grid--count-1 {
    grid-template-columns: minmax(220px, 320px);
    justify-content: start;
  }

  .pd-product-grid.pd-product-grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 700px;
  }

  .pd-product-grid.pd-product-grid--count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 850px) {

  .pd-product-grid.pd-product-grid--count-1 {
    grid-template-columns: minmax(0, 320px);
  }

}

/* =========================================================
   HIDE EMPTY DISCOUNT
========================================================= */

.pd-discount:has(.pd-discount__empty) {
  display: none !important;
}

/* =========================================================
   PRODUCT CARD VARIANT SAFETY
   ========================================================= */

.pd-card a.pd-card__cart,
a.pd-card__cart--link {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

.pd-card__cart--link {
  cursor: pointer;
}

/* =========================================================
   HEADER DROPDOWN POSITION FIX 2026
   ========================================================= */

@media (min-width: 1400px) {

  .pd-nav-dropdown {
    position: relative;
  }

  .pd-nav-dropdown__panel {
    position: absolute !important;
    z-index: 90;
    top: calc(100% - 1px);
    left: 0;

    min-width: 220px;

    background: var(--pd-paper);
  }

  .pd-nav-dropdown:not([open])
  .pd-nav-dropdown__panel {
    display: none;
  }

  .pd-nav-dropdown[open]
  .pd-nav-dropdown__panel {
    display: block;
  }
}

/* =========================================================
   FOOTER NEWSLETTER FEEDBACK 2026
   ========================================================= */

.pd-footer__message {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.pd-footer__message--error {
  color: #f1b8aa;
}

.pd-footer__message--error ul {
  margin: 0;
  padding-left: 18px;
}

/* =========================================================
   PANDONIKS NATIVE POLICY + NEWSLETTER 2026
   ========================================================= */

.shopify-policy__container {
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 58px 64px 96px !important;
  background: #fcfaf6;
  color: var(--pd-ink);
}

.shopify-policy__title {
  margin: 0 0 54px !important;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pd-line);
  text-align: left !important;
}

.shopify-policy__title h1 {
  margin: 0 !important;
  font-family: var(--pd-serif) !important;
  font-size: clamp(48px, 5vw, 72px) !important;
  font-weight: 500 !important;
  line-height: .98 !important;
  letter-spacing: -.04em !important;
}

.shopify-policy__body {
  max-width: 760px !important;
  margin: 0 !important;
  color: #4d4942;
  font-size: 14px;
  line-height: 1.85;
}

.shopify-policy__body h1,
.shopify-policy__body h2,
.shopify-policy__body h3,
.shopify-policy__body h4 {
  margin-top: 42px;
  margin-bottom: 15px;
  color: var(--pd-ink);
  font-family: var(--pd-serif);
  font-weight: 500;
  letter-spacing: -.02em;
}

.shopify-policy__body h2 {
  font-size: 30px;
}

.shopify-policy__body h3 {
  font-size: 23px;
}

.shopify-policy__body p {
  margin: 0 0 18px;
}

.shopify-policy__body ul,
.shopify-policy__body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.shopify-policy__body li {
  margin: 7px 0;
}

.shopify-policy__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pd-footer__message {
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.6;
}

.pd-footer__message--error {
  color: #f2b6a9;
}

.pd-footer__message--error ul {
  margin: 0;
  padding-left: 18px;
}

.pd-footer__email button {
  cursor: pointer;
}

@media (max-width: 700px) {
  .shopify-policy__container {
    padding: 42px 20px 72px !important;
  }

  .shopify-policy__title {
    margin-bottom: 34px !important;
  }

  .shopify-policy__title h1 {
    font-size: 44px !important;
  }

  .shopify-policy__body {
    font-size: 13px;
  }
}


/* === PANDONIKS FOOTER REFERENCE 2026 START === */

.pd-footer__consent {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(250,247,242,.58);
  font-size: 10px;
  line-height: 1.6;
  cursor: pointer;
}

.pd-footer__consent input {
  width: 13px;
  height: 13px;
  margin: 2px 0 0;
  flex: 0 0 13px;
  accent-color: #f7f3ec;
}

.pd-footer__message {
  margin: 13px 0 0;
  color: rgba(250,247,242,.80);
  font-size: 11px;
  line-height: 1.6;
}

.pd-footer__message--error {
  color: #f2b6a9;
}

/* === PANDONIKS FOOTER REFERENCE 2026 END === */
/* =========================================================
   PANDONIKS ACCOUNT COMPONENT 2026
   ========================================================= */

.pd-account-component {
  --shopify-account-color-accent: #1d1b18;
  --shopify-account-color-background: #fffdf9;
  --shopify-account-color-text: #1d1b18;
  --shopify-account-color-border: #e8e2da;
  --shopify-account-color-control-background: #ffffff;
  --shopify-account-color-control-text: #1d1b18;
  --shopify-account-color-text-subdued: #746e67;

  --shopify-account-radius-base: 12px;
  --shopify-account-radius-button: 999px;
  --shopify-account-radius-input: 10px;
  --shopify-account-radius-dialog: 18px;

  --shopify-account-signed-in-avatar-size: 34px;
  --shopify-account-signed-in-avatar-color-background: #1d1b18;
  --shopify-account-signed-in-avatar-color-text: #ffffff;

  line-height: 1;
}

.pd-account-component::part(signed-out-avatar) {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pd-account-component--desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-account-component--desktop .pd-account-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pd-account-component--desktop .pd-account-link svg {
  width: 22px;
  height: 22px;
}

.pd-account-mobile-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  cursor: pointer;
}

.pd-account-mobile-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}


}


/* PANDONIKS DISCOUNT HORIZONTAL FIX START */

.pd-discount__rail {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 20px !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  scroll-snap-type: none !important;
  scroll-behavior: auto !important;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pd-discount__rail::-webkit-scrollbar {
  display: none !important;
}

.pd-discount__rail > .pd-discount__item {
  flex: 0 0 calc((100% - 60px) / 4) !important;
  width: calc((100% - 60px) / 4) !important;
  min-width: calc((100% - 60px) / 4) !important;
}

@media (max-width: 1100px) {
  .pd-discount__rail > .pd-discount__item {
    flex-basis: calc((100% - 20px) / 2) !important;
    width: calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
  }
}

@media (max-width: 700px) {
  .pd-discount__rail > .pd-discount__item {
    flex-basis: 82% !important;
    width: 82% !important;
    min-width: 82% !important;
  }
}

/* PANDONIKS DISCOUNT HORIZONTAL FIX END */











/* === PANDONIKS HEADER ORIGINAL PARITY START === */


/* ---------------------------------------------------------
   SAG TARAF
   Orijinal React:
   outer gap = 12px
   icon group gap = 8px
   --------------------------------------------------------- */

.pd-header__tools {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 8px !important;

  flex-shrink: 0 !important;
}


/* ---------------------------------------------------------
   SEARCH
   Orijinal desktop: 280px / 44px
   --------------------------------------------------------- */

.pd-header-search-trigger {
  width: 280px !important;
  min-width: 280px !important;

  height: 44px !important;
  min-height: 44px !important;

  padding: 0 16px !important;

  display: inline-flex !important;
  align-items: center !important;

  gap: 10px !important;

  margin-right: 14px !important;

  border: 1px solid rgba(30,25,20,.12) !important;
  border-radius: 999px !important;

  background: rgba(247,243,236,.72) !important;

  color: var(--pd-ink-soft) !important;

  font-size: 12.5px !important;

  box-shadow:
    inset 0 1px 2px rgba(23,22,18,.05) !important;
}


/* SEARCH ICINDEKI BUYUTEC */

.pd-header-search-trigger svg {
  width: 15px !important;
  height: 15px !important;

  min-width: 15px !important;

  fill: none !important;

  stroke: currentColor !important;
  stroke-width: 1.8 !important;

  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}


/* DISARIDAKI IKINCI SEARCH KESINLIKLE YOK */

.pd-header__tools > a[aria-label="Ara"] {
  display: none !important;
}


/* ---------------------------------------------------------
   IKON BUTONLARI

   ORIJINAL:
   min-h-11 = 44px
   min-w-11 = 44px
   --------------------------------------------------------- */

.pd-header .pd-account-link,
.pd-header .pd-favorite-link,
.pd-header .pd-cart-link {

  position: relative !important;

  width: 44px !important;
  min-width: 44px !important;

  height: 44px !important;
  min-height: 44px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  border-radius: 999px !important;

  color: #171612 !important;

  line-height: 1 !important;

  flex: 0 0 44px !important;
}


/* ---------------------------------------------------------
   SVG

   ORIJINAL:
   21x21
   stroke-width 1.4
   --------------------------------------------------------- */

.pd-header .pd-account-link > svg,
.pd-header .pd-favorite-link > svg,
.pd-header .pd-cart-link > svg {

  display: block !important;

  width: 21px !important;
  height: 21px !important;

  min-width: 21px !important;
  min-height: 21px !important;

  fill: none !important;

  stroke: currentColor !important;
  stroke-width: 1.4 !important;

  stroke-linecap: round !important;
  stroke-linejoin: round !important;

  overflow: visible !important;

  vector-effect: non-scaling-stroke !important;
}


/* ---------------------------------------------------------
   BADGE

   Orijinal React:
   18 x 18
   top/right = 2px
   --------------------------------------------------------- */

.pd-header .pd-cart-count,
.pd-header .pd-favorite-count {

  position: absolute !important;

  top: 2px !important;
  right: 2px !important;

  min-width: 18px !important;
  height: 18px !important;

  padding: 0 4px !important;

  border: 0 !important;
  border-radius: 999px !important;

  background: #171612 !important;
  color: #fbf8f3 !important;

  font-size: 11px !important;
  font-weight: 600 !important;

  line-height: 18px !important;
  text-align: center !important;

  z-index: 3 !important;
}


/* 0 SAYACI ASLA GORUNMESIN */

.pd-header .pd-cart-count[hidden],
.pd-header .pd-favorite-count[hidden] {
  display: none !important;
}


/* ---------------------------------------------------------
   MOBIL / TABLET
   --------------------------------------------------------- */

@media (max-width: 1499px) {

  .pd-header-search-trigger {
    width: 240px !important;
    min-width: 240px !important;

    margin-right: 10px !important;
  }

}


@media (max-width: 900px) {

  .pd-header__tools {
    gap: 4px !important;
  }

}


/* === PANDONIKS HEADER ORIGINAL PARITY END === */
