/**
 * STYLE.CSS - Claveres Camping-car
 * Feuille de style principale
 */

:root {
    --green-main: #3FAF8B;
    --green-light: #E6F4EF;
    --green-dark: #2E8B6E;
    --text-main: #2F3E46;
    --text-light: #6B7885;
    --bg-light: #F8FAFB;
    --white: #FFFFFF;
    --error: #E74C3C;
    --success: #27AE60;
    --warning: #F39C12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding-top: 64px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-main);
    text-decoration: none;
}

.logo-image {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* Navigation principale */
.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2; /* garde la hauteur du header identique (main a un padding-top fixe) */
    color: var(--text-main);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: var(--green-light);
    color: var(--green-dark);
}

.nav-link.is-active {
    background: var(--green-main);
    color: var(--white);
}

.nav-link-icon {
    font-size: 1rem;
    line-height: 1;
}

/* ==========================================================================
   Structure
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}


/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--green-main);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-outline {
    border: 2px solid var(--green-main);
    color: var(--green-main);
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Hero (accueil)
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--white) 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 50%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ==========================================================================
   Cartes de guides (accueil)
   ========================================================================== */

.guides {
    padding: 4rem 2rem;
    background: var(--white);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    display: block;
    height: 100%;
    background: var(--white);
    border: 2px solid var(--green-light);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(63, 175, 139, 0.1);
    border-color: var(--green-main);
}

.guide-card:focus-visible {
    outline: 3px solid var(--green-main);
    outline-offset: 3px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.guides-section-title {
    font-size: 1.35rem;
    color: var(--green-dark);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-light);
}

.guides-grid + .guides-section-title {
    margin-top: 3rem;
}

.guide-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.guide-card p {
    color: var(--text-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--text-main);
    color: rgba(255, 255, 255, 0.6);
    padding: 1.5rem 2rem;
    margin-top: auto;
    text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .header-inner {
        padding: 0.6rem 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-text {
        display: none;
    }

    .nav-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem 1.5rem;
    }

    .hero-logo {
        width: 90px;
        margin-bottom: 0.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .guides {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    /* Sur petits écrans, la nav ne garde que ses pictogrammes. */
    .nav-link-text {
        display: none;
    }

    .nav-link {
        padding: 0.4rem 0.55rem;
    }

    .nav-link-icon {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Bloc de partage (guides)
   ========================================================================== */

.share {
    max-width: 860px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.share-label {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border: 1px solid var(--green-light);
    border-radius: 999px;
    background: var(--bg-light);
    color: var(--text-main);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.share-btn:hover,
.share-btn:focus-visible {
    background: var(--green-light);
    border-color: var(--green-main);
    color: var(--green-dark);
}

.share-btn--native {
    background: var(--green-main);
    border-color: var(--green-main);
    color: var(--white);
}

.share-btn--native:hover,
.share-btn--native:focus-visible {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
}

.share-btn--copy.is-copied {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.share-feedback {
    min-height: 1.4em;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .share {
        margin: 0 1rem 2rem;
        padding: 1.25rem 1rem;
    }

    .share-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Blocs repris de TrustedCamper pour les pages de guides
   ========================================================================== */

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}


/* Cards */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--green-light);
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-label.required::after {
    content: " *";
    color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px var(--green-light);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.is-hidden {
    display: none;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: #D5F4E6;
    border-color: var(--success);
    color: #155724;
}

.alert-error {
    background: #F8D7DA;
    border-color: var(--error);
    color: #721c24;
}

.alert-warning {
    background: #FFF3CD;
    border-color: var(--warning);
    color: #856404;
}

.alert-info {
    background: #D1ECF1;
    border-color: #17A2B8;
    color: #0C5460;
}

/* Multimetre guide page */
.multimetre-page {
    max-width: 1000px;
    margin: 0 auto;
}

.multimetre-hero {
    background: linear-gradient(135deg, #f7fbf9 0%, #eef8f4 100%);
    border: 1px solid #dceee7;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.multimetre-hero h1 {
    color: #1f3a30;
    margin-bottom: 0.5rem;
}

.multimetre-hero p {
    color: #4a5f57;
    margin: 0;
}

.multimetre-image-wrap {
    text-align: center;
    margin: 1.25rem 0;
}

.multimetre-image {
    width: 25%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #d7e5df;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: zoom-in;
}

.multimetre-caption {
    color: #5d6f68;
    font-size: 0.95rem;
    margin-top: 0.6rem;
}

.multimetre-alert {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.multimetre-alert-warning {
    background: #fff5db;
    border-left: 4px solid #f0ad4e;
    color: #7a5a1c;
}

.multimetre-alert-danger {
    background: #fde8e8;
    border-left: 4px solid #e05656;
    color: #7a2323;
}

.multimetre-section {
    background: #ffffff;
    border: 1px solid #e7efeb;
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1rem 0;
}

.multimetre-section h2 {
    margin-top: 0;
    color: #204738;
}

.multimetre-section h3 {
    margin-top: 1rem;
    color: #2f5e4d;
}

.multimetre-list {
    margin: 0.4rem 0 0 1.2rem;
}

.multimetre-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.multimetre-tip {
    background: #f4faf7;
    border: 1px solid #deeee7;
    border-radius: 8px;
    padding: 0.9rem;
}

.multimetre-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    padding: 1rem;
}

.multimetre-modal.is-open {
    display: flex;
}

.multimetre-modal-content {
    position: relative;
    max-width: min(95vw, 1200px);
    max-height: 90vh;
}

.multimetre-modal-image {
    width: auto;
    max-width: 95vw;
    max-height: 90vh;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid #d7e5df;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.multimetre-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #1f3a30;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 760px) {
    .multimetre-grid {
        grid-template-columns: 1fr;
    }

    .multimetre-image {
        width: 85%;
    }
}

/* ==========================================================================
   Conseils pratiques - hub de guides (grille de cards)
   ========================================================================== */
.cp-hero h1 { margin: 0 0 0.5rem; }
.cp-hero p { margin: 0; color: var(--text-light); line-height: 1.6; }

.cp-section { margin-bottom: 2.2rem; }
.cp-section-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.3rem;
    color: var(--text-main);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-light);
}
.cp-section-title .cp-emoji { font-size: 1.4rem; line-height: 1; }

.cp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.1rem;
}

.cp-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #EAEFF1;
    border-radius: 12px;
    padding: 1.25rem 1.3rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cp-card:hover,
.cp-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63,175,139,0.16);
    border-color: var(--green-main);
    outline: none;
}
.cp-card-icon {
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}
.cp-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.4rem;
    line-height: 1.35;
}
.cp-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}
.cp-card-more {
    margin-top: auto;
    padding-top: 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
}
.cp-card:hover .cp-card-more { text-decoration: underline; }

/* ==========================================================================
   Guides - en-tête de page
   ========================================================================== */
.guide-header {
    text-align: center;
    margin-bottom: 2rem;
}

.guide-header h1 {
    font-size: 2rem;
    color: var(--text-main);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.guide-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 0 auto;
    background: var(--green-main);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .guide-header h1 { font-size: 1.5rem; }
}

/* ==========================================================================
   Guides - contenu
   ========================================================================== */
.guide-section {
    padding: 1.5rem 1.6rem;
    margin-bottom: 1.2rem;
}

.guide-section h2 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0 0 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-light);
}

.guide-section h3 {
    font-size: 1.02rem;
    color: var(--green-dark);
    margin: 1.6rem 0 0.7rem;
}

.guide-section > *:first-child { margin-top: 0; }
.guide-section > *:last-child  { margin-bottom: 0; }

.guide-text {
    color: var(--text-light);
    line-height: 1.75;
    margin: 0 0 1rem;
}

.guide-lead {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.75;
    margin: 0 0 1rem;
}

.guide-list {
    list-style: none;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1rem;
    padding: 0;
}

.guide-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.7rem;
}

.guide-list li:last-child { margin-bottom: 0; }

.guide-list li::before {
    content: "";
    position: absolute;
    left: 0.3rem;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-main);
}

.guide-list strong { color: var(--text-main); }

/* Liste "libelle / valeur" (ex. taux d'autodecharge) */
.guide-facts {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    border-top: 1px solid var(--green-light);
}

.guide-facts li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.2rem;
    border-bottom: 1px solid var(--green-light);
    color: var(--text-light);
}

.guide-facts .fact-label {
    font-weight: 600;
    color: var(--text-main);
}

.guide-facts .fact-value { white-space: nowrap; }

/* Encadres */
.guide-note,
.guide-alert {
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.guide-note {
    background: var(--green-light);
    border-left: 3px solid var(--green-main);
    color: var(--text-main);
}

.guide-alert {
    background: #FDF3E3;
    border-left: 3px solid var(--warning);
    color: var(--text-main);
}

.guide-note-title,
.guide-alert-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.guide-note-title { color: var(--green-dark); }
.guide-alert-title { color: #B9770E; }

@media (max-width: 768px) {
    .guide-section { padding: 1.2rem 1.1rem; }
    .guide-facts .fact-value { white-space: normal; }
}

/* Liste numerotee (procedures pas a pas) */
.guide-steps {
    list-style: none;
    counter-reset: guide-step;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1rem;
    padding: 0;
}

.guide-steps li {
    position: relative;
    counter-increment: guide-step;
    padding-left: 2.4rem;
    margin-bottom: 0.9rem;
}

.guide-steps li:last-child { margin-bottom: 0; }

.guide-steps li::before {
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.65rem;
    height: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.guide-steps strong,
.guide-steps b { color: var(--text-main); }

/* Images illustratives */
.guide-figure {
    margin: 0 0 1rem;
    text-align: center;
}

.guide-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--green-light);
}

.guide-figure figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.guide-figure--narrow img { max-width: 420px; }

/* Symboles inline (ohm, continu, continuite...) */
.guide-symbol {
    height: 1em;
    width: auto;
    vertical-align: -0.12em;
}

/* Encadre danger */
.guide-danger {
    background: #FDECEC;
    border-left: 3px solid var(--error);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: var(--text-main);
}

.guide-danger-title {
    display: block;
    font-weight: 600;
    color: #B03A3A;
    margin-bottom: 0.25rem;
}

/* Grille de deux encadres cote a cote */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 1rem;
}

.guide-grid-item {
    background: var(--bg-light);
    border: 1px solid var(--green-light);
    border-radius: 8px;
    padding: 0.9rem 1rem;
}

.guide-grid-item h3 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
}

.guide-grid-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guide-grid { grid-template-columns: 1fr; }
}

/* Galerie d'exemples */
.guide-gallery {
    display: grid;
    gap: 1rem;
}

.guide-gallery-group {
    border: 1px solid var(--green-light);
    border-radius: 10px;
    padding: 0.9rem 1rem;
}

.guide-section .guide-gallery-group h3 {
    margin: 0 0 0.7rem;
    font-size: 0.98rem;
}

.guide-gallery-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.guide-gallery-items img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--green-light);
    cursor: zoom-in;
    transition: transform 0.15s ease;
}

.guide-gallery-items img:hover { transform: scale(1.03); }

/* Tableaux */
.guide-table-wrap {
    overflow-x: auto;
    margin: 0 0 1rem;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.guide-table th {
    text-align: left;
    padding: 0.6rem 0.7rem;
    background: var(--green-light);
    color: var(--text-main);
    font-weight: 600;
    white-space: nowrap;
}

.guide-table th:first-child { border-radius: 6px 0 0 0; }
.guide-table th:last-child  { border-radius: 0 6px 0 0; }

.guide-table td {
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid var(--green-light);
    color: var(--text-light);
}

.guide-table tbody tr:last-child td { border-bottom: none; }
.guide-table td:first-child { color: var(--text-main); font-weight: 600; }

/* Contenu des encadres "Infos et conseils" (checklist achat occasion) :
   on neutralise la typo des titres heritee de .guide-section */
.guide-section .item-tip-content h2,
.guide-section .item-tip-content h3 {
    font-size: 0.95rem;
    color: var(--text-main);
    margin: 0.8rem 0 0.35rem;
    padding: 0;
    border: none;
}

.guide-section .item-tip-content > :first-child { margin-top: 0; }
.guide-section .item-tip-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
