:root {
    --primary-blue: #00B4D8;
    --primary-pink: #FF6B9D;
    --primary-turquoise: #4ECDC4;
    --primary-orange: #FF8C42;
    --primary-purple: #9B5DE5;
    --primary-green: #00D9A5;
    --text-dark: #2C3E50;
    --bg-light: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', 'Bubblegum Sans', sans-serif;
    color: var(--text-dark);
    padding-top: 76px;
}

/* Navbar */
.navbar {
    background: white !important;
    border-bottom: 3px solid var(--primary-blue);
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-turquoise) !important;
}

/* Hero Section with Store Image */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.store-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.store-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 180, 216, 0.88) 0%, 
        rgba(155, 93, 229, 0.88) 50%,
        rgba(255, 107, 157, 0.88) 100%);
    display: flex;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    height: auto;
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.hero-subtitle {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-turquoise) 100%);
    color: white;
}

.feature-item i {
    color: white !important;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.title-decoration {
    margin-bottom: 30px;
}

.shoe-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Category Cards */
.category-card {
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.category-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
}

.category-name {
    font-weight: 600;
    margin: 0;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-turquoise);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-quick-view:hover {
    transform: scale(1.2);
}

.product-info {
    padding: 15px;
}

.product-category {
    color: var(--primary-turquoise);
    font-size: 0.85rem;
    font-weight: 500;
}

.product-title {
    margin: 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    min-height: 2.5em;
}

.product-price {
    margin: 10px 0;
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    display: block;
}

.price-current {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-whatsapp {
    display: block;
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }
}

/* Contact Section */
#contacto {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-turquoise);
    margin-right: 15px;
}

.contact-item h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-item p {
    margin: 5px 0 0;
    color: #666;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-turquoise);
    transform: translateY(-3px);
}

/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-body {
    padding: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Loading Animation */
.loading-container {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.shoe-loader {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}