* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #FFE5F0 0%, #FFF0F8 100%);
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #FF69B4;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FF69B4;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFE5F0 0%, #FFF0F8 50%, #FFE5F0 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #FF69B4;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #FF69B4;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #FF69B4;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #FF69B4;
    color: white;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.about h2 {
    color: #FF69B4;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

/* Products Section */
.featured-products,
.all-products {
    padding: 60px 0;
    background: #FFFBFC;
}

.featured-products h2,
.all-products h2 {
    text-align: center;
    color: #FF69B4;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.25);
}

.product-card:active {
    transform: scale(0.98);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #FFE5F0;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.category-tag {
    display: inline-block;
    background: #FFE5F0;
    color: #FF69B4;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    color: #FF69B4;
    font-size: 1.3rem;
    font-weight: 700;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.discount-price {
    color: #FF1493;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.discount-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.price-box {
    margin-top: 10px;
}

.save-amount {
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
    background: #d4edda;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

.save-amount::before {
    content: '✨ ';
}

/* Badge Styles */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF1493, #C71585);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.5);
    letter-spacing: 0.5px;
    pointer-events: none;
}

.promo-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    pointer-events: none;
}

.discount-badge-inline {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 5px 14px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    color: #FF69B4;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-links {
    max-width: 600px;
    margin: 0 auto;
}

.contact-links p {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-links strong {
    color: #333;
}

.contact-links a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.contact-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF69B4;
    transition: width 0.3s;
}

.contact-links a:hover::after {
    width: 100%;
}

.contact-links a:hover {
    color: #FF1493;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-links p {
        flex-direction: column;
        gap: 5px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #FFE5F0 0%, #FFF0F8 100%);
    padding: 30px 0;
    text-align: center;
    color: #666;
}

/* Products Page */
.products-page {
    padding: 60px 0;
    min-height: 70vh;
}

.products-page h1 {
    text-align: center;
    color: #FF69B4;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    color: #FF69B4;
    border: 2px solid #FFE5F0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FF69B4;
    color: white;
    border-color: #FF69B4;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .featured-products h2,
    .all-products h2,
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Products Page */
.products-page {
    padding: 60px 0;
    min-height: 70vh;
}

.products-page h1 {
    text-align: center;
    color: #FF69B4;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}


/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.product-modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    position: relative;
    animation: modalZoomIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10000;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.modal-close:hover {
    background: #FF69B4;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #FFE5F0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details .category-tag {
    display: inline-block;
    background: #FFE5F0;
    color: #FF69B4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 600;
    width: fit-content;
}

.modal-details h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-details .description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-price {
    margin-bottom: 25px;
}

.modal-price .price {
    color: #FF69B4;
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.modal-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}

.modal-price .discount-price {
    color: #FF1493;
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button::before {
    content: '📱';
    font-size: 1.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-details h2 {
        font-size: 1.5rem;
    }
    
    .modal-price .price {
        font-size: 1.6rem;
    }
    
    .modal-price .discount-price {
        font-size: 1.8rem;
    }
    
    .whatsapp-button {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 20px 0;
    }
}

/* Product Card Cursor */
.product-card {
    cursor: pointer;
    user-select: none;
}

.product-card:active {
    transform: scale(0.98);
}


/* Modal Badges */
.modal-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 100;
    pointer-events: none;
}

.modal-discount-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
}

.modal-promo-badge {
    background: linear-gradient(135deg, #FF1493, #C71585);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.5);
    animation: pulse 2s infinite;
}

/* Responsive Modal Badges */
@media (max-width: 768px) {
    .modal-badges {
        top: 15px;
        left: 15px;
        right: 15px;
    }
    
    .modal-discount-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .modal-promo-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
