/* Style global */
:root {
    --primary-color: #E91E63;
    --secondary-color: #9C27B0;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    max-height: 50px;
}

.brand-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Slider */
.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Advantage Box */
.advantage-box {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.advantage-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.advantage-box i {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Testimonial Cards */
.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-card .rating {
    color: #ffc107;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-card .product-image {
    height: 200px;
    object-fit: cover;
}

.product-card .product-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.product-card .btn-primary {
    background: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.product-card .btn-primary:hover {
    background: var(--secondary-color);
}

/* Footer */
footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .social-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: var(--transition);
}

footer .social-links a:hover {
    color: var(--primary-color);
}

footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

/* Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Command Form */
.order-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.order-form .form-control,
.order-form .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: var(--transition);
}

.order-form .form-control:focus,
.order-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.payment-option {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(233, 30, 99, 0.05);
}

.payment-option.selected {
    border-color: var(--primary-color);
    background: rgba(233, 30, 99, 0.1);
}

.payment-option img {
    max-height: 60px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 15px;
        bottom: 40%;
        transform: translateY(50%);
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .order-form {
        padding: 20px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .advantage-box {
        padding: 20px 15px;
    }
    
    .product-card .product-image {
        height: 150px;
    }
}