:root {
    --primary-color: #00bcd4;
    --secondary-color: #0097a7;
    --accent-color: #b2ebf2;
    --text-color: #333;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.hero {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.background-logo {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categoria-titulo {
    color: var(--secondary-color);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.producto-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

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

.imagen-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.producto-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: var(--secondary-color);
}

.producto-card .descripcion {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
}

.producto-card .precio {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.carrito-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.carrito-imagen {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cantidad {
    color: #666;
    font-size: 0.9rem;
}

#cart-count {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    position: relative;
    top: -8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-logo {
        max-width: 180px;
    }

    .producto-card {
        margin-bottom: 20px;
    }

    .background-logo {
        width: 100%;
        opacity: 0.05;
    }

    .hero {
        padding: 2rem 0;
    }

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