/** Shopify CDN: Minification failed

Line 627:0 Unexpected "}"

**/
/* ================================================================
   PENT LIBRARY BASE CSS
   Core utility classes and components for theme sections and blocks
   ================================================================ */

/* ================================================================
   1. CSS RESET & BASE STYLES
   ================================================================ */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
}

.--pl--section-wrapper {
  letter-spacing: 0;
}

/* ================================================================
   2. LAYOUT UTILITIES
   ================================================================ */

/* Display utilities */
.--pl--hide {
  display: none !important;
}

.--pl--inline-block {
  max-width: 100%;
  display: inline-block;
}

.--pl--show-mobile-landscape {
  display: none !important;
}

/* Position utilities */
.--pl--pos-rel {
  position: relative;
}

/* Container utilities */
.--pl--container-large {
  width: 100%;
  max-width: auto;
  margin-left: auto;
  margin-right: auto;
}

.--pl--page-width-global {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
}

.--pl--padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

/* Responsive display utilities */
@media screen and (max-width: 768px) {
  .--pl--show-mobile-landscape {
    display: block !important;
  }

  .--pl--hide-mobile-landscape {
    display: none !important;
  }
}

/* ================================================================
   3. FLEXBOX & GRID UTILITIES
   ================================================================ */

/* Flexbox utilities */
.--pl--group {
  display: flex;
}

.--pl--flex-1-1-auto {
  flex: 1 1 auto;
}

.--pl--content-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.--pl--action-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

/* Grid utilities */
.--pl--grid-col-span-2 {
  grid-column: span 2;
}

.--pl--grid-col-span-3 {
  grid-column: span 3;
}

.--pl--grid-col-span-4 {
  grid-column: span 4;
}

.--pl--grid-col-span-5 {
  grid-column: span 5;
}

.--pl--grid-row-span-2 {
  grid-row: span 2;
}

.--pl--grid-row-span-3 {
  grid-row: span 3;
}

.--pl--grid-row-span-4 {
  grid-row: span 4;
}

.--pl--grid-row-span-5 {
  grid-row: span 5;
}

/* ================================================================
   4. SPACING UTILITIES
   ================================================================ */

/* Section padding */
.--pl--padding-section-none {
  padding-top: 0px;
  padding-bottom: 0px;
}

.--pl--padding-section-small {
  padding-top: 32px;
  padding-bottom: 32px;
}

.--pl--padding-section-medium {
  padding-top: 64px;
  padding-bottom: 64px;
}

.--pl--padding-section-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Directional padding reset */
.--pl--padding-top {
  padding-right: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
}

.--pl--padding-right {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
}

.--pl--padding-bottom {
  padding-top: 0px !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.--pl--padding-left {
  padding-top: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 0px !important;
}

/* Standard padding classes */
.padding-none {
  padding: 0px;
}

.padding-tiny {
  padding: 4px;
}

.padding-xxsmall {
  padding: 8px;
}

.padding-xsmall {
  padding: 16px;
}

.padding-small {
  padding: 24px;
}

.padding-medium {
  padding: 32px;
}

.padding-large {
  padding: 48px;
}

.padding-xlarge {
  padding: 64px;
}

.padding-huge {
  padding: 96px;
}

.padding-xhuge {
  padding: 112px;
}

.padding-xxhuge {
  padding: 160px;
}

/* Padding utilities with viewport units */
.--pl--pt-1 { padding-top: 4px !important; }
.--pl--pt-2 { padding-top: 8px !important; }
.--pl--pt-5vw { padding-top: 5vw !important; }
.--pl--pt-10vw { padding-top: 10vw !important; }

.--pl--pb-1 { padding-bottom: 4px !important; }
.--pl--pb-2 { padding-bottom: 8px !important; }
.--pl--pb-5vw { padding-bottom: 5vw !important; }
.--pl--pb-10vw { padding-bottom: 10vw !important; }

.--pl--pl-1 { padding-left: 4px !important; }
.--pl--pl-2 { padding-left: 8px !important; }
.--pl--pl-5vw { padding-left: 5vw !important; }
.--pl--pl-10vw { padding-left: 10vw !important; }

.--pl--pr-1 { padding-right: 4px !important; }
.--pl--pr-2 { padding-right: 8px !important; }
.--pl--pr-5vw { padding-right: 5vw !important; }
.--pl--pr-10vw { padding-right: 10vw !important; }

/* Margin utilities */
.--pl--margin-top-auto {
  margin-top: auto;
}

.-pl-mt-1 { margin-top: 4px; }
.-pl-mt-2 { margin-top: 8px; }

/* Negative margins */
.-pl-mt-n1 { margin-top: -4px; }
.-pl-mt-n2 { margin-top: -8px; }
.-pl-mt-n3 { margin-top: -12px; }
.-pl-mt-n4 { margin-top: -16px; }
.-pl-mt-n5 { margin-top: -24px; }
.-pl-mt-n6 { margin-top: -32px; }
.-pl-mt-n7 { margin-top: -48px; }
.-pl-mt-n8 { margin-top: -64px; }
.-pl-mt-n9 { margin-top: -80px; }
.-pl-mt-n10 { margin-top: -96px; }

.-pl-mb-n1 { margin-bottom: -4px; }
.-pl-mb-n2 { margin-bottom: -8px; }
.-pl-mb-n3 { margin-bottom: -12px; }
.-pl-mb-n4 { margin-bottom: -16px; }

@media screen and (max-width: 768px) {
  .-pl-mb-n1 { margin-bottom: -2px; }
  .-pl-mb-n2 { margin-bottom: -4px; }
  .-pl-mb-n3 { margin-bottom: -6px; }
  .-pl-mb-n4 { margin-bottom: -8px; }
}

/* ================================================================
   5. TYPOGRAPHY UTILITIES
   ================================================================ */

/* Font weights */
.--pl--fw-thin { font-weight: 200; }
.--pl--fw-light { font-weight: 300; }
.--pl--fw-regular { font-weight: 400; }
.--pl--fw-medium { font-weight: 500; }
.--pl--fw-semibold { font-weight: 600; }
.--pl--fw-bold { font-weight: 700; }
.--pl--fw-extrabold { font-weight: 800; }
.--pl--fw-black { font-weight: 900; }

.--pl--text-weight-semibold {
  font-weight: 600;
}

/* Text utilities */
.--pl--no-wrap {
  white-space: nowrap;
  overflow: hidden;
}

/* Text truncation */
.--pl--truncate-1line {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.--pl--truncate-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.--pl--truncate-3lines > * {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.--pl--truncate-4lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.--pl--truncate-5lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.--pl--truncate-flex {
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.--pl--truncate-responsive {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 768px) {
  .--pl--truncate-responsive {
    -webkit-line-clamp: 2;
  }
}

/* Rich text */
.--pl--rich-text {
  all: unset;
  font-weight: 400;
  line-height: 1.5;
}

.--pl--rich-text p {
  margin: 0;
  padding: 0;
}

/* ================================================================
   6. COLOR UTILITIES
   ================================================================ */

/* Background colors */
.--pl--background-color-primary { background-color: rgb(255, 255, 255); }
.--pl--background-color-secondary { background-color: rgb(243, 243, 243); }
.--pl--background-color-alternate { background-color: rgb(0, 0, 0); }

/* Heading colors */
.--pl--heading-color-primary { color: rgb(0, 0, 0); }
.--pl--heading-color-secondary { color: rgb(0, 0, 0); }
.--pl--heading-color-alternate { color: rgb(255, 255, 255); }

/* Text colors */
.--pl--text-color-primary { color: rgb(0, 0, 0); }
.--pl--text-color-secondary { color: rgb(0, 0, 0); }
.--pl--text-color-alternate { color: rgb(255, 255, 255); }

/* ================================================================
   7. SIZE & DIMENSION UTILITIES
   ================================================================ */

/* Aspect ratios */
.--pl--square { aspect-ratio: 1 / 1; width: 100%; }
.--pl--4-3 { aspect-ratio: 4 / 3; width: 100%; }
.--pl--3-4 { aspect-ratio: 3 / 4; width: 100%; }
.--pl--5-6 { aspect-ratio: 5 / 6; width: 100%; }
.--pl--6-5 { aspect-ratio: 6 / 5; width: 100%; }

.-pl-ar-1-1 { aspect-ratio: 1 / 1; }

@media screen and (max-width: 768px) {
  .--pl--3-4-mobile {
    aspect-ratio: 3 / 4;
    width: 100%;
  }
}

/* Width utilities */
.-pl-w-fill { width: 100%; }
.-pl-w-fit { width: fit-content; }

.--pl--button-full-width {
  width: 100%;
  max-width: none;
}

/* Height utilities */
.-pl-h-fill { height: 100%; }
.-pl-h-fit { height: fit-content; }
.-pl-h-auto { height: auto; }

.-pl-max-h-1 { max-height: 16px; }
.-pl-max-h-2 { max-height: 32px; }
.-pl-max-h-3 { max-height: 48px; }
.-pl-max-h-4 { max-height: 64px; }

/* ================================================================
   8. COMPONENT STYLES
   ================================================================ */

/* Block components */
.--pl--card {
  display: flex;
  flex: 1 1 auto;
}

.--pl--product-card {
  display: flex;
  flex: 1 1 auto;
}

/* Container helpers */
.pl--container-mirror-child {
  display: contents;
}

/* Base card */
.--pl--base-card-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 16px;
  background-color: #ffffff;
  border: 8px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  width: auto;
  height: auto;
  flex: 1 1 auto;
}

a.--pl--base-product-card-1 {
  text-decoration: none;
  color: inherit;
  outline: none;
  cursor: pointer;
  display: inherit;
}

/* ================================================================
   9. VIDEO COMPONENTS
   ================================================================ */

.--pl--video-block-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.--pl--video {
  display: block;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.--pl--reset-iframe {
  border: unset;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.--pl--video-placeholder {
  display: block;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Video controls */
.--pl--light-controls-wrapper {
  position: absolute;
  top: auto;
  right: 12px;
  bottom: 12px;
  left: auto;
  z-index: 2;
  transition: opacity 0.2s ease;
}

.--pl--light-controls-button {
  padding: 6px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 12px;
  display: flex;
  cursor: pointer !important;
  transition: background-color 0.2s ease;
}

.--pl--light-controls-button:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.--pl--light-controls-button .--pl--svg-wrapper-light-controls {
  height: 10px;
  width: 10px;
}

/* YouTube specific */
.--pl--yt-thumbnail-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.--pl--yt-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.--pl--yt-play-button {
  transition: transform 0.2s ease;
}

.--pl--yt-thumbnail-wrapper:hover .--pl--yt-play-button {
  transform: scale(1.1);
}

.thumbnail-svg-wrapper {
  height: 36px;
  width: 36px;
  color: #ffffff;
}

.pause_background {
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease;
}

/* ================================================================
   10. SNIPPET & IMAGE COMPONENTS
   ================================================================ */

.--pl--image-container-snippet {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
}

.--pl--image-overlay-snippet {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 0%, 1);
  pointer-events: none;
  display: block !important;
}

.--pl--image-snippet {
  display: block;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
} 
}
/* Arrondir panier - ajouté manuellement */
.header__icon--cart {
  border-radius: 8px !important;
}
