/* Ranisa Boutique - Custom CSS Design System */
:root {
    --primary-color: #f7d9d9;
    /* Soft Blush Pink */
    --secondary-color: #fcf8f2;
    /* Creamy Pearl */
    --accent-color: #d4af37;
    /* Elegant Gold */
    --text-color: #4a4a4a;
    /* Muted Charcoal */
    --light-text: #ffffff;
    --pastel-blue: #e3f2fd;
    --pastel-green: #e8f5e9;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Category Card */
.category-card {
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-overlay {
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9) !important;
}

.category-card:hover .category-overlay {
    background: var(--primary-color) !important;
}

.category-overlay h4 {
    margin-bottom: 5px;
}

/* Button Styling */
.btn-ranisa {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-ranisa:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-ranisa {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-ranisa:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 150px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../images/hero_banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

/* Product Card */
.product-card {
    border: none;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    margin: 10px 0;
}

.product-price {
    font-weight: 700;
    color: var(--accent-color);
}

/* Footer Section */
.footer {
    background-color: var(--secondary-color);
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease backwards;
}