body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #151515;
}

.back-to-home {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.back-to-home:hover {
    background-color: #0056b3;
}

.footer {
    width: 100% !important;
    height: 280px !important;
}

header {
    background-color: #0f0f0f;
    color: #fff;
    padding: 80px;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.header-text {
    margin-left: 20px;
}

.header-text h1 {
    margin: 0;
    font-size: 1.8em;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 1em;
}

h1, h2 {
    color: #fb9608;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #575757;
    border-radius: 4px;
}

.menu-links {
    display: flex;
    gap: 15px;
}

.menu-links a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.menu-links a:hover {
    background-color: #575757;
    border-radius: 4px;
}

.menu-icon {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

section h2 {
    padding-top: 80px;
}

.tienda-intro {
    width: 90%;
    max-width: 700px;
    margin: 20px auto 0;
    padding: 15px 20px;
    background-color: #fff4e5;
    border: 1px solid #f9c98f;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95em;
}

.tienda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    padding: 20px 5%;
}

.producto-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 5px 5px 10px 0px #d8d8d7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-imagen {
    width: 100%;
    height: 140px;
    background: linear-gradient(45deg, #f78360, #f7b8a5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-imagen i {
    font-size: 48px;
    color: #fff;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tienda-cargando {
    text-align: center;
    padding: 30px;
    color: #777;
}

.producto-card h3 {
    margin: 12px 15px 0;
    font-size: 1.05em;
    color: #151515;
}

.producto-desc {
    margin: 8px 15px 0;
    font-size: 0.85em;
    color: #555;
    flex-grow: 1;
}

.producto-precio {
    margin: 10px 15px 0;
    font-weight: bold;
    font-size: 1.1em;
    color: #fb9608;
}

.producto-boton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px;
    padding: 10px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.producto-boton:hover {
    background-color: #1ebe5a;
}

.sidebar-wh {
    position: fixed;
    right: 10px;
    top: 5%;
    transform: translateY(-50%);
    border-radius: 50px;
    z-index: 1000;
}

.sidebar-wh a img {
    width: 45px;
}

@media (max-width: 800px) {
    .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 100%;
        left: 0;
    }

    .menu-links.active {
        display: flex;
    }

    .menu-icon {
        display: inline-block;
        padding-left: 30px;
    }

    .navbar {
        justify-content: space-between;
    }
}
