:root {
    --brand-primary: #1a73e8;
    --brand-dark: #0d47a1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f6fa;
    color: #333;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hover-lift:hover .product-img {
    transform: scale(1.05);
}

.product-title {
    font-size: 0.9rem;
    line-height: 1.3;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-banner {
    border-radius: 0 0 2rem 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-primary:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

footer a:hover {
    color: var(--brand-primary) !important;
}

.producto-detalle-img {
    max-height: 400px;
    object-fit: contain;
}

.subtotal-item {
    white-space: nowrap;
}

.input-cantidad-carrito {
    -moz-appearance: textfield;
}
.input-cantidad-carrito::-webkit-outer-spin-button,
.input-cantidad-carrito::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
