/* Reset y configuraciones básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 10px;
}


h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    white-space: nowrap; /* Evitar que el nombre se divida */
    overflow: hidden;
    text-overflow: ellipsis; /* Cortar con puntos si es muy largo */
    max-width: 100%; /* Asegurar que no se desborde */
}

h1 span.user-name {
    font-weight: 400; /* Menos énfasis en el nombre */
    color: #666;
}


.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
}

.cart-table th {
    background-color: #25D366;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}

.cart-table td {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
}

.cart-item-image {
    width: 50px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a; /* Negro como en la imagen */
    color: white;
    padding: 5px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1100;
}

.top-bar .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.hamburger-menu {
    margin-right: 20px;
    position: relative;
}

.hamburger-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hamburger-menu-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 200px;
    padding: 10px 0;
}

.hamburger-menu-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    text-align: left;
}

.top-left .logo-img {
    width: 120px;
    height: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.search-input {
    width: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-right .nav-icon {
    font-size: 0.8rem;
    color: white;
    text-decoration: none;
}

.top-right .cart-icon {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cart-count {
    font-size: 0.7em;
    padding: 2px 4px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    margin-left: 5px;
}

/* Main */
main {
    margin-top: 80px; /* Ajustado para evitar solapamiento con top-bar y header */
    padding: 20px 0;
}

/* Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-text {
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 20;
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-indicator.active {
    background: white;
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Category Bar */
.category-bar {
    background: #27ae60;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-bar .container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.category-bar span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}

.category-bar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.category-bar a:hover {
    color: #3498db;
}

/* Filtros de búsqueda */
.filters {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}

.filters form {
    display: flex;
    gap: 10px;
}

.filters input[type="text"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
}

@media (max-width: 768px) {
    .filters {
        justify-content: center;
    }
    .filters input[type="text"] {
        width: 150px;
    }
}

/* Grilla de productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    position: relative;
}

.product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.product-card img {
    /*width: 100%;*/
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.rating {
    margin-bottom: 10px;
}

.rating i {
    margin: 0 2px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-right: 5px;
}

.discounted-price {
    color: #27ae60;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.add-to-cart-form input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.btn-add,
.btn-quick-view {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-add:hover,
.btn-quick-view:hover {
    background: #219653;
}

.btn-quick-view {
    background: #3498db;
    margin-top: 5px;
}

.btn-quick-view:hover {
    background: #2980b9;
}

/* Popup de Vista Rápida */
.quick-view-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.quick-view-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 75%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.close-popup:hover {
    color: #333;
}

.quick-view-gallery {
    flex: 1;
    max-width: 33.33%;
    text-align: center;
    margin-right: 20px;
}

.quick-view-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 300px;
}

.quick-view-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quick-view-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.quick-view-thumbnail:hover {
    border-color: #27ae60;
}

.quick-view-details {
    flex: 2;
    max-width: 66.66%;
    padding-left: 20px;
}

.quick-view-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.quick-view-rating {
    margin-bottom: 10px;
}

.quick-view-rating i {
    margin: 0 2px;
}

.quick-view-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

.quick-view-price {
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-malestares {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.quick-view-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.quantity-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity-input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-add-to-cart {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.btn-add-to-cart:hover {
    background: #219653;
}

.quick-view-social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.quick-view-social a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
}

.quick-view-social a:hover {
    color: #27ae60;
}

.quick-view-promo {
    font-size: 12px;
    color: #27ae60;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
    display: block;
}

/* Nueva Sección de Categorías en Baldosas */
/* Nueva Sección de Categorías en Baldosas */
.categories-grid {
    padding: 20px 0;
    background: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espaciado uniforme entre baldosas */
}

.category-tile {
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
    width: 350px; /* Tamaño único para todas las baldosas */
    height: 250px; /* Tamaño único para todas las baldosas */
}

.category-tile:hover {
    transform: scale(1.05);
}

.category-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6); /* Fondo semitransparente oscuro */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

/* Media Queries para Responsividad */
@media (max-width: 768px) {
    .category-tile {
        width: 300px;
        height: 215px;
    }

    .category-name {
        font-size: 20px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 15px;
    }

    .category-tile {
        width: 100%; /* Ocupa todo el ancho en pantallas pequeñas */
        height: 200px; /* Altura ajustada para pantallas pequeñas */
    }

    .category-name {
        font-size: 18px;
        padding: 6px 12px;
    }
}
/* Nueva Sección Malestar
.malestar-section {
    padding: 40px 20px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.malestar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.malestar-text {
    flex: 1;
    padding-right: 20px;
}

.malestar-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.malestar-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.malestar-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.malestar-button:hover {
    background-color: #219653;
}

.malestar-image {
    flex: 1;
    text-align: right;
}

.malestar-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
 */
/* Nueva Sección de Noticias del Blog */
/* Nueva Sección de Noticias del Blog */
.blog-news-section {
    padding: 20px 0;
    background: #f9f9f9;
    text-align: center;
}

.blog-news-section h2 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-news-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.blog-news-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.blog-news-tile {
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 250px;
    height: 150px;
    background-image: url(''); /* Asegurar que se inicie con un valor por defecto */
}

.blog-news-tile:hover {
    transform: scale(1.05);
}

.blog-news-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

@media (max-width: 768px) {
    .blog-news-grid {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: hidden;
    }
    .blog-news-tile {
        flex: 1 0 45%;
        height: 120px;
    }
    .blog-news-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-news-tile {
        flex: 1 0 90%;
        height: 100px;
    }
    .blog-news-title {
        font-size: 12px;
    }
}
/* Sección de Marcas */
.brands-section {
    width: 100%;
    background-color: #F0F4F8;
    padding: 20px 0;
    overflow: hidden;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.brands-slider {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.brands-slider img {
    height: 60px;
    margin: 0 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.brands-slider img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .brands-slider img {
        height: 50px;
        margin: 0 15px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
}

@media (max-width: 480px) {
    .brands-slider img {
        height: 40px;
        margin: 0 10px;
    }
}

/* Footer */
.footer {
    background-color: #1A2A2A;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #A9CBA4;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #A9CBA4;
}

.footer-column .footer-btn {
    display: inline-block;
    background-color: #A9CBA4;
    color: #1A2A2A;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.footer-btn:hover {
    background-color: #87A787;
}

.footer-column .footer-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #A9CBA4;
    padding-top: 20px;
}

.certifications img {
    width: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #A9CBA4;
}

.copyright {
    font-size: 0.8rem;
    color: #A9CBA4;
}

.copyright a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .certifications,
    .social-icons {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1rem;
    }
    .footer-column p {
        font-size: 0.8rem;
    }
    .certifications img {
        width: 40px;
    }
}

/* Media Queries Adicionales */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-left,
    .search-bar,
    .top-right {
        margin-bottom: 10px;
    }
    .hamburger-menu {
        margin-right: 0;
    }
    .search-bar {
        margin-right: 0;
    }
    .top-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        padding: 10px;
    }
    .hamburger-toggle {
        font-size: 1.5rem;
    }
    .search-input {
        width: 150px;
    }
    .top-right .nav-icon {
        font-size: 0.7rem;
    }
    .top-right .cart-icon {
        font-size: 1rem;
    }
}


/*loginnnnnnnnnnnnnnnnn*/
/* Estilos para el formulario de login */
/* Estilos para la sección de cuenta */
.account-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.account-header {
    background: url('images/account-background.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px 10px 0 0;
}

.account-header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.account-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}

.account-column {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.account-column h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.account-column p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.account-column input[type="text"],
.account-column input[type="password"],
.account-column input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.account-column input[type="text"]:focus,
.account-column input[type="password"]:focus,
.account-column input[type="email"]:focus {
    border-color: #25D366;
    outline: none;
}

.account-column label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.account-column .forgot-password {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.account-column .forgot-password:hover {
    text-decoration: underline;
}

.account-btn {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.account-btn:hover {
    background-color: #555;
}

.error {
    color: #d32f2f;
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

/* Responsividad */
@media (max-width: 768px) {
    .account-header h1 {
        font-size: 2.5rem;
    }

    .account-content {
        flex-direction: column;
    }

    .account-column {
        margin-bottom: 20px;
    }

    .account-column h2 {
        font-size: 1.3rem;
    }

    .account-column input[type="text"],
    .account-column input[type="password"],
    .account-column input[type="email"] {
        font-size: 0.9rem;
    }

    .account-btn {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .account-header {
        padding: 20px;
    }

    .account-header h1 {
        font-size: 2rem;
    }

    .account-column h2 {
        font-size: 1.1rem;
    }

    .account-column input[type="text"],
    .account-column input[type="password"],
    .account-column input[type="email"] {
        font-size: 0.8rem;
        padding: 10px;
    }

    .account-btn {
        font-size: 0.9rem;
        padding: 10px;
    }

    .error {
        font-size: 0.9rem;
    }
}

/* FIN LOGIN*/

/* INICIO PROFILE*/
/* Estilos para la sección de perfil */
.profile-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-container h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-column {
    min-width: 0;
}

.profile-column h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input[type="number"] {
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #25D366;
    outline: none;
}

.readonly-info {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    display: inline-block;
}

.btn {
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1DA851;
}

.logout-btn {
    background-color: #d32f2f;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.logout-btn:hover {
    background-color: #b71c1c;
}

/* Responsividad */
@media (max-width: 1024px) {
    .profile-content {
        grid-template-columns: 1fr 1fr;
    }

    .profile-column.actions {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .profile-container {
        max-width: 90%;
        margin: 30px auto;
        padding: 20px;
    }

    .profile-container h1 {
        font-size: 2rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-column h2 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .profile-container {
        margin: 20px auto;
        padding: 15px;
    }

    .profile-container h1 {
        font-size: 1.5rem;
    }

    .profile-column h2 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.8rem;
        padding: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .readonly-info {
        font-size: 0.9rem;
    }
}
/*FIN PROFILE*/
/*CARRITOOOOOOOOOOOOOOOOOOOOOOOOOO*/
.cart-item-image {
    width: 50px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="number"]:focus {
    border-color: #25D366;
    outline: none;
}

.btn-remove {
    padding: 5px 10px;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-remove:hover {
    background-color: #b71c1c;
}

.cart-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: #1DA851;
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .cart-table th,
    .cart-table td {
        font-size: 0.9rem;
        padding: 10px;
    }

    .cart-item-image {
        width: 40px;
    }

    input[type="number"] {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .cart-table th,
    .cart-table td {
        font-size: 0.8rem;
        padding: 8px;
    }

    .cart-item-image {
        width: 30px;
    }

    input[type="number"] {
        font-size: 0.8rem;
        width: 50px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .btn + .btn {
        margin-top: 10px;
    }
}
/* FINNNNNNNNN Estilos para el carrito */
/* Estilo para los detalles de la orden */
.order-detail {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500; /* Resaltar un poco el texto */
    background-color: #f5f5f5; /* Fondo claro para destacar */
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}
.order-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.print-btn {
    background-color: #666; /* Gris para imprimir */
}

.print-btn:hover {
    background-color: #888;
}

.email-btn {
    background-color: #1976d2; /* Azul para correo */
}

.email-btn:hover {
    background-color: #1565c0;
}

.back-btn {
    background-color: #666; /* Gris para volver */
}
.success {
    color: #2e7d32; /* Verde para éxito */
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

/********************/
/* Estilos generales */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.user-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.user-info h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.user-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.order-section {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.order-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.order-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* Estilos para la tabla del carrito */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    background-color: #25D366;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}

.cart-table td {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
}

/* Estilos para los botones */
.order-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: #1DA851;
}

.back-btn {
    background-color: #666; /* Gris para volver */
}

.back-btn:hover {
    background-color: #888;
}

.logout-btn {
    background-color: #d32f2f; /* Rojo para cerrar sesión */
}

.logout-btn:hover {
    background-color: #b71c1c;
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .user-info h2,
    .order-section h2 {
        font-size: 1.3rem;
    }

    .user-info p,
    .order-section p {
        font-size: 0.9rem;
    }

    .cart-table th,
    .cart-table td {
        font-size: 0.9rem;
        padding: 10px;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .user-info h2,
    .order-section h2 {
        font-size: 1.1rem;
    }

    .user-info p,
    .order-section p {
        font-size: 0.8rem;
    }

    .cart-table th,
    .cart-table td {
        font-size: 0.8rem;
        padding: 8px;
    }

    .order-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
        width: 100%;
    }
}


/*registrooooooooooo*/
/* Estilos generales */
/* Estilos generales */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.register-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.error {
    color: #d32f2f; /* Rojo para errores */
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #25D366;
    outline: none;
}

.btn {
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1DA851;
}

/* Responsividad */
@media (max-width: 768px) {
    .register-container {
        max-width: 90%;
        margin: 30px auto;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .error {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .register-container {
        margin: 20px auto;
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .error {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.8rem;
        padding: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}


/*recuperarrrrrrrrr*/
/* Estilos generales */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.recover-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.success {
    color: #2e7d32; /* Verde para éxito */
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.error {
    color: #d32f2f; /* Rojo para errores */
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.recover-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #25D366;
    outline: none;
}

.btn {
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1DA851;
}

.back-btn {
    background-color: #666; /* Gris para volver */
    margin-top: 10px;
    display: inline-block;
}

.back-btn:hover {
    background-color: #888;
}

/* Responsividad */
@media (max-width: 768px) {
    .recover-container {
        max-width: 90%;
        margin: 30px auto;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .success,
    .error {
        font-size: 0.9rem;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .recover-container {
        margin: 20px auto;
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .success,
    .error {
        font-size: 0.8rem;
    }

    .form-group input {
        font-size: 0.8rem;
        padding: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .back-btn {
        width: 100%;
    }
}

/*RESET PASWOR*/
/* Estilos generales */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.reset-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.success {
    color: #2e7d32; /* Verde para éxito */
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.error {
    color: #d32f2f; /* Rojo para errores */
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #25D366;
    outline: none;
}

.btn {
    padding: 12px 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1DA851;
}

/* Responsividad */
@media (max-width: 768px) {
    .reset-container {
        max-width: 90%;
        margin: 30px auto;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .success,
    .error {
        font-size: 0.9rem;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .reset-container {
        margin: 20px auto;
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .success,
    .error {
        font-size: 0.8rem;
    }

    .form-group input {
        font-size: 0.8rem;
        padding: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Nueva Sección de Productos Más Vendidos */
.best-sellers-section {
    margin: 60px 0; /* Espaciado superior e inferior para separarla de otras secciones */
    padding: 40px 0;
    background-color: #f9f9f9; /* Fondo claro para diferenciarla */
    border-top: 1px solid #ddd; /* Línea superior para separación visual */
    border-bottom: 1px solid #ddd; /* Línea inferior para separación visual */
}

.best-sellers-container {
    max-width: 1200px; /* Ajusta según el diseño general de tu sitio */
    margin: 0 auto;
    text-align: center;
}

.best-sellers-container h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.best-sellers-grid .product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    position: relative;
}

.best-sellers-grid .product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.best-sellers-grid .product-card img {
    /*width: 100%;*/
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.best-sellers-grid .product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.best-sellers-grid .rating {
    margin-bottom: 10px;
}

.best-sellers-grid .rating i {
    margin: 0 2px;
}

.best-sellers-grid .original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-right: 5px;
}

.best-sellers-grid .discounted-price {
    color: #27ae60;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.best-sellers-grid .add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.best-sellers-grid .add-to-cart-form input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.best-sellers-grid .btn-add,
.best-sellers-grid .btn-quick-view {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background 0.3s;
}

.best-sellers-grid .btn-add:hover,
.best-sellers-grid .btn-quick-view:hover {
    background: #219653;
}

.best-sellers-grid .btn-quick-view {
    background: #3498db;
    margin-top: 5px;
}

.best-sellers-grid .btn-quick-view:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .best-sellers-section {
        margin: 40px 0;
        padding: 30px 0;
    }

    .best-sellers-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .best-sellers-section {
        margin: 30px 0;
        padding: 20px 0;
    }

    .best-sellers-grid {
        gap: 10px;
    }
}


/* Nueva Sección de Ofertas y Malestar */
.special-offers-section {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f1f1f1;
}

.special-offers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.special-offers-left,
.special-offers-right {
    flex: 1;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.special-offers-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.special-offers-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.btn-special {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-special:hover {
    background: #219653;
}

@media (max-width: 768px) {
    .special-offers-container {
        flex-direction: column;
        gap: 20px;
    }

    .special-offers-image {
        height: 200px;
    }

    .special-offers-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .special-offers-image {
        height: 150px;
    }

    .special-offers-text {
        font-size: 1.5rem;
    }
}

/* Opcional: Personalizar la sección de Nuevos Lanzamientos si lo deseas */
.new-releases-section {
    /*margin: 10px 0;*/
    padding: 40px 0;
    background-color: #f9f9f9; /* Fondo claro, similar a best-sellers */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.new-releases-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}