/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Add stagger delay for lists or grids */
.row > div:nth-child(1) .card { animation-delay: 0.1s; }
.row > div:nth-child(2) .card { animation-delay: 0.2s; }
.row > div:nth-child(3) .card { animation-delay: 0.3s; }
.row > div:nth-child(4) .card { animation-delay: 0.4s; }

/* Existing Styles... */

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fffafb; /* Very light pink background */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #d63384; /* Bootstrap pink-600 or similar brand color */
}

/* Header & Top Bar */
.top-bar {
    background-color: #f8d7da; /* Light pink */
    font-size: 0.9rem;
}
.top-bar a {
    color: #842029;
    text-decoration: none;
    margin-left: 10px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: #d63384 !important;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
}
.nav-link:hover, .nav-link.active {
    color: #d63384 !important;
}

/* Hero Section */
/* Overridden by Carousel in HTML, keeping basic defaults just in case */
.hero-section {
    position: relative;
    background-color: #333; /* Fallback */
}

.hero-headline {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtext {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary-brand {
    background-color: #d63384;
    border-color: #d63384;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary-brand:hover {
    background-color: #b02a6b;
    border-color: #b02a6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(214, 51, 132, 0.3);
}

.btn-outline-brand {
    border-color: #d63384;
    color: #d63384;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-outline-brand:hover {
    background-color: #d63384;
    color: white;
}

/* Product Cards */
.product-card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-card img {
    height: 250px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
.card-title {
    color: #d63384;
    font-weight: 600;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    font-size: 30px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}
.floating-btn:hover {
    color: white;
    transform: scale(1.1);
}
.whatsapp-btn-right {
    right: 20px;
    background-color: #25D366;
}
.call-btn-left {
    left: 20px;
    background-color: #007bff;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}
footer a {
    color: #f8d7da;
}
