/* Config */
:root {
    /* #region color */

    --cliqued: #4285F4;
    --blackToWhite: black;
    --whiteToBlack: white;
    --transparentToWhite: transparent;
    --svgBlackToWhite: brightness(0) saturate(100%) invert(0);
    --svgWhiteToBlack: brightness(0) saturate(100%) invert(1);
    --primary: #1E2A38;
    --secondary: #4E5D49;
    --tertiary: #C68463;
    --surface: #F4F4F4;
    --background: #FAFAFA;

    @media (prefers-color-scheme: dark) {
        --blackToWhite: white;
        --whiteToBlack: black;
        --transparentToWhite: white;
        --svgBlackToWhite: brightness(0) saturate(100%) invert(1);
        --svgWhiteToBlack: brightness(0) saturate(100%) invert(0);
        --primary: #1E2A38;
        --secondary: #4E5D49;
        --tertiary: #C68463;
        --surface: #2F3131;
        --background: #1A1C1C;
    }

    /* #endregion color */
    /* #region spacing */

    --gap: 16px;

    --horizontal-padding: 16px;
    --vertical-padding: 16px;

    --horizontal-spacer: 16px;
    --vertical-spacer: 16px;

    @media (min-width: 768px) {
        --gap: 24px;

        --horizontal-padding: 24px;
        --vertical-padding: 24px;

        --horizontal-spacer: 24px;
        --vertical-spacer: 24px;
    }

    @media (min-width: 992px) {
        --gap: 16px;

        --horizontal-padding: 16px;
        --vertical-padding: 16px;

        --horizontal-spacer: 16px;
        --vertical-spacer: 16px;
    }

    /* #endregion spacing */

}/* - Base - */
/* Reset */

/* #region all */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    <!-- -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; -->
}

<!-- /* Permettre la sélection pour les champs de saisie et les zones de texte */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
} -->

/* #endregion all */

body {
    background-color: var(--background);
}

.container {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.container section:not(.unique) {
    padding: var(--vertical-spacer) var(--horizontal-spacer);
}

section:not(.full-width):not(.full-height) {
    padding: var(--vertical-padding) var(--horizontal-padding);
}

section.full-width:not(.full-height) {
    padding: var(--vertical-padding) 0;
}

section.full-height:not(.full-width) {
    padding: 0 var(--horizontal-padding);
}

li {
    list-style: none;
}

a {
    color: var(--blackToWhite);
    text-decoration: none;
    display: block;
}

button {
    border: none;
}

/* #region input */

label {
    font-size: 12px;
    font-weight: 400;
}

input {
    border-radius: 6px;
}

#password input {
    padding: 8px 42px 8px 8px;
}

input[type="number"] {
    min-width: 25px;
}

/* hide the arrows of the input number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* #endregion input *//* Theme */

/* #region primary */

.primary-button {
    color: var(--whiteToBlack);
    background-color: var(--primary);
}

.primary-button:disabled {
    color: grey;
    background-color: var(--whiteToBlack);
    border: 1px solid grey;
}

/* #endregion primary */
/* #region secondary */

.secondary-button {
    color: var(--whiteToBlack);
}

.secondary-button:hover {
    color: var(--blackToWhite);
}

.secondary-button:active {
    color: var(--blackToWhite);
    border: 3px solid color-mix(in srgb, var(--secondary) 50%, var(--blackToWhite));
}

.secondary-button:disabled {
    color: grey;
    background-color: var(--whiteToBlack);
    border: 1px solid grey;
}

/* #endregion secondary */
/* #region tertiary */

.tertiary-button {
    color: var(--whiteToBlack);
}

.tertiary-button:hover {
    color: var(--blackToWhite);
}

.tertiary-button:active {
    color: var(--blackToWhite);
    border: 3px solid color-mix(in srgb, var(--tertiary) 50%, var(--blackToWhite));
}

.tertiary-button:disabled {
    color: grey;
    background-color: var(--whiteToBlack);
    border: 1px solid grey;
}

/* #endregion tertiary */
/* #region outline */

.outline-button {
    color: var(--blackToWhite);
    border: 2px solid var(--blackToWhite);
}

.outline-button:hover {
    color: var(--whiteToBlack);
}

.outline-button:disabled {
    color: grey;
    background-color: var(--whiteToBlack);
    border: 2px solid grey;
}

/* #endregion outline */
/* #region square */

.square-button {
    color: var(--whiteToBlack);
}

.square-button:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.square-button:active {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.square-button:disabled {
    color: grey;
    background-color: var(--whiteToBlack);
    border: 1px solid grey;
}

/* #endregion square *//* Typography */

h1 {
    font-size: 48px;
    font-weight: 600;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

h3 {
    font-size: 28px;
    font-weight: 400;
}

h4 {
    font-size: 22px;
    font-weight: 400;
}

p {
    font-size: 16px;
}

.captionText {
    font-size: 14px;
}

button {
    font-size: 16px;
    font-weight: 600;
}

form label {
    font-size: 12px;
    font-weight: 500;
}/* - Component Start - */
/* - XS -  X-Small devices - portrait phones - */

<!-- 1 -->

<!-- 2 -->

.alert {
    background-color: var(--primary);
}

<!-- 3 -->

<!-- 4 -->/* #region global */

[class$="-button"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* #endregion global */

/* #region primary */

.primary-button {
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary);
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

.primary-button:hover {
    filter: brightness(0.5);
}

.primary-button:active {
    filter: brightness(0.5);
}

.primary-button:focus {
    border: 2px solid var(--cliqued);
    box-shadow: var(--cliqued) 0px 3px 8px;
}

/* #endregion primary */
/* #region secondary */

.secondary-button {
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--secondary);
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

.secondary-button:hover {
    filter: brightness(1.5);
}

.secondary-button:active {
    filter: brightness(1.5);
}

.secondary-button:focus {
    border: 2px solid var(--cliqued);
    box-shadow: var(--cliqued) 0px 3px 8px;
}

/* #endregion secondary */
/* #region tertiary */

.tertiary-button {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--tertiary);
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

.tertiary-button:hover {
    filter: brightness(1.5);
}

.tertiary-button:active {
    filter: brightness(1.5);
}

.tertiary-button:focus {
    border: 2px solid var(--cliqued);
    box-shadow: var(--cliqued) 0px 3px 8px;
}

/* #endregion tertiary */
/* #region outline */

.black.outline-button {
    color: black;
    border: 2px solid black;
}

.outline-button {
    width: 100px;
    height: 40px;
    padding: 8px;
    font-size: 14px;
    background-color: transparent;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.outline-button:hover {
    background-color: var(--primary);
    filter: brightness(1.5);
    border: 2px solid var(--primary);
}

.outline-button:active {
    background-color: var(--primary);
    filter: brightness(1.25);
}

.outline-button:focus {
    color: var(--cliqued);
    border: 2px solid var(--cliqued);
    box-shadow: var(--cliqued) 0px 3px 8px;
}

/* #endregion outline */
/* #region square */

.square-button {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary);
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.square-button:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    filter: brightness(1.5);
}

.square-button:active {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.square-button:focus {
    border: 2px solid var(--cliqued);
    box-shadow: var(--cliqued) 0px 3px 8px;
}

/* #endregion square *//* Carousel */

.base-carousel {
    height: calc(100vw / 3);
    min-height: 250px;
    max-height: 500px;
    width: 100%;
}

.base-carousel .carousel-bouton-left {
    left: 8px;
}

.base-carousel .carousel-bouton-right {
    right: 8px;
}

.button-carousel-banner {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.button-carousel-banner img {
    width: 18px;
    height: 18px;
}

/* #region product et category */
.carousel-bouton-left {
    left: 5px;
    height: 30px;
    width: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.15s ease;
}

.carousel-bouton-right {
    right: 5px;
    height: 30px;
    width: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.15s ease;
}

/* Responsive pour les boutons du carousel base */
@media (min-width: 768px) {
    .base-carousel .carousel-bouton-left {
        left: 16px;
    }

    .base-carousel .carousel-bouton-right {
        right: 16px;
    }

    .button-carousel-banner {
        width: 40px;
        height: 40px;
    }

    .button-carousel-banner img {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 992px) {
    .button-carousel-banner {
        width: 50px;
        height: 50px;
    }

    .button-carousel-banner img {
        width: 25px;
        height: 25px;
    }
}<!-- /* Carousel Product Component Styles */

.product-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;

    overflow: hidden;
}

.product-carousel-container .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.product-carousel-container .carousel-track {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    width: max-content;
    flex-wrap: nowrap;

    padding-left: 0;
    padding-right: 0;
    }
.product-carousel-container .carousel-item {
    flex: 0 0 auto;
    width: 240px;
    min-width: 240px;
    }
.product-carousel-container .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    }
.product-carousel-container .product-name-link {
    text-decoration: none;
    color: inherit;
    }
.product-carousel-container .product-card {
    background: var(--surface);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* border: 1px solid var(--background-reverse); */
}

.product-carousel-container .product-card:hover {
    transform: translateY(-2px);
    }
.product-carousel-container .product-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    }
.product-carousel-container .product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    }

.product-carousel-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

.product-carousel-container .sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    }

.product-carousel-container .sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.product-carousel-container .product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
.product-carousel-container .product-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--blackToWhite);
    white-space: nowrap;
    overflow: hidden;
    }
.product-carousel-container .product-price {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    }
/* Product badge */
.product-carousel-container .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 10001;
}

/* Color swatches */
.product-carousel-container .color-swatches {
    display: flex;
    gap: 6px;
    }
.product-carousel-container .color-swatch {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-carousel-container .color-swatch.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--blackToWhite);
    }
/* Product sizes */
.product-carousel-container .product-sizes {
    display: flex;
    align-items: center;
    gap: 8px;
    }
.product-carousel-container .size-options {
    display: flex;
    }
.product-carousel-container .size-option {
    font-size: 11px;
    color: var(--blackToWhite);
    background: var(--surface);
    border: 1px solid var(--blackToWhite);
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
    }
.product-carousel-container .size-option:hover {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
    }
.product-carousel-container .size-option.active {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
    }
/* Product formats */
.product-carousel-container .product-formats {
    display: flex;
    align-items: center;
    gap: 8px;
    }
.product-carousel-container .format-options {
    display: flex;
    }
.product-carousel-container .product-other-attributes {
    display: flex;
    align-items: center;
    gap: 8px;
    }
.product-carousel-container .other-attribute-options {
    display: flex;
    }
/* Attribute options */
.product-carousel-container .attribute-option {
    font-size: 11px;
    color: var(--blackToWhite);
    background: var(--surface);
    border: 1px solid var(--blackToWhite);
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
    }
.product-carousel-container .attribute-option[data-attribute-bg-color] {
    background-color: var(--attribute-bg-color);
    }
.product-carousel-container .attribute-option:hover {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
    }
.product-carousel-container .attribute-option.active {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
    }
/* Variants actifs */
.product-carousel-container .color-swatch.active,
.product-carousel-container .size-option.active,
.product-carousel-container .attribute-option.active {
    border: 3px solid #007bff !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4), 0 4px 8px rgba(0, 123, 255, 0.3);
    transform: scale(1.1);
    z-index: 10;
    }
/* Variants indisponibles */
.product-carousel-container .color-swatch.unavailable,
.product-carousel-container .size-option.unavailable,
.product-carousel-container .attribute-option.unavailable {
    opacity: 0.4;
    cursor: pointer;
    border-color: #dc3545 !important;
    pointer-events: auto;
    }   
/* Effets hover pour variants indisponibles */
.product-carousel-container .color-swatch.unavailable:hover,
.product-carousel-container .size-option.unavailable:hover,
.product-carousel-container .attribute-option.unavailable:hover {
    opacity: 0.7;
    transform: scale(1.05);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.4);
    }
/* Effets active pour variants indisponibles */
.product-carousel-container .color-swatch.unavailable:active,
.product-carousel-container .size-option.unavailable:active,
.product-carousel-container .attribute-option.unavailable:active {
    transform: scale(0.95);
    }
/* Transitions pour tous les variants */
.product-carousel-container .color-swatch,
.product-carousel-container .size-option,
.product-carousel-container .attribute-option {
    }
/* Animation de mise à jour de disponibilité */
@keyframes updateAvailability {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.product-carousel-container .color-swatch.updating,
.product-carousel-container .size-option.updating,
.product-carousel-container .attribute-option.updating {
    }
/* Add to cart button */
.product-carousel-container .add-to-cart-button {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--blackToWhite);
    border-radius: 6px;
    color: var(--blackToWhite);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    }
.product-carousel-container .add-to-cart-button:hover {
    background: var(--blackToWhite);
    }

.product-carousel-container .add-to-cart-button.disabled,
.product-carousel-container .add-to-cart-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    }

/* Navigation buttons */
.product-carousel-container .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
.product-carousel-container .carousel-nav:hover {
    background: var(--secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

/* Responsive design */
@media (max-width: 991px) {
    .product-carousel-container .carousel-nav {
    }
    .product-carousel-container .carousel-track {
        gap: 0.75rem;
    }
    .product-carousel-container .carousel-item {
        width: 200px;
    }

    .product-carousel-container .add-to-cart-button {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 767px) {
    .product-carousel-container .carousel-item {
        width: 180px;
    }

    .product-carousel-container .add-to-cart-button {
        padding: 0.5rem 0.7rem;
    }
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} -->
/* Carousel Category Component Styles */

/* Container principal */
.category-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Wrapper du carousel */
.category-carousel-container .carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-carousel-container .carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* Track du carousel */
.category-carousel-container .carousel-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    flex-wrap: nowrap;
}

/* Item du carousel */
.category-carousel-container .carousel-item {
    flex: 0 0 auto;
    width: 200px;
}

/* Lien de catégorie */
.category-carousel-container .category-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Carte de catégorie */
.category-carousel-container .category-card {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.category-carousel-container .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (prefers-color-scheme: dark) {
    .category-carousel-container .category-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .category-carousel-container .category-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
}

/* Image de catégorie */
.category-carousel-container .category-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-carousel-container .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-carousel-container .category-card:hover .category-image img {
    transform: scale(1.05);
}

/* Contenu de catégorie */
.category-carousel-container .category-content {
    padding: 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 50px;
}

/* Titre de catégorie */
.category-carousel-container .category-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blackToWhite);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Boutons de navigation */
.category-carousel-container .category-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.category-carousel-container .category-carousel-nav svg {
    width: 20px;
    height: 20px;
}

.category-carousel-container .category-carousel-prev {
    left: 0;
}

.category-carousel-container .category-carousel-next {
    right: 0;
}

.category-carousel-container .category-carousel-nav:hover {
    background: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

@media (prefers-color-scheme: dark) {
    .category-carousel-container .category-carousel-nav {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .category-carousel-container .category-carousel-nav:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
}

.category-carousel-container .category-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Indicators */
.category-carousel-container .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0;
}

.category-carousel-container .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.category-carousel-container .indicator.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.category-carousel-container .indicator:hover {
    background: rgba(0, 0, 0, 0.5);
}

.category-carousel-container .indicator.active:hover {
    background: var(--secondary);
}

@media (prefers-color-scheme: dark) {
    .category-carousel-container .indicator {
        background: rgba(255, 255, 255, 0.3);
    }

    .category-carousel-container .indicator:hover {
        background: rgba(255, 255, 255, 0.5);
    }
}

/* Responsive - Tablette */
@media (min-width: 768px) {
    .category-carousel-container .carousel-track {
        gap: 1rem;
    }

    .category-carousel-container .carousel-item {
        width: 220px;
    }

    .category-carousel-container .category-image {
        height: 160px;
    }

    .category-carousel-container .category-content {
        padding: 1rem;
        min-height: 60px;
    }

    .category-carousel-container .category-title {
        font-size: 1rem;
    }

    .category-carousel-container .category-carousel-nav {
        display: flex;
        width: 44px;
        height: 44px;
    }

    .category-carousel-container .category-carousel-prev {
        left: 0;
    }

    .category-carousel-container .category-carousel-next {
        right: 0;
    }

    .category-carousel-container .carousel-indicators {
        margin-top: 1rem;
    }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
    .category-carousel-container .carousel-item {
        width: 240px;
    }

    .category-carousel-container .category-image {
        height: 180px;
    }

    .category-carousel-container .category-content {
        padding: 1.25rem;
        min-height: 70px;
    }

    .category-carousel-container .category-title {
        font-size: 1.1rem;
    }

    .category-carousel-container .category-carousel-nav {
        width: 48px;
        height: 48px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .category-carousel-container .carousel-track {
        gap: 0.5rem;
    }

    .category-carousel-container .carousel-item {
        width: 160px;
    }

    .category-carousel-container .category-image {
        height: 120px;
    }

    .category-carousel-container .category-content {
        padding: 0.625rem;
        min-height: 45px;
    }

    .category-carousel-container .category-title {
        font-size: 0.85rem;
    }

    .category-carousel-container .carousel-indicators {
        margin-top: 0.5rem;
        gap: 0.375rem;
    }

    .category-carousel-container .indicator {
        width: 6px;
        height: 6px;
    }

    .category-carousel-container .indicator.active {
        width: 20px;
    }
}

/* Responsive - Petit mobile */
@media (max-width: 480px) {
    .category-carousel-container .carousel-item {
        width: 140px;
    }

    .category-carousel-container .category-image {
        height: 100px;
    }

    .category-carousel-container .category-content {
        padding: 0.5rem;
        min-height: 40px;
    }

    .category-carousel-container .category-title {
        font-size: 0.8rem;
    }
}

/* Responsive - Très petit mobile */
@media (max-width: 400px) {
    .category-carousel-container .carousel-item {
        width: 120px;
    }

    .category-carousel-container .category-image {
        height: 90px;
    }

    .category-carousel-container .category-content {
        padding: 0.5rem;
        min-height: 35px;
    }

    .category-carousel-container .category-title {
        font-size: 0.75rem;
    }
}<!-- /* Carousel Autre Component Styles */

.product-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    }
.product-carousel-container .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    }
.product-carousel-container .carousel-wrapper::-webkit-scrollbar {
    }
.product-carousel-container .carousel-track {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    width: max-content;
    }
.product-carousel-container .carousel-item {
    flex: 0 0 auto;
    width: 280px;
    }
.product-carousel-container .product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    }
.product-carousel-container .product-card:hover {
    transform: translateY(-4px);
    }
.product-carousel-container .product-image {
    width: 100%;
    height: 180px;
    }
.product-carousel-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

.product-carousel-container .product-card:hover .product-image img {
    }
.product-carousel-container .product-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    }
.product-carousel-container .product-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    min-height: 2.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    }
.product-carousel-container .product-price {
    margin: 0.5rem 0;
    display: flex;
    align-items: baseline;
    }
.product-carousel-container .price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    }
.product-carousel-container .price-currency {
    font-size: 0.8rem;
    color: #7f8c8d;
    }
/* Navigation buttons */
.product-carousel-container .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    }
.product-carousel-container .carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
.product-carousel-container .carousel-prev {
    }
.product-carousel-container .carousel-next {
    }
/* Responsive design */
@media (max-width: 991px) {
    .product-carousel-container .carousel-nav {
        }
    .product-carousel-container .carousel-track {   
        gap: 0.75rem;
        }
    .product-carousel-container .carousel-item {
        }
    }
@media (max-width: 767px) {
    .product-carousel-container .carousel-item {
        width: 200px;
    }

    .product-carousel-container .product-image {
        }
    .product-carousel-container .product-title {
    }
}

@media (max-width: 575px) {
    .product-carousel-container .carousel-item {     }
} -->
/* Cart Component Styles */

/* ============================================
   Images
   ============================================ */
#cart .img {
    max-width: 152px;
    max-height: 152px;
}

/* ============================================
   Section Garanties
   ============================================ */
#cart #guarantees {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* Icônes (colonnes 1) */
#cart #guarantees > div:first-child,
#cart #guarantees > div:nth-child(2),
#cart #guarantees > div:nth-child(3) {
    grid-column: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    flex-shrink: 0;
}

#cart #guarantees > div:first-child {
    grid-row: 1;
}

#cart #guarantees > div:nth-child(2) {
    grid-row: 2;
}

#cart #guarantees > div:nth-child(3) {
    grid-row: 3;
}

/* Textes (colonnes 2) */
#cart #guarantees > div:nth-child(4),
#cart #guarantees > div:nth-child(5),
#cart #guarantees > div:nth-child(6) {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#cart #guarantees > div:nth-child(4) {
    grid-row: 1;
}

#cart #guarantees > div:nth-child(5) {
    grid-row: 2;
}

#cart #guarantees > div:nth-child(6) {
    grid-row: 3;
}

/* Images dans garanties */
#cart #guarantees > div img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%);
}

/* Paragraphes dans garanties */
#cart #guarantees > div p {
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    overflow: visible;
    color: var(--blackToWhite);
}

/* Conteneurs de texte */
#cart #guarantees > div.display-flex.display-direction-column {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Exception pour #guarantees - ne pas appliquer les règles de cart-left-content */
#cart #guarantees,
#cart #guarantees * {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

/* Dark mode pour les icônes */
@media (prefers-color-scheme: dark) {
    #cart #guarantees {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    #cart #guarantees > div img {
        filter: brightness(0) invert(1);
    }
}

/* ============================================
   Layout du panier
   ============================================ */
#cart .cart-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    max-width: 100vw;
    overflow-x: hidden;
}

#cart .cart-left-content {
    min-width: 0;
    overflow: hidden;
}

#cart .cart-left-content * {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cart .cart-left-content .display-flex,
#cart .cart-left-content .display-grid,
#cart .cart-left-content .spacing-gap-16px,
#cart .cart-left-content .spacing-gap-12px,
#cart .cart-left-content .spacing-gap-4px {
    white-space: normal;
}

/* Exception pour .empty-cart - ne pas appliquer les règles de cart-left-content */
#cart .empty-cart,
#cart .empty-cart * {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    max-width: 100%;
}

#cart .aside {
    min-width: 400px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Panier vide
   ============================================ */
#cart .empty-cart {
    text-align: center;
    padding: 48px 24px;
}

#cart .empty-cart img {
    margin-bottom: 24px;
}

#cart .empty-cart h2 {
    margin-bottom: 16px;
}

#cart .empty-cart p {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 32px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   Produits
   ============================================ */
#cart .cart-product-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Produits désactivés */
#cart .product-disabled {
    opacity: 0.6;
    position: relative;
}

#cart .product-disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 1;
}

#cart .product-unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

#cart .product-unavailable-message {
    font-size: 18px;
    font-weight: 600;
    color: #d32f2f;
    text-align: center;
    padding: 16px 24px;
}

#cart .product-image-disabled {
    filter: grayscale(100%);
    opacity: 0.7;
}

#cart .product-disabled .cart-product-name {
    color: rgba(0, 0, 0, 0.45);
}

#cart .product-disabled .font-size-14 {
    color: rgba(0, 0, 0, 0.45);
}

@media (prefers-color-scheme: dark) {
    #cart .product-disabled .cart-product-name,
    #cart .product-disabled .font-size-14 {
        color: rgba(255, 255, 255, 0.5);
    }
}

/* ============================================
   Quantité et contrôles
   ============================================ */
input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"]:read-only {
    user-select: none;
    pointer-events: none;
}

#cart .quantity-disabled {
    opacity: 0.6;
    pointer-events: none;
}

#cart .quantity-disabled button,
#cart .quantity-disabled input {
    cursor: not-allowed;
    opacity: 0.6;
}

#cart .quantity button.disabled,
#cart .removeFromCart.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

#cart .input-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   Boutons
   ============================================ */
#cart .square-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   Bottom Sheet
   ============================================ */
#cart .bottom-sheet {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    z-index: 10001 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* S'assurer qu'aucun parent n'interfère */
#cart,
section#cart,
#cart .cart-details,
#cart .cart-grid,
#cart .cart-left-content,
#cart .aside {
    position: static !important;
    transform: none !important;
    perspective: none !important;
    filter: none !important;
    will-change: auto !important;
}

/* ============================================
   Section Summary (Récapitulatif)
   ============================================ */
#cart #summary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#cart #summary h2 {
    margin: 0;
    color: var(--blackToWhite);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
}

/* Lignes du récapitulatif */
#cart #summary .display-flex.display-content-space-between {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#cart #summary .display-flex.display-content-space-between:last-child {
    border-bottom: none;
}

#cart #summary .display-flex.display-content-space-between {
    color: var(--blackToWhite);
    font-size: 14px;
    line-height: 1.5;
}

/* Texte barré pour le sous-total si remise */
#cart #summary .crossed {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Section code promo */
#cart #summary .display-grid.display-grid-1-auto {
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 4px;
    gap: 8px;
    background-color: var(--surface);
    transition: border-color 0.2s ease;
}

#cart #summary .display-grid.display-grid-1-auto:focus-within {
    border-color: var(--primary, #7c3aed);
}

#cart #summary #promoCodeInput {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
    color: var(--blackToWhite);
    flex: 1;
}

#cart #summary #promoCodeInput::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

#cart #summary #addPromo {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Section total */
#cart #summary .border-top-black-to-white {
    border-top: 2px solid var(--blackToWhite);
    margin-top: 8px;
    padding-top: 16px;
}

#cart #summary .border-top-black-to-white .display-flex.display-content-space-between {
    border-bottom: none;
    padding: 0;
}

#cart #summary .border-top-black-to-white p {
    font-size: 16px;
    font-weight: 700;
    color: var(--blackToWhite);
    opacity: 1;
}

/* Bottom sheet (mobile) - code promo */
#cart .bottom-sheet .display-grid.display-grid-1-auto {
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 4px;
    gap: 8px;
    background-color: var(--surface);
    transition: border-color 0.2s ease;
    grid-template-columns: minmax(0, 1fr) auto;
}

#cart .bottom-sheet .display-grid.display-grid-1-auto:focus-within {
    border-color: var(--primary, #7c3aed);
}

#cart #mobilePromoCodeInput {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
    color: var(--blackToWhite);
    width: 100%;
    min-width: 0;
}

#cart #mobilePromoCodeInput::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    #cart #summary {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }

    #cart #summary .display-grid.display-grid-1-auto {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    #cart #summary .display-grid.display-grid-1-auto:focus-within {
        border-color: var(--primary, #7c3aed);
        background-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    #cart #summary #promoCodeInput::placeholder {
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
    
    #cart #summary #promoCodeInput {
        color: var(--blackToWhite);
    }

    #cart #summary #addPromo {
        background-color: var(--primary, #7c3aed);
        color: white;
        transition: all 0.2s ease;
    }
    
    #cart #summary #addPromo:hover {
        background-color: var(--primary, #7c3aed);
        filter: brightness(1.2);
        transform: translateY(-1px);
    }
    
    #cart #summary #addPromo:active {
        transform: translateY(0);
    }

    #cart #summary .border-top-black-to-white {
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    #cart .bottom-sheet .display-grid.display-grid-1-auto {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.05);
    }

    #cart .bottom-sheet .display-grid.display-grid-1-auto:focus-within {
        border-color: var(--primary, #7c3aed);
        background-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    #cart #mobilePromoCodeInput::placeholder {
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }

    #cart #mobilePromoCodeInput {
        color: var(--blackToWhite);
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 767px) {
    #cart .product-unavailable-message {
        font-size: 16px;
        padding: 12px 20px;
    }

    #cart .aside {
        min-width: 0 !important;
        width: 100%;
        max-width: 100%;
    }

    #cart #guarantees {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        padding: 24px 20px;
    }

    #cart #guarantees > div:first-child,
    #cart #guarantees > div:nth-child(2),
    #cart #guarantees > div:nth-child(3) {
        padding-top: 6px;
    }

    #cart #guarantees > div:nth-child(4),
    #cart #guarantees > div:nth-child(5),
    #cart #guarantees > div:nth-child(6) {
        padding: 6px 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #cart #guarantees > div img {
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%);
    }

    #cart #guarantees > div p {
        font-size: 11px;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    #cart #summary {
        padding: 24px 20px;
    }

    #cart #summary h2 {
        font-size: 20px;
    }

    #cart #summary .border-top-black-to-white p {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    #cart #productsInCart > div:not(:first-child) {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    #cart .giftCard > div {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (prefers-color-scheme: dark) and (min-width: 768px) {
    #cart #productsInCart > div:not(:first-child),
    #cart .giftCard > div {
        border-top-color: rgba(255, 255, 255, 0.12);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #cart #summary {
        padding: 28px 24px;
    }

    #cart #summary h2 {
        font-size: 22px;
    }

    #cart #guarantees {
        padding: 28px 24px;
    }
}

@media (min-width: 992px) {
    #cart #summary {
        padding: 32px;
    }

    #cart #guarantees {
        padding: 32px;
    }
}

@media (min-width: 1200px) {
    #cart .cart-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    }

    #cart .aside {
        min-width: 500px;
    }
}

@media (min-width: 1400px) {
    #cart .cart-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 650px);
    }

    #cart .aside {
        min-width: 650px;
    }
}#change-password {
    height: 100vh;
}

#change-password #form-modal {
    max-width: 448px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Styles pour les champs de formulaire */
#change-password input[type="email"],
#change-password input[type="password"],
#change-password input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--surface);
    color: var(--blackToWhite);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

#change-password input[type="email"]:focus,
#change-password input[type="password"]:focus,
#change-password input[type="text"]:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#change-password input[type="email"]::placeholder,
#change-password input[type="password"]::placeholder,
#change-password input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour les champs de formulaire */
@media (prefers-color-scheme: dark) {
    #change-password #form-modal {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    #change-password input[type="email"],
    #change-password input[type="password"],
    #change-password input[type="text"] {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #change-password input[type="email"]::placeholder,
    #change-password input[type="password"]::placeholder,
    #change-password input[type="text"]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Styles pour les labels */
#change-password label {
    color: var(--blackToWhite);
    font-size: 14px;
    font-weight: 500;
}

/* Styles pour les liens */
#change-password a {
    color: var(--blackToWhite);
    transition: color 0.2s ease;
}

#change-password a:hover {
    color: var(--primary, #7c3aed);
}

/* Styles pour le bouton toggle password */
#change-password .toggle-password-btn {
    color: var(--blackToWhite);
}

#change-password .toggle-password-btn:hover {
    opacity: 0.7;
}

/* Styles pour les erreurs de formulaire */
#change-password .form-errors {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
}

/* Styles pour le titre et les textes */
#change-password #form-modal p {
    color: var(--blackToWhite);
}<!-- /* Empty Base Component Styles */

/* Styles locaux inspirés de Nuxt UI */
.nx-card { 
    background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    border: 1px solid transparent; border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.nx-card:hover { 
    transform: translateY(-2px);
}

.nx-stack { 
    display:flex;
    flex-direction: column;
} -->
<!-- /* Empty Index Component Styles */

.nx-card { 
    background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    border: 1px solid transparent;
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.nx-card:hover { 
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.nx-item-144 { 
    height:144px;
} -->/* Event Component Styles */

#events {
    margin: 0;
    padding: 0;
}

#events .event-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 80px;
}

/* Overlay pour améliorer la lisibilité sur image de fond */
#events .event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    pointer-events: none;
    z-index: 1;
}

#events .event-item > * {
    position: relative;
    z-index: 2;
}

#events .event-title {
    flex: 0 0 auto;
    min-width: 0;
}

#events .event-title span {
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

#events .event-message {
    flex: 1 1 auto;
    min-width: 0;
}

#events .event-message span {
    line-height: 1.5;
    display: block;
}

#events .event-actions {
    flex: 0 0 auto;
    min-width: 0;
}

#events .event-link {
    text-decoration: none;
    white-space: nowrap;
}

#events .event-date {
    white-space: nowrap;
    opacity: 0.9;
}

/* Mobile : colonne, texte centré */
@media (max-width: 767px) {
    #events .event-item {
        flex-direction: column;
        padding: 20px 16px;
        gap: 12px;
        text-align: center;
    }

    #events .event-title span {
        font-size: 18px;
        margin-bottom: 4px;
    }

    #events .event-message span {
        font-size: 14px;
    }

    #events .event-link {
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 4px;
        display: inline-block;
    }

    #events .event-date {
        font-size: 12px;
    }

    #events .event-title,
    #events .event-message,
    #events .event-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Desktop : ligne, tailles normales */
@media (min-width: 768px) {
    #events .event-item {
        flex-direction: row;
        padding: 20px 32px;
        gap: 24px;
        align-items: center;
    }

    #events .event-title {
        flex: 0 0 auto;
        min-width: 200px;
        max-width: 300px;
    }

    #events .event-title span {
        font-size: 20px;
    }

    #events .event-message {
        flex: 1 1 auto;
        min-width: 0;
    }

    #events .event-message span {
        font-size: 16px;
    }

    #events .event-actions {
        flex: 0 0 auto;
        min-width: 200px;
        justify-content: flex-end;
    }

    #events .event-link {
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 4px;
        display: inline-block;
    }

    #events .event-date {
        font-size: 14px;
    }
}

/* Grands écrans */
@media (min-width: 1200px) {
    #events .event-item {
        padding: 24px 48px;
        gap: 32px;
    }

    #events .event-title span {
        font-size: 24px;
    }

    #events .event-message span {
        font-size: 18px;
    }
}/* About Call To Action - Rendu identique à toutes les tailles d'écran (aucune media query) */

#call-to-action {
    width: 100%;
    box-sizing: border-box;
    padding: 64px 0;
}

#call-to-action > div {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 32px;
}

#call-to-action > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

/* Titre : même taille partout */
#call-to-action > div > div > p:first-of-type {
    margin: 0;
    color: var(--blackToWhite);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
}

/* Sous-titre : même taille partout */
#call-to-action > div > div > p:nth-of-type(2) {
    margin: 0;
    color: var(--blackToWhite);
    font-size: 18px;
    line-height: 1.55;
}

/* Boutons : toujours en ligne, même espacement */
#call-to-action > div > div > div:last-child {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Boutons - styles communs */
#call-to-action .square-button {
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

#call-to-action .square-button.color-bg-white {
    background: var(--primary);
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

#call-to-action .square-button.color-bg-white:hover {
    background: var(--secondary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* Bouton Contact us - thème clair : contraste renforcé pour une bonne lisibilité */
#call-to-action .square-button.color-border-white,
#call-to-action a.add-to-cart-button.color-border-white {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.4);
    color: #1a1a1a;
}

#call-to-action .square-button.color-border-white:hover,
#call-to-action a.add-to-cart-button.color-border-white:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.55);
    color: #000;
}

@media (prefers-color-scheme: dark) {
    #call-to-action .square-button.color-bg-white {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    #call-to-action .square-button.color-border-white,
    #call-to-action a.add-to-cart-button.color-border-white {
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: #fff;
    }

    #call-to-action .square-button.color-border-white:hover,
    #call-to-action a.add-to-cart-button.color-border-white:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.65);
        color: #fff;
    }
}
/* About Key Figures Component Styles - Mobile First */

/* Conteneur de l'image hero - Mobile (base) */
#key-figures .hero-image-container {
    width: 100%;
    max-width: 300px;
}

/* Classes de hauteur personnalisées - Mobile (base) */
#key-figures .sizing-h-500px {
    height: 120px;
}

#key-figures .sizing-h-250px-under-lg {
    height: 250px;
}

#key-figures .sizing-h-150px-under-md {
    height: 150px;
}

/* Tablette (768px et plus) */
@media (min-width: 768px) {
    #key-figures .hero-image-container {
        max-width: 400px;
    }
    
    #key-figures .sizing-h-500px {
        height: 150px;
    }
    
    #key-figures .sizing-h-150px-under-md {
        height: auto;
    }
}

/* Desktop (992px et plus) */
@media (min-width: 992px) {
    #key-figures {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    #key-figures > div:first-child {
        flex: 1;
        width: 100%;
    }
    
    #key-figures .hero-image-container {
        width: 500px;
        max-width: 500px;
        flex-shrink: 0;
    }
    
    #key-figures .sizing-h-500px {
        height: 250px;
    }
    
    #key-figures .sizing-h-250px-under-lg {
        height: auto;
    }
}

/* Grands écrans (1200px et plus) */
@media (min-width: 1200px) {
    #key-figures .hero-image-container {
        width: 500px;
        max-width: 500px;
    }
    
    #key-figures .sizing-h-500px {
        height: 500px;
    }
}/* About Story Component Styles */

/* Container principal */
#about-story {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Image (visible uniquement sur desktop) */
#about-story > div:first-child {
    display: none;
    flex-shrink: 0;
}

#about-story > div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Contenu de l'histoire */
.story-content {
    width: 100%;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), var(--story-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 32px 24px;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Titre */
.story-content > p:first-child {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
}

/* Conteneur des paragraphes */
.story-content > div:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Paragraphes */
.story-content > div:first-of-type p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Section fondateurs */
.story-content > div:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.story-content > div:last-of-type p:first-child {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: white;
    font-style: italic;
}

.story-content > div:last-of-type p:last-child {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.story-content em {
    color: white;
    font-style: italic;
}

/* Tablette */
@media (min-width: 768px) {
    #about-story {
        gap: 40px;
    }

    .story-content {
        padding: 40px 32px;
        gap: 28px;
    }

    .story-content > p:first-child {
        font-size: 36px;
    }

    .story-content > div:first-of-type p {
        font-size: 17px;
        line-height: 1.7;
    }

    .story-content > div:last-of-type {
        padding-top: 20px;
    }

    .story-content > div:last-of-type p:first-child {
        font-size: 15px;
    }

    .story-content > div:last-of-type p:last-child {
        font-size: 13px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    #about-story {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
        /* Le padding-top est géré par la classe spacing-padding-tb-32px */
        padding-bottom: 0;
    }

    /* Image visible sur desktop */
    #about-story > div:first-child {
        display: block;
        width: 400px;
        max-width: 400px;
        height: auto;
        min-height: 300px;
        flex-shrink: 0;
    }

    #about-story > div:first-child img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
    }

    /* Contenu sans background sur desktop */
    .story-content {
        background: none;
        color: inherit;
        padding: 0;
        border-radius: 0;
        flex: 1;
        width: 100%;
    }

    .story-content > p:first-child {
        font-size: 48px;
        color: var(--blackToWhite);
        margin-bottom: 8px;
    }

    .story-content > div:first-of-type {
        gap: 20px;
    }

    .story-content > div:first-of-type p {
        font-size: 18px;
        line-height: 1.7;
        color: var(--blackToWhite);
    }

    .story-content > div:last-of-type {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        margin-top: 12px;
    }

    .story-content > div:last-of-type p:first-child {
        font-size: 14px;
        color: var(--blackToWhite);
    }

    .story-content > div:last-of-type p:last-child {
        font-size: 12px;
        color: var(--blackToWhite);
        opacity: 0.8;
    }

    .story-content em {
        color: var(--blackToWhite);
    }
}

/* Grands écrans */
@media (min-width: 1200px) {
    #about-story {
        gap: 64px;
    }

    #about-story > div:first-child {
        width: 450px;
        max-width: 450px;
    }

    .story-content > p:first-child {
        font-size: 52px;
    }

    .story-content > div:first-of-type p {
        font-size: 19px;
    }
}/* About Values Component Styles */

/* Container principal - les classes utilitaires gèrent le layout */
#values {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Sections principales - les classes utilitaires gèrent le padding */
#values > div {
    width: 100%;
}

/* Conteneur interne - les classes utilitaires gèrent le padding */
#values > div > div {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive - Mobile : ajustement du padding horizontal */
@media (max-width: 767px) {
    #values > div > div {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* Responsive - Tablette : ajustement du padding horizontal */
@media (min-width: 768px) and (max-width: 991px) {
    #values > div > div {
        padding-left: 32px;
        padding-right: 32px;
    }
}
<!-- 

/* Ethical Commitments Component Styles */

    #ethical-commitments h1 {
        text-align: center;
    }

    .ethical-commitments-content {
        color: #000000;
        font-size: 16px;
    }

    .ethical-commitments-content h2,
    .ethical-commitments-content h3,
    .ethical-commitments-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .ethical-commitments-content p {
    }
    .ethical-commitments-content ul,
    .ethical-commitments-content ol {
        margin-bottom: 24px;
    }

    .ethical-commitments-content a {
        color: #000000;
        text-decoration: underline;
    }

    .ethical-commitments-content a:hover {
        color: #333333;
    } -->
<!-- /* Favorite List Component Styles */

/* Container principal */
.favorites-container {
    max-width: 1200px;
    }
/* En-tête de la page */
.favorites-header {
    text-align: center;
    }
.favorites-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    }
.favorites-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    }
/* Message si la liste est vide */
.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    }
.favorites-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    }
.favorites-empty-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    }
.favorites-empty-message {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    }
.favorites-empty-button {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary, #007bff);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    }
.favorites-empty-button:hover {
    background: var(--secondary, #0056b3);
    transform: translateY(-2px);
    }
/* Grille de favoris */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    }
/* Carte de favori */
.favorite-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    }
.favorite-card:hover {
    transform: translateY(-4px);
    }
/* Container d'image */
.favorite-image-container {
    position: relative;
    overflow: hidden;
    }
.favorite-image {
    width: 100%;
    height: 100%;
    }
.favorite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

/* Tags de produit - commentés pour réutilisation future
.product-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    }
.product-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 4px;
    }
.tag-new { background-color: #27ae60; }
.tag-preorder { background-color: #3498db; }
.tag-exclusive { background-color: #e74c3c; }
.tag-coming { background-color: #f39c12; }
*/

/* Bouton favoris */
.wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    }
.wishlist-button:hover {
    background: white;
    }

/* Informations du produit */
.favorite-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    }
.favorite-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    }
.favorite-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    }
/* Échantillons de couleurs */
.color-swatches {
    display: flex;
    gap: 8px;
    }
.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    }
.color-swatch.active {
    border-color: #3498db;
    }
.color-swatch-1 { background-color: #2c3e50; }
.color-swatch-2 { background-color: #27ae60; }
.color-swatch-3 { background-color: #8b4513; }

/* Tailles */

.size-options {
    display: flex;
    gap: 8px;
    }
.size-option {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    }
.size-option:hover {
    border-color: #3498db;
    }
.size-option.active {
    background: #3498db;
    color: white;
    }
/* Actions */
.favorite-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    }
.add-to-cart-button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    }
.add-to-cart-button:hover {
    background: #229954;
    }
.remove-favorite-button {
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    }
.remove-favorite-button:hover {
    background: #e74c3c;
    }
/* Message aucun favori */
.no-favorites {
    text-align: center;
    }

.no-favorites-icon {
    margin-bottom: 1.5rem;
    }
.no-favorites h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    }
.no-favorites p {
    color: #7f8c8d;
    }
.browse-products-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    }
.browse-products-button:hover {
    background: #2980b9;
    }

/* Responsive */
@media (max-width: 768px) {

    .favorites-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
} -->/* Contact Component Styles */

/* Grid responsive avec auto-wrap : passe en colonne si pas assez de place */
section.display-grid.display-grid-auto-1 {
    gap: 24px;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
}

/* Tablette et plus : layout en ligne avec max-width sur la partie gauche */
@media (min-width: 768px) {
    section.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(250px, 350px) 1fr;
        gap: 48px;
    }
    
    section.display-grid.display-grid-auto-1 .img {
        max-width: 350px;
        width: 100%;
    }
    
    section.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 250px;
    }
}

@media (min-width: 992px) {
    section.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(300px, 400px) 1fr;
        gap: 64px;
    }
    
    section.display-grid.display-grid-auto-1 .img {
        max-width: 400px;
        width: 100%;
    }
    
    section.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 300px;
    }
}

@media (min-width: 1200px) {
    section.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(350px, 450px) 1fr;
        gap: 80px;
    }
    
    section.display-grid.display-grid-auto-1 .img {
        max-width: 450px;
        width: 100%;
    }
    
    section.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 350px;
    }
}

@media (min-width: 1440px) {
    section.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(400px, 500px) 1fr;
        gap: 96px;
    }
    
    section.display-grid.display-grid-auto-1 .img {
        max-width: 500px;
        width: 100%;
    }
    
    section.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 400px;
    }
}

/* Image : taille adaptative avec min/max pour s'adapter au padding */
section.display-grid.display-grid-auto-1 .img {
    width: 100%;
    min-width: 200px;
    max-width: 100%;
    height: 250px;
    min-height: 200px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

@media (min-width: 768px) {
    section.display-grid.display-grid-auto-1 .img {
        width: min(350px, 100%);
        min-width: 250px;
        max-width: 350px;
        height: min(350px, 100%);
        min-height: 250px;
        max-height: 350px;
    }
}

@media (min-width: 992px) {
    section.display-grid.display-grid-auto-1 .img {
        width: min(400px, 100%);
        min-width: 300px;
        max-width: 400px;
        height: min(400px, 100%);
        min-height: 300px;
        max-height: 400px;
    }
}

@media (min-width: 1200px) {
    section.display-grid.display-grid-auto-1 .img {
        width: min(450px, 100%);
        min-width: 350px;
        max-width: 450px;
        height: min(450px, 100%);
        min-height: 350px;
        max-height: 450px;
    }
}

@media (min-width: 1440px) {
    section.display-grid.display-grid-auto-1 .img {
        width: min(500px, 100%);
        min-width: 400px;
        max-width: 500px;
        height: min(500px, 100%);
        min-height: 400px;
        max-height: 500px;
    }
}

/* Conteneur du formulaire */
section.display-grid.display-grid-auto-1 > div:last-child {
    min-width: 0;
    width: 100%;
}

/* Titre - responsive */
section.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--blackToWhite);
    font-size: 28px;
}

@media (min-width: 768px) {
    section.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    section.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 42px;
    }
}

@media (min-width: 1200px) {
    section.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 48px;
    }
}

@media (min-width: 1440px) {
    section.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 56px;
    }
}

/* Gap entre les éléments du formulaire */
section.display-grid.display-grid-auto-1 > div:last-child #info {
    gap: 0;
}

/* Conteneur des inputs - gap réduit entre les inputs */
section.display-grid.display-grid-auto-1 > div:last-child #info .contact-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* Gap plus important entre le textarea et le bouton submit */
section.display-grid.display-grid-auto-1 > div:last-child #info > div:has(textarea) {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    section.display-grid.display-grid-auto-1 > div:last-child #info .contact-inputs {
        gap: 20px;
        margin-bottom: 32px;
    }
    
    section.display-grid.display-grid-auto-1 > div:last-child #info > div:has(textarea) {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    section.display-grid.display-grid-auto-1 > div:last-child #info .contact-inputs {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    section.display-grid.display-grid-auto-1 > div:last-child #info > div:has(textarea) {
        margin-bottom: 48px;
    }
}

/* Styles pour les champs de formulaire - respecte les classes utilitaires */
section.display-grid.display-grid-auto-1 input[type="text"],
section.display-grid.display-grid-auto-1 input[type="email"],
section.display-grid.display-grid-auto-1 input[type="tel"],
section.display-grid.display-grid-auto-1 textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Focus pour tous les champs */
section.display-grid.display-grid-auto-1 input[type="text"]:focus,
section.display-grid.display-grid-auto-1 input[type="email"]:focus,
section.display-grid.display-grid-auto-1 input[type="tel"]:focus,
section.display-grid.display-grid-auto-1 textarea:focus {
    border-bottom-color: var(--primary, #7c3aed);
    border-bottom-width: 2px;
}

/* Erreurs de formulaire */
section.display-grid.display-grid-auto-1 .input-error {
    border: 2px solid red !important;
    background-color: #ffe6e6;
}

@media (prefers-color-scheme: dark) {
    section.display-grid.display-grid-auto-1 .input-error {
        background-color: rgba(255, 0, 0, 0.1);
    }
}
<!-- 

/* Gcs Component Styles */

    #gcs h1 {
        text-align: center;
    }
    .gcs-content {

        color: #000000;
        font-size: 16px;
    }
    .gcs-content h2,
    .gcs-content h3,
    .gcs-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .gcs-content ul,
    .gcs-content ol {
        margin-bottom: 24px;

    }
    .gcs-content a {
        color: #000000;
        text-decoration: underline;
    }

    .gcs-content a:hover {
        color: #333333;
    } --><!-- 

/* Gcu Component Styles */

    #gcu h1 {
        text-align: center;
    }
    .gcu-content {

        color: #000000;
        font-size: 16px;
    }
    .gcu-content h2,
    .gcu-content h3,
    .gcu-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;

    }
    .gcu-content ul,
    .gcu-content ol {
        margin-bottom: 24px;
    }
    .gcu-content a {
        color: #000000;
        text-decoration: underline;
    }
    .gcu-content a:hover {
        color: #333333;
    } --><!-- /* Help Center Component Styles */

.help-center-container {
        margin: 0 auto;
    }

    #help-center {
        min-height: 60vh;
    }
    
    #help-center h1 {
        text-align: center;
        color: var(--color-primary, #000);
    }
    
    .help-center-content {
        line-height: 1.8;
        color: #000000;
        font-size: 16px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .help-center-content h2,
    .help-center-content h3,
    .help-center-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
        color: #000000;
    }
    
    .help-center-content p {
        margin-bottom: 20px;
        text-align: justify;
        hyphens: auto;
    }
    
    .help-center-content ul,
    .help-center-content ol {
        margin-bottom: 24px;
        padding-left: 32px;
    }
    
    .help-center-content li {
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .help-center-content a {
        color: #000000;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .help-center-content a:hover {
        color: #333333;
        text-decoration: underline;
    }
    
    @media (max-width: 768px) {
        #help-center h1 {
            font-size: 24px;
        }
        
        .help-center-content {
            padding: 24px 16px;
        }
        
        .help-center-content.markdown-rendered {
            padding: 24px 16px;
        }
    }
    
    .markdown-loading {
        text-align: center;
        padding: 32px;
        color: var(--color-text-secondary, #666);
    }
    
    .help-center-content.markdown-rendered {
        /* Styles pour le contenu markdown rendu */
    }
    
    .help-center-content.markdown-rendered {
        font-size: 16px;
        line-height: 1.8;
        color: #000000;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .help-center-content.markdown-rendered h1,
    .help-center-content.markdown-rendered h2,
    .help-center-content.markdown-rendered h3,
    .help-center-content.markdown-rendered h4,
    .help-center-content.markdown-rendered h5,
    .help-center-content.markdown-rendered h6 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.4;
        color: #000000;
    }
    
    .help-center-content.markdown-rendered h1 {
        font-size: 2.2em;
        border-bottom: 2px solid #000000;
        padding-bottom: 12px;
        margin-top: 0;
    }
    
    .help-center-content.markdown-rendered h2 {
        font-size: 1.75em;
        border-bottom: 1px solid #000000;
        padding-bottom: 8px;
    }
    
    .help-center-content.markdown-rendered h3 {
        font-size: 1.4em;
    }
    
    .help-center-content.markdown-rendered h4 {
        font-size: 1.2em;
    }
    
    .help-center-content.markdown-rendered p {
        margin-bottom: 20px;
        text-align: justify;
        hyphens: auto;
    }
    
    .help-center-content.markdown-rendered ul,
    .help-center-content.markdown-rendered ol {
        margin-bottom: 24px;
        padding-left: 32px;
    }
    
    .help-center-content.markdown-rendered li {
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .help-center-content.markdown-rendered code {
        background-color: transparent;
        padding: 2px 6px;
        border-radius: 3px;
        font-family: 'Courier New', monospace;
        font-size: 0.9em;
        color: #000000;
        font-weight: 600;
        border: 1px solid #000000;
    }
    
    .help-center-content.markdown-rendered pre {
        background-color: transparent;
        padding: 20px;
        border-radius: 6px;
        overflow-x: auto;
        margin-bottom: 24px;
        border: 2px solid #000000;
    }
    
    .help-center-content.markdown-rendered pre code {
        background-color: transparent;
        padding: 0;
    }
    
    .help-center-content.markdown-rendered blockquote {
        border-left: 4px solid #000000;
        padding: 16px 20px;
        margin: 24px 0;
        color: #000000;
        font-style: italic;
        background-color: transparent;
    }
    
    .help-center-content.markdown-rendered a {
        color: #000000;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .help-center-content.markdown-rendered a:hover {
        color: #333333;
        text-decoration: underline;
    }
    
    .help-center-content.markdown-rendered table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 24px;
        font-size: 15px;
    }
    
    .help-center-content.markdown-rendered table th,
    .help-center-content.markdown-rendered table td {
        border: 1px solid #000000;
        padding: 12px 16px;
        text-align: left;
    }
    
    .help-center-content.markdown-rendered table th {
        background-color: transparent;
        font-weight: 700;
        color: #000000;
        border-bottom: 2px solid #000000;
    }
    
    .help-center-content.markdown-rendered hr {
        border: none;
        border-top: 2px solid #000000;
        margin: 32px 0;
    }
    
    @media (max-width: 768px) {
        .help-center-content.markdown-rendered {
            font-size: 15px;
            line-height: 1.7;
        }
        
        .help-center-content.markdown-rendered h1 {
            font-size: 1.8em;
        }
        
        .help-center-content.markdown-rendered h2 {
            font-size: 1.5em;
        }
        
        .help-center-content.markdown-rendered h3 {
            font-size: 1.3em;
        }
        
        .help-center-content.markdown-rendered p {
            text-align: left;
        }
    }
    
    @media (prefers-color-scheme: dark) {
        #help-center h1 {
            color: #ffffff;
        }
        
        .help-center-content {
            color: #ffffff;
        }
        
        .help-center-content h2,
        .help-center-content h3,
        .help-center-content h4 {
            color: #ffffff;
        }
        
        .help-center-content a {
            color: #ffffff;
        }
        
        .help-center-content a:hover {
            color: #cccccc;
        }
        
        .help-center-content.markdown-rendered {
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered h1,
        .help-center-content.markdown-rendered h2,
        .help-center-content.markdown-rendered h3,
        .help-center-content.markdown-rendered h4,
        .help-center-content.markdown-rendered h5,
        .help-center-content.markdown-rendered h6 {
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered h1 {
            border-bottom-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered h2 {
            border-bottom-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered p {
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered a {
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered a:hover {
            color: #cccccc;
        }
        
        .help-center-content.markdown-rendered blockquote {
            border-left-color: #ffffff;
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered code {
            color: #ffffff;
            border-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered pre {
            border-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered pre code {
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered table th,
        .help-center-content.markdown-rendered table td {
            border-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered table th {
            color: #ffffff;
            border-bottom-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered table td {
            color: #ffffff;
        }
        
        .help-center-content.markdown-rendered hr {
            border-top-color: #ffffff;
        }
        
        .help-center-content.markdown-rendered li {
            color: #ffffff;
        }
    } -->/* Footer Component Styles */

footer {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Logo */
footer .logo {
    max-width: 200px;
    width: 100%;
    margin-bottom: 16px;
}

footer .logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Section principale */
footer > div:first-child {
    padding: 32px 16px;
    gap: 32px;
}

/* Section logo et réseaux sociaux */
footer > div:first-child > div:first-child {
    text-align: center;
    gap: 20px;
}

footer > div:first-child > div:first-child > div:last-child {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

footer > div:first-child > div:first-child > div:last-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

footer > div:first-child > div:first-child > div:last-child a:hover {
    opacity: 0.7;
}

/* Section renseignements */
footer #renseignements {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

footer #renseignements > div {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer #renseignements > div:last-child {
    border-bottom: none;
}

/* Accordéons */
footer .accordion {
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
}

footer .accordion > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

footer .accordion p {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

footer .accordion img:last-child {
    transition: transform 0.2s ease;
}

footer .accordion.active img:last-child {
    transform: rotate(45deg);
}

/* Panels */
footer .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 16px;
}

footer .active + .panel {
    padding: 0 16px 16px 16px;
    max-height: 500px;
}

footer .panel a,
footer .panel p {
    padding: 8px 0;
    margin: 0;
    line-height: 1.5;
    color: inherit;
    width: 100%;
}

footer .panel a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Copyright */
footer > div:last-child {
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer > div:last-child p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

/* Mobile : accordéons */
@media (max-width: 767px) {
    footer > div:first-child {
        padding: 24px 16px;
        gap: 24px;
    }

    footer .logo {
        max-width: 150px;
        margin-bottom: 12px;
    }

    footer .logo img {
        max-height: 60px;
    }

    footer .accordion p {
        font-size: 16px;
    }

    footer .panel a,
    footer .panel p {
        font-size: 14px;
    }

    footer > div:last-child p {
        font-size: 11px;
    }
}

/* Desktop : grille - format original conservé */
@media (min-width: 768px) {
    footer > div:first-child {
        padding: 0;
    }

    footer .logo {
        max-width: 200px;
        margin-bottom: 16px;
    }

    footer .logo img {
        width: 100%;
        height: auto;
        max-height: 80px;
        object-fit: contain;
    }

    footer #renseignements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 24px 48px;
    }

    footer #renseignements > div {
        border-bottom: none;
    }

    footer .accordion {
        cursor: default;
        background: none !important;
        padding: 0;
    }

    footer .accordion:hover {
        background: none !important;
    }

    footer .accordion img:last-child {
        display: none;
    }

    footer .accordion p {
        font-size: 20px !important;
        font-weight: 700;
        margin: 0;
        padding: 16px 0;
    }

    footer .panel {
        max-height: none !important;
        overflow: visible;
        background: none;
        padding: 0 0 16px 0 !important;
    }

    footer .panel a,
    footer .panel p {
        padding: 4px 0;
        margin: 0;
    }

    footer .panel a {
        color: inherit;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    footer .panel a:hover {
        opacity: 0.7;
        text-decoration: underline;
    }

    footer > div:last-child {
        padding: 20px;
    }

    footer > div:last-child p {
        font-size: 13px;
    }
}<!-- 

/* Legal Notice Component Styles */

    #legal-notice h1 {
        text-align: center;
    }
    .legal-notice-content {

        color: #000000;
        font-size: 16px;
    }
    .legal-notice-content h2,
    .legal-notice-content h3,
    .legal-notice-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .legal-notice-content ul,
    .legal-notice-content ol {
        margin-bottom: 24px;

    }
    .legal-notice-content a {
        color: #000000;
        text-decoration: underline;
    }

    .legal-notice-content a:hover {
        color: #333333;
    } -->
#forgot-password {
    height: 100vh;
}

#forgot-password #form-modal {
    max-width: 448px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Styles pour les champs de formulaire */
#forgot-password input[type="email"],
#forgot-password input[type="password"],
#forgot-password input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--surface);
    color: var(--blackToWhite);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

#forgot-password input[type="email"]:focus,
#forgot-password input[type="password"]:focus,
#forgot-password input[type="text"]:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#forgot-password input[type="email"]::placeholder,
#forgot-password input[type="password"]::placeholder,
#forgot-password input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour les champs de formulaire */
@media (prefers-color-scheme: dark) {
    #forgot-password #form-modal {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    #forgot-password input[type="email"],
    #forgot-password input[type="password"],
    #forgot-password input[type="text"] {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #forgot-password input[type="email"]::placeholder,
    #forgot-password input[type="password"]::placeholder,
    #forgot-password input[type="text"]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Styles pour les labels */
#forgot-password label {
    color: var(--blackToWhite);
    font-size: 14px;
    font-weight: 500;
}

/* Styles pour les liens */
#forgot-password a {
    color: var(--blackToWhite);
    transition: color 0.2s ease;
}

#forgot-password a:hover {
    color: var(--primary, #7c3aed);
}

/* Styles pour les erreurs de formulaire */
#forgot-password .form-errors {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
}

/* Styles pour le titre et les textes */
#forgot-password #form-modal p {
    color: var(--blackToWhite);
}/* <!-- 1 --> */




/* <!-- 2 --> */




/* <!-- 3 --> */

header {
    grid-template-columns: 1fr auto 1fr;
    position: relative;
    z-index: 10005;
}

header, header>div {
height: 80px;
}

/* Menu burger - z-index élevé pour passer devant tout */
#openBtn {
    position: relative;
    z-index: 1;
}

/* <!-- 4 --> *//* List Categories Component Styles */

#categories-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#categories-list .categories-list-inner {
    width: 100%;
}

#categories-list .categories-list-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

#categories-list .shop-page-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--blackToWhite);
}

#categories-list .categories-list-header p {
    margin: 0;
    line-height: 1.5;
}

/* Recherche */
#categories-list .category-search-container {
    width: 100%;
}

#categories-list .category-search-wrapper {
    position: relative;
    width: 100%;
}

#categories-list .category-search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--surface);
    color: var(--blackToWhite);
    transition: border-color 0.2s ease;
}

#categories-list .category-search-input:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#categories-list .category-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour la barre de recherche */
@media (prefers-color-scheme: dark) {
    #categories-list .category-search-input {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #categories-list .category-search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    #categories-list .category-search-input:focus {
        border-color: var(--primary, #7c3aed);
    }
}

#categories-list .category-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
    opacity: 0.6;
    color: var(--blackToWhite);
    transition: opacity 0.2s ease;
}

#categories-list .category-search-clear:hover {
    opacity: 1;
}

#categories-list .category-search-clear:focus {
    outline: 2px solid var(--primary, #007bff);
    outline-offset: 2px;
}

#categories-list .category-search-results {
    margin-top: 8px;
    text-align: center;
    color: var(--blackToWhite, #333);
    font-size: 14px;
    display: none;
    padding: 8px;
}

/* Grille de catégories */
#categories-list .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 160px));
    gap: 16px;
    margin-top: 32px;
    justify-content: start;
}

#categories-list .category-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#categories-list .category-link:hover {
    text-decoration: none;
}

#categories-list .category-card {
    background: color-mix(in srgb, var(--background) 95%, white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

#categories-list .category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #f5f5f5;
}

#categories-list .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#categories-list .category-content {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 60px;
}

#categories-list .category-title {
    font-weight: 600;
    color: var(--blackToWhite);
    margin: 0;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile : 1 colonne */
@media (max-width: 575px) {
    #categories-list {
        gap: 20px;
    }

    #categories-list .shop-page-title {
        font-size: 28px;
    }

    #categories-list .categories-list-header p {
        font-size: 14px;
    }

    #categories-list .category-search-input {
        padding: 10px 36px 10px 14px;
        font-size: 14px;
    }

    #categories-list .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 140px));
        gap: 16px;
        margin-top: 24px;
        justify-content: start;
    }

    #categories-list .category-card {
        min-height: 180px;
    }

    #categories-list .category-content {
        padding: 12px 8px;
    }

    #categories-list .category-title {
        font-size: 14px;
    }
}

/* Petite tablette : 2 colonnes */
@media (min-width: 576px) and (max-width: 767px) {
    #categories-list {
        gap: 24px;
    }

    #categories-list .shop-page-title {
        font-size: 32px;
    }

    #categories-list .categories-list-header p {
        font-size: 14px;
    }

    #categories-list .category-search-input {
        padding: 12px 40px 12px 16px;
        font-size: 15px;
    }

    #categories-list .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
        gap: 16px;
        margin-top: 28px;
        justify-content: start;
    }

    #categories-list .category-title {
        font-size: 14px;
    }
}

/* Tablette : 2 colonnes */
@media (min-width: 768px) and (max-width: 991px) {
    #categories-list {
        gap: 32px;
    }

    #categories-list .shop-page-title {
        font-size: 36px;
    }

    #categories-list .categories-list-header p {
        font-size: 16px;
    }

    #categories-list .category-search-input {
        padding: 14px 44px 14px 18px;
        font-size: 16px;
    }

    #categories-list .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 200px));
        gap: 20px;
        margin-top: 32px;
        justify-content: start;
    }

    #categories-list .category-card {
        min-height: 220px;
    }

    #categories-list .category-content {
        padding: 20px 16px;
    }

    #categories-list .category-title {
        font-size: 16px;
    }
}

/* Desktop : 3 colonnes */
@media (min-width: 992px) {
    #categories-list {
        gap: 40px;
    }

    #categories-list .categories-list-header {
        text-align: left;
    }

    #categories-list .shop-page-title {
        font-size: 40px;
    }

    #categories-list .categories-list-header p {
        font-size: 18px;
    }

    #categories-list .category-search-input {
        padding: 16px 48px 16px 20px;
        font-size: 18px;
    }

    #categories-list .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 220px));
        gap: 24px;
        margin-top: 40px;
        justify-content: start;
    }

    #categories-list .category-card {
        min-height: 240px;
    }

    #categories-list .category-content {
        padding: 24px 20px;
    }

    #categories-list .category-title {
        font-size: 18px;
    }
}

/* Grands écrans : 4 colonnes */
@media (min-width: 1200px) {
    #categories-list {
        gap: 48px;
    }

    #categories-list .shop-page-title {
        font-size: 48px;
    }

    #categories-list .categories-list-header p {
        font-size: 20px;
    }

    #categories-list .category-search-input {
        font-size: 20px;
    }

    #categories-list .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 240px));
        gap: 32px;
        margin-top: 48px;
        justify-content: start;
    }

    #categories-list .category-card {
        min-height: 260px;
    }

    #categories-list .category-content {
        padding: 28px 24px;
    }

    #categories-list .category-title {
        font-size: 20px;
    }
}
/* List Orders Component Styles */

#liste-commandes {
    width: 100%;
}

/* Section principale */
#liste-commandes > div:last-child {
    width: 100%;
}

/* En-tête : même structure que les autres pages profil (lien + titre à gauche, sous-titre à gauche) */
.orders-list-header {
    margin-bottom: 32px;
}

.orders-list-header > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.orders-list-header > div > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
}

.orders-list-header > div > div:first-child a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orders-list-header > div > div:first-child a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.orders-list-header > div > div:first-child a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.orders-list-header > div > div:first-child p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: inherit;
}

.orders-list-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: inherit;
    opacity: 0.8;
    text-align: left;
}

/* Conteneur des commandes */
.orders-list-container {
    width: 100%;
}

/* Table des commandes */
.orders-table {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: var(--surface);
}

.orders-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 120px;
    gap: 16px;
    padding: 20px 24px;
    background: var(--background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: inherit;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table-body {
    display: flex;
    flex-direction: column;
}

.orders-table-row {
    background: var(--surface);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 120px;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.orders-table-row:hover {
    background: rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.orders-table-row:last-child {
    border-bottom: none;
}

/* Colonnes */
.order-col-number,
.order-col-date,
.order-col-status,
.order-col-total,
.order-col-actions {
    display: flex;
    align-items: center;
}

.order-number {
    font-weight: 600;
    font-size: 14px;
    color: inherit;
}

.order-status-badge {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    white-space: nowrap;
}

.order-status-paid {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.order-status-pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.order-status-canceled {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.order-total {
    font-weight: 600;
    color: inherit;
    font-size: 16px;
}

.order-action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.order-action-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.order-action-button:active {
    transform: translateY(0);
}

.order-action-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.orders-list-stats {
    padding: 16px 24px;
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
}

.orders-list-stats span {
    color: inherit;
    font-weight: 500;
    font-size: 14px;
}

/* État vide */
.orders-list-empty {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 32px auto;
    max-width: 500px;
    padding: 48px 24px;
}

.orders-list-empty > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.orders-empty-icon {
    display: flex;
    justify-content: center;
    color: inherit;
    opacity: 0.5;
}

.orders-empty-icon svg {
    width: 64px;
    height: 64px;
}

.orders-empty-title {
    color: inherit;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.orders-empty-description {
    color: inherit;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
    font-size: 15px;
}

.orders-list-empty .primary-button {
    margin-top: 8px;
}

/* Mobile : optimisations */
@media (max-width: 767px) {
    .orders-list-header {
        margin-bottom: 24px;
    }

    .orders-list-header > div {
        padding: 20px 0;
    }

    .orders-list-header > div > div:first-child p {
        font-size: 18px;
    }

    .orders-list-subtitle {
        font-size: 14px;
    }

    /* Conteneur et cartes 100 % de la largeur disponible, sans dépasser le padding de la section */
    #liste-commandes > div:last-child .orders-list-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .orders-table {
        width: 100%;
        max-width: 100%;
        border: none;
        border-radius: 0;
        background: transparent;
        box-sizing: border-box;
    }

    .orders-table-body {
        width: 100%;
    }

    .orders-table-header {
        display: none;
    }

    .orders-table-row {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        margin-bottom: 16px;
        background: var(--surface);
    }

    .order-col-number::before {
        content: "N° Commande: ";
        font-weight: 600;
        opacity: 0.8;
        font-size: 13px;
        margin-right: 8px;
    }

    .order-col-date::before {
        content: "Date: ";
        font-weight: 600;
        opacity: 0.8;
        font-size: 13px;
        margin-right: 8px;
    }

    .order-col-status::before {
        content: "Statut: ";
        font-weight: 600;
        opacity: 0.8;
        font-size: 13px;
        margin-right: 8px;
    }

    .order-col-total::before {
        content: "Total: ";
        font-weight: 600;
        opacity: 0.8;
        font-size: 13px;
        margin-right: 8px;
    }

    .order-col-number,
    .order-col-date,
    .order-col-status,
    .order-col-total {
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    .order-col-actions {
        margin-top: 8px;
    }

    .order-action-button {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }

    .orders-list-footer {
        margin-top: 24px;
    }

    .orders-list-stats {
        padding: 14px 20px;
        background: none;
        border: none;
        border-radius: 0;
    }

    .orders-list-stats span {
        font-size: 13px;
    }

    .orders-list-empty {
        margin: 24px 16px;
        padding: 40px 20px;
    }

    .orders-empty-icon svg {
        width: 56px;
        height: 56px;
    }

    .orders-empty-title {
        font-size: 20px;
    }

    .orders-empty-description {
        font-size: 14px;
    }
}/* Search Bar Component Styles */

#shop-list .search-bar-container,
#categories-list .search-bar-container {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#shop-list .search-bar-wrapper,
#categories-list .search-bar-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#shop-list .search-bar-input,
#categories-list .search-bar-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--surface);
    color: var(--blackToWhite);
    transition: border-color 0.2s ease;
    margin: 0;
    box-sizing: border-box;
}

#shop-list .search-bar-input:focus,
#categories-list .search-bar-input:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#shop-list .search-bar-input::placeholder,
#categories-list .search-bar-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour la barre de recherche */
@media (prefers-color-scheme: dark) {
    #shop-list .search-bar-input,
    #categories-list .search-bar-input {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #shop-list .search-bar-input::placeholder,
    #categories-list .search-bar-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    #shop-list .search-bar-input:focus,
    #categories-list .search-bar-input:focus {
        border-color: var(--primary, #7c3aed);
    }
}

#shop-list .search-bar-clear,
#categories-list .search-bar-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
    opacity: 0.6;
    color: var(--blackToWhite);
    transition: opacity 0.2s ease;
}

#shop-list .search-bar-clear:hover,
#categories-list .search-bar-clear:hover {
    opacity: 1;
}

#shop-list .search-bar-clear:focus,
#categories-list .search-bar-clear:focus {
    outline: 2px solid var(--primary, #007bff);
    outline-offset: 2px;
}

#shop-list .search-bar-results,
#categories-list .search-bar-results {
    margin-top: 8px;
    text-align: center;
    color: var(--blackToWhite, #333);
    font-size: 14px;
    display: none;
    padding: 8px;
}

/* Responsive */
@media (max-width: 575px) {
    #shop-list .search-bar-input,
    #categories-list .search-bar-input {
        padding: 10px 36px 10px 14px;
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #shop-list .search-bar-input,
    #categories-list .search-bar-input {
        padding: 12px 40px 12px 16px;
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #shop-list .search-bar-input,
    #categories-list .search-bar-input {
        padding: 14px 44px 14px 18px;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    #shop-list .search-bar-container,
    #categories-list .search-bar-container {
        align-items: flex-start;
    }

    #shop-list .search-bar-wrapper,
    #categories-list .search-bar-wrapper {
        max-width: 600px;
        margin: 0;
        width: 100%;
    }

    #shop-list .search-bar-input,
    #categories-list .search-bar-input {
        padding: 16px 48px 16px 20px;
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    #shop-list .search-bar-wrapper,
    #categories-list .search-bar-wrapper {
        max-width: 700px;
    }

    #shop-list .search-bar-input,
    #categories-list .search-bar-input {
        font-size: 20px;
    }
}
<!-- 

/* Manufacturing Component Styles */

    #manufacturing h1 {
        text-align: center;
    }
    .manufacturing-content {
        color: #000000;
        font-size: 16px;
    }
    .manufacturing-content h2,
    .manufacturing-content h3,
    .manufacturing-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .manufacturing-content ul,
    .manufacturing-content ol {
        margin-bottom: 24px;
    }
    .manufacturing-content a {
        color: #000000;
        text-decoration: underline;
    }
    .manufacturing-content a:hover {
        color: #333333;
    } -->#profile-informations .custom-radio {
    width: 20px;
    height: 20px;
}

#profile-informations input[type="radio"]:checked+.custom-radio {
    background-color: black;
}

#profile-informations input:not([type="radio"]):not([type="password"]):not([type="date"]) {
    padding: 8px 8px 8px 26px;
}

#profile-informations #password input {
    padding: 8px 42px 8px 26px;
}

#profile-informations .outline-button {
    border-radius: 0;
}#shop-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    #shop-list {
        gap: 20px;
    }
}

@media (min-width: 992px) {
    #shop-list {
        gap: 24px;
    }
}

/* Grille responsive : colonnes et espacements selon la largeur d'écran */
#shop-list .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: start;
    width: 100%;
    min-width: 0;
}

@media (min-width: 400px) {
    #shop-list .product-grid {
        gap: 12px;
    }
}

@media (min-width: 576px) {
    #shop-list .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 768px) {
    #shop-list .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    #shop-list .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1200px) {
    #shop-list .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

#shop-list .product-card {
    background: color-mix(in srgb, var(--background) 95%, white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

#shop-list .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

#shop-list .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-link:hover {
    text-decoration: none;
}

#shop-list .product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

#shop-list .product-image {
    width: 100%;
    height: 100%;
}

#shop-list .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#shop-list .product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Tags de produit - commentés pour réutilisation future
.product-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    border-radius: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-new {
    background-color: #e74c3c;
}

.tag-preorder {
    background-color: #27ae60;
}

.tag-exclusive {
    background-color: #3498db;
}

.tag-coming {
    background-color: #9b59b6;
}
*/

#shop-list .wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#shop-list .wishlist-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#shop-list .wishlist-button.active {
    color: #e74c3c;
}

#shop-list .wishlist-button img {
    width: 16px;
    height: 16px;
}

#shop-list .product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-height: 0;
}

@media (min-width: 576px) {
    #shop-list .product-info {
        padding: 14px;
        gap: 8px;
    }
}

@media (min-width: 768px) {
    #shop-list .product-info {
        padding: 16px;
        gap: 8px;
    }
}

#shop-list .product-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--blackToWhite);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 576px) {
    #shop-list .product-name {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    #shop-list .product-name {
        font-size: 14px;
    }
}

#shop-list .product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--blackToWhite);
    margin: 0;
}

@media (min-width: 576px) {
    #shop-list .product-price {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    #shop-list .product-price {
        font-size: 16px;
    }
}

#shop-list .color-swatches {
    gap: 6px;
    margin-top: 4px;
}

#shop-list .color-swatch {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
}

#shop-list .color-swatch:hover {
    transform: scale(1.2);
}

#shop-list .color-swatch.active {
    transform: scale(1.2);
}

#shop-list .color-swatch.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--blackToWhite);
    border-radius: 50%;
}

#shop-list .color-swatch-1 {
    background-color: #2c3e50;
}

#shop-list .color-swatch-2 {
    background-color: #27ae60;
}

#shop-list .color-swatch-3 {
    background-color: #8b4513;
}

#shop-list .add-to-cart-button {
    width: 100%;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--blackToWhite);
    border-radius: 6px;
    color: var(--blackToWhite);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    #shop-list .add-to-cart-button {
        padding: 11px 14px;
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    #shop-list .add-to-cart-button {
        padding: 12px 16px;
        font-size: 14px;
    }
}

#shop-list .add-to-cart-button:hover {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
}

#shop-list .add-to-cart-button:active {
    transform: translateY(1px);
}

#shop-list .product-sizes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

#shop-list .size-label {
    font-size: 12px;
    color: var(--blackToWhite);
    font-weight: 500;
}

#shop-list .size-options {
    display: flex;
    gap: 4px;
}

#shop-list .size-option {
    font-size: 11px;
    color: var(--blackToWhite);
    background: var(--surface);
    border: 1px solid var(--blackToWhite);
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#shop-list .size-option:hover {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
}

#shop-list .size-option.active {
    background: var(--blackToWhite);
    color: var(--whiteToBlack);
    font-weight: 600;
}

#shop-list .low-stock-warning {
    margin-top: 4px;
}

#shop-list .stock-text {
    font-size: 11px;
    color: #e74c3c;
    font-weight: 600;
    background: rgba(231, 76, 60, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}#login {
    height: 100vh;
}

#login #form-modal {
    max-width: 448px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Styles pour les champs de formulaire */
#login input[type="email"],
#login input[type="password"],
#login input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--surface);
    color: var(--blackToWhite);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

#login input[type="email"]:focus,
#login input[type="password"]:focus,
#login input[type="text"]:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#login input[type="email"]::placeholder,
#login input[type="password"]::placeholder,
#login input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour les champs de formulaire */
@media (prefers-color-scheme: dark) {
    #login #form-modal {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    #login input[type="email"],
    #login input[type="password"],
    #login input[type="text"] {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #login input[type="email"]::placeholder,
    #login input[type="password"]::placeholder,
    #login input[type="text"]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Styles pour les labels */
#login label {
    color: var(--blackToWhite);
    font-size: 14px;
    font-weight: 500;
}

/* Styles pour les liens */
#login a {
    color: var(--blackToWhite);
    transition: color 0.2s ease;
}

#login a:hover {
    color: var(--primary, #7c3aed);
}

/* Styles pour le bouton toggle password */
#login .toggle-password-btn {
    color: var(--blackToWhite);
}

#login .toggle-password-btn:hover {
    opacity: 0.7;
}

/* Styles pour les erreurs de formulaire */
#login .form-errors {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
}

/* Styles pour le titre et les textes */
#login #form-modal p {
    color: var(--blackToWhite);
}/* Media With Text Component Styles */

/* Classes order pour gérer l'ordre des éléments */
/* Mobile : image en haut (order 1), texte en bas (order 2) */
@media (max-width: 767px) {
    #media-with-text .order-1-under-md {
        order: 1;
    }
    
    #media-with-text .order-2-under-md {
        order: 2;
    }
}

/* Tablette et plus : texte à gauche (order 1), image à droite (order 2) */
@media (min-width: 768px) {
    #media-with-text .order-1-md {
        order: 1;
    }
    
    #media-with-text .order-2-md {
        order: 2;
    }
}

/* Grid responsive : colonne en mobile, ligne en tablette+ */
#media-with-text.display-grid.display-grid-1-auto {
    gap: 24px;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
}

/* Tablette et plus : layout en ligne (texte à gauche, image à droite) */
/* L'image fait au minimum 40% et au maximum la même taille que le texte */
@media (min-width: 768px) {
    #media-with-text.display-grid.display-grid-1-auto {
        grid-template-columns: 1fr minmax(40%, 1fr);
        gap: 48px;
        align-items: stretch;
    }
}

@media (min-width: 992px) {
    #media-with-text.display-grid.display-grid-1-auto {
        <!-- grid-template-columns: 1fr minmax(40%, 1fr); -->
        gap: 64px;
    }
}

@media (min-width: 1200px) {
    #media-with-text.display-grid.display-grid-1-auto {
        <!-- grid-template-columns: 1fr minmax(40%, 1fr); -->
        gap: 80px;
    }
}

@media (min-width: 1440px) {
    #media-with-text.display-grid.display-grid-1-auto {
        <!-- grid-template-columns: 1fr minmax(40%, 1fr); -->
        gap: 96px;
    }
}

/* Image : taille adaptative */
#media-with-text.display-grid.display-grid-1-auto .img {
    width: 100%;
    min-width: 200px;
    max-width: 100%;
    min-height: 200px;
    max-height: 500px;
    overflow: hidden;
}

/* Tablette et desktop : la div .img prend toute la hauteur pour correspondre au texte */
@media (min-width: 768px) {
    #media-with-text.display-grid.display-grid-1-auto .img {
        min-height: 200px;
        max-height: none;
    }
}

/* Conteneur du texte */
#media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column {
    min-width: 0;
    width: 100%;
}

/* Titre - responsive */
#media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:first-child {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--blackToWhite);
    font-size: 28px;
}

@media (min-width: 768px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:first-child {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:first-child {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:first-child {
        font-size: 56px;
    }
}

@media (min-width: 1440px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:first-child {
        font-size: 64px;
    }
}

/* Description - responsive */
#media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:last-child {
    line-height: 1.6;
    margin: 0;
    color: var(--blackToWhite);
    font-size: 14px;
}

@media (min-width: 768px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:last-child {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:last-child {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:last-child {
        font-size: 20px;
    }
}

@media (min-width: 1440px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column > p:last-child {
        font-size: 22px;
    }
}

/* Gap entre titre et description */
#media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column {
    gap: 16px;
}

@media (min-width: 768px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column {
        gap: 20px;
    }
}

@media (min-width: 992px) {
    #media-with-text.display-grid.display-grid-1-auto > div.display-flex.display-direction-column {
        gap: 24px;
    }
}
/* Newsletter Component Styles */

/* Grid responsive avec auto-wrap : passe en colonne si pas assez de place */
#newsletter.display-grid.display-grid-auto-1 {
    gap: 24px;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
}

/* Tablette et plus : layout en ligne avec image réduite pour laisser plus de place au texte */
@media (min-width: 768px) {
    #newsletter.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(200px, 280px) minmax(280px, 1fr);
        gap: 48px;
    }
    
    #newsletter.display-grid.display-grid-auto-1 .img {
        max-width: 280px;
        width: 100%;
    }
    
    #newsletter.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 280px;
    }
}

@media (min-width: 992px) {
    #newsletter.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(250px, 320px) minmax(320px, 1fr);
        gap: 64px;
    }
    
    #newsletter.display-grid.display-grid-auto-1 .img {
        max-width: 320px;
        width: 100%;
    }
    
    #newsletter.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 320px;
    }
}

@media (min-width: 1200px) {
    #newsletter.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(280px, 360px) minmax(360px, 1fr);
        gap: 80px;
    }
    
    #newsletter.display-grid.display-grid-auto-1 .img {
        max-width: 360px;
        width: 100%;
    }
    
    #newsletter.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 360px;
    }
}

@media (min-width: 1440px) {
    #newsletter.display-grid.display-grid-auto-1 {
        grid-template-columns: minmax(300px, 400px) minmax(400px, 1fr);
        gap: 96px;
    }
    
    #newsletter.display-grid.display-grid-auto-1 .img {
        max-width: 400px;
        width: 100%;
    }
    
    #newsletter.display-grid.display-grid-auto-1 > div:last-child {
        min-width: 400px;
    }
}

/* Image : taille adaptative avec min/max pour s'adapter au padding */
#newsletter.display-grid.display-grid-auto-1 .img {
    width: 100%;
    min-width: 200px;
    max-width: 100%;
    height: 250px;
    min-height: 200px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

@media (min-width: 768px) {
    #newsletter.display-grid.display-grid-auto-1 .img {
        width: min(280px, 100%);
        min-width: 200px;
        max-width: 280px;
        height: min(280px, 100%);
        min-height: 200px;
        max-height: 280px;
    }
}

@media (min-width: 992px) {
    #newsletter.display-grid.display-grid-auto-1 .img {
        width: min(320px, 100%);
        min-width: 250px;
        max-width: 320px;
        height: min(320px, 100%);
        min-height: 250px;
        max-height: 320px;
    }
}

@media (min-width: 1200px) {
    #newsletter.display-grid.display-grid-auto-1 .img {
        width: min(360px, 100%);
        min-width: 280px;
        max-width: 360px;
        height: min(360px, 100%);
        min-height: 280px;
        max-height: 360px;
    }
}

@media (min-width: 1440px) {
    #newsletter.display-grid.display-grid-auto-1 .img {
        width: min(400px, 100%);
        min-width: 300px;
        max-width: 400px;
        height: min(400px, 100%);
        min-height: 300px;
        max-height: 400px;
    }
}

/* Conteneur du formulaire */
#newsletter.display-grid.display-grid-auto-1 > div:last-child {
    min-width: 0;
    width: 100%;
}

/* Titre - responsive */
#newsletter.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--blackToWhite);
    font-size: 28px;
}

@media (min-width: 768px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 42px;
    }
}

@media (min-width: 1200px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 48px;
    }
}

@media (min-width: 1440px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:first-of-type {
        font-size: 56px;
    }
}

/* Texte descriptif - responsive */
#newsletter.display-grid.display-grid-auto-1 > div:last-child > p:nth-of-type(2) {
    line-height: 1.6;
    margin: 0;
    color: var(--blackToWhite);
    font-size: 14px;
}

@media (min-width: 768px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:nth-of-type(2) {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:nth-of-type(2) {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child > p:nth-of-type(2) {
        font-size: 20px;
    }
}

/* Gap entre les éléments du formulaire */
#newsletter.display-grid.display-grid-auto-1 > div:last-child #info {
    gap: 0;
}

/* Gap entre l'email et la checkbox */
#newsletter.display-grid.display-grid-auto-1 > div:last-child #info > div:has(input[type="email"]) {
    margin-bottom: 24px;
}

/* Gap entre la checkbox et le bouton submit */
#newsletter.display-grid.display-grid-auto-1 > div:last-child #info > div.display-flex:has(input[type="checkbox"]) {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child #info > div:has(input[type="email"]) {
        margin-bottom: 32px;
    }
    
    #newsletter.display-grid.display-grid-auto-1 > div:last-child #info > div.display-flex:has(input[type="checkbox"]) {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    #newsletter.display-grid.display-grid-auto-1 > div:last-child #info > div:has(input[type="email"]) {
        margin-bottom: 40px;
    }
    
    #newsletter.display-grid.display-grid-auto-1 > div:last-child #info > div.display-flex:has(input[type="checkbox"]) {
        margin-bottom: 48px;
    }
}

/* Styles pour les champs de formulaire - respecte les classes utilitaires */
#newsletter.display-grid.display-grid-auto-1 input[type="email"] {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Focus pour le champ email */
#newsletter.display-grid.display-grid-auto-1 input[type="email"]:focus {
    border-bottom-color: var(--primary, #7c3aed);
    border-bottom-width: 2px;
}

/* Checkbox et label */
#newsletter.display-grid.display-grid-auto-1 label {
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    color: var(--blackToWhite);
}

#newsletter.display-grid.display-grid-auto-1 input[type="checkbox"] {
    cursor: pointer;
}

/* Erreurs de formulaire */
#newsletter.display-grid.display-grid-auto-1 .input-error {
    border: 2px solid red !important;
    background-color: #ffe6e6;
}

@media (prefers-color-scheme: dark) {
    #newsletter.display-grid.display-grid-auto-1 .input-error {
        background-color: rgba(255, 0, 0, 0.1);
    }
}
#newsletter-modal {
    max-width: 298px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#newsletter-modal .close {
    top: 18px;
    right: 18px;
}

#newsletter .img {
    max-width: 290px;
    max-height: 243px;
}

newsletter-modal #emailInput>input:focus, 
newsletter-modal #emailInput>input:not(:placeholder-shown) {
    background-position: 16px center;
}

<!-- newsletter-modal #emailInput>input:focus {
    color: gray;
} --><!-- /* Order Details Component Styles */

/* Styles pour les détails de commande */
    .order-details-icon {
        border-radius: 50%;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .order-details-subtitle {
        margin: 0;
    }
    .order-details-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Cartes générales */
    .order-summary-card,
    .order-address-card,
    .order-shipping-card,
    .order-items-card,
    .order-total-card {
        /* background: var(--surface); */
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    /* En-têtes des cartes */
    .order-summary-header,
    .order-address-header,
    .order-shipping-header,
    .order-items-header,
    .order-total-header {
        background: transparent;
        padding: 20px 24px;
        display: flex;
        align-items: center;
    }
    .order-summary-header h2,
    .order-address-header h3,
    .order-shipping-header h3,
    .order-items-header h3,
    .order-total-header h3 {
        margin: 0;
        font-size: 18px;
    }
    .order-address-icon,
    .order-shipping-icon {
        border-radius: 50%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Résumé de la commande */
    .order-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }
    .order-summary-label {
        opacity: 0.8;
    }
    .order-status-badge {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Adresses */
    .order-address-name {
        font-weight: 600;
        margin: 0 0 8px 0;
    }
    .order-address-street,
    .order-address-complement,
    .order-address-city,
    .order-address-country {
        margin: 0 0 4px 0;
    }
    /* Adresse divisée */
    .order-address-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .order-address-section {
        border-radius: 12px;
        padding: 16px;
    }
    .order-address-section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    .order-address-section-header h4 {
        margin: 0;
        font-size: 14px;
    }
    .order-address-section-content .order-address-name,
    .order-address-section-content .order-address-street,
    .order-address-section-content .order-address-complement,
    .order-address-section-content .order-address-city,
    .order-address-section-content .order-address-country {
        margin: 0 0 4px 0;
    }
    .order-address-section-content .order-address-name {
        font-size: 15px;
    }
    /* Transport */
    .order-shipping-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .order-shipping-label {
        opacity: 0.8;
    }

    .order-shipping-free {
        color: #10b981;
    }

    .order-items-count {
        opacity: 0.8;
    }
    .order-item {
        display: flex;
        gap: 16px;
        padding: 16px 0;
    }
    .order-item-image {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        border-radius: 8px;
        overflow: hidden;
    }
    .item-image {
        width: 100%;
        height: 100%;   
    }
    .item-image-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .order-item-details {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .order-item-name {
        margin: 0;
        font-size: 16px;
    }
    .order-item-description {
        margin: 0;
        opacity: 0.8;
    }
    .order-item-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .order-item-quantity {
        opacity: 0.8;
    }
    .order-item-price {
        font-weight: 600;
    }
    .order-items-empty {
        text-align: center;
        padding: 32px;
    }
    /* Total */
    .order-total-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .order-total-final {
        border-top: 2px solid var(--background);
        margin-top: 8px;
    }

    /* Actions */
    .order-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
    }
    .order-action-button {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
    }
    .order-action-primary:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        color: white;
    }
    .order-action-secondary {
        background: var(--surface);
    }
    .order-action-secondary:hover {
        background: var(--background);
    }
    /* État vide */
    .order-details-empty {
        background: var(--surface);
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        margin: 32px auto;
    }
    .order-details-empty-icon {
        display: flex;
        justify-content: center;
    }
    .order-details-empty-title {
        margin: 0;
        text-align: center;
    }

    .order-details-empty-description {
        margin: 0;
        text-align: center;
        opacity: 0.8;
    }
    /* Responsive - Mobile First */
    @media (max-width: 767px) {
        .order-summary-row {
            flex-direction: column;
            align-items: flex-start;
        }
        .order-shipping-row {
            flex-direction: column;
            align-items: flex-start;
        }

        .order-item {
            flex-direction: column;
        }
        .order-item-image {
            width: 100%;
        }

        .order-item-meta {
            flex-direction: column;
            align-items: flex-start;
        }

        .order-actions {
            flex-direction: column;
        }
        .order-items-header {
            flex-direction: column;
            align-items: flex-start; 
        }
    }

    /* Styles d'impression */
    @media print {
        .order-summary-card,
        .order-address-card,
        .order-shipping-card,
        .order-items-card,
        .order-total-card {
            box-shadow: none;
            border: 1px solid #ccc;
        }
    } --><!-- /* Additional styles from templates/cms/normal_web_payment_return/index.html.twig */
/* Styles pour la page de retour de paiement */

    /* .payment-return-header {
        background: var(--surface);
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    } */

    .payment-return-icon {
        background: var(--primary);
        border-radius: 50%;
        padding: 16px;
        display: flex;
        align-items: center;
    }

    .payment-return-message {
        margin: 0;
    }
    
    .payment-return-card {
        background: var(--surface);
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .payment-return-card-title {
        margin: 0 0 24px 0;
        padding-bottom: 16px;
    }

    .payment-return-row {
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }

    .payment-return-row-total {
        font-weight: 600;
    }

    .payment-return-label {
        color: var(--blackToWhite);
    }

    .payment-return-value {
        color: var(--blackToWhite);
    }

    .payment-return-badge {
        font-size: 14px;
        font-weight: 600;
    }

    .products-container {
        background: var(--background);
        border-radius: 12px;
    }

    .payment-return-product {
        align-items: flex-start;
        padding: 16px;
    }

    .payment-return-product-image img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
    }

    .payment-return-product-details {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .payment-return-product-info {
        display: flex;
        flex-direction: column;
    }

    .payment-return-product-name {
        color: var(--blackToWhite);
        font-weight: 600;
    }

    .payment-return-product-description {
        color: var(--blackToWhite);
    }

    .payment-return-product-quantity {
        color: var(--blackToWhite);
    }

    .payment-return-product-price {
        color: var(--blackToWhite);
        font-weight: 600;
    }

    .payment-return-empty {
        text-align: center;
    }

    .payment-return-empty h2 {
        color: var(--blackToWhite);
    }

    .payment-return-empty p {
        color: var(--blackToWhite);
    }

    .payment-return-guarantees {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        border: 1px solid #bbf7d0;
        border-radius: 12px;
        margin-top: 32px;
        flex-wrap: wrap;
    }

    .payment-return-guarantees span {
        color: #166534;
        font-weight: 500;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .payment-return-error {
        text-align: center;
        padding: 64px 32px;
        background: var(--surface);
        border-radius: 16px;
    }

    .payment-return-error h1 {
        color: var(--blackToWhite);
    }

    /* Responsive */
    @media (max-width: 767px) {
        .payment-return-row {
            flex-direction: column;
            align-items: flex-start;
        }
        .payment-return-product-image {
            display: flex;
        }
    } -->
/* Payment Component Styles */

/* Container principal - responsive */
#payment .container {
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    #payment .container {
        grid-template-columns: 1fr minmax(0, 400px);
    }
}

@media (min-width: 1200px) {
    #payment .container {
        grid-template-columns: 1fr minmax(0, 500px);
    }
}

@media (min-width: 1400px) {
    #payment .container {
        grid-template-columns: 1fr minmax(0, 650px);
    }
}

/* Uniformisation de l'espacement entre tous les champs de formulaire */
/* Billing Address */
#payment #billingAddress > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#payment #billingAddress > div:last-child > div {
    margin: 0;
    padding: 0;
}

#payment #billingAddress > div:last-child > div.display-grid-md {
    gap: 16px;
}

#payment #billingAddress > div:last-child > div:not(.display-grid-md) {
    margin-bottom: 0;
}

/* Delivery Address - même style que Billing Address */
#payment #deliveryAddress {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* S'assurer que deliveryAddress est caché par défaut et ne s'affiche que si display-none est retiré */
#payment #deliveryAddress.display-none {
    display: none !important;
}

#payment #deliveryAddress > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#payment #deliveryAddress > div:last-child > div {
    margin: 0;
    padding: 0;
}

#payment #deliveryAddress > div:last-child > div.display-grid-md {
    gap: 16px;
}

#payment #deliveryAddress > div:last-child > div:not(.display-grid-md) {
    margin-bottom: 0;
}

/* Mobile : adresses facturation et livraison en grille 2 colonnes au lieu de tout empiler */
@media (max-width: 767px) {
    #payment #billingAddress > div:last-child > div.display-grid-md,
    #payment #deliveryAddress > div:last-child > div.display-grid-md {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    #payment #billingAddress > div:last-child > div.display-grid-md > div,
    #payment #deliveryAddress > div:last-child > div.display-grid-md > div {
        min-width: 0;
    }

    #payment #billingAddress > div:last-child,
    #payment #deliveryAddress > div:last-child {
        gap: 12px;
    }
}

/* Très petit écran : garder 2 colonnes mais réduire le gap pour éviter le débordement */
@media (max-width: 480px) {
    #payment #billingAddress > div:last-child > div.display-grid-md,
    #payment #deliveryAddress > div:last-child > div.display-grid-md {
        gap: 10px;
    }

    #payment #billingAddress > div:last-child > div.display-grid-md > div input,
    #payment #billingAddress > div:last-child > div.display-grid-md > div select,
    #payment #deliveryAddress > div:last-child > div.display-grid-md > div input,
    #payment #deliveryAddress > div:last-child > div.display-grid-md > div select {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Options de paiement - style original avec légères améliorations */
#payment .payment-option {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
    transition: border-color 0.3s;
}

/* Options de choix (livraison, paiement) - style original */
#payment .choice {
    border: 2px solid #ccc;
    cursor: pointer;
    transition: border-color 0.3s;
}

#payment .choice * {
    cursor: pointer;
}

#payment .choice.selected {
    border-color: #7c3aed;
}

/* Radio buttons - style original */
#payment .payment-option input[type="radio"] {
    accent-color: black;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
}

/* Panneau de paiement par carte - responsive */
#payment #card-payment-panel {
    max-width: 100%;
    padding: 16px 0;
}

@media (min-width: 768px) {
    #payment #card-payment-panel {
        max-width: 400px;
    }
}

/* Styles uniformes pour tous les champs de formulaire (input, select, textarea) */
#payment input[type="text"],
#payment input[type="email"],
#payment select,
#payment textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--surface);
    color: var(--blackToWhite);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Style spécifique pour les selects (pays) - même rendu que les autres champs */
#payment select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

/* Dark mode pour le select */
@media (prefers-color-scheme: dark) {
    #payment select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    }
}

#payment select:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#payment select option {
    color: var(--blackToWhite);
    background-color: var(--surface);
    padding: 8px;
}

/* Focus pour tous les champs */
#payment input[type="text"]:focus,
#payment input[type="email"]:focus,
#payment textarea:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

/* Erreurs de formulaire */
.input-error {
    border: 2px solid red !important;
    background-color: #ffe6e6;
}

/* Styles pour la section Summary (Récapitulatif) */
#payment #summary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#payment #summary h2 {
    margin: 0;
    color: var(--blackToWhite);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
}

/* Lignes du récapitulatif */
#payment #summary .display-flex.display-content-space-between {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#payment #summary .display-flex.display-content-space-between:last-child {
    border-bottom: none;
}

#payment #summary .display-flex.display-content-space-between {
    color: var(--blackToWhite);
    font-size: 14px;
    line-height: 1.5;
}

/* Texte barré pour le sous-total si remise */
#payment #summary .crossed {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Section code promo */
#payment #summary .display-grid.display-grid-1-auto {
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 4px;
    gap: 8px;
    background-color: var(--surface);
    transition: border-color 0.2s ease;
}

/* Amélioration de la visibilité en thème sombre */
@media (prefers-color-scheme: dark) {
    #payment #summary .display-grid.display-grid-1-auto {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    #payment #summary .display-grid.display-grid-1-auto:focus-within {
        border-color: var(--primary, #7c3aed);
        background-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }
}

#payment #summary .display-grid.display-grid-1-auto:focus-within {
    border-color: var(--primary, #7c3aed);
}

#payment #summary #promoCodeInput {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
    color: var(--blackToWhite);
    flex: 1;
}

#payment #summary #promoCodeInput::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Placeholder plus visible en thème sombre */
@media (prefers-color-scheme: dark) {
    #payment #summary #promoCodeInput::placeholder {
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
    
    #payment #summary #promoCodeInput {
        color: var(--blackToWhite);
    }
}

#payment .bottom-sheet .display-grid.display-grid-1-auto {
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 4px;
    gap: 8px;
    background-color: var(--surface);
    transition: border-color 0.2s ease;
    /* Empêche l'overflow sur petits écrans */
    grid-template-columns: minmax(0, 1fr) auto;
}

@media (prefers-color-scheme: dark) {
    #payment .bottom-sheet .display-grid.display-grid-1-auto {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.05);
    }

    #payment .bottom-sheet .display-grid.display-grid-1-auto:focus-within {
        border-color: var(--primary, #7c3aed);
        background-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }
}

#payment .bottom-sheet .display-grid.display-grid-1-auto:focus-within {
    border-color: var(--primary, #7c3aed);
}

#payment #mobilePromoCodeInput {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
    color: var(--blackToWhite);
    width: 100%;
    min-width: 0;
}

#payment #mobilePromoCodeInput::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

@media (prefers-color-scheme: dark) {
    #payment #mobilePromoCodeInput::placeholder {
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }

    #payment #mobilePromoCodeInput {
        color: var(--blackToWhite);
    }
}

#payment #summary #addPromo {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Amélioration de la visibilité du bouton en thème sombre */
@media (prefers-color-scheme: dark) {
    #payment #summary #addPromo {
        background-color: var(--primary, #7c3aed);
        color: white;
        transition: all 0.2s ease;
    }
    
    #payment #summary #addPromo:hover {
        background-color: var(--primary, #7c3aed);
        filter: brightness(1.2);
        transform: translateY(-1px);
    }
    
    #payment #summary #addPromo:active {
        transform: translateY(0);
    }
}

/* Section total */
#payment #summary .border-top-black-to-white {
    border-top: 2px solid var(--blackToWhite);
    margin-top: 8px;
    padding-top: 16px;
    border-top-color: 1px solid var(--blackToWhite);
}

@media (prefers-color-scheme: dark) {
    #payment #summary .border-top-black-to-white {
        border-top-color: rgba(255, 255, 255, 0.2);
    }
}

#payment #summary .border-top-black-to-white .display-flex.display-content-space-between {
    border-bottom: none;
    padding: 0;
}

#payment #summary .border-top-black-to-white p {
    font-size: 16px;
    font-weight: 700;
    color: var(--blackToWhite);
    opacity: 1;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    #payment #summary {
        padding: 24px 20px;
    }

    #payment #summary h2 {
        font-size: 20px;
    }

    #payment #summary .display-flex.display-content-space-between p {
        font-size: 13px;
    }

    #payment #summary .border-top-black-to-white p {
        font-size: 15px;
    }
}

/* Responsive - Tablette */
@media (min-width: 768px) and (max-width: 991px) {
    #payment #summary {
        padding: 28px 24px;
    }

    #payment #summary h2 {
        font-size: 22px;
    }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
    #payment #summary {
        padding: 32px;
    }
}

/* Styles pour la section Cart (Panier) */
#payment #cart {
    width: 100%;
}

#payment #cart > div {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#payment #cart h2 {
    margin: 0;
    color: var(--blackToWhite);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
}

/* En-tête avec titre et bouton modifier */
#payment #cart > div > div:first-child {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

/* Bouton modifier */
#payment #cart .outline-button {
    transition: all 0.2s ease;
}

/* Liste des produits */
#payment #cart .display-grid.display-grid-auto-1 {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#payment #cart .display-grid.display-grid-auto-1:last-child {
    border-bottom: none;
}

/* Images des produits */
#payment #cart .sizing-w-150px {
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Informations produit */
#payment #cart .display-grid.display-grid-auto-1 p {
    margin: 0;
    color: var(--blackToWhite);
    font-size: 14px;
    line-height: 1.5;
}

#payment #cart .display-grid.display-grid-auto-1 p.font-weight-600 {
    font-weight: 600;
    color: var(--blackToWhite);
}

#payment #cart .display-grid.display-grid-auto-1 .color-red {
    color: #d32f2f;
    font-weight: 500;
}

/* Attributs produit */
#payment #cart .display-flex.spacing-gap-8px span {
    color: var(--blackToWhite);
    opacity: 0.8;
    font-size: 13px;
}

/* Panier vide */
#payment #cart .empty-cart {
    text-align: center;
    padding: 48px 24px;
}

#payment #cart .empty-cart h2 {
    margin-bottom: 16px;
    color: var(--blackToWhite);
}

#payment #cart .empty-cart p {
    color: var(--blackToWhite);
    opacity: 0.8;
    margin-bottom: 24px;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    #payment #cart > div {
        padding: 24px 20px;
    }

    #payment #cart h2 {
        font-size: 20px;
    }

    #payment #cart .display-grid.display-grid-auto-1 {
        padding: 12px 0;
    }
}

/* Responsive - Tablette */
@media (min-width: 768px) and (max-width: 991px) {
    #payment #cart > div {
        padding: 28px 24px;
    }

    #payment #cart h2 {
        font-size: 22px;
    }
}

/* Responsive - Desktop */
@media (min-width: 992px) {
    #payment #cart > div {
        padding: 32px;
    }
}

/* Amélioration en thème sombre */
@media (prefers-color-scheme: dark) {
    #payment #cart > div {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }

    #payment #cart > div > div:first-child {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    #payment #cart .display-grid.display-grid-auto-1 {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }

    /* Effets hover désactivés pour la section cart */
    #payment #cart .display-grid.display-grid-auto-1:hover {
        /* Hover désactivé */
    }

    #payment #cart .sizing-w-150px {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Styles pour le bouton "Payer" */
#payment .primary-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

#payment .primary-button:hover {
    background-color: var(--primary);
    filter: brightness(0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

#payment .primary-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#payment .primary-button:focus {
    outline: none;
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

#payment .primary-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Dark mode pour le bouton */
@media (prefers-color-scheme: dark) {
    #payment .primary-button {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    #payment .primary-button:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    #payment .primary-button:focus {
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

/* Responsive pour le bouton */
@media (max-width: 767px) {
    #payment .primary-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}/* Payment Methods Component Styles */

    #payment-methods h1 {
        text-align: center;
    }
    .payment-methods-content {
        color: #000000;
        font-size: 16px;
    }

    .payment-methods-content h2,
    .payment-methods-content h3,
    .payment-methods-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .payment-methods-content ul,
    .payment-methods-content ol {
        margin-bottom: 24px;
    }

    .payment-methods-content a {
        color: #000000;
        text-decoration: underline;
    }

    .payment-methods-content a:hover {
        color: #333333;
    }

/* Privacy Policy Component Styles */

    #privacy-policy h1 {
        text-align: center;
    }
    .privacy-policy-content {
        color: #000000;
        font-size: 16px;
    }
    .privacy-policy-content h2,
    .privacy-policy-content h3,
    .privacy-policy-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .privacy-policy-content ul,
    .privacy-policy-content ol {
        margin-bottom: 24px;
    }
    .privacy-policy-content a {
        color: #000000;
        text-decoration: underline;
    }
    .privacy-policy-content a:hover {
        color: #333333;
    }
/* ===== PRODUIT DÉTAILS - MOBILE ===== */

#product_details .tag {
    max-width: 85%;
}

#product_details .tag>p {
    background-color: brown;
}

/* ===== VARIANTS UNIFORMISÉS ===== */

/* #region variant container */
#product_details .variant-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 16px 0;
}

#product_details .variant-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#product_details .variant-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--blackToWhite);
    text-transform: capitalize;
    margin-bottom: 4px;
}

#product_details .variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
/* #endregion variant container */

/* #region color swatches */
#product_details .color-swatch {
    width: 28px;
    height: 28px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: var(--blackToWhite);
    overflow: hidden;
}

#product_details .color-swatch:hover {
    transform: scale(1.1);
    border-color: #BDBDBD;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

#product_details .color-swatch.active {
    border-color: var(--cliqued);
    border-width: 3px;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2), 0 4px 12px rgba(66, 133, 244, 0.3);
}

#product_details .color-swatch.unavailable {
    opacity: 0.5;
    cursor: pointer;
}

#product_details .color-swatch.unavailable:hover {
    transform: scale(1.05);
    opacity: 0.7;
}
/* #endregion color swatches */

/* #region size options */
#product_details .size-option {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    background-color: white;
    color: black;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
}

#product_details .size-option:hover {
    border-color: #BDBDBD;
    background-color: #F8F9FA;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .size-option.active {
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    border-color: var(--cliqued);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .size-option.unavailable {
    opacity: 0.5;
    color: #9E9E9E;
    background-color: #F5F5F5;
    cursor: pointer;
}

#product_details .size-option.unavailable:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}
/* #endregion size options */

/* #region format options */
#product_details .format-option {
    min-width: 44px;
    height: 36px;
    padding: 0 12px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    background-color: var(--whiteToBlack);
    color: var(--blackToWhite);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
    text-transform: uppercase;
}

#product_details .format-option:hover {
    border-color: #BDBDBD;
    background-color: #F8F9FA;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .format-option.active {
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    border-color: var(--cliqued);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .format-option.unavailable {
    opacity: 0.5;
    color: #9E9E9E;
    background-color: #F5F5F5;
    cursor: pointer;
}

#product_details .format-option.unavailable:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}
/* #endregion format options */

/* #region color_square */
#product_details .color-square {
    width: 28px;
    height: 28px;
    border: 2px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--blackToWhite);
}

#product_details .color-square:hover {
    transform: scale(1.1);
    border-color: #BDBDBD;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

#product_details .color-square.active {
    border-color: var(--cliqued);
    border-width: 3px;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2), 0 4px 12px rgba(66, 133, 244, 0.3);
}

#product_details .color-square.unavailable {
    opacity: 0.5;
    cursor: pointer;
}

#product_details .color-square.unavailable:hover {
    transform: scale(1.05);
    opacity: 0.7;
}
/* #endregion color_square */

/* #region color_text */
#product_details .color-text {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    background-color: white;
    color: black;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
}

#product_details .color-text:hover {
    border-color: #BDBDBD;
    background-color: #F8F9FA;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .color-text.active {
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    border-color: var(--cliqued);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .color-text.unavailable {
    opacity: 0.5;
    color: #9E9E9E;
    background-color: #F5F5F5;
    cursor: pointer;
}

#product_details .color-text.unavailable:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}
/* #endregion color_text */

/* #region generic-option */
#product_details .generic-option {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    background-color: white;
    color: black;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
}

#product_details .generic-option:hover {
    border-color: #BDBDBD;
    background-color: #F8F9FA;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .generic-option.active {
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    border-color: var(--cliqued);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .generic-option.unavailable {
    opacity: 0.5;
    color: #9E9E9E;
    background-color: #F5F5F5;
    cursor: pointer;
}

#product_details .generic-option.unavailable:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}
/* #endregion generic-option */

/* #region quantity selector */
#product_details .input-quantity {
    background-color: transparent;
    border: none;
    outline: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--blackToWhite);
    width: 40px;
}

#product_details .input-quantity::-webkit-inner-spin-button,
#product_details .input-quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#product_details .input-quantity[type=number] {
    -moz-appearance: textfield;
}
/* #endregion quantity selector */

/* #region legacy support */
#product_details .color-swatches {
    gap: 6px;
    margin-top: 4px;
}

#product_details .product-sizes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

#product_details .size-options {
    display: flex;
    gap: 4px;
}

#product_details .color {
    border: 1px solid transparent;
}

#product_details .color>* {
    width: 21px;
    height: 21px;
    border: 2px solid transparent;
}
/* #endregion legacy support */

/* ===== COMPOSANTS PRODUITS ===== */

/* #region product details layout */
#product_details .product-details-layout {
    width: 100%;
}

#product_details .product-main-section {
    width: 100%;
    position: relative;
}

#product_details .product-info-section {
    flex: 1;
    max-width: 50%;
}
/* #endregion product details layout */

/* #region carousel */
#product_details .carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

#product_details .carousel-wrapper {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

#product_details .carousel-slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
}

#product_details .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#product_details .carousel-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

#product_details .carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

#product_details .carousel-prev {
    left: 10px;
}

#product_details .carousel-next {
    right: 10px;
}

#product_details .carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

#product_details .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#product_details .indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}
/* #endregion carousel */

/* #region thumbnails */
#product_details .thumbnails-desktop {
    display: none;
}

#product_details .thumbnail-item {
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

#product_details .thumbnail-item:hover {
    border-color: #E0E0E0;
    transform: scale(1.05);
}

#product_details .thumbnail-item.active {
    border-color: var(--cliqued);
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.3);
}
/* #endregion thumbnails */

/* #region main product image */
#product_details .main-product-image {
    display: none;
}

#product_details #mainProductImage {
    transition: opacity 0.3s ease;
}
/* #endregion main product image */

/* #region quantity selector */
#product_details .quantity-selector {
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 120px;
}
/* #endregion quantity selector */

/* #region responsive */
@media (max-width: 767px) {
    #product_details .product-info-section {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #product_details .product-details-layout {
        display: flex;
        gap: 42px;
        align-items: flex-start;
    }

    #product_details .product-main-section {
        flex: 1;
        max-width: 50%;
    }

    #product_details .carousel-container {
        height: 400px;
        margin-bottom: 0;
    }

    #product_details .carousel-nav {
        display: flex;
    }
}

@media (min-width: 1024px) {
    #product_details .product-details-layout {
        display: flex;
        gap: 42px;
        align-items: flex-start;
    }

    #product_details .product-main-section {
        flex: 1;
        max-width: 50%;
        display: flex;
        gap: 16px;
    }

    #product_details .carousel-container {
        display: none;
    }

    #product_details .thumbnails-desktop {
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex-shrink: 0;
    }

    #product_details .main-product-image {
        display: flex;
        flex: 1;
    }

    #product_details .main-product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}
/* #endregion responsive */

/* #region accessibility */
#product_details .carousel-nav:focus,
#product_details .indicator:focus,
#product_details .thumbnail-item:focus,
#product_details .color-swatch:focus,
#product_details .size-option:focus,
#product_details .format-option:focus {
    outline: 2px solid var(--cliqued);
    outline-offset: 2px;
}

#product_details .carousel-nav:focus:not(:focus-visible),
#product_details .indicator:focus:not(:focus-visible),
#product_details .thumbnail-item:focus:not(:focus-visible),
#product_details .color-swatch:focus:not(:focus-visible),
#product_details .size-option:focus:not(:focus-visible),
#product_details .format-option:focus:not(:focus-visible) {
    outline: none;
}

/* Support pour la navigation au clavier */
#product_details .variant-options:focus-within {
    outline: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 4px;
}
/* #endregion accessibility *//* Profile Component Styles */

#profile {
    width: 100%;
}

/* Section email */
#profile > div:first-child {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#profile > div:first-child p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    line-height: 1.5;
}

/* Section categories (accordéons) */
#profile .categories {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#profile .categories > div {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#profile .categories > div:last-child {
    border-bottom: none;
}

/* Accordéons */
#profile .accordion {
    cursor: pointer;
    outline: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px;
    transition: background-color 0.2s ease;
    width: 100%;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#profile .accordion:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

#profile .accordion > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
}

#profile .accordion > div:first-child > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

#profile .accordion > div:first-child > div:first-child img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

#profile .accordion p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: inherit;
}

#profile .accordion > div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

#profile .accordion.active > div:last-child {
    transform: rotate(180deg);
}

#profile .accordion > div:last-child img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Panels */
#profile .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 16px;
}

#profile .accordion.active + .panel {
    padding: 0 16px 16px 56px;
    max-height: 1000px;
}

#profile .panel a {
    display: block;
    padding: 12px 0;
    margin: 0;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#profile .panel a:last-child {
    border-bottom: none;
}

#profile .panel a:hover {
    opacity: 0.7;
    padding-left: 8px;
}

/* Mobile : accordéons */
@media (max-width: 767px) {
    #profile {
        gap: 24px;
    }

    #profile > div:first-child {
        padding: 12px 16px;
    }

    #profile > div:first-child p {
        font-size: 15px;
    }

    #profile .accordion {
        padding: 14px 16px;
    }

    #profile .accordion > div:first-child {
        gap: 12px;
    }

    #profile .accordion > div:first-child > div:first-child {
        width: 36px;
        height: 36px;
    }

    #profile .accordion > div:first-child > div:first-child img {
        width: 22px;
        height: 22px;
    }

    #profile .accordion p {
        font-size: 15px;
    }

    #profile .accordion.active + .panel {
        padding: 0 16px 14px 48px;
        max-height: 1000px;
    }

    #profile .panel a {
        padding: 10px 0;
        font-size: 13px;
    }
}

/* Desktop : amélioration de l'apparence */
@media (min-width: 768px) {
    #profile {
        gap: 32px;
    }

    #profile > div:first-child {
        padding: 20px 24px;
    }

    #profile > div:first-child p {
        font-size: 18px;
    }

    #profile .accordion {
        padding: 20px 24px;
    }

    #profile .accordion > div:first-child {
        gap: 20px;
    }

    #profile .accordion > div:first-child > div:first-child {
        width: 44px;
        height: 44px;
    }

    #profile .accordion > div:first-child > div:first-child img {
        width: 28px;
        height: 28px;
    }

    #profile .accordion p {
        font-size: 17px;
    }

    #profile .accordion.active + .panel {
        padding: 0 24px 20px 64px;
    }

    #profile .panel a {
        padding: 14px 0;
        font-size: 15px;
    }
}

/* Grands écrans */
@media (min-width: 992px) {
    #profile {
        gap: 40px;
    }

    #profile > div:first-child {
        padding: 24px 32px;
    }

    #profile > div:first-child p {
        font-size: 20px;
    }

    #profile .accordion {
        padding: 24px 32px;
    }

    #profile .accordion > div:first-child {
        gap: 24px;
    }

    #profile .accordion > div:first-child > div:first-child {
        width: 48px;
        height: 48px;
    }

    #profile .accordion > div:first-child > div:first-child img {
        width: 30px;
        height: 30px;
    }

    #profile .accordion p {
        font-size: 18px;
    }

    #profile .accordion.active + .panel {
        padding: 0 32px 24px 72px;
    }

    #profile .panel a {
        padding: 16px 0;
        font-size: 16px;
    }
}
/* Profile Addresses Component Styles */

#profile-addresses {
    width: 100%;
}

/* Section principale */
#profile-addresses > div:last-child {
    width: 100%;
}

/* Conteneur principal */
#profile-addresses > div:last-child > div {
    width: 100%;
}

/* En-tête avec titre */
#profile-addresses > div:last-child > div > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

#profile-addresses > div:last-child > div > div:first-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    background: none;
}

#profile-addresses > div:last-child > div > div:first-child a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

#profile-addresses > div:last-child > div > div:first-child a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#profile-addresses > div:last-child > div > div:first-child p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

/* Bouton ajouter adresse */
#profile-addresses > div:last-child > div > div:nth-child(2) {
    padding: 0 16px;
    margin-bottom: 24px;
}

#add-address-btn {
    padding: 14px 28px !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    width: auto !important;
    min-width: fit-content;
    height: auto !important;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#add-address-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

#add-address-btn:active {
    transform: translateY(0);
}

/* Conteneur des adresses */
#addresses {
    width: 100%;
    padding: 0 16px;
}

/* Carte d'adresse */
#addresses .address {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--surface);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

#addresses .address:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Bouton de suppression avec croix en haut à droite */
#addresses .delete-address-btn-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
    color: var(--blackToWhite);
}

#addresses .delete-address-btn-icon:active {
    transform: scale(0.95);
}

#addresses .delete-address-btn-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Informations de l'adresse */
#addresses .address > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}

#addresses .address > div:first-child > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    text-align: left;
}

#addresses .address > div:first-child > div:first-child {
    display: flex;
    gap: 8px;
    align-items: center;
}

#addresses .address > div:first-child > div:first-child p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: inherit;
}

#addresses .address > div:first-child > div:not(:first-child) p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: inherit;
    text-align: left;
}

#addresses .address > div:first-child > div:nth-child(4) {
    display: flex;
    gap: 4px;
    align-items: center;
}

#addresses .address > div:first-child > div:nth-child(4) p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: inherit;
}

/* Boutons d'action */
#addresses .address > div:last-child {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.edit-address-btn,
.delete-address-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.edit-address-btn:hover,
.delete-address-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.edit-address-btn:active,
.delete-address-btn:active {
    transform: translateY(0);
}

/* Message aucune adresse */
#addresses > p {
    margin: 0;
    padding: 24px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: inherit;
    text-align: center;
}

/* Mobile : optimisations */
@media (max-width: 767px) {
    #profile-addresses > div:last-child > div > div:first-child {
        padding: 12px 16px;
        margin-bottom: 20px;
    }

    #profile-addresses > div:last-child > div > div:first-child p {
        font-size: 18px;
    }

    #profile-addresses > div:last-child > div > div:nth-child(2) {
        padding: 0 16px;
        margin-bottom: 20px;
    }

    #add-address-btn {
        width: auto;
        min-width: fit-content;
        white-space: nowrap;
        padding: 12px 24px;
        font-size: 14px;
    }

    #addresses {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #addresses .address {
        padding: 16px;
        gap: 12px;
    }

    #addresses .address > div:first-child > div:first-child p {
        font-size: 16px;
    }

    #addresses .address > div:first-child > div:not(:first-child) p {
        font-size: 13px;
    }

    #addresses .address > div:last-child {
        flex-direction: column;
        gap: 8px;
    }

    .edit-address-btn,
    .delete-address-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Desktop : améliorations */
@media (min-width: 768px) {

    #profile-addresses > div:last-child > div > div:first-child {
        padding: 20px 0;
        margin-bottom: 32px;
    }

    #profile-addresses > div:last-child > div > div:first-child p {
        font-size: 24px;
    }

    #profile-addresses > div:last-child > div > div:nth-child(2) {
        padding: 0;
        margin-bottom: 32px;
    }

    #add-address-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    #addresses {
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    #addresses .address {
        padding: 24px;
        gap: 20px;
    }

    #addresses .address > div:first-child > div:first-child p {
        font-size: 20px;
    }

    #addresses .address > div:first-child > div:not(:first-child) p {
        font-size: 15px;
    }

    #addresses .address > div:last-child {
        gap: 16px;
    }

    .edit-address-btn,
    .delete-address-btn {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 140px;
    }
}

/* Grands écrans */
@media (min-width: 992px) {

    #profile-addresses > div:last-child > div > div:first-child p {
        font-size: 28px;
    }

    #add-address-btn {
        padding: 18px 36px;
        font-size: 17px;
    }

    #addresses {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 32px;
    }

    #addresses .address {
        padding: 28px;
        gap: 24px;
    }

    #addresses .address > div:first-child > div:first-child p {
        font-size: 22px;
    }

    #addresses .address > div:first-child > div:not(:first-child) p {
        font-size: 16px;
    }

    .edit-address-btn,
    .delete-address-btn {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 160px;
    }
}

/* Styles pour le select ouvert */
select.color-black-to-white:focus option {
    color: #111;
    background-color: #fff;
}

select.color-black-to-white:focus option:checked {
    color: #111;
    background-color: #f0f0f0;
}
/* Profile Informations Component Styles */

#profile-informations {
    width: 100%;
}

/* Section principale */
#profile-informations > div:last-child {
    width: 100%;
}

/* Conteneur principal */
#profile-informations > div:last-child > div {
    width: 100%;
}

/* En-tête avec titre et bouton retour */
#profile-informations > div:last-child > div > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

#profile-informations > div:last-child > div > div:first-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    background: none;
}

#profile-informations > div:last-child > div > div:first-child a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

#profile-informations > div:last-child > div > div:first-child a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#profile-informations > div:last-child > div > div:first-child p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

/* Formulaire et affichage */
#editForm,
#displayInfo {
    width: 100%;
}

#editForm > div,
#displayInfo > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
}

/* Champs du formulaire */
#editForm label,
#displayInfo label {
    display: block;
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    line-height: 1.5;
}

#editForm .display-flex.display-direction-column,
#displayInfo .display-flex.display-direction-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Champs de saisie */
#editForm p,
#displayInfo p {
    margin: 0;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.5;
    color: inherit;
    border-radius: 4px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

#editForm select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-height: 50px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

#editForm select:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.04);
}

#editForm select option {
    color: #111;
    background-color: #fff;
    padding: 8px;
}

/* Affichage de la langue */
#languageDisplay {
    margin: 0;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.5;
    color: inherit;
    border-radius: 4px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* Boutons */
#editForm .display-flex.display-items-center.display-justify-center,
#displayInfo .display-flex.display-items-center.display-justify-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

#editButton,
#submitButton,
#cancelButton {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#editButton:hover,
#submitButton:hover,
#cancelButton:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

#editButton:active,
#submitButton:active,
#cancelButton:active {
    transform: translateY(0);
}

#editButton img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Section delete (changement de mot de passe et déconnexion) */
#profile-informations .delete {
    padding: 24px 16px;
}

#profile-informations .delete > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

#change-password-btn,
#logout {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

#change-password-btn:hover,
#logout:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

#change-password-btn:active,
#logout:active {
    transform: translateY(0);
}

/* Mobile : optimisations */
@media (max-width: 767px) {
    #profile-informations > div:last-child > div > div:first-child {
        padding: 12px 16px;
        margin-bottom: 20px;
    }

    #profile-informations > div:last-child > div > div:first-child p {
        font-size: 18px;
    }

    #editForm > div,
    #displayInfo > div {
        gap: 20px;
        padding: 0 16px;
    }

    #editForm label,
    #displayInfo label {
        font-size: 13px;
    }

    #editForm p,
    #displayInfo p,
    #editForm select,
    #languageDisplay {
        font-size: 14px;
        padding: 10px 0;
        min-height: 44px;
    }

    #editForm select {
        padding-right: 36px;
        background-position: right 14px center;
    }

    #editForm .display-flex.display-items-center.display-justify-center,
    #displayInfo .display-flex.display-items-center.display-justify-center {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }

    #editButton,
    #submitButton,
    #cancelButton {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    #profile-informations .delete {
        margin-top: 24px;
        padding: 20px 16px;
    }

    #change-password-btn,
    #logout {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        font-family: inherit;
    }
}

/* Desktop : améliorations */
@media (min-width: 768px) {
    #profile-informations > div:last-child > div > div:first-child {
        padding: 20px 0;
        margin-bottom: 32px;
    }

    #profile-informations > div:last-child > div > div:first-child p {
        font-size: 24px;
    }

    #editForm > div,
    #displayInfo > div {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0;
    }

    #editForm .display-flex.display-items-center.display-justify-center,
    #displayInfo .display-flex.display-items-center.display-justify-center {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 0;
    }

    #editForm label,
    #displayInfo label {
        font-size: 15px;
    }

    #editForm p,
    #displayInfo p,
    #editForm select,
    #languageDisplay {
        font-size: 16px;
        padding: 14px 0;
        min-height: 54px;
    }

    #editForm select {
        padding-right: 44px;
        background-position: right 18px center;
    }

    #editButton,
    #submitButton,
    #cancelButton {
        min-width: 140px;
        padding: 14px 28px;
        font-size: 16px;
    }

    #profile-informations .delete {
        margin-top: 40px;
        padding: 32px 0;
    }

    #change-password-btn,
    #logout {
        max-width: 350px;
        padding: 16px 28px;
        font-size: 16px;
        font-family: inherit;
    }
}

/* Grands écrans */
@media (min-width: 992px) {

    #profile-informations #profile-informations > div:last-child > div > div:first-child p {
        font-size: 28px;
    }

    #profile-informations #editForm > div,
    #profile-informations #displayInfo > div {
        gap: 40px;
    }

    #profile-informations #editForm label,
    #profile-informations #displayInfo label {
        font-size: 16px;
    }

    #profile-informations #editForm p,
    #profile-informations #displayInfo p,
    #profile-informations #editForm select,
    #profile-informations #languageDisplay {
        font-size: 17px;
        padding: 16px 0;
        min-height: 58px;
    }

    #profile-informations #editButton,
    #profile-informations #submitButton,
    #profile-informations #cancelButton {
        min-width: 160px;
        padding: 16px 32px;
        font-size: 17px;
    }

    #profile-informations .delete {
        margin-top: 48px;
        padding: 40px 0;
    }

    #profile-informations #change-password-btn,
    #profile-informations #logout {
        max-width: 400px;
        padding: 18px 32px;
        font-size: 16px;
        font-family: inherit;
    }
}

/* Styles pour le select ouvert */
#profile-informations select.color-black-to-white:focus option {
    color: #111;
    background-color: #fff;
}

#profile-informations select.color-black-to-white:focus option:checked {
    color: #111;
    background-color: #f0f0f0;
}

/* Modale de changement de langue */
#profile-informations .language-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

#profile-informations .language-modal.show {
    display: flex;
}

#profile-informations .language-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#profile-informations .language-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: var(--surface);
}

#profile-informations .language-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

#profile-informations .language-modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blackToWhite);
    line-height: 1.3;
}

#profile-informations .language-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blackToWhite);
}

#profile-informations .language-modal-close:hover {
    opacity: 0.8;
}

#profile-informations .language-modal-close-icon {
    display: block;
    width: 15px;
    height: 15px;
    object-fit: contain;
}

#profile-informations .language-modal-body {
    background: var(--surface);
    padding: 24px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

#profile-informations .language-modal-body > form > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

#profile-informations .language-modal-body label {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 14px;
    color: var(--blackToWhite);
}

/* Select : mêmes styles que #payment select (page paiement) */
#profile-informations .language-modal-body select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--surface);
    color: var(--blackToWhite);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}

@media (prefers-color-scheme: dark) {
    #profile-informations .language-modal-content {
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

    #profile-informations .language-modal-header {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    #profile-informations .language-modal-body select {
        border-color: rgba(255, 255, 255, 0.2);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    }
}

#profile-informations .language-modal-body select:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

/* Options : mêmes couleurs que #payment select option. Couleurs en dur car
   var() sur <option> n’est pas bien appliqué par tous les navigateurs. */
/* Options : même rendu que la page paiement — fond sombre, texte blanc */
#profile-informations .language-modal-body select.color-black-to-white option,
#profile-informations .language-modal-body select.color-black-to-white:focus option,
#profile-informations .language-modal-body select.color-black-to-white:focus option:checked {
    color: #111;
    background-color: #fff;
    padding: 8px;
}

#profile-informations .language-modal-body select.color-black-to-white:focus option:checked {
    background-color: #f0f0f0;
}

@media (prefers-color-scheme: dark) {
    #profile-informations .language-modal-body select.color-black-to-white option,
    #profile-informations .language-modal-body select.color-black-to-white:focus option,
    #profile-informations .language-modal-body select.color-black-to-white:focus option:checked {
        color: #fff;
        background-color: #1a1a1a;
    }

    #profile-informations .language-modal-body select.color-black-to-white:focus option:checked {
        background-color: #2d2d2d;
    }
}

#profile-informations .language-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 24px;
    flex-shrink: 0;
}

#profile-informations .language-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    min-height: 44px;
}

#profile-informations .language-modal-btn-cancel {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--blackToWhite);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

#profile-informations .language-modal-btn-cancel:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

#profile-informations .language-modal-btn-submit {
    background-color: var(--primary, #7c3aed);
    color: #fff;
}

#profile-informations .language-modal-btn-submit:hover {
    opacity: 0.9;
}

#profile-informations .language-modal-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (prefers-color-scheme: dark) {
    #profile-informations .language-modal-btn-cancel {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    #profile-informations .language-modal-btn-cancel:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
}

/* ========== Responsive modale (aligné sur breakpoints page : 767, 768, 992) ========== */

/* Mobile : même breakpoint que #profile-informations (max-width: 767px) */
@media (max-width: 767px) {
    #profile-informations .language-modal {
        padding: 16px;
    }

    #profile-informations .language-modal-content {
        width: 100%;
        max-height: calc(100vh - 32px);
        border-radius: 10px;
    }

    #profile-informations .language-modal-header {
        padding: 16px 20px;
    }

    #profile-informations .language-modal-title {
        font-size: 1.25rem;
    }

    #profile-informations .language-modal-body {
        padding: 20px;
    }

    #profile-informations .language-modal-body > form > div:first-child {
        gap: 14px;
        margin-bottom: 20px;
    }

    #profile-informations .language-modal-body label {
        font-size: 13px;
    }

    #profile-informations .language-modal-body select {
        padding: 12px 36px 12px 14px;
        font-size: 16px;
    }

    #profile-informations .language-modal-footer {
        justify-content: flex-end;
        padding: 0 0 20px;
    }

    #profile-informations .language-modal-btn-cancel {
        display: none;
    }

    #profile-informations .language-modal-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Petit mobile (aligné sur 575px utilisé ailleurs) */
@media (max-width: 575px) {
    #profile-informations .language-modal {
        padding: 12px;
    }

    #profile-informations .language-modal-content {
        max-height: calc(100vh - 24px);
        border-radius: 12px;
    }

    #profile-informations .language-modal-header {
        padding: 14px 16px;
    }

    #profile-informations .language-modal-title {
        font-size: 1.125rem;
    }

    #profile-informations .language-modal-body {
        padding: 16px;
    }

    #profile-informations .language-modal-body > form > div:first-child {
        gap: 12px;
        margin-bottom: 16px;
    }

    #profile-informations .language-modal-footer {
        padding: 0 16px 16px;
    }

    #profile-informations .language-modal-btn {
        padding: 12px 16px;
    }
}

/* Très petit écran */
@media (max-width: 360px) {
    #profile-informations .language-modal {
        padding: 8px;
    }

    #profile-informations .language-modal-content {
        max-height: calc(100vh - 16px);
    }

    #profile-informations .language-modal-header {
        padding: 12px 14px;
    }

    #profile-informations .language-modal-title {
        font-size: 1rem;
    }

    #profile-informations .language-modal-body {
        padding: 14px;
    }

    #profile-informations .language-modal-footer {
        padding: 0 0 14px;
    }
}

/* Tablette et plus : modale un peu plus large (aligné min-width: 768px) */
@media (min-width: 768px) {
    #profile-informations .language-modal-content {
        max-height: calc(100vh - 2rem);
    }
}

/* Zones sûres (encoches / notches) */
@supports (padding: env(safe-area-inset-top)) {
    #profile-informations .language-modal {
        padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    }

    #profile-informations .language-modal-content {
        max-height: calc(100vh - 2 * max(1rem, env(safe-area-inset-top)) - 2 * max(1rem, env(safe-area-inset-bottom)));
    }

    @media (max-width: 767px) {
        #profile-informations .language-modal {
            padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
        }

        #profile-informations .language-modal-content {
            max-height: calc(100vh - 32px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        }
    }

    @media (max-width: 575px) {
        #profile-informations .language-modal {
            padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
        }

        #profile-informations .language-modal-content {
            max-height: calc(100vh - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        }
    }
}
#register {
    height: 100vh;
}

#register #form-modal {
    max-width: 448px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Styles pour les champs de formulaire */
#register input[type="email"],
#register input[type="password"],
#register input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: var(--surface);
    color: var(--blackToWhite);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

#register input[type="email"]:focus,
#register input[type="password"]:focus,
#register input[type="text"]:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#register input[type="email"]::placeholder,
#register input[type="password"]::placeholder,
#register input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour les champs de formulaire */
@media (prefers-color-scheme: dark) {
    #register #form-modal {
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    #register input[type="email"],
    #register input[type="password"],
    #register input[type="text"] {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #register input[type="email"]::placeholder,
    #register input[type="password"]::placeholder,
    #register input[type="text"]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Styles pour les labels */
#register label {
    color: var(--blackToWhite);
    font-size: 14px;
    font-weight: 500;
}

/* Styles pour les liens */
#register a {
    color: var(--blackToWhite);
    transition: color 0.2s ease;
}

#register a:hover {
    color: var(--primary, #7c3aed);
}

#register #checkbox a {
    color: var(--blackToWhite);
}

#register #checkbox a:hover {
    color: var(--primary, #7c3aed);
}

/* Styles pour le bouton toggle password */
#register .toggle-password-btn {
    color: var(--blackToWhite);
}

#register .toggle-password-btn:hover {
    opacity: 0.7;
}

/* Styles pour les erreurs de formulaire */
#register .form-errors {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
}

/* Styles pour le titre et les textes */
#register #form-modal p {
    color: var(--blackToWhite);
}/* Return Methods Component Styles */

    #return-methods h1 {
        text-align: center;
    }
    .return-methods-content {
        color: #000000;
        font-size: 16px;
    }
    .return-methods-content h2,
    .return-methods-content h3,
    .return-methods-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .return-methods-content ul,
    .return-methods-content ol {
        margin-bottom: 24px;
    }
    .return-methods-content a {
        color: #000000;
        text-decoration: underline;
    }

    .return-methods-content a:hover {
        color: #333333;
    }

/* Return Policy Component Styles */

    #return-policy h1 {
        text-align: center;
    }
    .return-policy-content {

        color: #000000;
        font-size: 16px;
    }
    .return-policy-content h2,
    .return-policy-content h3,
    .return-policy-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .return-policy-content ul,
    .return-policy-content ol {
        margin-bottom: 24px;
    }
    .return-policy-content a {
        color: #000000;
        text-decoration: underline;
    }

    .return-policy-content a:hover {
        color: #333333;
    }



/* Shipping Methods Component Styles */

    #shipping-methods h1 {
        text-align: center;
    }

    .shipping-methods-content {
        color: #000000;
        font-size: 16px;
    }
    .shipping-methods-content h2,
    .shipping-methods-content h3,
    .shipping-methods-content h4 {
        margin-top: 32px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .shipping-methods-content p {
    }
    .shipping-methods-content ul,
    .shipping-methods-content ol {
        margin-bottom: 24px;
    }
    .shipping-methods-content li {
    }
    .shipping-methods-content a {
        color: #000000;
        text-decoration: underline;
    }
    .shipping-methods-content a:hover {
        color: #333333;
    }
    /* Shop Products Component Styles */

#shop-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#shop-list .shop-list-inner {
    width: 100%;
}

#shop-list .shop-list-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

#shop-list .shop-page-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--blackToWhite);
}

#shop-list .shop-list-header p {
    margin: 0;
    line-height: 1.5;
}

#shop-list .color-text-secondary {
    color: var(--blackToWhite);
    opacity: 0.7;
}

/* Recherche */
#shop-list .product-search-container {
    width: 100%;
}

#shop-list .product-search-wrapper {
    position: relative;
    width: 100%;
}

#shop-list .product-search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--surface);
    color: var(--blackToWhite);
    transition: border-color 0.2s ease;
}

#shop-list .product-search-input:focus {
    outline: none;
    border-color: var(--primary, #7c3aed);
}

#shop-list .product-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

/* Dark mode pour la barre de recherche */
@media (prefers-color-scheme: dark) {
    #shop-list .product-search-input {
        border: 2px solid rgba(255, 255, 255, 0.1);
        background-color: var(--surface);
    }
    
    #shop-list .product-search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    #shop-list .product-search-input:focus {
        border-color: var(--primary, #7c3aed);
    }
}

#shop-list .product-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
    opacity: 0.6;
    color: var(--blackToWhite);
    transition: opacity 0.2s ease;
}

#shop-list .product-search-clear:hover {
    opacity: 1;
}

#shop-list .product-search-clear:focus {
    outline: 2px solid var(--primary, #007bff);
    outline-offset: 2px;
}

#shop-list .product-search-results {
    margin-top: 8px;
    text-align: center;
    color: var(--blackToWhite, #333);
    font-size: 14px;
    display: none;
    padding: 8px;
}

#shop-list .category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--blackToWhite);
}

/* Mobile : 1 colonne */
@media (max-width: 575px) {
    #shop-list {
        gap: 20px;
    }

    #shop-list .shop-page-title {
        font-size: 28px;
    }

    #shop-list .shop-list-header p {
        font-size: 14px;
    }

    #shop-list .product-search-input {
        padding: 10px 36px 10px 14px;
        font-size: 14px;
    }
}

/* Petite tablette : 2 colonnes */
@media (min-width: 576px) and (max-width: 767px) {
    #shop-list {
        gap: 24px;
    }

    #shop-list .shop-page-title {
        font-size: 32px;
    }

    #shop-list .shop-list-header p {
        font-size: 14px;
    }

    #shop-list .product-search-input {
        padding: 12px 40px 12px 16px;
        font-size: 15px;
    }
}

/* Tablette : 2 colonnes */
@media (min-width: 768px) and (max-width: 991px) {
    #shop-list {
        gap: 32px;
    }

    #shop-list .shop-page-title {
        font-size: 36px;
    }

    #shop-list .shop-list-header p {
        font-size: 16px;
    }

    #shop-list .product-search-input {
        padding: 14px 44px 14px 18px;
        font-size: 16px;
    }
}

/* Desktop : 3 colonnes */
@media (min-width: 992px) {
    #shop-list {
        gap: 40px;
    }

    #shop-list .shop-list-header {
        text-align: left;
    }

    #shop-list .shop-page-title {
        font-size: 40px;
    }

    #shop-list .shop-list-header p {
        font-size: 18px;
    }

    #shop-list .product-search-input {
        padding: 16px 48px 16px 20px;
        font-size: 18px;
    }
}

/* Grands écrans : 4 colonnes */
@media (min-width: 1200px) {
    #shop-list {
        gap: 48px;
    }

    #shop-list .shop-page-title {
        font-size: 48px;
    }

    #shop-list .shop-list-header p {
        font-size: 20px;
    }

    #shop-list .product-search-input {
        font-size: 20px;
    }
}/* Sky Web Footer Component Styles */

.footer{
        width: 100%;
        height: 80px;
        background-color: #0f6674;
}/* Sky Web Header Component Styles */

.header{
        width: 100%;
        height: 80px;
        background-color: #0f6674;
}#stepBar>div {
    width: 10px;
    height: 10px;
    background-color: rgb(66, 66, 66);
    border-radius: 50%;
}.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10007;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    min-width: 300px;
    max-width: 400px;
    animation: toast-slide-in 0.3s ease-out;
    transition: all 0.3s ease;
    position: relative;
}

.toast--success {
    background-color: #d4edda;
    color: #155724;
}

.toast--warning {
    background-color: #fff3cd;
    color: #856404;
}

.toast--info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.toast--error {
    background-color: #f8d7da;
    color: #721c24;
}

.toast__icon {
    margin-right: 12px;
    font-size: 18px;
}

.toast__message {
    margin: 0;
}

.toast__close {
    color: black;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    opacity: 0.7;
}

.toast--exiting {
    animation: toast-slide-out 0.3s ease-in;
    opacity: 0;
    }

@keyframes toast-slide-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}#cart-added-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10006;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: none;
}

#cart-added-modal.cart-modal--visible {
    opacity: 1;
    visibility: visible;
}

#cart-added-modal .cart-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1;
}

#cart-added-modal .cart-modal__content {
    background: var(--background);
    position: relative;
    border: 1px solid var(--surface);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 60%;
    max-height: 90vh;
    width: 500px;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}

#cart-added-modal.cart-modal--visible .cart-modal__content {
    transform: translate(-50%, -50%) scale(1);
}

#cart-added-modal .cart-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 24px;
}

#cart-added-modal .cart-modal__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

#cart-added-modal .cart-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    font-size: 20px;
}

#cart-added-modal .cart-modal__body {
    background: var(--surface);
    padding: 32px;
}

#cart-added-modal .cart-modal__product {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

#cart-added-modal .cart-modal__product-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
}

#cart-added-modal .cart-modal__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cart-added-modal .cart-modal__product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#cart-added-modal .cart-modal__product-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--blackToWhite);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#cart-added-modal .cart-modal__product-reference,
#cart-added-modal .cart-modal__product-attribute,
#cart-added-modal .cart-modal__product-quantity,
#cart-added-modal .cart-modal__product-price {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--blackToWhite);
    padding: 4px 0;
}

#cart-added-modal .cart-modal__product-attribute {
    text-transform: capitalize;
}

#cart-added-modal .cart-modal__label {
    font-weight: 500;
    color: var(--blackToWhite);
}

#cart-added-modal .cart-modal__value {
    color: var(--blackToWhite);
}

#cart-added-modal .cart-modal__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

#cart-added-modal .cart-modal__button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

#cart-added-modal .cart-modal__button--secondary {
    background-color: var(--background);
    color: var(--blackToWhite);
}

<!-- #cart-added-modal .cart-modal__button--secondary:hover {
    background-color: #e9ecef;
} -->

#cart-added-modal .cart-modal__button--primary {
    background-color: var(--primary);
    color: white;
}

<!-- #cart-added-modal .cart-modal__button--primary:hover {
    background-color: #0056b3;
} -->

#cart-added-modal .cart-modal__complete-look {
    border-top: 1px solid var(--surface);
    padding: 32px;
    background: var(--surface);
}

#cart-added-modal .cart-modal__complete-look-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--blackToWhite);
    margin: 0 0 24px 0;
}

#cart-added-modal .cart-modal__suggestions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

#cart-added-modal .cart-modal__suggestion {
    background: var(--background);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid var(--background);
    transition: box-shadow 0.2s ease;
    text-align: center;
}

#cart-added-modal .cart-modal__suggestion:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #0056b3;
}

#cart-added-modal .cart-modal__suggestion-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 12px;
    background-color: var(--surface);
    border: 2px solid var(--surface);
}

#cart-added-modal .cart-modal__suggestion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cart-added-modal .cart-modal__suggestion-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--blackToWhite);
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
}

#cart-added-modal .cart-modal__suggestion-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--blackToWhite);
    margin: 0 0 12px 0;
}

#cart-added-modal .cart-modal__suggestion-btn {
    width: 100%;
    padding: 8px 12px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

<!-- #cart-added-modal .cart-modal__suggestion-btn:hover {
    background-color: #000;
} -->/* - SM - Small devices - landscape phones - */
@media (min-width: 576px) {
    #shop-list .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 200px));
    gap: 20px;
    justify-content: start;
}

/* Lien de produit pour écrans petits */
#shop-list .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-link:hover {
    text-decoration: none;
}

/* Bouton d'ajout au panier aligné en bas */
#shop-list .add-to-cart-button {
    margin-top: auto;
    margin-bottom: 0;
}    /* ===== PRODUIT DÉTAILS - TABLET ===== */

/* #region variants responsive */
#product_details .color-swatch {
    width: 32px;
    height: 32px;
}

#product_details .size-option {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
}

#product_details .format-option {
    min-width: 50px;
    height: 40px;
    font-size: 13px;
}

/* Styles pour color_square */
#product_details .color-square {
    width: 32px;
    height: 32px;
}

/* Styles pour color_text */
#product_details .color-text {
    padding: 6px 10px;
    font-size: 13px;
}

/* Styles pour generic-option */
#product_details .generic-option {
    padding: 6px 10px;
    font-size: 13px;
}
/* #endregion variants responsive */

/* #region carousel responsive */
#product_details .carousel-container {
    height: 400px;
    margin-bottom: 0;
}

#product_details .carousel-nav {
    display: flex;
}
/* #endregion carousel responsive */
}/* - MD - Medium devices - tablets - */
@media (min-width: 768px) {
    #shop-list {
    grid-template-columns: repeat(4, 1fr);
}

#shop-list .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#shop-list .card > * {
    width: 100%;
}

#shop-list .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 220px));
    gap: 24px;
    justify-content: start;
}

#shop-list .product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-name {
    font-size: 15px;
}

#shop-list .product-price {
    font-size: 17px;
}

/* Lien de produit pour écrans moyens */
#shop-list .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-link:hover {
    text-decoration: none;
}

/* Bouton d'ajout au panier aligné en bas */
#shop-list .add-to-cart-button {
    margin-top: auto;
    margin-bottom: 0;
}    .toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10007;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.toast {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    min-width: 300px;
    max-width: 400px;
    animation: toast-slide-in 0.3s ease-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toast--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.toast--warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.toast--info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.toast--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.toast__icon {
    margin-right: 12px;
    font-size: 18px;
    font-weight: bold;
}

.toast__content {
    flex: 1;
}

.toast__message {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.toast__close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toast__close:hover {
    opacity: 1;
}

.toast--exiting {
    animation: toast-slide-out 0.3s ease-in;
    opacity: 0;
    transform: translateX(100%);
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}    /* ===== PRODUIT DÉTAILS - DESKTOP ===== */

/* #region variants responsive */
#product_details .color-swatch {
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#product_details .color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--variant-border-hover, #BDBDBD);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

#product_details .color-swatch.active {
    border-color: var(--cliqued);
    border-width: 3px;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2), 0 4px 12px rgba(66, 133, 244, 0.3);
}

#product_details .color-swatch.unavailable {
    opacity: 0.5;
    filter: grayscale(0.6);
    cursor: pointer;
}

#product_details .size-option {
    min-width: 36px;
    height: 36px;
    font-size: 15px;
    border: 2px solid var(--variant-border, #E0E0E0);
    border-radius: 6px;
    background-color: var(--whiteToBlack);
    color: var(--blackToWhite);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
}

#product_details .size-option:hover {
    border-color: var(--variant-border-hover, #BDBDBD);
    background-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .size-option.active {
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    border-color: var(--cliqued);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .size-option.unavailable {
    opacity: 0.5;
    filter: grayscale(0.6);
    color: var(--variant-text-disabled, #9E9E9E);
    background-color: var(--variant-bg-disabled, #F5F5F5);
    cursor: pointer;
}

#product_details .format-option {
    min-width: 56px;
    height: 44px;
    font-size: 14px;
    border: 2px solid var(--variant-border, #E0E0E0);
    border-radius: 6px;
    background-color: var(--whiteToBlack);
    color: var(--blackToWhite);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
}

#product_details .format-option:hover {
    border-color: var(--variant-border-hover, #BDBDBD);
    background-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .format-option.active {
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    border-color: var(--cliqued);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .format-option.unavailable {
    opacity: 0.5;
    filter: grayscale(0.6);
    color: var(--variant-text-disabled, #9E9E9E);
    background-color: var(--variant-bg-disabled, #F5F5F5);
    cursor: pointer;
}

/* Styles pour color_square */
#product_details .color-square {
    width: 36px;
    height: 36px;
    border: 2px solid var(--variant-border, #E0E0E0);
    cursor: pointer;
    transition: all 0.3s ease;
}

#product_details .color-square:hover {
    transform: scale(1.1);
    border-color: var(--variant-border-hover, #BDBDBD);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

#product_details .color-square.active {
    border-color: var(--cliqued);
    border-width: 3px;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2), 0 4px 12px rgba(66, 133, 244, 0.3);
}

#product_details .color-square.unavailable {
    opacity: 0.5;
    filter: grayscale(0.6);
    cursor: pointer;
}

/* Styles pour color_text */
#product_details .color-text {
    padding: 8px 12px;
    border: 2px solid var(--variant-border, #E0E0E0);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--whiteToBlack);
    color: var(--blackToWhite);
    font-weight: 500;
    user-select: none;
}

#product_details .color-text:hover {
    border-color: var(--variant-border-hover, #BDBDBD);
    background-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .color-text.active {
    border-color: var(--cliqued);
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .color-text.unavailable {
    opacity: 0.5;
    filter: grayscale(0.6);
    color: var(--variant-text-disabled, #9E9E9E);
    background-color: var(--variant-bg-disabled, #F5F5F5);
    cursor: pointer;
}

/* Styles pour generic-option */
#product_details .generic-option {
    padding: 8px 12px;
    border: 2px solid var(--variant-border, #E0E0E0);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--whiteToBlack);
    color: var(--blackToWhite);
    font-weight: 500;
    user-select: none;
}

#product_details .generic-option:hover {
    border-color: var(--variant-border-hover, #BDBDBD);
    background-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#product_details .generic-option.active {
    border-color: var(--cliqued);
    background-color: var(--cliqued);
    color: var(--whiteToBlack);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transform: translateY(-1px);
}

#product_details .generic-option.unavailable {
    opacity: 0.5;
    filter: grayscale(0.6);
    color: var(--variant-text-disabled, #9E9E9E);
    background-color: var(--variant-bg-disabled, #F5F5F5);
    cursor: pointer;
}
/* #endregion variants responsive */

/* #region layout responsive */
#product_details .product-details-layout {
    display: flex;
    gap: 42px;
    align-items: flex-start;
}

#product_details .product-main-section {
    flex: 1;
    max-width: 50%;
    display: flex;
    gap: 16px;
}

#product_details .carousel-container {
    display: none;
}

#product_details .thumbnails-desktop {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

#product_details .main-product-image {
    display: flex;
    flex: 1;
}

#product_details .main-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* #endregion layout responsive */
}/* - LG - Large devices - desktops - */
@media (min-width: 992px) {
    #backToTop {
    bottom: 20px;
    right: 20px;
}

#backToTop:hover {
    background-color: brown;
}    /* Carousel - Desktop (LG) */

/* #region product et category */

<!-- .category-carousel a:hover .card {
    background-color: var(--tertiary) !important;
    box-shadow: rgba(120, 120, 120, 0.05) 0 6px 12px -2px, rgba(120, 120, 120, 0.1) 0 3px 7px -3px;
    transform: translate(0px, -8px);
} -->
    
<!-- .product-carousel a:hover .card {
    background-color: var(--tertiary) !important;
    box-shadow: rgba(120, 120, 120, 0.05) 0 6px 12px -2px, rgba(120, 120, 120, 0.1) 0 3px 7px -3px;
    transform: translate(0px, -8px);
} -->

/* #endregion product et category */     /* Cart Modal - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    #cart .cart-modal__content {
        width: 700px;
        max-width: 90%;
    }
    
    #cart .cart-modal__suggestions {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    #cart .cart-modal__suggestion {
        padding: 20px;
    }
    
    #cart .cart-modal__suggestion-image {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }
    
    #cart .cart-modal__suggestion-name {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    #cart .cart-modal__suggestion-price {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    #cart .cart-modal__suggestion-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Cart Modal - Desktop */
@media (min-width: 1024px) {
    #cart .cart-modal__content {
        width: 900px;
        max-width: 80%;
        max-height: 85vh;
    }
    
    #cart .cart-modal__suggestions {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    #cart .cart-modal__suggestion {
        flex: 1;
        min-width: 0;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #cart .cart-modal__suggestion-image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    #cart .cart-modal__suggestion-name {
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    #cart .cart-modal__suggestion-price {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    #cart .cart-modal__suggestion-btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
        max-width: 120px;
    }
}     #profile-informations {
    grid-template-columns: 225px 1fr;
}

#profile-informations .delete {
    max-width: 371px;
}    #shop-list .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 240px));
    gap: 24px;
    justify-content: start;
}

/* Lien de produit pour écrans larges */
#shop-list .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-link:hover {
    text-decoration: none;
}

/* Bouton d'ajout au panier aligné en bas */
#shop-list .add-to-cart-button {
    margin-top: auto;
    margin-bottom: 0;
}        /* Styles pour les variants sur écrans larges - cohérents avec la liste */

#product_details .size-option {
    font-size: 13px;
    padding: 6px 10px;
}

/* Styles pour color_square */
#product_details .color-square {
    width: 34px;
    height: 34px;
}

/* Styles pour color_text */
#product_details .color-text {
    padding: 6px 12px;
    font-size: 13px;
}

/* Styles pour generic-option */
#product_details .generic-option {
    padding: 6px 12px;
    font-size: 13px;
}
    #profile-addresses {
    grid-template-columns: 225px 1fr;
}    #liste-commandes {
    grid-template-columns: 225px 1fr;
}
}/* - XL - X-Large devices - large desktops - */
@media (min-width: 1200px) {
    #shop-list .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#shop-list .card > * {
    width: 100%;
}

/* Lien de produit pour écrans très larges */
#shop-list .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-link:hover {
    text-decoration: none;
}

/* Bouton d'ajout au panier aligné en bas */
#shop-list .add-to-cart-button {
    margin-top: auto;
    margin-bottom: 0;
}    /* Styles pour les variants sur écrans très larges - cohérents avec la liste */

#product_details .size-option {
    font-size: 14px;
    padding: 8px 12px;
}

/* Styles pour color_square */
#product_details .color-square {
    width: 38px;
    height: 38px;
}

/* Styles pour color_text */
#product_details .color-text {
    padding: 8px 14px;
    font-size: 14px;
}

/* Styles pour generic-option */
#product_details .generic-option {
    padding: 8px 14px;
    font-size: 14px;
}
}/* - XXL - XX-Large devices - larger desktops - */
@media (min-width: 1400px) {
    /* Carousel */

/* #region banner */

/* .base-carousel {
    height: 350px;
} */

.base-carousel button {
    outline: none;
}

/* #endregion banner */

/* #region product et category */
.carousel-bouton-left {
    left: -22px;
    height: 50px;
    width: 50px;
    font-size: 1.25rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-bouton-right {
    right: -22px;
    height: 50px;
    width: 50px;
    font-size: 1.25rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    z-index: 2;
}

/* Responsive pour les boutons du carousel base sur très grands écrans */
.base-carousel .carousel-bouton-left {
    left: 16px;
}

.base-carousel .carousel-bouton-right {
    right: 16px;
}

/* #endregion product et category */    #shop-list .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
    gap: 24px;
    justify-content: start;
}

/* Lien de produit pour écrans très très larges */
#shop-list .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shop-list .product-link:hover {
    text-decoration: none;
}

/* Bouton d'ajout au panier aligné en bas */
#shop-list .add-to-cart-button {
    margin-top: auto;
    margin-bottom: 0;
}    /* Styles pour les variants sur écrans très très larges - cohérents avec la liste */

#product_details .size-option {
    font-size: 15px;
    padding: 10px 14px;
}

/* Styles pour color_square */
#product_details .color-square {
    width: 40px;
    height: 40px;
}

/* Styles pour color_text */
#product_details .color-text {
    padding: 10px 16px;
    font-size: 15px;
}

/* Styles pour generic-option */
#product_details .generic-option {
    padding: 10px 16px;
    font-size: 15px;
}
}
/* - Component End - *//* - Layout - */
/* Grid */

.carousel-5 {
    grid-auto-columns: calc((100% / 5) - 12px);
    /* grid-auto-columns: calc(100% / 1); */
}

@media screen and(max-width: 900px) {
    .carousel-5 {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and(max-width: 600px) {
    .carousel-5 {
        grid-auto-columns: 100%;
    }
}/* - Utilite - */
/* Animation */

.animation-transition-05 {
    transition: 0.5s ease-in-out;
}/* Appearance */

/* #region opacity */

.appearance-opacity-0 {
    opacity: 0;
}

.appearance-opacity-1 {
    opacity: 1;
}

/* #endregion opacity */

/* #region cursor */

.appearance-cursor-pointer {
    cursor: pointer;
}

.appearance-cursor-grab {
    cursor: grab;
}

/* #endregion cursor */

.appearance-z-index-2 {
    z-index: 2;
}

.appearance-z-index-3 {
    z-index: 3;
}

.appearance-z-index-25 {
    z-index: 25;
}

.appearance-z-index-50 {
    z-index: 50;
}

.appearance-select-none {
    user-select: none;
}

.appearance-blur-5px {
    filter: blur(5px);
}

.appearance-overflow-hidden {
    overflow: hidden;
}

.appearance-cip-path-unset {
    clip-path: inset(0);
}/* Border */

.border-collapse {
    border-collapse: collapse;
}

.border-none {
    border: none;
}

.border-primary {
    border: 1px solid var(--primary);
}

.border-black-to-white {
    border: 1px solid var(--blackToWhite);
}

.border-top-black-to-white {
    border-top: 1px solid var(--blackToWhite);
}

@media (max-width: 767px) {
    .border-top-black-to-white-under-md {
        border-top: 1px solid var(--blackToWhite);
    }
}

.border-bottom-black-to-white {
    border-bottom: 1px solid var(--blackToWhite);
}

@media (min-width: 768px) {
    .border-bottom-black-to-white-md {
        border-bottom: 1px solid var(--blackToWhite);
    }
}

.border-bottom-black-to-white-2px {
    border-bottom: 2px solid var(--blackToWhite);
}

/* #region radius */

.border-radius-0 {
    border-radius: 0;
}

@media (min-width: 768px) {
    .border-radius-0-lg {
        border-radius: 0;
    }
}

.border-radius-50 {
    border-radius: 50%;
}

.border-radius-6px {
    border-radius: 6px;
}

.border-radius-40px {
    border-radius: 40px;
}

@media (max-width: 767px) {
    .border-top-left-radius-20px-under-lg {
        border-top-left-radius: 20px;
    }
}

@media (max-width: 767px) {
    .border-top-right-radius-20px-under-lg {
        border-top-right-radius: 20px;
    }
}

/* #endregion radius */

/* #region outline */

.border-outline-none {
    outline: none
}

/* #endregion outline *//* Color */
/* #region color */

.color-black-to-white {
    color: var(--blackToWhite);
}

.color-white-to-black {
    color: var(--whiteToBlack);
}

.color-svg-black-to-white {
    filter: var(--svgBlackToWhite);
}

.color-svg-white-to-black {
    filter: var(--svgWhiteToBlack);
}

.color-white {
    color: white;
}

.color-black {
    color: black;
}

.color-red {
    color: red;
}

.color-green {
    color: green;
}

.color-primary {
    color: var(--primary);
}

.color-unset {
    color: unset;
}

/* #endregion color */
/* #region backgrournd */

.color-bg-none {
    background: none;
}

.color-bg-transparent {
    background-color: transparent;
}

.color-bg-reverse {
    background-color: var(--blackToWhite);
}

.color-bg-transparent-to-white {
    background-color: var(--transparentToWhite);
}

.color-bg-white {
    background-color: white;
}

@media (min-width: 768px) {
    .color-bg-white-md {
        background-color: white;
    }
}

.color-bg-black {
    background-color: black;
}

.color-bg-primary {
    background-color: var(--primary);
}

.color-bg-secondary {
    background-color: var(--secondary);
}

.color-bg-tertiary {
    background-color: var(--tertiary);
}

.color-bg-surface {
    background-color: var(--surface);
}

.color-bg-background {
    background-color: var(--background);
}

/* #endregion backgrournd *//* Display */

.display-block {
    display: block;
}

@media (max-width: 767px) {
    .display-block-under-md {
        display: block;
    }
}

@media (max-width: 991px) {
    .display-block-under-lg {
        display: block;
    }
}

@media (min-width: 992px) {
    .display-block-lg {
        display: block;
    }
}

.display-none {
    display: none;
}

@media (min-width: 768px) {
    .display-none-md {
        display: none;
    }
}

@media (min-width: 992px) {
    .display-none-lg {
        display: none;
    }
}

@media (max-width: 767px) {
    .display-none-under-md {
        display: none;
    }
}

@media (max-width: 991px) {
    .display-none-under-lg {
        display: none;
    }
}

.display-inline-block {
    display: inline-block;
}

/* #region flex */

.display-flex {
    display: flex;
}

@media (min-width: 576px) {
    .display-flex-sm {
        display: flex;
    }
}

@media (max-width: 767px) {
    .display-flex-under-md {
        display: flex;
    }
}

@media (min-width: 768px) {
    .display-flex-md {
        display: flex;
    }
}

@media (max-width: 991px) {
    .display-flex-under-lg {
        display: flex;
    }
}

@media (min-width: 992px) {
    .display-flex-lg {
        display: flex;
    }
}

.flex-wrap {
    flex-wrap: wrap;
}

/* #region flex-direction */

@media (min-width: 768px) {
    .display-direction-row-md {
        flex-direction: row;
    }
}

.display-direction-column {
    flex-direction: column;
}

@media (max-width: 767px) {
    .display-direction-column-under-md {
        flex-direction: column;
    }
}

@media (min-width: 767px) {
    .display-direction-column-md {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .display-direction-column-under-lg {
        flex-direction: column;
    }
}

.display-direction-row-reverse {
    flex-direction: row-reverse;
}

/* #endregion flex-direction */
/* #region grow */

.display-flex-grow-1 {
    flex-grow: 1;
}

.display-flex-grow-3 {
    flex-grow: 3;
}

.display-flex-grow-7 {
    flex-grow: 7;
}

/* #endregion grow */

/* #endregion flex */
/* #region grid */

.display-grid {
    display: grid;
}

@media (min-width: 767px) {
    .display-grid-md {
        display: grid;
    }
}

@media (max-width: 767px) {
    .display-grid-under-md {
        display: grid;
    }
}

@media (min-width: 767px) and (max-width: 1024px) {
    .display-grid-md-lg {
        display: grid;
    }
}

@media (min-width: 992px) {
    .display-grid-lg {
        display: grid;
    }
}

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

@media (max-width: 991px) {
    .display-grid-1-1-under-lg {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .display-grid-1-1-row {
        grid-template-rows: repeat(2, 1fr);
    }
}
.display-grid-1-1-1 {
    grid-template-columns: repeat(3, 1fr);
}

.display-grid-3-7 {
    grid-template-columns: 3fr 7fr;
}

.display-grid-4-6 {
    grid-template-columns: 4fr 6fr;
}

.display-grid-6-4 {
    grid-template-columns: 6fr 4fr;
}

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

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

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

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

.grid-column-3 {
    grid-column: 3;
}

/* #region auto-flow */

.display-grid-auto-flow-column {
    grid-auto-flow: column;
}

/* #endregion auto-flow */

/* #region auto-columns */

.display-grid-auto-columns-100 {
    grid-auto-columns: 100%;
}

/* #endregion auto-columns */

/* #endregion grid */
/* #region justify-content */

.display-content-flex-start {
    justify-content: flex-start;
}

.display-content-start {
    justify-content: start;
}

.display-content-center {
    justify-content: center;
}

.display-content-end {
    justify-content: end;
}

.display-content-space-between {
    justify-content: space-between;
}

/* #endregion justify-content */

.justify-self-center {
    justify-self: center;
}

/* #region align-content */

.display-align-content-center {
    align-content: center;
}

.display-content-stretch {
    align-content: stretch;
}

/* #endregion align-content */
/* #region align-items */

.display-items-start {
    align-items: start;
}

.display-items-center {
    align-items: center;
}

@media (min-width: 768px) {
    .display-items-center-md {
        align-items: center;
    }
}

@media (min-width: 992px) {
    .display-items-center-lg {
        align-items: center;
    }
}

.display-items-end {
    align-items: end;
}

.display-items-stretch {
    align-items: stretch;
}

/* #endregion align-items */
/* #region align */

.display-align-self-center {
    align-self: center;
}

/* #endregion align */

/* #region position */

.display-position-fixed {
    position: fixed;
}

.display-position-sticky {
    position: sticky;
}

.display-position-relative {
    position: relative;
}

.display-position-absolute {
    position: absolute;
}

/* #endregion position */

/* #region placement*/

.display-top-0 {
    top: 0;
}

.display-top-20px {
    top: 20px;
}

.display-top-50 {
    top: 50%;
}

.display-bottom-negative-100 {
    bottom: -100%;
}

.display-right-20px {
    right: 20px;
}

.display-left-20px {
    left: 20px;
}

/* #endregion placement*/

/* #region order */

@media (max-width: 991px) {
    .order-1-under-lg {
        order: 1;
    }
    
    .order-2-under-lg {
        order: 2;
    }
}

.order-2-under-lg {
    order: 2;
}

@media (min-width: 992px) {
    .order-1-lg {
        order: 1;
    }
    
    .order-2-lg {
        order: 2;
    }
}

/* #endregion order *//* Font */

.font-capitalize {
    text-transform: capitalize;
}

.font-uppercase {
    text-transform: uppercase;
}

.font-underline {
    text-decoration: underline;
}

.crossed {
    text-decoration: line-through;
}

/* #region size */

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

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

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

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

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

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

@media (max-width: 767px) {
    .font-size-18-under-md {
        font-size: 18px;
    }
}

.font-size-22 {
    font-size: 22px;
}

.font-size-24 {
    font-size: 24px;
}

@media (min-width: 768px) {
    .font-size-24-md {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .font-size-33-under-md {
        font-size: 33px;
    }
}

.font-size-33 {
    font-size: 33px;
}

@media (min-width: 768px) {
    .font-size-33-md {
        font-size: 33px;
    }
}

@media (max-width: 991px) {
    .font-size-33-under-lg {
        font-size: 33px;
    }
}

.font-size-45 {
    font-size: 45px;
}

.font-size-48 {
    font-size: 48px;
}

@media (min-width: 992px) {
    .font-size-48-lg {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .font-size-48-under-lg {
        font-size: 48px;
    }
}

.font-size-70 {
    font-size: 70px;
}

@media (min-width: 767px) {
    .font-size-70-md {
        font-size: 70px;
    }
}

@media (min-width: 992px) {
    .font-size-70-lg {
        font-size: 70px;
    }
}

/* #endregion size */
/* #region weight */

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

/* #endregion weight */

.line-height-19px {
    line-height: 19px;
}

.line-height-26px {
    line-height: 26px;
}

.line-height-62px {
    line-height: 62px;
}

.font-align-center {
    text-align: center;
}/* Scroll */

/* #region behavior */

.scroll-behavior-auto {
    scroll-behavior: auto;
}

.scroll-behavior-smooth {
    scroll-behavior: smooth;
}

/* #endregion behavior */

/* #region snap */

.scroll-snap-type-none {
    scroll-snap-type: none;
}

.scroll-snap-type-x-mandatory {
    scroll-snap-type: x mandatory;
}

.scroll-snap-align-start {
    scroll-snap-align: start;
}

/* #endregion snap *//* Sizing */
/* #region width */

.sizing-w-auto {
    width: auto;
}

.sizing-w-20 {
    width: 20%;
}

.sizing-w-50 {
    width: 50%;
}

.sizing-w-80 {
    width: 80%;
}

.sizing-w-100 {
    width: 100%;
}

.sizing-w-100vw {
    width: 100vw;
}

.sizing-w-100px {
    width: 100px;
}

.sizing-w-150px {
    width: 150px;
}

.sizing-max-w-fit-content {
    max-width: fit-content;
}

@media (min-width: 992px) {
    .sizing-max-w-468px-lg {
        max-width: 468px;
    }
}

/* #endregion width */

/* #region height */

.sizing-h-auto {
    height: auto;
}

.sizing-h-70 {
    height: 70%;
}

.sizing-h-80 {
    height: 80%;
}

.sizing-h-100 {
    height: 100%;
}

@media (min-width: 1024px) {
    .sizing-h-100-lg {
        height: 100%;
    }
}

.sizing-h-32px {
    height: 32px;
}

.sizing-h-100px {
    height: 100px;
}

.sizing-h-150px {
    height: 150px;
}

.sizing-h-400px {
    height: 400px;
}

.sizing-max-h-60vh {
    max-height: 60vh;
}

.sizing-max-h-70vh {
    max-height: 70vh;
}

.sizing-min-h-300px {
    min-height: 300px;
}

/* #endregion height */

/* #region object-fit */

.sizing-object-fit-cover {
    object-fit: cover;
}

.sizing-object-fit-contain {
    object-fit: contain;
}

.sizing-height-fit-content {
    height: fit-content;
}

/* #endregion object-fit */

/* #region product image sizing */

.sizing-w-900px {
    width: 900px;
}

.sizing-h-700px {
    height: 700px;
}

.sizing-w-100px {
    width: 100px;
}

.sizing-h-100px {
    height: 100px;
}

.sizing-w-125px {
    width: 125px;
}

.sizing-h-125px {
    height: 125px;
}

.sizing-w-150px {
    width: 150px;
}

.sizing-h-200px {
    height: 200px;
}

/* #endregion product image sizing *//* Spacing */
/* #region margin */

@media (min-width: 768px) and (max-width: 991px) {
    .spacing-margin-t-32px-md-lg {
        margin-top: 32px;
    }
}

.spacing-margin-tb-16px {
    margin: 16px 0;
}

.spacing-margin-lr-53px {
    margin: 0 53px;
}

.spacing-margin-l-16px {
    margin-left: 16px;
}

/* #endregion margin */
/* #region padding */

.spacing-padding-4px {
    padding: 4px;
}

.spacing-padding-8px {
    padding: 8px;
}

.spacing-padding-16px {
    padding: 16px;
}

.spacing-padding-24px {
    padding: 25px;
}

.spacing-padding-32px {
    padding: 32px;
}

.spacing-padding-48px {
    padding: 48px;
}

.spacing-padding-t-4px {
    padding-top: 4px;
}

.spacing-padding-t-16px {
    padding-top: 16px;
}

@media (max-width: 767px) {
    .spacing-padding-t-16px-under-md {
        padding-top: 16px;
    }
}

.spacing-padding-t-24px {
    padding-top: 24px;
}

.spacing-padding-t-32px {
    padding-top: 32px;
}

.spacing-padding-t-48px {
    padding-top: 48px;
}

.spacing-padding-r-16px {
    padding-right: 16px;
}

.spacing-padding-r-56px {
    padding-right: 56px;
}

.spacing-padding-b-8px {
    padding-bottom: 8px;
}

.spacing-padding-b-16px {
    padding-bottom: 16px;
}

@media (min-width: 768px) {
    .spacing-padding-b-16px-md {
        padding-bottom: 16px;
    }
}

.spacing-padding-b-24px {
    padding-bottom: 24px;
}

.spacing-padding-b-32px {
    padding-bottom: 32px;
}

.spacing-padding-l-16px {
    padding-left: 16px;
}

.spacing-padding-lr-8px {
    padding: 0 8px;
}

.spacing-padding-lr-12px {
    padding: 0 12px;
}

.spacing-padding-lr-16px {
    padding: 0 16px;
}

.spacing-padding-lr-24px {
    padding: 0 24px;
}

.spacing-padding-lr-32px {
    padding: 0 32px;
}

.spacing-padding-lr-48px {
    padding: 0 48px;
}

.spacing-padding-tb-8px {
    padding: 8px 0;
}

.spacing-padding-tb-16px {
    padding: 16px 0;
}

.spacing-padding-tb-24px {
    padding: 24px 0;
}

.spacing-padding-tb-32px {
    padding: 32px 0;
}

.spacing-padding-tb-64px {
    padding: 64px 0;
}

.spacing-padding-tb-72px {
    padding: 72px 0;
}

.spacing-padding-tb-87px {
    padding: 87px 0;
}

.spacing-padding-tb-4px-lr-8px {
    padding: 4px 8px;
}

.spacing-padding-tb-8px-lr-16px {
    padding: 8px 16px;
}

.spacing-padding-tb-16px-lr-8px {
    padding: 16px 8px;
}

.spacing-padding-tb-16px-lr-32px {
    padding: 16px 32px;
}

.spacing-padding-tb-32px-lr-16px {
    padding: 32px 16px;
}

.spacing-padding-tb-48px-lr-24px {
    padding: 48px 12px;
}

.spacing-padding-tb-24px-lr-48px {
    padding: 24px 48px;
}

@media (min-width: 992px) {
    .spacing-padding-b-16px-l-72px-lg {
        padding: 0 0 16px 72px;
    }
}

/* #endregion padding */
/* #region gap */

.spacing-gap-7 {
    gap: 7%;
}

.spacing-gap-4px {
    gap: 4px;
}

.spacing-gap-8px {
    gap: 8px;
}

@media (max-width: 767px) {
    .spacing-gap-8px-under-md {
        gap: 8px;
    }
}

.spacing-gap-12px {
    gap: 12px;
}

.spacing-gap-16px {
    gap: 16px;
}

@media (min-width: 768px) {
    .spacing-gap-16px-md {
        gap: 16px;
    }
}

.spacing-gap-26px {
    gap: 26px;
}

.spacing-gap-32px {
    gap: 32px;
}

.spacing-gap-42px {
    gap: 42px;
}

.spacing-gap-56px {
    gap: 56px;
}

.spacing-gap-104px {
    gap: 104px;
}

.spacing-gap-16px-56px {
    gap: 16px 56px;
}

/* #endregion gap */

.spacing-top-0 {
    top: 0;
}

.spacing-top-50 {
    top: 50%;
}

.spacing-top-test {
    top: calc(50% + 12px);
}

.spacing-right-0 {
    right: 0;
}

.spacing-bottom-negative-100 {
    bottom: -100%;
}

.spacing-left-0 {
    left: 0;
}

.spacing-left-50 {
    left: 50%;
}

.spacing-left-negative-20px {
    left: -20px;
}

.spacing-right-negative-20px {
    right: -20px;
}


.spacing-translate-50-0 {
    transform: translate(50%, 0);
}

.spacing-translate-N50-0 {
    transform: translate(-50%, 0);
}

.spacing-translate-0-N50 {
    transform: translate(0, -50%);
}

.spacing-translate-50-N50 {
    transform: translate(50%, -50%);
}

.spacing-translate-N50-N50 {
    transform: translate(-50%, -50%);
}