
        :root {
            --primary-color: #F7A8B8;
            --secondary-color: #5D4037;
            --accent-color: #FFD54F;
            --light-color: #FFF9F2;
            --dark-color: #3E2723;
            --text-color: #4E342E;
            --white: #FFFFFF;
            --instagram-color: #E1306C;
            --tiktok-color: #000000;
            --facebook-color: #1877F2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-color);
        }

        h1 {
            font-size: 3.8rem;
            font-family: 'Dancing Script', cursive;
            color: var(--primary-color);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        }

        h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }

        h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .logo-container:hover {
            transform: scale(1.03);
        }

        /* .logo-img-container {
            position: relative;
            margin-right: 20px;
        }



.logo-img-container {
    position: relative;
    margin-right: 50px;
} */

.logo-img-container {
    position: relative;
    margin-right: 20px;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #FFB6C1);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(247, 168, 184, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
}

        .logo-circle:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 20%);
            transform: rotate(30deg);
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            letter-spacing: 1px;
        }

        .logo-tagline {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 5px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 35px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s;
            position: relative;
            padding: 8px 0;
            display: inline-block;
        }

        nav ul li a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 2px;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        /* ACTIVE LINK STYLES  */
        nav ul li a.active {
            color: var(--primary-color);
            font-weight: 700;
            /* background-color: rgba(247, 168, 184, 0.1); */
            padding: 8px 12px;
            border-radius: 8px;
        }

        nav ul li a.active:after {
            width: 100%;
            height: 4px;
            bottom: -5px;
        }
.filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(247, 168, 184, 0.536);
             box-shadow: 0 8px 15px rgba(246, 148, 168, 0.721);
        }

        
        .mobile-menu {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
            transition: color 0.3s;
        }

        .mobile-menu:hover {
            color: var(--primary-color);
        }
        


/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 100px 0 40px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V0C999.2,19.8,873.3,96.3,500,97z' fill='%233E2723'/%3E%3C/svg%3E");
    background-size: 100% 120px;
    background-position: top;
    background-repeat: no-repeat;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-about p {
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 35px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-contact p {
    margin-bottom: 25px;
    opacity: 0.85;
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-contact i {
    margin-right: 18px;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.4s;
    text-decoration: none;
}

        /* ========== POPUP STYLES ========== */
/* Order Now Button */
.popup-order-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    display: inline-block;
    margin: 20px auto;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.popup-order-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252, #ff7b42);
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 450px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #F7A8B8, #FF80AB);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 32px;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
    font-weight: 300;
    line-height: 1;
}
nav ul li a.active {
                padding: 12px 20px;
            }

.close-btn:hover {
    color: #FFD54F;
}

.modal-header h2 {
    margin: 15px 0 10px;
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    letter-spacing: 1px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.separator {
    width: 100px;
    height: 4px;
    background-color: #FFD54F;
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tagline {
    margin: 15px 0 0;
    font-style: italic;
    opacity: 0.95;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.fb {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-icon.insta {
    background: linear-gradient(135deg, #405de6, #833ab4, #fd1d1d);
}
.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-icon:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Phone Section */
/* .phone-section {
    text-align: center;
}

.phone-section label {
    display: block;
    margin-bottom: 15px;
    color: #5D4037;
    font-weight: 600;
    font-size: 1.2rem;
}

.phone-input-group {
    display: flex;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

#phoneInput {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #F7A8B8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

#phoneInput:focus {
    outline: none;
    border-color: #5D4037;
    box-shadow: 0 0 0 3px rgba(247, 168, 184, 0.3);
} */

/* .call-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    min-width: 120px;
} */

/* .call-btn:hover {
    background: linear-gradient(135deg, #43A047, #1B5E20);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
} */

/* Responsive */
@media (max-width: 576px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 25px 20px;
    }
    nav ul li a.active {
                padding: 12px 20px;
            }
    
    .modal-header h2 {
        font-size: 2.8rem;
    }
    
    .social-icons {
        gap: 30px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* .phone-input-group {
        flex-direction: column;
    }
    
    .call-btn {
        width: 100%;
    } */
}
/* ========== END POPUP STYLES ========== */

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), #FF80AB);
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.copyright i.fa-heart {
    color: var(--primary-color);
    margin: 0 5px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    5% { transform: scale(1.2); }
    10% { transform: scale(1.1); }
    15% { transform: scale(1.3); }
    50% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Responsive Design - Global */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        z-index: 100;
        border-top: 2px solid var(--light-color);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 18px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo-main {
        font-size: 2.3rem;
    }
    nav ul li a.active {
                padding: 12px 20px;
            }
    
    .logo-circle {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .logo-main {
        font-size: 2rem;
    }
    
    .logo-circle {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-right: 15px;
    }
    
    .logo-tagline {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}