/* Ollas.com.pe - Main Styles */

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Section titles */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #198754;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Product cards */
.product-card, .promo-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e9ecef;
}

.product-card:hover, .promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card .card-img-top, .promo-card .card-img-top {
    aspect-ratio: 1;
    object-fit: contain;
    padding: 1rem;
    background: #f8f9fa;
}

/* WhatsApp floating button */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.ws-button {
    display: block;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ws-button:hover {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.ws-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Trust badges */
.badge.bg-light {
    font-weight: 500;
}

/* Breadcrumbs */
.breadcrumb {
    margin-bottom: 0;
    padding: 0.5rem 0;
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: #f0fdf4;
    color: #166534;
}

/* CTA sections */
.bg-light.rounded {
    border: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .floating-actions {
        bottom: 10px;
        right: 10px;
    }

    .ws-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
