/* Root Variables */
:root {
    --primary-color: #A91E5C;
    --secondary-color: #8B1548;
    --accent-gold: #D4AF37;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FFF0F5;
    --white: #FFFFFF;
}

/* Global Styles */
* {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    /* line-height: 1.6;
    overflow-x: hidden; */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

 

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.header-icons .icon-link {
    font-size: 20px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.header-icons .icon-link:hover {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* height: 300px; */
    overflow: hidden;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 30, 92, 0.4);
}

/* Section Title */
.section-title {
    font-size: 42px;
    /* font-weight: 700; */
    color: var(--text-dark);
    margin-bottom: 20px;
}

  
.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    
    /* transition: transform 0.3s ease; */
}



.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}
.category-overlay h3{
font-size: 18px;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); */
    padding: 20px;
    color: #000;
     text-transform: uppercase;
     
}

.category-name {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Showcase Section */
.showcase-section {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Best Sellers Section */
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 20px;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-price {
    margin-bottom: 20px;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
    margin-right: 10px;
}

.price-sale {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.btn-buy {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-buy:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Gift Hamper Section */
.gift-hamper-section {
    /* background-color: var(--bg-light); */
}

.gift-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.gift-features {
    list-style: none;
    padding: 0;
}

.gift-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.gift-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

 
.budget-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: -230px;
     font-family: "Dancing Script", cursive !important;
     color: #000;
}

 
/* Trust Badges Section */
.trust-badges-section {
    background-color: var(--bg-light) !important;
}

.trust-badge {
    text-align: center;
}

.badge-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.badge-icon i {
    font-size: 60px;
    color: var(--white);
}

.trust-badge:hover .badge-icon {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}



@media (min-width: 1600px) {
    .badge-text {
        font-size: 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 16px;
}

/* Visit Store Section */
.visit-store-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.store-title {
    font-size: 48px;
    font-weight: 700;
        margin-bottom: -310px;
    margin-right: -900px;
}

.store-text {
    font-size: 20px;
    margin-bottom: 30px;
}

 
/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .category-card {
        height: 220px;
    }
    
    .store-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .category-card {
        height: 180px;
    }
    
    .category-name {
        font-size: 18px;
    }
    
    .product-image {
        height: 250px;
    }
    

    .store-title {
        font-size: 28px;
    }
    
    .store-text {
        font-size: 16px;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .header-icons {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-primary-custom {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .category-card {
        height: 160px;
    }
    
    .showcase-section {
        height: 250px;
    }
    
    .visit-store-section {
        height: 350px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}