/* Tema Remarket - Estilo Rappi */

:root {
    --primary-color: #00D9FF;
    --secondary-color: #FF6B6B;
    --success-color: #51CF66;
    --warning-color: #FFD43B;
    --danger-color: #FF5757;
    --dark-color: #212529;
    --light-color: #F8F9FA;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00B8D4 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.product-card img {
    transition: transform 0.3s ease;
}

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

/* Store Cards */
.store-list .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #00B8D4;
    border-color: #00B8D4;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

/* Progress Bar */
.progress {
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color) 0%, #00B8D4 100%);
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25);
}

/* Cards */
.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        text-align: center;
    }

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

