/* Custom CSS Variables */
:root {
    --primary-pink: #E91E63;
    --light-pink: #F8BBD9;
    --dark-pink: #AD1457;
    --cream: #FFF8F0;
    --gold: #FFD700;
    --soft-pink: #FCE4EC;
    --gradient-pink: linear-gradient(135deg, #F8BBD9 0%, #E91E63 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Utility Classes */
.text-pink {
    color: var(--primary-pink) !important;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-pink);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    height: 3px;
    background: var(--gradient-pink);
    border-radius: 50px;
    margin: 40px auto;
    width: 100px;
}

.heart-decoration {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin: 0 10px;
}

/* Cards */
.card-pink {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-pink:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

/* Buttons */
.btn-primary-pink {
    background: var(--gradient-pink);
    border: none;
    color: white;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
    color: white;
}

.btn-outline-pink {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.3);
}

/* Coffee Section */
.coffee-section {
    background-color: var(--soft-pink);
}

.coffee-features .feature-row {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
}

/* Products Section */
.product-card {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.product-emoji {
    font-size: 4rem;
    line-height: 1;
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .btn-primary-pink, .btn-outline-pink {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
