/* ---------------- RESET / BASE ---------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html, body { width: 100%; }

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

img { max-width: 100%; height: auto; display: block; }

/* ---------------- NOVA PALETA DE CORES ---------------- */
:root {
    --primary: #6a11cb;
    --primary-dark: #4d0b9c;
    --primary-light: #8a2be2;
    --accent: #ff3366;
    --accent-dark: #e62958;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --card-bg: #ffffff;
    --footer-bg: #1a1a2e;
}

/* ---------------- TELA DE CARREGAMENTO ---------------- */
#loading-screen {
    position: fixed; 
    inset: 0;
    width: 100%; 
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    z-index: 9999; 
    transition: opacity 0.5s ease-out;
}

/* Logos adicionais */
.logo-top-left, .logo-bottom-right {
    position: absolute; 
    width: 80px; 
    height: 80px;
    border-radius: 50%; 
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.logo-top-left { top: 30px; left: 30px; }
.logo-bottom-right { bottom: 60px; right: 30px; }

.logo-top-left img, .logo-bottom-right img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.logo-container { 
    text-align: center; 
    margin-bottom: 30px; 
    z-index: 1; 
}

.logo {
    width: 120px; 
    height: 120px; 
    background: var(--white); 
    border-radius: 50%; 
    overflow: hidden;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 3px solid var(--white);
}

.logo img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.loading-text {
    color: var(--white); 
    font-size: 2.5rem; 
    font-weight: 800; 
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.loading-subtext { 
    color: rgba(255,255,255,0.9); 
    font-size: 1.2rem; 
    font-weight: 300;
}

.progress-bar {
    width: 300px; 
    height: 8px; 
    background: rgba(255,255,255,0.3);
    border-radius: 10px; 
    overflow: hidden; 
    margin-top: 20px;
}

.progress { 
    height: 100%; 
    width: 0%; 
    background: var(--accent); 
    border-radius: 10px; 
    transition: width 5s linear; 
}

.footer-text { 
    position: absolute; 
    bottom: 20px; 
    color: rgba(255,255,255,0.7); 
    font-size: 0.9rem; 
}

/* ---------------- CONTEÚDO PRINCIPAL ---------------- */
#main-content { 
    display: none; 
    opacity: 0; 
    transition: opacity 0.5s ease-in; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

/* ---------------- HEADER ---------------- */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white); 
    padding: 1rem; 
    border-radius: 15px; 
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.header-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
}

.brand { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.brand-icon {
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    overflow: hidden; 
    background: var(--white);
    display: flex; 
    justify-content: center; 
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 2px solid var(--white);
}

.brand-icon img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.brand-text h1 { 
    font-size: 1.8rem; 
    line-height: 1.2; 
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-text span { 
    font-size: 0.9rem; 
    opacity: 0.9; 
    font-weight: 300;
}

/* Carrinho no header */
.header-actions { 
    display: flex; 
    align-items: center; 
}

.cart-icon {
    position: relative; 
    cursor: pointer; 
    padding: 10px;
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 50%;
    width: 45px; 
    height: 45px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-icon:hover { 
    background: rgba(255, 255, 255, 0.3); 
    transform: scale(1.05);
}

.cart-icon i { 
    font-size: 1.2rem; 
    color: var(--white); 
}

.cart-count {
    position: absolute; 
    top: -5px; 
    right: -5px;
    background: var(--accent); 
    color: var(--white); 
    border-radius: 50%;
    width: 20px; 
    height: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 0.7rem; 
    font-weight: bold;
}

/* Botão opcional no header (se usar) */
.nav-button {
    background: var(--white); 
    color: var(--primary); 
    text-decoration: none; 
    padding: 10px 20px;
    border-radius: 30px; 
    font-weight: 600; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background: var(--accent);
    color: var(--white);
}

/* ---------------- PAINEL / SEÇÕES ---------------- */
.products-panel { 
    width: 100%; 
}

.panel {
    background: var(--card-bg); 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px; 
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.panel h2 {
    color: var(--text-dark); 
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 2px solid #f1f1f1;
    font-weight: 700;
    font-size: 1.6rem;
}

/* ---------------- FILTROS ---------------- */
.filter-bar { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 25px; 
    flex-wrap: wrap; 
}

.filter-select { 
    flex: 1; 
    min-width: 180px; 
}

.filter-select select {
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.filter-select select:focus { 
    border-color: var(--primary); 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

/* ---------------- ABAS ---------------- */
.navigation-tabs { 
    display: flex; 
    margin-bottom: 25px; 
    border-bottom: 2px solid #eee; 
    flex-wrap: wrap; 
}

.tab-button {
    padding: 12px 24px; 
    background: none; 
    border: none; 
    font-size: 1rem; 
    font-weight: 600;
    color: var(--text-light); 
    cursor: pointer; 
    transition: all 0.3s ease; 
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-button.active { 
    color: var(--primary); 
    border-bottom-color: var(--primary); 
}

.tab-button:hover { 
    color: var(--primary); 
}

.tab-content { 
    display: none; 
}

.tab-content.active { 
    display: block; 
}

/* ---------------- GRID DE PRODUTOS ---------------- */
.products-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 25px;
}

.product {
    background: var(--card-bg); 
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product:hover { 
    transform: translateY(-8px) scale(1.02); 
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.product img {
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    border-bottom: 1px solid #f1f1f1;
}

.product-content { 
    padding: 18px; 
}

.product h3 { 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
    color: var(--text-dark); 
    font-weight: 600;
}

.product p { 
    color: var(--text-light); 
    margin-bottom: 10px; 
    font-size: 0.9rem; 
    line-height: 1.5;
}

.product-price { 
    color: var(--accent); 
    font-weight: 800; 
    font-size: 1.3rem; 
    margin: 12px 0; 
}

.product-category {
    display: inline-block; 
    background: rgba(106, 17, 203, 0.1); 
    color: var(--primary);
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    margin-bottom: 12px;
    font-weight: 500;
}

.buy-btn, .delete-btn {
    width: 100%; 
    padding: 12px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    border: none;
}

.buy-btn { 
    background-color: var(--success); 
    color: var(--white); 
}

.buy-btn:hover { 
    background-color: #219653; 
    transform: translateY(-2px);
}

.delete-btn { 
    background-color: var(--danger); 
    color: var(--white); 
}

.delete-btn:hover { 
    background-color: #c0392b; 
    transform: translateY(-2px);
}

.loading-products, .empty-products {
    text-align: center; 
    padding: 40px; 
    color: var(--text-light); 
    grid-column: 1 / -1;
    font-size: 1.1rem;
}

/* ---------------- GRID DE SERVIÇOS ---------------- */
.services-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 25px;
}

.service {
    background: var(--card-bg); 
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 25px rgba(0,0,0,0.15); 
}

.service img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    border-bottom: 1px solid #f1f1f1; 
}

.service-content { 
    padding: 18px; 
}

.service h3 { 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
    color: var(--text-dark); 
    font-weight: 600;
}

.service p { 
    color: var(--text-light); 
    margin-bottom: 10px; 
    font-size: 0.9rem; 
    line-height: 1.5;
}

.service-type {
    display: inline-block; 
    background: #e8f5e9; 
    color: #2e7d32;
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    margin-bottom: 12px;
    font-weight: 500;
}

.service-type.entrega { 
    background: #e3f2fd; 
    color: #1565c0; 
}

.service-contact { 
    margin-top: 15px; 
    padding-top: 15px; 
    border-top: 1px solid #f1f1f1; 
}

.service-contact a {
    display: inline-block; 
    background: var(--primary); 
    color: var(--white); 
    text-decoration: none;
    padding: 10px 18px; 
    border-radius: 6px; 
    font-weight: 600; 
    margin-right: 10px; 
    transition: all 0.3s ease;
}

.service-contact a:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px);
}

.service-phone { 
    display: block; 
    color: var(--primary); 
    font-weight: 600; 
    margin-top: 10px; 
}

/* Botão WhatsApp (usado também no checkout) */
.service-contact-a {
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    background: #25D366; 
    color: var(--white); 
    text-decoration: none;
    padding: 10px 18px; 
    border-radius: 6px; 
    font-weight: 600; 
    margin-top: 10px; 
    transition: all 0.3s ease;
}

.service-contact-a:hover { 
    background: #128C7E; 
    color: var(--white); 
    transform: translateY(-2px);
}

/* ---------------- MODAL DE CHECKOUT ---------------- */
.checkout-modal {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.7); 
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--card-bg); 
    margin: 50px auto; 
    padding: 30px; 
    border-radius: 15px;
    width: 90%; 
    max-width: 600px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); 
    position: relative;
}

.close-modal {
    position: absolute; 
    top: 20px; 
    right: 20px; 
    font-size: 1.8rem; 
    color: var(--text-light);
    cursor: pointer; 
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover { 
    color: var(--accent); 
    background: rgba(0,0,0,0.05);
}

.modal-header { 
    margin-bottom: 25px; 
    padding-bottom: 18px; 
    border-bottom: 1px solid #eee; 
}

.modal-header h2 { 
    color: var(--text-dark); 
    font-weight: 700;
}

.order-summary {
    background-color: #f8f9fa; 
    padding: 20px; 
    border-radius: 10px; 
    margin-bottom: 25px;
}

.cart-item {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 12px 0; 
    border-bottom: 1px solid #eee;
}

.cart-item:last-child { 
    border-bottom: none; 
}

.cart-item-info { 
    flex: 1; 
}

.cart-item-name { 
    font-weight: 600; 
    margin-bottom: 5px; 
    color: var(--text-dark);
}

.cart-item-price { 
    color: var(--accent); 
    font-weight: 700; 
}

.cart-item-remove {
    background: none; 
    border: none; 
    color: var(--danger); 
    cursor: pointer;
    padding: 5px; 
    font-size: 0.9rem; 
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    transform: scale(1.1);
}

.summary-item { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 10px; 
}

.summary-total {
    font-weight: 800; 
    font-size: 1.3rem; 
    color: var(--accent); 
    border-top: 2px solid #ddd;
    padding-top: 15px; 
    margin-top: 15px; 
}

.checkout-form { 
    display: grid; 
    gap: 18px; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 18px; 
}

.form-group { 
    margin-bottom: 18px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: var(--text-dark); 
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%; 
    padding: 14px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 1rem; 
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    border-color: var(--primary); 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.payment-methods { 
    margin: 25px 0; 
    padding: 20px; 
    background-color: #f8f9fa; 
    border-radius: 10px; 
}

.payment-method {
    margin-bottom: 15px; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    background-color: var(--white);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-method h4 { 
    margin-bottom: 8px; 
    color: var(--text-dark); 
    font-weight: 700;
}

.payment-details { 
    font-size: 0.9rem; 
    color: var(--text-light); 
    margin-top: 8px; 
    line-height: 1.5;
}

.submit-order {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white); 
    border: none; 
    padding: 15px 25px; 
    border-radius: 8px; 
    cursor: pointer;
    font-size: 1.1rem; 
    width: 100%; 
    font-weight: 700; 
    transition: all 0.3s ease; 
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.submit-order:hover { 
    opacity: 0.95; 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

/* ---------------- MODAL DO CARRINHO ---------------- */
.cart-items { 
    max-height: 400px; 
    overflow-y: auto; 
}

.empty-cart {
    text-align: center; 
    padding: 40px 20px; 
    color: var(--text-light);
}

.empty-cart i { 
    font-size: 3.5rem; 
    margin-bottom: 15px; 
    opacity: 0.5; 
    color: var(--primary-light);
}

.cart-footer {
    margin-top: 25px; 
    padding-top: 25px; 
    border-top: 2px solid #eee;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.cart-total { 
    font-weight: 800; 
    font-size: 1.3rem; 
}

.cart-total span:last-child { 
    color: var(--accent); 
    margin-left: 10px; 
}

.checkout-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white); 
    border: none; 
    padding: 14px 25px; 
    border-radius: 8px;
    cursor: pointer; 
    font-weight: 700; 
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.checkout-btn:hover { 
    opacity: 0.95; 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

.checkout-btn:disabled {
    background: #ccc; 
    cursor: not-allowed; 
    transform: none;
    box-shadow: none;
}

/* ---------------- SEÇÃO SOBRE ---------------- */
.about-section {
    background: var(--footer-bg);
    color: var(--white); 
    padding: 30px 0 15px; 
    margin-top: 40px;
    border-radius: 15px 15px 0 0;
}

.about-content { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

.about-brand h3 { 
    font-size: 1.5rem; 
    margin-bottom: 15px; 
    color: var(--white); 
    font-weight: 700;
}

.about-brand p { 
    font-size: 1rem; 
    line-height: 1.6; 
    max-width: 800px; 
    opacity: 0.9;
}

.about-info {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px;
}

.info-column h4 { 
    font-size: 1.1rem; 
    margin-bottom: 12px; 
    color: var(--white); 
    font-weight: 600;
}

.info-column h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
}

.info-column p { 
    margin-bottom: 8px; 
    line-height: 1.5; 
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright {
    text-align: center; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.15); 
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---------------- RESPONSIVIDADE ---------------- */
/* Tablets e telas médias */
@media (max-width: 768px) {
    .container { padding: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .filter-bar { flex-direction: column; gap: 10px; }
    .filter-select { min-width: 100%; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .services-grid { grid-template-columns: 1fr; }
    .logo-top-left, .logo-bottom-right { width: 60px; height: 60px; }
    .loading-text { font-size: 2rem; }
    .about-info { grid-template-columns: 1fr; }
    .about-brand h3 { font-size: 1.3rem; }
    .cart-footer { flex-direction: column; gap: 15px; }
    .cart-total { margin-bottom: 10px; }
    .about-section { padding: 25px 0 12px; }
}

/* Compacto estilo Amazon no celular (1–2 colunas, itens pequenos) */
@media (max-width: 600px) {
    .container { padding: 12px; }
    header { padding: 0.85rem; border-radius: 12px; }
    .panel { padding: 18px; }

    /* Produtos compactos */
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
    .product img { height: 130px; }
    .product-content { padding: 12px; }
    .product h3 { font-size: 0.95rem; margin-bottom: 5px; }
    .product p { font-size: 0.8rem; margin-bottom: 5px; }
    .product-price { font-size: 1rem; margin: 6px 0; }
    .buy-btn, .delete-btn { font-size: 0.85rem; padding: 10px; }

    /* Serviços compactos */
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
    .service img { height: 130px; }
    .service-content { padding: 12px; }
    .service h3 { font-size: 0.95rem; margin-bottom: 5px; }
    .service p { font-size: 0.8rem; }

    /* Cabeçalho compacto */
    .brand-icon { width: 45px; height: 45px; }
    .brand-text h1 { font-size: 1.3rem; }
    .brand-text span { font-size: 0.75rem; }
    .cart-icon { width: 40px; height: 40px; }
    .cart-icon i { font-size: 1rem; }

    /* Filtros leves */
    .filter-bar { gap: 8px; }
    .filter-select select { padding: 10px; font-size: 0.85rem; }

    /* Modal compacto */
    .modal-content { padding: 20px; }
    .form-group label { font-size: 0.85rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 10px; font-size: 0.9rem; }
    .submit-order { font-size: 0.9rem; padding: 12px; }

    /* Sobre compacto */
    .about-brand h3 { font-size: 1.2rem; }
    .about-brand p { font-size: 0.9rem; }
    .info-column h4 { font-size: 1rem; }
    .info-column p, .info-column h5 { font-size: 0.85rem; }
    .about-section { padding: 20px 0 10px; }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .navigation-tabs { flex-direction: column; }
    .tab-button { width: 100%; text-align: center; }
    .logo-top-left, .logo-bottom-right { display: none; }
    .about-brand h3 { font-size: 1.1rem; }
    .about-brand p { font-size: 0.9rem; }
    .about-section { padding: 18px 0 8px; }
}

/* Acessibilidade: reduz animações se o usuário preferir */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
/* ---------------- CONTÊINER DE ANÚNCIO ---------------- */
.ad-container {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    border: 1px solid #eee;
}

/* Responsividade para o anúncio */
@media (max-width: 768px) {
    .ad-container {
        margin-bottom: 15px;
        padding: 8px;
    }
}