:root {
    --beige: #b37f50;
    --beige-light: #e2c8ae;
    --beige-dark: #5e332b;
    --white: #faf7f8;
    --rose: #dda2a6;

    --primary: var(--beige);
    --primary-light: var(--beige-light);
    --primary-dark: var(--beige-dark);
    --success: var(--beige-dark);
    --danger: #b85757;
    --warning: var(--rose);
    --info: var(--beige);

    --bg-primary: var(--white);
    --bg-secondary: #f8f2ec;
    --bg-tertiary: #f4ebe2;
    --bg-card: #fffdfb;

    --text-primary: var(--beige-dark);
    --text-secondary: var(--beige);
    --text-muted: #b8926f;

    --border-color: rgba(179, 127, 80, 0.3);
    --shadow: 0 0.625rem 1.875rem rgba(94, 51, 43, 0.1);
    --radius: 1rem;
    --radius-sm: 0.625rem;
}

@font-face {
    font-family: 'acumin-pro-extralight';
    src: url('../font/acumin-pro-extralight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'acumin-pro-extralight', sans-serif;
    background: var(--bg-primary);
    background-image: url('../images/PARTICLES TEXTURE.png');
    color: var(--text-primary);
    min-height: 100vh;
}

.disabled {
    display: none !important;
}

/* Header */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 4vh 10vw 1.5vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.logo {
    display: flex;
    font-family: 'acumin-pro-extralight', sans-serif;
    gap: 0;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 20vh;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5vw;
}

.nav-links a {
    font-family: 'acumin-pro-extralight', sans-serif;
    text-decoration: none;
    color: var(--beige);
    font-size: 1vw;
    font-weight: 400;
    letter-spacing: 0.05vw;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--beige-dark);
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-btn {
    position: relative;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.cart-btn:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -0.3125rem;
    right: -0.3125rem;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
.main-content {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

/* Footer */
.footer {
    display: flex;
    width: 100%;
    height: 36vh;
    background-color: var(--beige-light);
}

.footer-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 5vh 5vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.deco-texture-footer {
    position: absolute;
    left: -13vw;
    width: 50vw;
    height: 45vw;
    top: -12vh;
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
}

.deco-texture-footer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 0.3;
}

.footer-title {
    position: relative;
    z-index: 1;
    font-size: 1.5vw;
    font-family: 'acumin-pro-extralight', sans-serif;
    font-style: italic;
    font-weight: normal;
    color: var(--beige-dark);
    margin-left: 5vw;
    margin-bottom: 1vh;
}

.footer-text {
    position: relative;
    z-index: 1;
    font-size: 0.8vw;
    color: var(--beige-dark);
    line-height: 1.6;
    margin-bottom: 2vh;
    text-align: center;
}

.footer-socials {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1vw;
    left: 3.5vw;
}

.social-link {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(0.8);
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh 5vw;
}

.footer-logo {
    height: 25vh;
    width: auto;
}

.view {
    display: none;
    animation: fadeIn 0.4s ease;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.7rem;
    font-family: 'acumin-pro-extralight', sans-serif;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header h1 i {
    color: var(--primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 9rem 9rem 1rem 1rem;
    width: 15rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0.9375rem 0.9375rem 0.9375rem 0px rgb(94 51 43);
    -webkit-box-shadow: 0.9375rem 0.9375rem 0.9375rem 0px rgba(94, 51, 43, 0.66);
    -moz-box-shadow: 0.9375rem 0.9375rem 0.9375rem 0px rgba(94, 51, 43, 0.66);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.card-qty-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.card-qty-row .btn {
    flex-shrink: 0;
}

.card-qty-row .quantity-input {
    flex: 1;
}

.card-image {
    height: 12.5rem;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-image .placeholder {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Products Grid */
.products-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 9rem 9rem 1rem 1rem;
    width: 17rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0.9375rem 0.9375rem 0.9375rem 0px rgb(94 51 43);
    -webkit-box-shadow: 0.9375rem 0.9375rem 0.9375rem 0px rgba(94, 51, 43, 0.66);
    -moz-box-shadow: 0.9375rem 0.9375rem 0.9375rem 0px rgba(94, 51, 43, 0.66);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.product-image {
    height: 13.75rem;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image .placeholder {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-promo {
    background: var(--danger);
    color: white;
}

.badge-featured {
    background: var(--warning);
    color: var(--beige-dark);
}

.badge-custom {
    background: var(--primary);
    color: white;
}

.product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: space-evenly;
    flex-direction: row;
    margin-top: auto;
}

.product-actions > .btn {
    flex: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'acumin-pro-extralight', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--rose);
    color: var(--rose);
    flex: 1;
}

.btn-primary:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(221, 162, 166, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--beige);
    color: var(--beige);
}

.btn-outline:hover {
    border-color: var(--beige-dark);
    color: var(--beige-dark);
    background: rgba(179, 127, 80, 0.08);
}

.btn-icon {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.detail-image {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.5;
    background: var(--bg-tertiary);
}

.detail-info {
    padding: 1rem 0;
}

.detail-category {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-category .badge {
    background: rgba(179, 127, 80, 0.14);
    color: var(--beige-dark);
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detail-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-price .price-current {
    font-size: 2.5rem;
}

.detail-price .price-original {
    font-size: 1.3rem;
}

.detail-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.detail-stock.in-stock {
    color: var(--success);
}

.detail-stock.low-stock {
    color: var(--warning);
}

.detail-stock.out-of-stock {
    color: var(--danger);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-input {
    display: flex;
    align-items: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-btn {
    width: 2.75rem;
    height: 2.75rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--primary);
}

.quantity-input input {
    width: 3.75rem;
    height: 2.75rem;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-actions {
    display: flex;
    gap: 1rem;
}

.detail-actions .btn-primary {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* All products link */
.all-products-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(94, 51, 43, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 200;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -25rem;
    width: 25rem;
    max-width: 100%;
    height: 100%;
    background: #fffaf6;
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
    z-index: 201;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.cart-header h2 i {
    color: var(--primary);
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-cart:hover {
    color: var(--danger);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--primary);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-options {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--success);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-item-qty button {
    width: 1.75rem;
    height: 1.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.cart-item-qty button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.cart-item-qty span {
    width: 1.875rem;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.cart-item-remove:hover {
    opacity: 1;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cart-total strong {
    color: var(--success);
    font-size: 1.5rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(94, 51, 43, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 300;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fffaf6;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-size: 1.25rem;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

/* Customization Options */
.option-group {
    margin-bottom: 1.5rem;
}

.option-group-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-group-title .required {
    color: var(--danger);
    font-size: 0.8rem;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.option-item:hover {
    border-color: var(--primary);
}

.option-item.selected {
    border-color: var(--primary);
    background: rgba(179, 127, 80, 0.08);
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.option-label {
    flex: 1;
}

.option-price {
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.option-price.negative {
    color: var(--danger);
}

.number-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.number-option input {
    width: 80px;
    padding: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-align: center;
}

.custom-total {
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
}

.custom-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.custom-total-row.final {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.custom-total-row.final .value {
    color: var(--success);
}

.modal-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Toast */
.toast {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-15vh);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: all 0.3s;
    z-index: 400;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: rgb(255 255 255 / 80%);
}

.toast.error {
    border-color: var(--danger);
    background: rgba(184, 87, 87, 0.08);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Loading */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.spinner {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.1875rem solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.25rem 0.75rem;
        gap: 0.75rem;
    }

    .logo-img {
        height: 4.5rem;
    }

    .header-right {
        gap: 0.75rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.875rem;
        letter-spacing: 0;
    }

    .cart-btn {
        width: 2.75rem;
        height: 2.75rem;
    }

    /* Footer empilé en colonne */
    .footer {
        flex-direction: column;
        height: auto;
    }

    .footer-left {
        padding: 2.5rem 1.5rem 1.5rem;
        align-items: center;
    }

    .footer-title {
        font-size: 1.25rem;
        margin-left: 0;
        text-align: center;
    }

    .footer-text {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-socials {
        left: auto;
        gap: 0.875rem;
        justify-content: center;
    }

    .social-link {
        width: 2.5rem;
        height: 2.5rem;
    }

    .deco-texture-footer {
        left: -8rem;
        width: 18rem;
        height: 18rem;
        top: -2rem;
    }

    .deco-texture-footer img {
        object-fit: cover;
    }

    .footer-right {
        padding: 1.5rem;
        border-top: 1px solid rgba(179, 127, 80, 0.2);
    }

    .footer-logo {
        height: 8rem;
    }

    .main-content {
        padding: 1.25rem 1rem 3rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h1 {
        font-size: 1.75rem;
        gap: 0.5rem;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    /* Cartes catégories : flex-wrap + 2 par ligne */
    .cards-grid {
        flex-wrap: wrap;
        gap: 1.25rem;
        justify-content: center;
    }

    /*.card {
        width: clamp(9rem, 44%, 13rem);
    }*/

    /* Produits */
    .products-grid {
        gap: 1.25rem;
    }

    .product-card {
        width: clamp(14rem, 100%, 17rem);
    }

    /* Détail produit */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-title {
        font-size: 1.75rem;
    }

    .detail-price .price-current {
        font-size: 2rem;
    }

    /* Panier */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Checkout Styles */
.checkout-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.checkout-section h4 i {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkout-summary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-summary h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.checkout-summary h4 i {
    color: var(--primary);
}

.summary-items {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-secondary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    font-size: 1.2rem;
}

.summary-total strong {
    color: var(--success);
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.order-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.order-success p {
    color: var(--text-muted);
}

.order-number {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1.5rem 0;
}

.order-number span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.order-number strong {
    font-size: 1.25rem;
    color: var(--primary);
}

.order-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Groupe conditionnel enfant */
.option-group.option-group-child {
    margin-top: 0.625rem;
    padding: 0.75rem 0.875rem;
    border-left: 0.1875rem solid var(--primary, #b07d6e);
    background: rgba(176, 125, 110, 0.05);
    border-radius: 0 0.625rem 0.625rem 0;
}

.option-group.option-group-child .option-group-title {
    font-size: 0.92rem;
    opacity: 0.9;
}

.option-group.option-group-child .option-group-title i {
    font-size: 0.8em;
    opacity: 0.6;
    margin-right: 4px;
}

/* Sous-groupe conditionnel (conteneur animé) */
.sous-groupe-cond {
    margin: 0.375rem 0 0 1rem;
    animation: fadeSlideIn 0.2s ease;
    overflow: hidden;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Champ number avec boutons +/- ──────────────────────────────── */
.number-option {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.number-option label {
    font-size: 0.9rem;
    font-weight: 500;
}

.number-option-input {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.number-option-input input[type="number"] {
    width: 4.0625rem;
    text-align: center;
    padding: 0.5rem;
    border: 1.5px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    -moz-appearance: textfield;
}

.number-option-input input[type="number"]::-webkit-inner-spin-button,
.number-option-input input[type="number"]::-webkit-outer-spin-button {
    display: none;
}

.qty-btn {
    width: 2.125rem;
    height: 2.125rem;
    border: 1.5px solid #ddd;
    border-radius: 0.5rem;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    color: #555;
}

.qty-btn:hover {
    background: var(--primary, #b07d6e);
    color: #fff;
    border-color: var(--primary, #b07d6e);
}

/* ── Champ texte libre ──────────────────────────────────────────── */
.text-option {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem 0;
}

.text-option label {
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
}

.text-option-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #ddd;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.text-option-input:focus {
    outline: none;
    border-color: var(--primary, #b07d6e);
    box-shadow: 0 0 0 3px rgba(176, 125, 110, 0.15);
}

.char-counter {
    font-size: 0.75rem;
    color: #aaa;
    text-align: right;
    transition: color 0.2s;
}

.char-counter.near-limit {
    color: #e67e22;
}

.char-counter.at-limit {
    color: #e74c3c;
}

/* ── Full-page Customisation View ─────────────────────────────────────── */
#viewCustomisation {
    padding-bottom: 2rem;
}

.cust-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'acumin-pro-extralight', sans-serif;
    margin-bottom: 1.5rem;
    padding: 0;
    transition: color 0.2s;
}

.cust-back-btn:hover {
    color: var(--text-primary);
}

.cust-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cust-title {
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cust-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cust-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.cust-link {
    margin-top: 0.75rem;
}

.cust-link a {
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.95rem;
}

.guide-taille-modal-img {
    text-align: center;
}

.guide-taille-modal-img img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
}

.modal-large {
    max-width: 900px;
    width: 100%;
}

.modal-large .cust-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    text-align: left;
}

.cust-modal-img {
    text-align: center;
    margin-bottom: 1rem;
}

.cust-modal-img img {
    max-width: 100%;
    max-height: 280px;
    border-radius: var(--radius-sm);
}

.modal-large .cust-bottom-bar {
    margin-top: 1.5rem;
    position: sticky;
    bottom: 0;
}

.cust-section {
    margin-bottom: 2.5rem;
}

.cust-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cust-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--beige);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cust-section-head h3 {
    font-size: 2rem;
    font-weight: 800;
    flex: 1;
    font-family: 'acumin-pro', sans-serif;
}

.cust-required {
    color: var(--danger);
    font-size: 0.8rem;
}

.cust-cards-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
}

.cust-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 9rem 9rem 1rem 1rem;
    width: 10rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0.5rem 0.5rem 0.9375rem 0px rgba(94, 51, 43, 0.3);
    user-select: none;
}

.cust-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.cust-card.selected {
    border-color: var(--primary);
    background: rgba(179, 127, 80, 0.1);
    transform: translateY(-5px);
    box-shadow: 0.5rem 0.5rem 1.25rem 0px rgba(179, 127, 80, 0.4);
}

.cust-card-img {
    height: 10rem;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cust-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cust-card:hover .cust-card-img img {
    transform: scale(1.08);
}

.cust-card-img .placeholder {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.45;
}

/* Nom au-dessus de l'image, prix en dessous */
.cust-card-name {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    min-height: 2.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    max-width: 10rem;
}

.cust-card-price {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 1rem;
}

/* Card column wrapper : nom → [wrapper image+cœur] → prix → extra-inputs */
.cust-card-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Wrapper relatif pour positionner le cœur sur l'image */
.cust-card-img-wrapper {
    position: relative;
    display: inline-flex;
}

/* Heart icon — positionné sur le wrapper (= sur l'image de la card) */
.cust-card-heart {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    width: 2rem;
    height: 2rem;
    display: none;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 1px 4px rgba(94, 51, 43, 0.35));
}

.cust-card-col:has(.cust-card.selected) .cust-card-heart {
    display: block;
}

/* Grey out non-selected cards on radio groups */
.cust-cards-row.has-selection .cust-card:not(.selected) {
    opacity: 0.42;
    filter: grayscale(0.45);
}

/* Checkbox max atteint — griser les cartes non sélectionnées */
.cust-cards-row.max-reached .cust-card:not(.selected) {
    opacity: 0.42;
    filter: grayscale(0.45);
    cursor: not-allowed;
}

/* Sub-group below its card, inside the card column */
.cust-card-col > .cust-subgroup-cond { width: 10rem; margin-top: 0.6rem; }
.cust-card-col > .cust-subgroup-cond .cust-section-head { display: none; }
.cust-card-col > .cust-subgroup-cond .cust-section { margin-bottom: 0; }
.cust-card-col > .cust-subgroup-cond .cust-select-preview { display: none !important; }
.cust-card-col > .cust-subgroup-cond .cust-select-group > .cust-card-name { display: none !important; }
.cust-card-col > .cust-subgroup-cond .cust-select-group { gap: 0; width: 100%; }
.cust-card-col > .cust-subgroup-cond .cust-select-wrapper { width: 100%; }

/* Extra inputs placed below their card inside the col */
.cust-card-col .cust-extra-inputs {
    width: 10rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0;
    background: none;
    border: none;
}

/* Extra input field wrapper */
.extra-input-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
}
.extra-input-field:last-child { margin-bottom: 0; }

.extra-input-field > label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Text input — pill style */
.extra-text-input {
    width: 100%;
    background: var(--beige-dark);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}
.extra-text-input::placeholder { color: rgba(255,255,255,0.5); }

/* Image upload zone */
.extra-image-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.5rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    transition: border-color 0.2s, color 0.2s;
    font-size: 0.8rem;
    min-height: 3.5rem;
}
.extra-image-drop:hover { border-color: var(--primary); color: var(--primary); }
.extra-image-drop img {
    max-height: 3.75rem;
    max-width: 100%;
    border-radius: 0.375rem;
    display: block;
}
.extra-img-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--danger);
    font-size: 1rem;
    line-height: 1;
    margin-top: 0.2rem;
    padding: 0;
}

/* Extra inputs shown below the card row when a card is selected */
.cust-extra-inputs {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-color);
    animation: fadeSlideIn 0.2s ease;
}

/* Sub-group conditional */
.cust-subgroup-cond {
    animation: fadeSlideIn 0.2s ease;
}

/* Select group : card preview + dropdown empilés */
.cust-select-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cust-select-preview {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 9rem 9rem 1rem 1rem;
    width: 10rem;
    overflow: hidden;
    box-shadow: 0.5rem 0.5rem 0.9375rem 0px rgba(94, 51, 43, 0.3);
    pointer-events: none;
    user-select: none;
}

.cust-select-preview .cust-card-img {
    height: 10rem;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cust-select-preview .cust-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}

/* Le nom du select preview est maintenant hors de la preview card, dans .cust-select-group */

/* Select dropdown wrapper */
.cust-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 380px;
    width: 100%;
}

.cust-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--beige-dark);
    border: none;
    border-radius: 999px;
    padding: 0.6rem 2.8rem 0.6rem 1.4rem;
    font-family: 'acumin-pro-extralight', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    box-shadow: none;
    transition: opacity 0.2s;
}

.cust-select:focus {
    outline: none;
    opacity: 0.88;
}

.cust-select option {
    background: var(--beige-dark);
    color: #fff;
}

.cust-select-arrow {
    position: absolute;
    right: 1rem;
    color: #fff;
    pointer-events: none;
    font-size: 0.8rem;
}

/* Number / text groups */
.cust-input-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    max-width: 420px;
}

/* Bottom bar — dans le flux, juste sous les cartes */
.cust-bottom-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cust-bottom-qty {
    display: flex;
    align-items: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cust-bottom-qty button {
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.cust-bottom-qty button:hover {
    background: var(--primary);
    color: var(--white);
}

.cust-bottom-qty span {
    width: 2.75rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.cust-bottom-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    flex: 1;
    text-align: center;
}

.cust-bottom-bar .btn-primary {
    flex: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cust-title {
        font-size: 1.75rem;
    }

    .cust-section-head h3 {
        font-size: 1.5rem;
    }

    /* Grille 2 colonnes */
    .cust-cards-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .cust-card-col {
        width: 100%;
        align-items: center;
    }

    .cust-card {
        width: 100%;
    }

    .cust-card-name {
        max-width: 100%;
    }

    .cust-card-col > .cust-subgroup-cond,
    .cust-card-col .cust-extra-inputs {
        width: 100%;
    }

    .cust-card-img {
        height: 9rem;
    }

    .cust-select-preview {
        width: 100%;
    }

    .cust-select-preview .cust-card-img {
        height: 9rem;
    }

    .cust-bottom-bar {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .cust-bottom-total {
        font-size: 1.25rem;
    }

    .cust-bottom-bar .btn-primary {
        width: 100%;
    }
}
/* ── Choix de paiement (checkout modal) ─────────────────────────── */
.payment-choice { margin-top: 1rem; }
.payment-choice h4 { margin-bottom: 0.625rem; font-size: 0.95rem; color: var(--text-dark, #1f2937); }
.payment-choice-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
@media (max-width: 500px) {
    .payment-choice-options { grid-template-columns: 1fr; }
}
.payment-choice-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #f9fafb;
    cursor: pointer;
    text-align: left;
    transition: all .2s;
    font-family: inherit;
    width: 100%;
}
.payment-choice-btn:hover:not(:disabled) {
    border-color: var(--primary, #c4796b);
    background: rgba(196,121,107,.06);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.payment-choice-btn.featured {
    border-color: var(--primary, #c4796b);
    background: rgba(196,121,107,.07);
}
.payment-choice-btn:disabled { opacity: .6; cursor: not-allowed; }
.payment-choice-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--primary, #c4796b);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.payment-choice-info { display: flex; flex-direction: column; gap: 0.125rem; }
.payment-choice-info strong { font-size: 0.88rem; color: #1f2937; }
.payment-choice-info span   { font-size: 0.85rem; color: var(--primary, #c4796b); font-weight: 600; }
.payment-choice-info small  { font-size: 0.75rem; color: #888; }

/* ── Petits téléphones ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 3.5rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .section-header h1 {
        font-size: 1.4rem;
    }

    /* 2 cartes par ligne sur petit écran */
    .card {
        width: clamp(8rem, 42%, 11rem);
    }

    /* Produits pleine largeur */
    /*.product-card {
        width: 100%;
    }*/

    /* Footer */
    .footer-title {
        font-size: 1.1rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .social-link {
        width: 2rem;
        height: 2rem;
    }

    /* Customisation */
    .cust-title {
        font-size: 1.4rem;
    }

    .cust-section-head h3 {
        font-size: 1.25rem;
    }

    .cust-num {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }

    .cust-card {
        width: 100%;
    }

    .cust-card-img {
        height: 8rem;
        width: 7rem;
    }

    .cust-card-name {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .cust-card-col > .cust-subgroup-cond,
    .cust-card-col .cust-extra-inputs {
        width: 100%;
    }

    .cust-select-preview {
        width: 100%;
    }

    .cust-select-preview .cust-card-img {
        height: 8rem;
    }

    .cust-cards-row {
        gap: 0.5rem;
    }

    .cust-input-group {
        padding: 1rem;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .detail-price .price-current {
        font-size: 1.75rem;
    }

    .quantity-selector {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .modal-overlay {
        padding: 0.75rem;
    }
}
