/** Shopify CDN: Minification failed

Line 273:0 Unexpected "}"

**/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

.pc-page {
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: #1a1a18;
}

.pc-body {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
}

/* GAUCHE — photo */
.pc-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pc-placeholder-svg {
  width: 100%;
  height: 100vh;
  opacity: 0.15;
}

.pc-thumbs {
  display: none;
}

.pc-thumb {
  width: 52px;
  height: 68px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 1px solid transparent;
  transition: opacity 0.15s;
}

.pc-thumb.active,
.pc-thumb:hover {
  opacity: 1;
  border-color: #1a1a18;
}

/* DROITE — infos */
.pc-right {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 35px;
  align-self: flex-start;
  height: fit-content;
}

.pc-prod-name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.01em;
  text-transform: uppercase !important;
  color: #1a1a18;
  margin-bottom: 0.5px;
}

.pc-price {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #1a1a18;
  margin-bottom: 24px;
}

.pc-divider {
  height: 0.5px;
  background: #e0ddd8;
  margin-bottom: 24px;
}

/* Couleurs */
.pc-color-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888882;
  margin-bottom: 10px;
}

.pc-color-dots {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.pc-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid transparent;
  padding: 0;
  transition: outline 0.15s;
  position: relative;
}

.pc-dot.active {
  outline: 2px solid #1a1a18;
  outline-offset: 2px;
}

/* Tailles */
.pc-size-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888882;
  margin-bottom: 10px;
}

.pc-size-row {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
  border: 0.5px solid #e0ddd8;
}

.pc-sz {
  flex: 1;
  padding: 13px 8px;
  background: transparent;
  border: none;
  border-right: 0.5px solid #e0ddd8;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #888882;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}

.pc-sz:last-child { border-right: none; }

.pc-sz:hover {
  background: #f5f5f3;
  color: #1a1a18;
}

.pc-sz.active {
  background: #1a1a18;
  color: #fff;
}

.pc-sz.out {
  opacity: 0.3;
  cursor: default;
  text-decoration: line-through;
}

/* Bouton */
.pc-btn-add {
  width: 100%;
  padding: 17px;
  background: #1a1a18;
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 28px;
  transition: background 0.2s;
}

.pc-btn-add:hover { background: #333; }
.pc-btn-add:disabled { background: #ccc9c0; cursor: default; }

/* Description accordion */
.pc-accordion { border-top: 0.5px solid #e0ddd8; margin-top: 32px; }
.pc-acc-item { border-bottom: 0.5px solid #e0ddd8; }

.pc-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888882;
  cursor: pointer;
  transition: color 0.15s;
}

.pc-acc-btn:hover { color: #1a1a18; }

.pc-acc-icon {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}

.pc-acc-content {
  display: none;
  font-size: 12px;
  line-height: 1.9;
  color: #666660;
  padding-bottom: 16px;
}

.pc-acc-content.open { display: block; }
.pc-acc-icon.open { transform: rotate(45deg); }

/* Toast */
.pc-toast {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: #1a1a18;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 999;
}

.pc-toast.show { transform: translateX(-50%) translateY(0); }
.pc-toast.show {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .pc-body { grid-template-columns: 1fr; }
  .pc-left { min-height: 70vw; }
  .pc-main-img { min-height: 70vw; height: 70vw; }
  .pc-right { position: static; height: auto; padding: 32px 24px; }
  .pc-thumbs { flex-direction: row; position: static; padding: 8px 12px; }
  .pc-thumb { width: 52px; height: 52px; }
  #pcDotsFixed {
  display: none !important;
}
}
}

/* Header noir sur page produit */
.pc-page ~ * .header__heading-link,
.pc-page ~ * .header__menu-item,
body:has(.pc-page) .header__heading-link,
body:has(.pc-page) .header__menu-item,
body:has(.pc-page) .header__icon,
body:has(.pc-page) .header {
  color: #1a1a18 !important;
}
body:has(.pc-page) .jd-menu-link {
  color: #1a1a18 !important;
}
#shopify-section-main {
  display: none;
}
.product__media-item img,
.product-media-container img {
  transition: transform 0.5s ease;
  cursor: zoom-in;
  overflow: hidden;
}

.product__media-item:hover img,
.product-media-container:hover img {
  transform: scale(1.08);
}
.pc-left {
  overflow: visible;
}
#pc-lightbox {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.pc-acc-content table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.pc-acc-content table td,
.pc-acc-content table th {
  border: none;
  border-bottom: 1px solid #f0ede8;
  padding: 6px 0;
}
table.size-guide {
  width: 100%;
  max-width: 500px;
}

table.size-guide td,
table.size-guide th {
  border: none !important;
  border-bottom: 1px solid #f0ede8 !important;
  padding: 6px 0 !important;
}
/* DRAWER */
#pc-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 999;
  pointer-events: none;
}

#pc-drawer {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
}

#pc-drawer.open {
  right: 0;
}

#pc-drawer-overlay.open {
  display: block;
  pointer-events: auto;
}

#pc-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 0.5px solid #e0ddd8;
  font-size: 11px;
  letter-spacing: 0.15em;
}

#pc-drawer-header button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #1a1a18;
}

#pc-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.pc-drawer-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.pc-drawer-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
}

.pc-drawer-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  span:first-child {
  font-weight: 700;
}
}

#pc-drawer-footer {
  padding: 24px 32px;
  border-top: 0.5px solid #e0ddd8;
}

#pc-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#pc-drawer-checkout {
  display: block;
  width: 100%;
  padding: 17px;
  background: #1a1a18;
  color: #fff;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}
.pc-drawer-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.pc-drawer-qty button {
  background: none;
  border: 0.5px solid #1a1a18;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-drawer-qty span {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.pc-drawer-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-drawer-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #888882;
  padding: 0;
  line-height: 1;
}

.pc-drawer-remove:hover {
  color: #1a1a18;
}
details[aria-label="Recherche"] {
  display: none !important;
}
.pc-left { position: relative; }

#pcDotsFixed {
  position: fixed !important;
  right: calc(45% + 16px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  z-index: 9998 !important;
  pointer-events: none !important;
}

#pcDotsFixed .pc-vdot {
  width: 14px !important;
  height: 1px !important;
  border-radius: 0 !important;
  background: rgba(0,0,0,0.2) !important;
  display: block !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

#pcDotsFixed .pc-vdot.active {
  width: 24px !important;
  height: 1px !important;
  background: rgba(0,0,0,0.6) !important;
}
#pc-lightbox:not([style*="display: none"]) + * #pcDotsFixed {
  display: none !important;
}
/* Fix boutons bleus panier sur mobile */
#pc-drawer button,
#pc-drawer-items button,
.pc-drawer button {
  color: #000000 !important;
  border-color: #000000 !important;
  background-color: transparent !important;
}

#pc-drawer .pc-drawer-items button:hover,
#pc-drawer-items button:hover {
  color: #000000 !important;
}
.mirror-included {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin: 2px 0 10px !important;
}