/**
 * WebMotors Custom Theme - Custom Styles for JetEngine & Smart Filters (MWCar Soares Edition)
 */

/* Estilos Globais de Botões e Layout */
.btn-wm-primary {
    background-color: var(--wm-primary);
    color: #000000;
    padding: 12px 24px;
    border-radius: var(--wm-radius-md);
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--wm-transition);
}

.btn-wm-primary:hover {
    background-color: var(--wm-primary-hover);
    color: #000000;
}

/* Estilização Customizada do JetSmartFilters (Inspirado na WebMotors / MWCar) */
.jet-filter {
    margin-bottom: 20px;
}

.jet-filters-group {
    background: var(--wm-surface);
    padding: 24px;
    border-radius: var(--wm-radius-lg);
    box-shadow: var(--wm-shadow-sm);
    border: 1px solid var(--wm-border);
}

/* Título dos Filtros */
.jet-filter-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--wm-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Checkboxes e Radios dos Filtros */
.jet-checkboxes-list__row, .jet-radio-list__row {
    padding: 6px 0;
}

.jet-checkboxes-list__input, .jet-radio-list__input {
    accent-color: var(--wm-primary);
}

.jet-checkboxes-list__label, .jet-radio-list__label {
    font-size: 14px;
    color: var(--wm-text-dark);
    cursor: pointer;
    transition: var(--wm-transition);
}

.jet-checkboxes-list__label:hover, .jet-radio-list__label:hover {
    color: var(--wm-primary);
}

/* Filtro de Range / Preço (Slider) */
.jet-range__slider {
    background: var(--wm-border) !important;
    height: 6px !important;
}

.jet-range__progress {
    background: var(--wm-primary) !important;
}

.jet-range__handler {
    background: var(--wm-primary) !important;
    border: 2px solid var(--wm-secondary) !important;
    box-shadow: var(--wm-shadow-sm) !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
}

.jet-range__values {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--wm-text-dark);
}

/* Botão de Aplicar Filtros */
.jet-filter-button {
    background: var(--wm-primary) !important;
    color: #000000 !important;
    border-radius: var(--wm-radius-md) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    transition: var(--wm-transition) !important;
    border: none !important;
    width: 100%;
}

.jet-filter-button:hover {
    background: var(--wm-primary-hover) !important;
}

/* Estilização dos Cards de Veículos do JetEngine Listing Grid */
.wm-car-card {
    background: var(--wm-surface);
    border-radius: var(--wm-radius-lg);
    overflow: hidden;
    box-shadow: var(--wm-shadow-sm);
    border: 1px solid var(--wm-border);
    transition: var(--wm-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wm-car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wm-shadow-lg);
    border-color: rgba(255, 182, 0, 0.4);
}

.wm-car-card__image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: #121212;
}

.wm-car-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--wm-transition);
}

.wm-car-card:hover .wm-car-card__image img {
    transform: scale(1.05);
}

.wm-car-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wm-car-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wm-car-card__brand-model {
    font-size: 13px;
    font-weight: 700;
    color: var(--wm-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.wm-car-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wm-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.wm-car-card__version {
    font-size: 13px;
    color: var(--wm-text-muted);
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wm-car-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--wm-primary);
    margin-bottom: 15px;
}

.wm-car-card__meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--wm-border);
    padding-top: 15px;
    margin-top: auto;
    font-size: 12px;
    color: var(--wm-text-muted);
    font-weight: 600;
}

.wm-car-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Estilo do Widget de Busca Rápida na Homepage (MWCar Soares Style) */
.wm-search-hero {
    background: linear-gradient(135deg, #050505 0%, #131313 100%);
    padding: 80px 0;
    color: #ffffff;
    border-radius: 0 0 var(--wm-radius-lg) var(--wm-radius-lg);
    border-bottom: 1px solid var(--wm-border);
}

.wm-search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: -1px;
}

.wm-search-tab {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--wm-border);
    border-bottom: none;
    padding: 12px 24px;
    border-radius: var(--wm-radius-md) var(--wm-radius-md) 0 0;
    font-weight: 700;
    cursor: pointer;
    transition: var(--wm-transition);
}

.wm-search-tab.active {
    background: var(--wm-surface);
    color: var(--wm-primary);
    border-color: var(--wm-primary);
}

.wm-search-box {
    background: var(--wm-surface);
    padding: 30px;
    border-radius: 0 var(--wm-radius-lg) var(--wm-radius-lg) var(--wm-radius-lg);
    box-shadow: var(--wm-shadow-lg);
    color: var(--wm-text-dark);
    border: 1px solid var(--wm-border);
}


/* ========================================
   PÁGINA DE DETALHE DO VEÍCULO (Single)
   ======================================== */

.vehicle-detail-wrapper {
    background: #ffffff;
    min-height: 100vh;
}

.vehicle-gallery-section {
    background: #f5f5f5;
    padding: 30px;
    border-radius: var(--wm-radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.vehicle-main-image {
    margin-bottom: 20px;
    border-radius: var(--wm-radius-lg);
    overflow: hidden;
    border: 2px solid var(--wm-border);
    background: #e8e8e8;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.vehicle-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-thumbnail {
    cursor: pointer;
    border-radius: var(--wm-radius-md);
    overflow: hidden;
    border: 2px solid #ddd;
    transition: var(--wm-transition);
}

.gallery-thumbnail:hover {
    border-color: var(--wm-primary);
    box-shadow: 0 0 8px rgba(255, 182, 0, 0.3);
}

.gallery-thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.vehicle-info-section {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--wm-radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.vehicle-brand-model {
    font-size: 14px;
    font-weight: 700;
    color: var(--wm-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.entry-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--wm-border);
    padding-bottom: 20px;
}

.entry-title {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.vehicle-meta-header {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.vehicle-price-section {
    background: linear-gradient(135deg, var(--wm-primary) 0%, #ff9800 100%);
    padding: 30px;
    border-radius: var(--wm-radius-lg);
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 182, 0, 0.2);
}

.vehicle-price-section p {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-price-section h2 {
    color: #000000;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
}

.vehicle-badges-section {
    margin-bottom: 30px;
}

.vehicle-specs {
    background: #f9f9f9;
    padding: 20px;
    border-radius: var(--wm-radius-md);
    border-left: 4px solid var(--wm-primary);
    margin-bottom: 30px;
}

.vehicle-specs h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
}

.vehicle-specs > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
}

.vehicle-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-contact,
.btn-compare {
    padding: 16px 32px;
    border-radius: var(--wm-radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: var(--wm-transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-contact {
    background: var(--wm-primary);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 182, 0, 0.2);
}

.btn-contact:hover {
    background: #ff9800;
    box-shadow: 0 6px 16px rgba(255, 182, 0, 0.3);
    transform: translateY(-2px);
}

.btn-compare {
    background: #f0f0f0;
    color: #000000;
    border: 2px solid var(--wm-primary);
}

.btn-compare:hover {
    background: #ffb600;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
    .vehicle-gallery-section {
        padding: 20px;
    }

    .vehicle-main-image {
        min-height: 250px;
    }

    .vehicle-main-image img {
        max-height: 300px;
    }

    .vehicle-info-section {
        padding: 20px;
    }

    .entry-title {
        font-size: 24px;
    }

    .vehicle-price-section h2 {
        font-size: 28px;
    }

    .vehicle-meta-header {
        gap: 10px;
        font-size: 12px;
    }

    .vehicle-cta {
        flex-direction: column;
    }

    .btn-contact,
    .btn-compare {
        width: 100%;
        text-align: center;
    }
}


/* ========================================
   ESTILOS DA HOMEPAGE MWCAR SOARES
   ======================================== */

.mwcar-homepage {
    background-color: var(--wm-background);
    color: var(--wm-text-dark);
    overflow-x: hidden;
}

/* 1. HERO SECTION */
.mw-hero-section {
    background: radial-gradient(circle at 80% 50%, rgba(255, 182, 0, 0.15) 0%, rgba(10, 10, 10, 1) 70%), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=40') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--wm-border);
}

.mw-hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
}

.mw-hero-content {
    z-index: 5;
}

.mw-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
    letter-spacing: -1px;
}

.mw-hero-title .highlight-gold {
    color: var(--wm-primary);
    text-shadow: 0 0 20px rgba(255, 182, 0, 0.4);
}

.mw-hero-subtitle {
    font-size: 18px;
    color: var(--wm-text-muted);
    margin-bottom: 35px;
    max-width: 450px;
}

.mw-hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-mw-gold {
    background: var(--wm-primary);
    color: #000000;
    padding: 14px 30px;
    border-radius: var(--wm-radius-md);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 182, 0, 0.3);
    transition: var(--wm-transition);
    display: inline-block;
}

.btn-mw-gold:hover {
    background: var(--wm-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 0, 0.4);
    color: #000000;
}

.btn-mw-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: var(--wm-radius-md);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--wm-transition);
    display: inline-block;
}

.btn-mw-outline:hover {
    border-color: var(--wm-primary);
    color: var(--wm-primary);
    transform: translateY(-2px);
}

.mw-hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cars-img {
    max-width: 110%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
}

.car-main-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.2) 0%, rgba(255, 182, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* 2. BARRA DE FILTROS */
.mw-filter-bar-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.mw-filter-box {
    background: #111111;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.filter-box-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-box-title .highlight-gold {
    color: var(--wm-primary);
}

.filter-fields-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 15px;
    align-items: flex-end;
}

.filter-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-field-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--wm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-field-group select {
    background: #1c1c1c;
    border: 1px solid #333;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: var(--wm-radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wm-transition);
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}

.filter-field-group select:focus {
    border-color: var(--wm-primary);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 182, 0, 0.2);
}

.btn-filter-submit {
    background: var(--wm-primary);
    color: #000000;
    font-weight: 800;
    font-size: 14px;
    padding: 13px 30px;
    border: none;
    border-radius: var(--wm-radius-md);
    cursor: pointer;
    transition: var(--wm-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-filter-submit:hover {
    background: var(--wm-primary-hover);
    transform: translateY(-2px);
}

/* 3. SEÇÃO DE DIFERENCIAIS */
.mw-features-section {
    padding: 80px 0 40px 0;
}

.mw-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-wrapper {
    background: rgba(255, 182, 0, 0.1);
    border: 1px solid rgba(255, 182, 0, 0.2);
    border-radius: var(--wm-radius-md);
    padding: 10px;
    color: var(--wm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 12px;
    color: var(--wm-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* 4. DESTAQUES DO ESTOQUE */
.mw-highlights-section {
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--wm-primary);
    margin: 15px auto 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Estilo de Card de Veículo da Homepage */
.mw-highlights-section .mw-car-card {
    background: #111111;
    border: 1px solid var(--wm-border);
    border-radius: var(--wm-radius-lg);
    overflow: hidden;
    transition: var(--wm-transition);
}

.mw-highlights-section .mw-car-card:hover {
    border-color: var(--wm-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.badge-status-new, .badge-status-semi {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: var(--wm-radius-sm);
    z-index: 5;
}

.badge-status-new {
    background: var(--wm-primary);
    color: #000000;
}

.badge-status-semi {
    background: #333333;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.mw-car-card__specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--wm-text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mw-car-card__specs-row span {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: var(--wm-radius-sm);
}

.btn-car-details {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--wm-radius-md);
    transition: var(--wm-transition);
    display: block;
    margin-top: 10px;
}

.btn-car-details:hover {
    border-color: var(--wm-primary);
    color: var(--wm-primary);
    background: rgba(255, 182, 0, 0.05);
}

.view-all-stock-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all-stock {
    background: transparent;
    color: var(--wm-primary);
    border: 2px solid var(--wm-primary);
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 800;
    border-radius: var(--wm-radius-md);
    transition: var(--wm-transition);
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-view-all-stock:hover {
    background: var(--wm-primary);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 182, 0, 0.2);
}

/* 5. REALIZE SEU SONHO (CTA SECTION) */
.mw-dream-cta-section {
    background: linear-gradient(135deg, #050505 0%, #111111 100%);
    border-top: 1px solid var(--wm-border);
    border-bottom: 1px solid var(--wm-border);
    padding: 80px 0;
    position: relative;
}

.mw-dream-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.mw-dream-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.mw-dream-title .highlight-gold {
    color: var(--wm-primary);
}

.mw-dream-text {
    font-size: 16px;
    color: var(--wm-text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-whatsapp-cta {
    background: #25d366;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: var(--wm-radius-md);
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--wm-transition);
}

.btn-whatsapp-cta:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.mw-dream-logo-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dream-logo-img {
    max-width: 80%;
    height: auto;
    z-index: 2;
}

.dream-logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 182, 0, 0.15) 0%, rgba(255, 182, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* RESPONSIVIDADE DA HOMEPAGE */
@media (max-width: 1024px) {
    .mw-hero-title {
        font-size: 42px;
    }
    .filter-fields-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mw-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mw-dream-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .mw-hero-section {
        padding: 60px 0;
    }
    .mw-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mw-hero-subtitle {
        margin: 0 auto 30px auto;
    }
    .mw-hero-buttons {
        justify-content: center;
    }
    .filter-fields-grid {
        grid-template-columns: 1fr;
    }
    .btn-filter-submit {
        width: 100%;
    }
    .mw-features-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .mw-dream-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }
}
