:root {
    --color-bg: #ffffff;
    --color-surface: #f7f8fa;
    --color-surface-2: #eef0f4;
    --color-text: #1a1d24;
    --color-text-soft: #5a6172;
    --color-border: #e3e6ec;
    --color-accent: #d4a017;
    --color-accent-hover: #b88912;
    --color-accent-soft: #fdf6e3;
    --shadow-sm: 0 1px 2px rgba(20, 24, 35, 0.04), 0 1px 3px rgba(20, 24, 35, 0.06);
    --shadow-md: 0 4px 8px rgba(20, 24, 35, 0.06), 0 8px 24px rgba(20, 24, 35, 0.08);
    --shadow-lg: 0 12px 24px rgba(20, 24, 35, 0.08), 0 24px 48px rgba(20, 24, 35, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 220ms cubic-bezier(.4,.0,.2,1);
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-weight: 600; line-height: 1.2; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 12px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.brand-logo {
    height: 5vw;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-label {
    color: var(--color-text-soft);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .cart-label { display: none; }
}

/* HERO / CARROUSEL */
.hero { padding: 40px 24px 0; }

.carousel {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f7 100%);
}

.carousel-track {
    display: flex;
    transition: transform 600ms cubic-bezier(.65,.05,.36,1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
}

.carousel-slide:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -4px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px 24px 80px;
    box-sizing: border-box;
}

.carousel-slide .slide-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 32px 22px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0) 100%);
    color: var(--color-text);
    text-align: center;
}

.slide-caption h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    margin: 0 0 2px;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.slide-caption p {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    margin: 0;
    font-weight: 400;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 29, 36, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition);
}

.carousel-dots button.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .carousel-slide { height: 300px; }
    .carousel-slide img { padding: 16px 16px 70px; }
    .carousel-btn { width: 36px; height: 36px; }
    .slide-caption { padding: 14px 18px 18px; }
}

/* GAMME */
.gamme {
    padding: 96px 24px;
    background: var(--color-surface);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-sub {
    color: var(--color-text-soft);
    margin-top: 14px;
    font-size: 1.05rem;
}

.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-image {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f7 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 600ms ease;
}

.card:hover .card-image img { transform: scale(1.04); }

.card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.card h3 {
    font-size: 1.05rem;
    margin: 0;
}

.card-sub {
    color: var(--color-text-soft);
    font-size: 0.9rem;
    margin: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}

/* CONTACT */
.contact { padding: 96px 24px; }
.contact-inner {
    text-align: center;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-accent-soft) 100%);
    padding: 72px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.contact-inner h2 { margin-bottom: 12px; }
.contact-inner p { color: var(--color-text-soft); margin-bottom: 28px; }

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(212, 160, 23, 0.4);
}

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 32px 24px;
    background: var(--color-bg);
}

.footer-inner {
    display: flex;
    justify-content: center;
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

/* MODALE */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal[hidden] { display: none; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 25, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 200ms ease;
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideUp 280ms cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition);
}

.modal-close:hover { background: var(--color-surface-2); }

.modal-body { overflow-y: auto; }

.modal-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f7 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-image img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

.modal-add { margin-top: 24px; width: 100%; }

.modal-text { padding: 32px; }
.modal-text h2 { margin-bottom: 12px; }
.modal-text .modal-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.modal-text .modal-desc { color: var(--color-text-soft); margin-bottom: 22px; }

.modal-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.modal-spec {
    background: var(--color-surface);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.modal-spec strong {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-soft);
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.modal-spec span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Etat de chargement */
.is-loading {
    opacity: 0;
    transition: opacity 400ms ease;
}

.is-loaded { opacity: 1; }

/* ============================================================
 * RECHERCHE
 * ============================================================ */
.search-bar {
    position: relative;
    max-width: 480px;
    margin: 0 auto 40px;
}

.search-bar input {
    width: 100%;
    padding: 14px 44px 14px 44px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    font-size: 0.95rem;
    color: var(--color-text);
    font-family: inherit;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-soft);
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: var(--color-surface-2);
    color: var(--color-text-soft);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.search-clear:hover { background: var(--color-border); color: var(--color-text); }

.no-results {
    text-align: center;
    color: var(--color-text-soft);
    padding: 32px 0 0;
}

/* ============================================================
 * BOUTON PANIER (header)
 * ============================================================ */
.cart-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.cart-toggle:hover {
    background: var(--color-accent-soft);
    border-color: var(--color-accent);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(212, 160, 23, 0.4);
}

.cart-badge[hidden] { display: none; }

/* ============================================================
 * PANNEAU PANIER COULISSANT
 * ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 25, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 300;
    animation: fadeIn 200ms ease;
}

.cart-overlay[hidden] { display: none; }

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 92vw;
    background: #fff;
    z-index: 310;
    box-shadow: -10px 0 30px rgba(20, 24, 35, 0.12);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.4,.0,.2,1);
    display: flex;
    flex-direction: column;
}

.cart-panel.open { transform: translateX(0); }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--color-border);
}

.cart-header h2 { margin: 0; font-size: 1.25rem; }

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-close:hover { background: var(--color-surface-2); }

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px 32px;
}

.cart-empty {
    text-align: center;
    color: var(--color-text-soft);
    padding: 48px 16px;
}
.cart-empty p { margin: 0; }
.cart-empty-hint { font-size: 0.85rem; opacity: 0.7; margin-top: 8px !important; }

/* --- Items du panier --- */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
}

.cart-item-info { min-width: 0; }
.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 2px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-ref {
    font-size: 0.72rem;
    color: var(--color-text-soft);
    margin: 0 0 8px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover { background: var(--color-surface); }

.cart-qty-input {
    width: 36px;
    border: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    color: var(--color-text);
    -moz-appearance: textfield;
    appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-item-remove {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-text-soft);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}
.cart-item-remove:hover { background: var(--color-surface-2); color: #b00; }

/* --- Formulaire --- */
.cart-form { display: flex; flex-direction: column; gap: 14px; }
.cart-form h3 {
    font-size: 1rem;
    margin: 8px 0 0;
    color: var(--color-text);
}

.cart-form label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-form label span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cart-form input,
.cart-form textarea {
    padding: 11px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.cart-form input:focus,
.cart-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.cart-submit { margin-top: 8px; }
.cart-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cart-error {
    margin: 0;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: #fdecec;
    color: #b22;
    font-size: 0.88rem;
    border: 1px solid #f4c2c2;
}

/* ============================================================
 * TOAST DE VALIDATION (popup centrée, fond flouté, auto-disparition)
 * ============================================================ */
.toast-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
}

.toast-modal[hidden] { display: none; }

.toast-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: fadeIn 220ms ease;
}

.toast-modal-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 44px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    animation: toastPop 360ms cubic-bezier(.2,.8,.2,1);
    pointer-events: auto;
}

.toast-modal-card h3 {
    margin: 14px 0 6px;
    font-size: 1.25rem;
}

.toast-modal-card p {
    color: var(--color-text-soft);
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.toast-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto;
}

.toast-modal.is-leaving .toast-modal-backdrop,
.toast-modal.is-leaving .toast-modal-card {
    animation: toastOut 300ms ease forwards;
}

@keyframes toastPop {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes toastOut {
    to { opacity: 0; transform: scale(0.98); }
}

@media (max-width: 480px) {
    .cart-panel { width: 100vw; }
    .cart-header { padding: 18px 18px; }
    .cart-content { padding: 16px 18px 24px; }
}

/* ============================================================
 * BOUTON + AJOUT RAPIDE SUR LES CARTES
 * ============================================================ */
.card { position: relative; }

.card-add {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-accent);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.card-add:hover {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.08);
}

.card-add:active { transform: scale(0.95); }

/* ============================================================
 * TOAST RAPIDE (haut droite, auto-disparition)
 * ============================================================ */
.quick-toast {
    position: fixed;
    top: 92px;
    right: 24px;
    z-index: 600;
    padding: 11px 18px;
    background: var(--color-text);
    color: #fff;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: opacity 220ms cubic-bezier(.2,.8,.2,1), transform 220ms cubic-bezier(.2,.8,.2,1);
}

.quick-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .quick-toast { top: 84px; right: 12px; left: 12px; text-align: center; }
}

/* ============================================================
 * LOADER PLEIN ÉCRAN (initial)
 * ============================================================ */
.app-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transition: opacity 350ms ease;
}

.app-loader.is-leaving {
    opacity: 0;
    pointer-events: none;
}

.app-loader-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--color-accent-soft);
    border-top-color: var(--color-accent);
    animation: app-spin 900ms linear infinite;
}

@keyframes app-spin {
    to { transform: rotate(360deg); }
}

.app-loader-text {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.95rem;
    font-weight: 500;
}

.app-loader.is-error .app-loader-spinner { display: none; }

.app-loader-error-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fdecec;
    color: #b22;
    font-weight: 700;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
