/** Shopify CDN: Minification failed

Line 30:18 Expected identifier but found whitespace
Line 30:20 Unexpected "{"
Line 30:36 Expected ":"
Line 30:61 Expected ":"
Line 58:4 Unexpected "{"
Line 58:5 Expected identifier but found "%"
Line 59:17 Expected identifier but found whitespace
Line 59:19 Unexpected "{"
Line 59:35 Expected ":"
Line 59:55 Expected identifier but found "!"
... and 62 more hidden warnings

**/


/* CSS from block stylesheet tags */
/* PC STYLES */
  .bold-quantity-wrapper {
    display: block;
  }

  .bold-quantity-block {
    display: inline-block;
  }

  .bold-quantity-block .qty-label {
    display: block;
    margin-bottom: {{ block_settings.label_margin_bottom }}px;
  }

  .bold-quantity-block .quantity-controls-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .bold-quantity-block .qty-btn {
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  .bold-quantity-block .qty-btn span {
    display: block;
    line-height: 1;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
  }

  .bold-quantity-block .qty-btn:hover {
    {% if block_settings.button_bg_hover contains 'gradient' %}
      background: {{ block_settings.button_bg_hover }} !important;
    {% else %}
      background: {{ block_settings.button_bg_hover }} !important;
    {% endif %}
    transform: scale(1.1);
  }

  .bold-quantity-block .qty-btn:hover span {
    {% if block_settings.button_text_hover contains 'gradient' %}
      background: {{ block_settings.button_text_hover }} !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
    {% else %}
      color: {{ block_settings.button_text_hover }} !important;
    {% endif %}
  }

  .bold-quantity-block .qty-btn:active {
    transform: scale(0.95);
  }

  .bold-quantity-block .qty-input {
    border-top: none;
    border-bottom: none;
    text-align: center;
    font-weight: 700;
    -moz-appearance: textfield;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }

  .bold-quantity-block .qty-input::-webkit-outer-spin-button,
  .bold-quantity-block .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .bold-quantity-wrapper {
      text-align: {{ block_settings.alignment_mobile }} !important;
      margin-top: {{ block_settings.margin_top_mobile }}px !important;
      margin-bottom: {{ block_settings.margin_bottom_mobile }}px !important;
    }

    .bold-quantity-block .qty-label {
      font-size: {{ block_settings.label_size_mobile }}px !important;
    }

    .bold-quantity-block .qty-btn {
      width: {{ block_settings.button_width_mobile }}px !important;
      height: {{ block_settings.button_height_mobile }}px !important;
      font-size: {{ block_settings.button_font_size_mobile }}px !important;
    }

    .bold-quantity-block .qty-input {
      width: {{ block_settings.input_width_mobile }}px !important;
      height: {{ block_settings.button_height_mobile }}px !important;
      font-size: {{ block_settings.input_font_size_mobile }}px !important;
      color: #000000 !important;
      -webkit-text-fill-color: #000000 !important;
    }
  }
/* BOUTON */
  .size-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #000000;
    position: relative;
    transition: all 0.3s ease;
  }

  .size-guide-btn svg {
    width: 18px;
    height: 18px;
  }

  .size-guide-btn span {
    position: relative;
  }

  .size-guide-btn span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000000;
  }

  .size-guide-btn:hover {
    color: #ff1493;
  }

  .size-guide-btn:hover span::after {
    background: #ff1493;
  }

  /* OVERLAY */
  .size-guide-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .size-guide-overlay.active {
    display: flex;
  }

  /* POPUP */
  .size-guide-popup {
    background: #ffffff;
    border: 3px solid #000000;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 30px;
    position: relative;
  }

  /* ANIMATIONS */
  .size-guide-overlay[data-animation="fade_scale"] .size-guide-popup {
    animation: fadeScale 0.3s ease;
  }

  @keyframes fadeScale {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay[data-animation="slide_bottom"] .size-guide-popup {
    animation: slideBottom 0.4s ease;
  }

  @keyframes slideBottom {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay[data-animation="fade_simple"] .size-guide-popup {
    animation: fadeSimple 0.3s ease;
  }

  @keyframes fadeSimple {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000000;
    color: #ffffff;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-popup:hover {
    background: #ff1493;
    transform: rotate(90deg);
  }

  /* TITRE */
  .popup-title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
  }

  /* IMAGE DU TABLEAU */
  .size-chart-image-wrapper {
    margin-bottom: 20px;
    text-align: center;
  }

  .size-chart-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #000000;
  }

  /* TABLEAU */
  .size-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
  }

  .size-table {
    width: 100%;
    border-collapse: collapse;
  }

  .size-table th,
  .size-table td {
    padding: 12px 15px;
    text-align: center;
    border: 2px solid #000000;
    font-size: 14px;
  }

  .size-table th {
    background: #000000;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
  }

  .size-table td {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
  }

  .size-table tr:nth-child(even) td {
    background: #f5f5f5;
  }

  /* CONSEIL */
  .size-tip {
    background: #f9f9f9;
    padding: 15px 20px;
    border-left: 4px solid #ff1493;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup {
      padding: 30px 20px;
    }

    .popup-title {
      font-size: 16px;
    }

    .size-table th,
    .size-table td {
      padding: 8px 6px;
      font-size: 12px;
    }

    .size-tip {
      font-size: 13px;
      padding: 12px 15px;
    }
  }
.brutalist-add-to-cart {
    margin-top: 40px;
  }

  .brutalist-add-to-cart .btn-add-cart {
    width: 100%;
    height: 68px;
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .brutalist-add-to-cart .btn-add-cart span {
    position: relative;
    z-index: 2;
  }

  .brutalist-add-to-cart .btn-add-cart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    transition: height 0.5s ease;
    z-index: 1;
  }

  .brutalist-add-to-cart .btn-add-cart:hover::before {
    height: 100%;
  }

  .brutalist-add-to-cart .btn-add-cart:hover span {
    color: #000000;
  }

  @media (max-width: 768px) {
    .brutalist-add-to-cart .btn-add-cart {
      height: 56px;
      font-size: 14px;
      letter-spacing: 1.5px;
    }
  }
.brutalist-colors {
    margin-bottom: 32px;
    border-left: 5px solid #000000;
    padding-left: 20px;
  }

  .brutalist-colors .option-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    color: #000000;
  }

  .brutalist-colors .color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 240px;
  }

  .brutalist-colors .color-box {
    aspect-ratio: 1;
    border: 4px solid #dddddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .brutalist-colors .color-box:hover {
    transform: scale(1.1);
    border-color: #999999;
  }

  .brutalist-colors .color-box.active {
    border-color: #000000;
    border-width: 6px;
    transform: scale(1.15);
  }

  @media (max-width: 768px) {
    .brutalist-colors .color-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      max-width: 180px;
    }
  }
.brutalist-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
  }

  @media (max-width: 768px) {
    .brutalist-description {
      font-size: 14px;
      margin-bottom: 28px;
    }
  }
.brutalist-features-list {
    width: 100%;
  }

  .feature-line-brutalist {
    width: 100%;
  }

  .feature-content-brutalist {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-icon-brutalist {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feature-text-wrapper-brutalist {
    flex: 1;
  }

  .feature-text-brutalist {
    position: relative;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    padding-bottom: 6px;
    text-transform: uppercase;
  }

  .feature-underline-brutalist {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .feature-icon-brutalist {
      font-size: 16px;
    }

    .feature-text-brutalist {
      font-size: 13px !important;
    }
  }
.brutalist-price {
    margin-bottom: 36px;
  }

  .brutalist-price .price-box {
    background: #000000;
    color: #ffffff;
    padding: 20px 24px;
    display: inline-block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
  }

  @media (max-width: 768px) {
    .brutalist-price .price-box {
      font-size: 27px;
      padding: 14px 18px;
    }
  }
.brutalist-quantity {
    margin-bottom: 32px;
    border-left: 5px solid #000000;
    padding-left: 20px;
  }

  .brutalist-quantity .option-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    color: #000000;
  }

  .brutalist-quantity .qty-wrapper {
    display: flex;
    border: 3px solid #000000;
    width: fit-content;
  }

  .brutalist-quantity .qty-btn {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: none;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .brutalist-quantity .qty-btn:hover {
    background: #000000;
    color: #ffffff;
  }

  .brutalist-quantity .qty-input {
    width: 70px;
    height: 56px;
    border: none;
    border-left: 3px solid #000000;
    border-right: 3px solid #000000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    background: white;
  }

  @media (max-width: 768px) {
    .brutalist-quantity .qty-btn {
      width: 46px;
      height: 46px;
      font-size: 18px;
    }

    .brutalist-quantity .qty-input {
      width: 55px;
      height: 46px;
      font-size: 18px;
    }
  }
.brutalist-review {
    margin-bottom: 32px;
    border-left: 5px solid #000000;
    padding-left: 20px;
  }

  .brutalist-review .review-container {
    background: #000000;
    color: #ffffff;
    padding: 16px 20px;
    margin-bottom: 12px;
  }

  .brutalist-review .review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
  }

  .brutalist-review .star {
    font-size: 22px;
    color: #333333;
  }

  .brutalist-review .star.filled {
    color: #ffd700;
  }

  .brutalist-review .review-info {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .brutalist-review .review-rating {
    font-size: 18px;
    font-weight: 700;
  }

  .brutalist-review .review-count {
    font-size: 13px;
    color: #cccccc;
  }

  .brutalist-review .review-link {
    display: inline-block;
    color: #000000;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
  }

  .brutalist-review .review-link:hover {
    background: #000000;
    color: #ffffff;
    padding: 4px 8px;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .brutalist-review {
      padding-left: 15px;
    }

    .brutalist-review .review-container {
      padding: 12px 16px;
    }

    .brutalist-review .star {
      font-size: 18px;
    }

    .brutalist-review .review-rating {
      font-size: 16px;
    }
  }
.brutalist-shipping-info {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .shipping-grid-brutalist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .shipping-block-brutalist {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background: #ffffff;
  }

  .block-icon-brutalist {
    margin-bottom: 8px;
  }

  .block-title-brutalist {
    margin: 0 0 6px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .title-underline-brutalist {
    height: 3px;
    margin: 6px 0 10px 0;
  }

  .block-description-brutalist {
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
  }

  /* MOBILE - GARDE 2 COLONNES */
  @media (max-width: 768px) {
    .shipping-grid-brutalist {
      grid-template-columns: repeat(2, 1fr);
    }

    .block-icon-brutalist {
      font-size: 24px !important;
    }

    .block-title-brutalist {
      font-size: 11px !important;
    }

    .block-description-brutalist {
      font-size: 10px !important;
    }
  }
/* BOUTON */
  .size-guide-btn-brutalist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .size-guide-btn-brutalist svg {
    width: 18px;
    height: 18px;
  }

  .size-guide-btn-brutalist:hover {
    background: #ffffff;
    color: #000000;
  }

  /* OVERLAY */
  .size-guide-overlay-brutalist {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .size-guide-overlay-brutalist.active {
    display: flex;
  }

  /* POPUP */
  .size-guide-popup-brutalist {
    background: #ffffff;
    border: 4px solid #000000;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 30px;
    position: relative;
  }

  /* ANIMATIONS */
  .size-guide-overlay-brutalist[data-animation="fade_scale"] .size-guide-popup-brutalist {
    animation: fadeScaleBrutalist 0.3s ease;
  }

  @keyframes fadeScaleBrutalist {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay-brutalist[data-animation="slide_bottom"] .size-guide-popup-brutalist {
    animation: slideBottomBrutalist 0.4s ease;
  }

  @keyframes slideBottomBrutalist {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay-brutalist[data-animation="fade_simple"] .size-guide-popup-brutalist {
    animation: fadeSimpleBrutalist 0.3s ease;
  }

  @keyframes fadeSimpleBrutalist {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup-brutalist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
    width: 45px;
    height: 45px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .close-popup-brutalist:hover {
    background: #ffffff;
    color: #000000;
  }

  /* TITRE */
  .popup-title-brutalist {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
    border-bottom: 4px solid #000000;
    padding-bottom: 15px;
  }

  /* TABLEAU */
  .size-table-wrapper-brutalist {
    overflow-x: auto;
    margin-bottom: 20px;
  }

  .size-table-brutalist {
    width: 100%;
    border-collapse: collapse;
  }

  .size-table-brutalist th,
  .size-table-brutalist td {
    padding: 15px;
    text-align: center;
    border: 4px solid #000000;
    font-size: 15px;
    font-weight: 700;
  }

  .size-table-brutalist th {
    background: #000000;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
  }

  .size-table-brutalist td {
    background: #ffffff;
    color: #000000;
  }

  /* CONSEIL */
  .size-tip-brutalist {
    background: #ffffff;
    padding: 20px;
    border: 4px solid #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #000000;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup-brutalist {
      padding: 30px 20px;
    }

    .popup-title-brutalist {
      font-size: 18px;
    }

    .size-table-brutalist th,
    .size-table-brutalist td {
      padding: 10px 8px;
      font-size: 12px;
    }

    .size-tip-brutalist {
      font-size: 13px;
      padding: 15px;
    }
  }
/* BOUTON */
  .size-guide-btn-brutalist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .size-guide-btn-brutalist svg {
    width: 18px;
    height: 18px;
  }

  .size-guide-btn-brutalist:hover {
    background: #ffffff;
    color: #000000;
  }

  /* OVERLAY */
  .size-guide-overlay-brutalist {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .size-guide-overlay-brutalist.active {
    display: flex;
  }

  /* POPUP */
  .size-guide-popup-brutalist {
    background: #ffffff;
    border: 4px solid #000000;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 30px;
    position: relative;
  }

  /* ANIMATIONS */
  .size-guide-overlay-brutalist[data-animation="fade_scale"] .size-guide-popup-brutalist {
    animation: fadeScaleBrutalist 0.3s ease;
  }

  @keyframes fadeScaleBrutalist {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay-brutalist[data-animation="slide_bottom"] .size-guide-popup-brutalist {
    animation: slideBottomBrutalist 0.4s ease;
  }

  @keyframes slideBottomBrutalist {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay-brutalist[data-animation="fade_simple"] .size-guide-popup-brutalist {
    animation: fadeSimpleBrutalist 0.3s ease;
  }

  @keyframes fadeSimpleBrutalist {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup-brutalist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
    width: 45px;
    height: 45px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .close-popup-brutalist:hover {
    background: #ffffff;
    color: #000000;
  }

  /* TITRE */
  .popup-title-brutalist {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-align: center;
    color: #000000;
    border-bottom: 4px solid #000000;
    padding-bottom: 15px;
  }

  /* TABLEAU */
  .size-table-wrapper-brutalist {
    overflow-x: auto;
    margin-bottom: 20px;
  }

  .size-table-brutalist {
    width: 100%;
    border-collapse: collapse;
  }

  .size-table-brutalist th,
  .size-table-brutalist td {
    padding: 15px;
    text-align: center;
    border: 4px solid #000000;
    font-size: 15px;
    font-weight: 700;
  }

  .size-table-brutalist th {
    background: #000000;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
  }

  .size-table-brutalist td {
    background: #ffffff;
    color: #000000;
  }

  /* CONSEIL */
  .size-tip-brutalist {
    background: #ffffff;
    padding: 20px;
    border: 4px solid #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #000000;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup-brutalist {
      padding: 30px 20px;
    }

    .popup-title-brutalist {
      font-size: 18px;
    }

    .size-table-brutalist th,
    .size-table-brutalist td {
      padding: 10px 8px;
      font-size: 12px;
    }

    .size-tip-brutalist {
      font-size: 13px;
      padding: 15px;
    }
  }
.brutalist-sizes {
    margin-bottom: 32px;
    border-left: 5px solid #000000;
    padding-left: 20px;
  }

  .brutalist-sizes .option-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    color: #000000;
  }

  .brutalist-sizes .size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 300px;
  }

  .brutalist-sizes .size-box {
    aspect-ratio: 1;
    border: 4px solid #000000;
    background: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #000000;
  }

  .brutalist-sizes .size-box:hover {
    background: #f5f5f5;
  }

  .brutalist-sizes .size-box.active {
    background: #000000;
    color: #ffffff;
    border-width: 5px;
  }

  .brutalist-sizes .size-box.disabled {
    opacity: 0.2;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .brutalist-sizes .size-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      max-width: 200px;
    }

    .brutalist-sizes .size-box {
      font-size: 16px;
    }
  }
.brutalist-social-proof-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .brutalist-social-proof-wrapper.reverse {
    flex-direction: row-reverse;
  }

  /* BULLES */
  .bubbles-container-brutalist {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .bubble-brutalist {
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }

  .bubble-brutalist img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXTE */
  .text-container-brutalist {
    flex: 1;
  }

  .proof-text-brutalist {
    position: relative;
    display: inline-block;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .underline-decoration-brutalist {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }

  /* MOBILE - Reste horizontal mais plus petit */
  @media (max-width: 768px) {
    .brutalist-social-proof-wrapper {
      gap: 12px;
    }

    .bubbles-container-brutalist {
      transform: scale(0.85);
      transform-origin: left center;
    }

    .brutalist-social-proof-wrapper.reverse .bubbles-container-brutalist {
      transform-origin: right center;
    }

    .proof-text-brutalist {
      font-size: calc({{ block.settings.text_size }}px * 0.85);
    }
  }
.brutalist-title h1 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #000000;
  }

  @media (max-width: 768px) {
    .brutalist-title h1 {
      font-size: 31px;
    }
  }
.brutalist-trust-badges {
    width: 100%;
  }

  .payment-section-brutalist {
    margin-bottom: 15px;
  }

  .payment-title-brutalist {
    font-weight: 900;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .payment-badges-brutalist,
  .custom-badges-brutalist {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-badge-brutalist {
    flex-shrink: 0;
    border: 3px solid #000000;
  }

  .payment-icon-svg-brutalist {
    width: 100%;
    height: auto;
    display: block;
  }

  .separator-brutalist {
    width: 100%;
  }

  .custom-badge-brutalist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 3px solid #000000;
    padding: 10px;
  }

  .custom-badge-brutalist img {
    display: block;
  }

  .badge-text-brutalist {
    margin: 0;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .payment-title-brutalist {
      font-size: 13px !important;
    }

    .badge-text-brutalist {
      font-size: 11px !important;
    }

    .payment-badge-brutalist {
      border-width: 2px;
    }

    .custom-badge-brutalist {
      border-width: 2px;
      padding: 8px;
    }
  }
.brutalist-urgency-wrapper {
    width: 100%;
  }

  .brutalist-stock-alert,
  .brutalist-countdown-alert {
    position: relative;
    padding: 15px 20px;
    border: 4px solid #000000;
  }

  /* PASTILLE PULSE */
  .pulse-badge-brutalist {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 12px;
    height: 12px;
    animation: pulseBrutalist 1.5s ease-in-out infinite;
  }

  @keyframes pulseBrutalist {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.3);
      opacity: 0.7;
    }
  }

  .stock-content-brutalist,
  .countdown-content-brutalist {
    margin-left: 30px;
  }

  .stock-text-brutalist,
  .countdown-text-brutalist {
    margin: 0 0 10px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* BARRE DE PROGRESSION */
  .progress-bar-bg-brutalist {
    width: 100%;
    height: 10px;
    background: #000000;
    overflow: hidden;
  }

  .progress-bar-fill-brutalist {
    height: 100%;
    transition: width 0.3s ease;
  }

  /* COUNTDOWN TIMER */
  .countdown-timer-brutalist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    margin-top: 8px;
  }

  .timer-part-brutalist {
    display: flex;
    align-items: baseline;
    gap: 3px;
  }

  .timer-value-brutalist {
    font-size: inherit;
  }

  .timer-label-brutalist {
    font-size: 0.7em;
    opacity: 0.8;
  }

  .timer-sep-brutalist {
    font-size: inherit;
    font-weight: 900;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .brutalist-stock-alert,
    .brutalist-countdown-alert {
      padding: 12px 15px;
    }

    .stock-content-brutalist,
    .countdown-content-brutalist {
      margin-left: 25px;
    }

    .pulse-badge-brutalist {
      top: 12px;
      left: 12px;
      width: 10px;
      height: 10px;
    }
  }
.elegant-add-to-cart {
    margin-top: 36px;
  }

  .elegant-add-to-cart .btn-add-cart {
    width: 100%;
    height: 64px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }

  .elegant-add-to-cart .btn-add-cart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    transition: height 0.5s ease;
    z-index: 0;
  }

  .elegant-add-to-cart .btn-add-cart:hover::before {
    height: 100%;
  }

  .elegant-add-to-cart .btn-add-cart span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }

  .elegant-add-to-cart .btn-add-cart:hover span {
    color: #000000;
  }

  .elegant-add-to-cart .btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .elegant-add-to-cart .btn-add-cart {
      height: 56px;
      font-size: 14px;
    }
  }
.elegant-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 20px;
    color: #000000;
  }

  @media (max-width: 768px) {
    .elegant-badge {
      font-size: 10px;
      padding: 7px 16px;
    }
  }
.elegant-colors {
    margin-bottom: 30px;
  }

  .elegant-colors .option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
    color: #333333;
  }

  .elegant-colors .color-swatches {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .elegant-colors .color-swatch {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }

  .elegant-colors .color-swatch::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .elegant-colors .color-swatch:hover {
    transform: scale(1.15);
  }

  .elegant-colors .color-swatch:hover::after,
  .elegant-colors .color-swatch.active::after {
    border-color: #d4af37;
  }

  @media (max-width: 768px) {
    .elegant-colors .color-swatch {
      width: 46px;
      height: 46px;
    }
  }
.elegant-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 36px;
  }

  @media (max-width: 768px) {
    .elegant-description {
      font-size: 15px;
    }
  }
.elegant-features-list {
    width: 100%;
  }

  .feature-line-elegant {
    width: 100%;
  }

  .feature-content-elegant {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-icon-elegant {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feature-text-wrapper-elegant {
    flex: 1;
  }

  .feature-text-elegant {
    position: relative;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    padding-bottom: 6px;
    letter-spacing: 0.5px;
  }

  .feature-underline-elegant {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .feature-icon-elegant {
      font-size: 16px;
    }

    .feature-text-elegant {
      font-size: 13px !important;
    }
  }
.elegant-price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
  }

  .elegant-price .compare-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-left: 12px;
  }

  @media (max-width: 768px) {
    .elegant-price {
      font-size: 26px;
    }
    
    .elegant-price .compare-price {
      font-size: 16px;
    }
  }
.elegant-quantity {
    margin-bottom: 30px;
  }

  .elegant-quantity .option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
    color: #333333;
  }

  .elegant-quantity .quantity-controls {
    display: flex;
    border: 2px solid #e8e8e8;
    width: fit-content;
  }

  .elegant-quantity .qty-btn {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border: none;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .elegant-quantity .qty-btn:hover {
    background: #e0e0e0;
  }

  .elegant-quantity .qty-input {
    width: 65px;
    height: 50px;
    border: none;
    border-left: 2px solid #e8e8e8;
    border-right: 2px solid #e8e8e8;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background: white;
  }

  @media (max-width: 768px) {
    .elegant-quantity .qty-btn {
      width: 44px;
      height: 44px;
      font-size: 24px;
    }

    .elegant-quantity .qty-input {
      width: 55px;
      height: 44px;
      font-size: 18px;
    }
  }
.elegant-review {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 229, 178, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
  }

  .elegant-review .review-container {
    text-align: center;
    margin-bottom: 12px;
  }

  .elegant-review .review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    justify-content: center;
  }

  .elegant-review .star {
    font-size: 24px;
    color: #e0e0e0;
    transition: all 0.3s ease;
  }

  .elegant-review .star.filled {
    color: #d4af37;
  }

  .elegant-review .review-info {
    display: flex;
    gap: 8px;
    align-items: baseline;
    justify-content: center;
  }

  .elegant-review .review-rating {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .elegant-review .review-count {
    font-size: 14px;
    color: #666666;
    font-style: italic;
  }

  .elegant-review .review-link {
    display: block;
    text-align: center;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .elegant-review .review-link:hover {
    color: #000000;
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .elegant-review {
      padding: 16px;
    }

    .elegant-review .star {
      font-size: 20px;
    }

    .elegant-review .review-rating {
      font-size: 18px;
    }
  }
.elegant-shipping-info {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .shipping-grid-elegant {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .shipping-block-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .block-icon-elegant {
    margin-bottom: 8px;
  }

  .block-title-elegant {
    margin: 0 0 6px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .title-underline-elegant {
    height: 2px;
    margin: 6px 0 10px 0;
  }

  .block-description-elegant {
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }

  /* MOBILE - GARDE 2 COLONNES */
  @media (max-width: 768px) {
    .shipping-grid-elegant {
      grid-template-columns: repeat(2, 1fr);
    }

    .block-icon-elegant {
      font-size: 24px !important;
    }

    .block-title-elegant {
      font-size: 11px !important;
    }

    .block-description-elegant {
      font-size: 10px !important;
    }
  }
/* BOUTON */
  .size-guide-btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .size-guide-btn-elegant svg {
    width: 16px;
    height: 16px;
  }

  .size-guide-btn-elegant:hover {
    background: #d4af37;
    color: #ffffff;
  }

  /* OVERLAY */
  .size-guide-overlay-elegant {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .size-guide-overlay-elegant.active {
    display: flex;
  }

  /* POPUP */
  .size-guide-popup-elegant {
    background: #faf8f3;
    border: 2px solid #d4af37;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  }

  /* ANIMATIONS */
  .size-guide-overlay-elegant[data-animation="fade_scale"] .size-guide-popup-elegant {
    animation: fadeScaleElegant 0.3s ease;
  }

  @keyframes fadeScaleElegant {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay-elegant[data-animation="slide_bottom"] .size-guide-popup-elegant {
    animation: slideBottomElegant 0.4s ease;
  }

  @keyframes slideBottomElegant {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay-elegant[data-animation="fade_simple"] .size-guide-popup-elegant {
    animation: fadeSimpleElegant 0.3s ease;
  }

  @keyframes fadeSimpleElegant {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup-elegant {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-popup-elegant:hover {
    background: #d4af37;
    color: #ffffff;
  }

  /* TITRE */
  .popup-title-elegant {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: #333333;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 15px;
  }

  /* TABLEAU */
  .size-table-wrapper-elegant {
    overflow-x: auto;
    margin-bottom: 20px;
  }

  .size-table-elegant {
    width: 100%;
    border-collapse: collapse;
  }

  .size-table-elegant th,
  .size-table-elegant td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #d4af37;
    font-size: 14px;
  }

  .size-table-elegant th {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c2 100%);
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
  }

  .size-table-elegant td {
    background: #ffffff;
    color: #555555;
    font-weight: 500;
  }

  .size-table-elegant tr:hover td {
    background: #fef9f0;
  }

  /* CONSEIL */
  .size-tip-elegant {
    background: #fef9f0;
    padding: 18px 22px;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup-elegant {
      padding: 30px 20px;
      border-radius: 6px;
    }

    .popup-title-elegant {
      font-size: 17px;
    }

    .size-table-elegant th,
    .size-table-elegant td {
      padding: 10px 8px;
      font-size: 12px;
    }

    .size-tip-elegant {
      font-size: 13px;
      padding: 15px 18px;
    }
  }
/* BOUTON */
  .size-guide-btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .size-guide-btn-elegant svg {
    width: 16px;
    height: 16px;
  }

  .size-guide-btn-elegant:hover {
    background: #d4af37;
    color: #ffffff;
  }

  /* OVERLAY */
  .size-guide-overlay-elegant {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .size-guide-overlay-elegant.active {
    display: flex;
  }

  /* POPUP */
  .size-guide-popup-elegant {
    background: #faf8f3;
    border: 2px solid #d4af37;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  }

  /* ANIMATIONS */
  .size-guide-overlay-elegant[data-animation="fade_scale"] .size-guide-popup-elegant {
    animation: fadeScaleElegant 0.3s ease;
  }

  @keyframes fadeScaleElegant {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay-elegant[data-animation="slide_bottom"] .size-guide-popup-elegant {
    animation: slideBottomElegant 0.4s ease;
  }

  @keyframes slideBottomElegant {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay-elegant[data-animation="fade_simple"] .size-guide-popup-elegant {
    animation: fadeSimpleElegant 0.3s ease;
  }

  @keyframes fadeSimpleElegant {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup-elegant {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-popup-elegant:hover {
    background: #d4af37;
    color: #ffffff;
  }

  /* TITRE */
  .popup-title-elegant {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: #333333;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 15px;
  }

  /* TABLEAU */
  .size-table-wrapper-elegant {
    overflow-x: auto;
    margin-bottom: 20px;
  }

  .size-table-elegant {
    width: 100%;
    border-collapse: collapse;
  }

  .size-table-elegant th,
  .size-table-elegant td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #d4af37;
    font-size: 14px;
  }

  .size-table-elegant th {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5c2 100%);
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
  }

  .size-table-elegant td {
    background: #ffffff;
    color: #555555;
    font-weight: 500;
  }

  .size-table-elegant tr:hover td {
    background: #fef9f0;
  }

  /* CONSEIL */
  .size-tip-elegant {
    background: #fef9f0;
    padding: 18px 22px;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup-elegant {
      padding: 30px 20px;
      border-radius: 6px;
    }

    .popup-title-elegant {
      font-size: 17px;
    }

    .size-table-elegant th,
    .size-table-elegant td {
      padding: 10px 8px;
      font-size: 12px;
    }

    .size-tip-elegant {
      font-size: 13px;
      padding: 15px 18px;
    }
  }
.elegant-sizes {
    margin-bottom: 30px;
  }

  .elegant-sizes .option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
    color: #333333;
  }

  .elegant-sizes .option-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .elegant-sizes .option-button {
    min-width: 65px;
    height: 52px;
    padding: 0 24px;
    border: 2px solid #e8e8e8;
    background: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
  }

  .elegant-sizes .option-button:hover {
    border-color: #d4af37;
    background: #fffbf0;
  }

  .elegant-sizes .option-button.active {
    border-color: #d4af37;
    background: #d4af37;
    color: #000000;
  }

  .elegant-sizes .option-button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .elegant-sizes .option-button {
      min-width: 58px;
      height: 46px;
      font-size: 14px;
      padding: 0 20px;
    }
  }
.luxury-social-proof-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .luxury-social-proof-wrapper.reverse {
    flex-direction: row-reverse;
  }

  /* BULLES */
  .bubbles-container-luxury {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .bubble-luxury {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    position: relative;
  }

  .bubble-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXTE */
  .text-container-luxury {
    flex: 1;
    min-width: 0;
  }

  .proof-text-luxury {
    position: relative;
    display: inline-block;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }

  .underline-decoration-luxury {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }

  /* MOBILE - OPTIMISÉ */
  @media (max-width: 768px) {
    .luxury-social-proof-wrapper {
      gap: 3px !important;
    }

    .bubbles-container-luxury {
      transform: scale(0.6) !important;
      transform-origin: left center !important;
    }

    .luxury-social-proof-wrapper.reverse .bubbles-container-luxury {
      transform: scale(0.6) !important;
      transform-origin: right center !important;
    }

    .text-container-luxury {
      overflow: hidden !important;
    }

    .proof-text-luxury {
      font-size: 11px !important;
      letter-spacing: 0.3px !important;
      white-space: nowrap !important;
    }

    .underline-decoration-luxury {
      height: 1px !important;
      bottom: -3px !important;
    }
  }
.elegant-subtitle p {
    font-size: 18px;
    color: #666666;
    font-style: italic;
    margin-bottom: 28px;
  }

  @media (max-width: 768px) {
    .elegant-subtitle p {
      font-size: 16px;
    }
  }
.elegant-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    color: #1a1a1a;
  }

  @media (max-width: 768px) {
    .elegant-title h1 {
      font-size: 29px;
    }
  }
.elegant-trust-badges {
    width: 100%;
  }

  .payment-section-elegant {
    margin-bottom: 15px;
  }

  .payment-title-elegant {
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .payment-badges-elegant,
  .custom-badges-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-badge-elegant {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
  }

  .payment-icon-svg-elegant {
    width: 100%;
    height: auto;
    display: block;
  }

  .separator-elegant {
    width: 100%;
  }

  .custom-badge-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
  }

  .custom-badge-elegant img {
    display: block;
  }

  .badge-text-elegant {
    margin: 0;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .payment-title-elegant {
      font-size: 13px !important;
    }

    .badge-text-elegant {
      font-size: 11px !important;
    }

    .custom-badge-elegant {
      padding: 10px;
    }
  }
.elegant-urgency-wrapper {
    width: 100%;
  }

  .elegant-stock-alert,
  .elegant-countdown-alert {
    position: relative;
    padding: 18px 25px;
    border-radius: 10px;
    border: 1px solid #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  }

  /* PASTILLE PULSE */
  .pulse-badge-elegant {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulseElegant 1.5s ease-in-out infinite;
  }

  @keyframes pulseElegant {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.3);
      opacity: 0.7;
    }
  }

  .stock-content-elegant,
  .countdown-content-elegant {
    margin-left: 28px;
  }

  .stock-text-elegant,
  .countdown-text-elegant {
    margin: 0 0 12px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* BARRE DE PROGRESSION */
  .progress-bar-bg-elegant {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
  }

  .progress-bar-fill-elegant {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
  }

  /* COUNTDOWN TIMER */
  .countdown-timer-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    margin-top: 10px;
  }

  .timer-part-elegant {
    display: flex;
    align-items: baseline;
    gap: 3px;
  }

  .timer-value-elegant {
    font-size: inherit;
  }

  .timer-label-elegant {
    font-size: 0.7em;
    opacity: 0.7;
  }

  .timer-sep-elegant {
    font-size: inherit;
    font-weight: 400;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .elegant-stock-alert,
    .elegant-countdown-alert {
      padding: 15px 20px;
    }

    .stock-content-elegant,
    .countdown-content-elegant {
      margin-left: 25px;
    }

    .pulse-badge-elegant {
      top: 15px;
      left: 15px;
      width: 8px;
      height: 8px;
    }
  }
.luxury-add-to-cart {
    margin-top: 32px;
  }

  .luxury-add-to-cart .btn-add-cart {
    width: 100%;
    height: 68px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }

  .luxury-add-to-cart .btn-add-cart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    transition: height 0.5s ease;
  }

  .luxury-add-to-cart .btn-add-cart:hover::before {
    height: 100%;
  }

  .luxury-add-to-cart .btn-add-cart span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }

  .luxury-add-to-cart .btn-add-cart:hover span {
    color: #000000;
  }

  .luxury-add-to-cart .btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  }

  .luxury-add-to-cart .btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .luxury-add-to-cart .btn-add-cart {
      height: 56px;
      font-size: 14px;
    }
  }
.luxury-colors {
    margin-bottom: 28px;
  }

  .luxury-colors .option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
  }

  .luxury-colors .color-swatches {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .luxury-colors .color-swatch {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .luxury-colors .color-swatch::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .luxury-colors .color-swatch:hover {
    transform: scale(1.2) rotate(5deg);
  }

  .luxury-colors .color-swatch:hover::before,
  .luxury-colors .color-swatch.active::before {
    border-color: #d4af37;
  }

  .luxury-colors .color-swatch.active {
    transform: scale(1.25);
  }

  @media (max-width: 768px) {
    .luxury-colors .color-swatch {
      width: 48px;
      height: 48px;
    }
  }
.luxury-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    opacity: 0.95;
  }

  @media (max-width: 768px) {
    .luxury-description {
      font-size: 14px;
    }
  }
.luxury-features-list {
    width: 100%;
  }

  .feature-line-luxury {
    width: 100%;
  }

  .feature-content-luxury {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-icon-luxury {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feature-text-wrapper-luxury {
    flex: 1;
  }

  .feature-text-luxury {
    position: relative;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .feature-underline-luxury {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .feature-icon-luxury {
      font-size: 16px;
    }

    .feature-text-luxury {
      font-size: 13px !important;
      letter-spacing: 0.8px;
    }
  }
.luxury-price {
    margin-bottom: 12px;
  }

  .luxury-price .price-3d {
    font-size: 46px;
    font-weight: 900;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

  .luxury-price .compare-price {
    font-size: 23px;
    color: #999;
    text-decoration: line-through;
    margin-left: 12px;
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    .luxury-price .price-3d {
      font-size: 30px;
    }
    
    .luxury-price .compare-price {
      font-size: 18px;
    }
  }
.luxury-quantity {
    margin-bottom: 28px;
  }

  .luxury-quantity .option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
  }

  .luxury-quantity .quantity-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
  }

  .luxury-quantity .qty-btn {
    width: 52px;
    height: 52px;
    background: transparent;
    border: none;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .luxury-quantity .qty-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .luxury-quantity .qty-input {
    min-width: 60px;
    height: 52px;
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    background: transparent;
    padding: 0 8px;
  }

  @media (max-width: 768px) {
    .luxury-quantity .qty-btn {
      width: 46px;
      height: 46px;
      font-size: 18px;
    }

    .luxury-quantity .qty-input {
      height: 46px;
      font-size: 18px;
      min-width: 50px;
    }
  }
.luxury-review {
    margin-bottom: 28px;
  }

  .luxury-review .review-container {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px 24px;
    border-radius: 15px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
  }

  .luxury-review .review-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    justify-content: center;
  }

  .luxury-review .star {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .luxury-review .star.filled {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }

  .luxury-review .review-info {
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: center;
  }

  .luxury-review .review-rating {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .luxury-review .review-count {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }

  .luxury-review .review-link {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
  }

  .luxury-review .review-link:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    color: #000000;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  }

  @media (max-width: 768px) {
    .luxury-review .review-container {
      padding: 16px 18px;
    }

    .luxury-review .star {
      font-size: 22px;
    }

    .luxury-review .review-rating {
      font-size: 19px;
    }

    .luxury-review .review-count {
      font-size: 13px;
    }
  }
.luxury-shipping-info {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .shipping-grid-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .shipping-block-luxury {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
  }

  .block-icon-luxury {
    margin-bottom: 8px;
  }

  .block-title-luxury {
    margin: 0 0 6px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .title-underline-luxury {
    height: 2px;
    margin: 6px 0 10px 0;
  }

  .block-description-luxury {
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  /* MOBILE - GARDE 2 COLONNES */
  @media (max-width: 768px) {
    .shipping-grid-luxury {
      grid-template-columns: repeat(2, 1fr);
    }

    .block-icon-luxury {
      font-size: 24px !important;
    }

    .block-title-luxury {
      font-size: 11px !important;
      letter-spacing: 0.8px;
    }

    .block-description-luxury {
      font-size: 10px !important;
      letter-spacing: 0.5px;
    }
  }
/* BOUTON - Style Luxury avec glassmorphism */
  .size-guide-btn-lux-cloth {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .size-guide-btn-lux-cloth svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
  }

  .size-guide-btn-lux-cloth:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* OVERLAY - Styles de base (inline styles appliqués directement) */
  .size-guide-overlay-lux-cloth.active {
    display: flex !important;
  }

  /* POPUP - Plus large pour afficher tout le tableau sans scroll */
  .size-guide-popup-lux-cloth {
    background: linear-gradient(135deg, #9b88d9 0%, #8b7dd8 100%);
    border-radius: 24px;
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* ANIMATIONS */
  .size-guide-overlay-lux-cloth[data-animation="fade_scale"] .size-guide-popup-lux-cloth {
    animation: fadeScaleLuxCloth 0.3s ease;
  }

  @keyframes fadeScaleLuxCloth {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay-lux-cloth[data-animation="slide_bottom"] .size-guide-popup-lux-cloth {
    animation: slideBottomLuxCloth 0.4s ease;
  }

  @keyframes slideBottomLuxCloth {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay-lux-cloth[data-animation="fade_simple"] .size-guide-popup-lux-cloth {
    animation: fadeSimpleLuxCloth 0.3s ease;
  }

  @keyframes fadeSimpleLuxCloth {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup-lux-cloth {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-popup-lux-cloth:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  /* TITRE */
  .popup-title-lux-cloth {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
  }

  /* TABLEAU */
  .size-table-wrapper-lux-cloth {
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 5px;
  }

  .size-table-lux-cloth {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
  }

  .size-table-lux-cloth th,
  .size-table-lux-cloth td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
  }

  .size-table-lux-cloth th {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
  }

  .size-table-lux-cloth td {
    background: rgba(255, 255, 255, 0.95);
    color: #6b5da6;
    font-weight: 600;
  }

  .size-table-lux-cloth tbody tr:hover td {
    background: rgba(255, 255, 255, 1);
  }

  /* CONSEIL */
  .size-tip-lux-cloth {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
  }

  /* SCROLLBAR */
  .size-guide-popup-lux-cloth::-webkit-scrollbar {
    width: 8px;
  }

  .size-guide-popup-lux-cloth::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .size-guide-popup-lux-cloth::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .size-guide-popup-lux-cloth::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup-lux-cloth {
      padding: 30px 20px;
    }

    .popup-title-lux-cloth {
      font-size: 18px;
    }

    .size-table-lux-cloth th,
    .size-table-lux-cloth td {
      padding: 10px 8px;
      font-size: 12px;
    }

    .size-tip-lux-cloth {
      font-size: 13px;
      padding: 15px;
    }
  }
/* BOUTON - Style Luxury avec glassmorphism */
  .size-guide-btn-lux {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .size-guide-btn-lux svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
  }

  .size-guide-btn-lux:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* OVERLAY - Styles de base (inline styles appliqués directement) */
  .size-guide-overlay-lux.active {
    display: flex !important;
  }

  /* POPUP - Plus large pour afficher tout le tableau sans scroll */
  .size-guide-popup-lux {
    background: linear-gradient(135deg, #9b88d9 0%, #8b7dd8 100%);
    border-radius: 24px;
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* ANIMATIONS */
  .size-guide-overlay-lux[data-animation="fade_scale"] .size-guide-popup-lux {
    animation: fadeScaleLux 0.3s ease;
  }

  @keyframes fadeScaleLux {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .size-guide-overlay-lux[data-animation="slide_bottom"] .size-guide-popup-lux {
    animation: slideBottomLux 0.4s ease;
  }

  @keyframes slideBottomLux {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .size-guide-overlay-lux[data-animation="fade_simple"] .size-guide-popup-lux {
    animation: fadeSimpleLux 0.3s ease;
  }

  @keyframes fadeSimpleLux {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* BOUTON FERMER */
  .close-popup-lux {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .close-popup-lux:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
  }

  /* TITRE */
  .popup-title-lux {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
  }

  /* TABLEAU */
  .size-table-wrapper-lux {
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 5px;
  }

  .size-table-lux {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
  }

  .size-table-lux th,
  .size-table-lux td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
  }

  .size-table-lux th {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
  }

  .size-table-lux td {
    background: rgba(255, 255, 255, 0.95);
    color: #6b5da6;
    font-weight: 600;
  }

  .size-table-lux tbody tr:hover td {
    background: rgba(255, 255, 255, 1);
  }

  /* CONSEIL */
  .size-tip-lux {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
  }

  /* SCROLLBAR */
  .size-guide-popup-lux::-webkit-scrollbar {
    width: 8px;
  }

  .size-guide-popup-lux::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .size-guide-popup-lux::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .size-guide-popup-lux::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .size-guide-popup-lux {
      padding: 30px 20px;
    }

    .popup-title-lux {
      font-size: 18px;
    }

    .size-table-lux th,
    .size-table-lux td {
      padding: 10px 8px;
      font-size: 12px;
    }

    .size-tip-lux {
      font-size: 13px;
      padding: 15px;
    }
  }
.luxury-sizes {
    margin-bottom: 28px;
  }

  .luxury-sizes .option-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
  }

  .luxury-sizes .option-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .luxury-sizes .option-button {
    min-width: 70px;
    height: 52px;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .luxury-sizes .option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b2 100%);
    transition: left 0.3s ease;
    z-index: 0;
  }

  .luxury-sizes .option-button span {
    position: relative;
    z-index: 1;
  }

  .luxury-sizes .option-button:hover::before {
    left: 0;
  }

  .luxury-sizes .option-button:hover span,
  .luxury-sizes .option-button.active span {
    color: #000000;
  }

  .luxury-sizes .option-button.active::before {
    left: 0;
  }

  .luxury-sizes .option-button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .luxury-sizes .option-button {
      min-width: 60px;
      height: 46px;
      padding: 0 20px;
      font-size: 14px;
    }
  }
.luxury-social-proof-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .luxury-social-proof-wrapper.reverse {
    flex-direction: row-reverse;
  }

  /* BULLES */
  .bubbles-container-luxury {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .bubble-luxury {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    position: relative;
  }

  .bubble-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXTE */
  .text-container-luxury {
    flex: 1;
  }

  .proof-text-luxury {
    position: relative;
    display: inline-block;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }

  .underline-decoration-luxury {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }

  /* MOBILE - Reste horizontal mais plus petit */
  @media (max-width: 768px) {
    .luxury-social-proof-wrapper {
      gap: 12px;
    }

    .bubbles-container-luxury {
      transform: scale(0.85);
      transform-origin: left center;
    }

    .luxury-social-proof-wrapper.reverse .bubbles-container-luxury {
      transform-origin: right center;
    }

    .proof-text-luxury {
      font-size: calc({{ block.settings.text_size }}px * 0.85);
    }
  }
.luxury-subtitle p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .luxury-subtitle p {
      font-size: 16px;
    }
  }
.luxury-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  @media (max-width: 768px) {
    .luxury-title h1 {
      font-size: 29px;
    }
  }
.luxury-trust-badges {
    width: 100%;
  }

  .payment-section-luxury {
    margin-bottom: 15px;
  }

  .payment-title-luxury {
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .payment-badges-luxury,
  .custom-badges-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .payment-badge-luxury {
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  }

  .payment-icon-svg-luxury {
    width: 100%;
    height: auto;
    display: block;
  }

  .separator-luxury {
    width: 100%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }

  .custom-badge-luxury {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
  }

  .custom-badge-luxury img {
    display: block;
  }

  .badge-text-luxury {
    margin: 0;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .payment-title-luxury {
      font-size: 13px !important;
      letter-spacing: 1px;
    }

    .badge-text-luxury {
      font-size: 11px !important;
      letter-spacing: 0.8px;
    }

    .custom-badge-luxury {
      padding: 12px;
    }
  }
.luxury-urgency-wrapper {
    width: 100%;
  }

  .luxury-stock-alert,
  .luxury-countdown-alert {
    position: relative;
    padding: 20px 28px;
    border-radius: 12px;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  }

  /* PASTILLE PULSE */
  .pulse-badge-luxury {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulseLuxury 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }

  @keyframes pulseLuxury {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.4);
      opacity: 0.6;
    }
  }

  .stock-content-luxury,
  .countdown-content-luxury {
    margin-left: 35px;
  }

  .stock-text-luxury,
  .countdown-text-luxury {
    margin: 0 0 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* BARRE DE PROGRESSION */
  .progress-bar-bg-luxury {
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
  }

  .progress-bar-fill-luxury {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  }

  /* COUNTDOWN TIMER */
  .countdown-timer-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    margin-top: 12px;
  }

  .timer-part-luxury {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .timer-value-luxury {
    font-size: inherit;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }

  .timer-label-luxury {
    font-size: 0.7em;
    opacity: 0.8;
  }

  .timer-sep-luxury {
    font-size: inherit;
    font-weight: 600;
    opacity: 0.8;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .luxury-stock-alert,
    .luxury-countdown-alert {
      padding: 16px 22px;
    }

    .stock-content-luxury,
    .countdown-content-luxury {
      margin-left: 30px;
    }

    .pulse-badge-luxury {
      top: 16px;
      left: 16px;
      width: 10px;
      height: 10px;
    }
  }