/* ================ ROOT VARIABLES ================ */
:root {
    --primary-color: #FF9EB7; /* Soft pink */
    --secondary-color: #FFD6E0; /* Lighter pink */
    --accent-color: #FF85A2; /* Slightly darker pink */
    --dark-color: #333333; /* Dark gray for text */
    --light-color: #FFFFFF; /* Pure white */
    --text-color: #4A4A4A; /* Slightly softer than pure black */
}

/* ================ BASE STYLES ================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #d63384 transparent;
}

/* ================ SCROLLBAR ================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d63384;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c22173;
}

/* ================ TYPOGRAPHY ================ */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ================ PRELOADER ================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 12px solid rgba(255, 158, 183, 0.1);
    border-radius: 50%;
    border-top-color: #FF9EB7;
    animation: spin 1.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.loader:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-width: 10px;
    border-top-color: #4ECDC4;
    animation: spin 2.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite reverse;
}

.loader:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-width: 8px;
    border-top-color: #FFE66D;
    animation: spin 2.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 1px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

/* ================ OFFER BAR ================ */
.offer-bar {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.offer-container {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.offer-item {
    white-space: nowrap;
    padding: 0 40px;
    position: relative;
}

.offer-item:after {
    content: "•";
    position: absolute;
    right: -5px;
    color: var(--primary-color);
}

.offer-item:last-child:after {
    display: none;
}

/* ================ HEADER & NAVIGATION ================ */
.navbar {
    padding: 15px 0;
    background-color: var(--light-color) !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px 0;
    background-color: var(--light-color);
}

.dropdown-item {
    padding: 8px 16px;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.icon-btn {
    position: relative;
    margin-left: 15px;
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    color: var(--primary-color);
}

.icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    padding: 3px 6px;
}

/* Dropdown hover effect */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile dropdown fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        background-color: var(--light-color);
        padding: 15px;
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        margin-left: 15px;
        margin-bottom: 10px;
        width: calc(100% - 30px);
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.1);
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}
/* Add this to your CSS file */
@media (max-width: 991.98px) {
    /* Adjust badge positioning for mobile */
    .navbar-nav.ms-auto .icon-btn .badge {
        position: absolute;
        top: -8px; /* Adjust this value to position vertically */
        right: -8px; /* Adjust this value to position horizontally */
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    /* Ensure the icons have proper positioning context */
    .navbar-nav.ms-auto .icon-btn {
        position: relative;
        margin-left: 15px;
        font-size: 1.2rem;
    }
    
    /* Adjust spacing between icons in mobile view */
    .navbar-nav.ms-auto {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .navbar-nav.ms-auto .nav-item {
        margin-left: 10px;
    }
}
/* ================ CATEGORY STYLES ================ */
.category-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid var(--secondary-color);
}

.category-circle:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background-color: var(--secondary-color);
}

.category-circle i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-name {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 991.98px) {
    .category-circle {
        width: 80px;
        height: 80px;
    }
    
    .category-circle i {
        font-size: 1.5rem;
    }
}

/* ================ BANNER SECTION ================ */
.banner-section {
    position: relative;
    width: 100%; /* Full width of its container */
    height: 80vh; /* Adjust height as needed */
    min-height: 500px; /* Minimum height */
    max-height: 800px; /* Maximum height */
    overflow: hidden;
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
    left: 0; /* Reset left positioning */
    transform: none; /* Remove transform */
    border-radius: 0; /* Remove border radius */
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

/* For the img element version */
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed back to cover for full width coverage */
    object-position: center;
    display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .banner-section {
        height: 60vh;
        min-height: 300px;
        max-height: 600px;
    }
}

@media (max-width: 767.98px) {
    .banner-section {
        height: 50vh;
        min-height: 250px;
        max-height: 500px;
    }
}

@media (max-width: 575.98px) {
    .banner-section {
        height: 40vh;
        min-height: 200px;
        max-height: 400px;
    }
}

/* ================ SHOP COLLECTION CARDS ================ */
.shop-collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Remove border radius */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: var(--light-color);
    height: 400px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.shop-collection-card img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Show full image without cropping */
    transition: transform 0.5s ease;
}

.shop-collection-card:hover img {
    transform: scale(1.05);
}

.shop-collection-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.shop-collection-card:hover .overlay {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .shop-collection-card {
        height: 350px;
    }
}

@media (max-width: 991.98px) {
    .shop-collection-card {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .shop-collection-card {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .shop-collection-card {
        height: 200px;
    }
}

/* ================ SHOP BY GENDER SECTION ================ */
.shop-gender-image img {
    transition: transform 0.4s ease;
}

.shop-gender-image:hover img {
    transform: scale(1.05);
}

/* ================ WHY PARENTS LOVE US SECTION ================ */
.why-parents-love-us-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    color: #FF9EB7;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 107, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #FF9EB7;
}

.feature-card:hover .feature-description {
    color: #555;
}

.feature-hover-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.feature-card:hover .feature-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hover-content i {
    font-size: 0.8rem;
}

.stats-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4ECDC4, #FFE66D);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFE66D, #FF6B6B);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@media (max-width: 991.98px) {
    .why-parents-love-us-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .stats-section {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 575.98px) {
    .why-parents-love-us-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-section {
        padding: 30px 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
}
/* ================ STATS SECTION ================ */
.stats-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-item:hover .stat-label {
    color: #FF9EB7;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .stats-section {
        padding: 30px 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}
/* ================ TESTIMONIALS SECTION ================ */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: white;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    animation: scrollTestimonials 30s linear infinite;
    width: calc(250px * 14);
}

.testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    margin: 0 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 30px;
    height: 100%;
}

.rating {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: rgba(78, 205, 196, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h6 {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.author-info span {
    font-size: 0.8rem;
    color: #777;
}

.testimonials-container:hover .testimonials-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
    }
    
    .testimonials-track {
        animation: scrollTestimonials 40s linear infinite;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        width: 280px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}

/* ================ UTILITY CLASSES ================ */
.bg-primary-soft {
    background-color: rgba(255, 107, 107, 0.1);
}

.hover-effect {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.hover-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card:hover .icon-wrapper {
    background-color: var(--primary-color) !important;
}

.card:hover .icon-wrapper i {
    color: white !important;
}

@media (max-width: 767.98px) {
    .display-5 {
        font-size: 2.2rem;
    }
}

/* ================ AUTH STYLES ================ */
#authContainer .nav-link {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#authContainer .nav-link:hover {
    background-color: var(--primary-color);
    color: white;
}

#authContainer.dropdown .nav-link::after {
    display: none;
}

#authContainer .dropdown-menu {
    min-width: 200px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 5px;
}

#authContainer .dropdown-item {
    padding: 8px 16px;
    transition: all 0.3s ease;
}

#authContainer .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-color);
}

.modal-header {
    border-bottom: none;
    padding: 25px 25px 15px;
    position: relative;
}

.modal-title {
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
}

.modal-body {
    padding: 0 25px 25px;
}

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 0.8rem;
}

.auth-form .form-control {
    height: 50px;
    width:100%;
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.auth-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.otp-input-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
    outline: none;
}

.resend-otp {
    text-align: center;
    margin-top: 15px;
}

.resend-otp a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resend-otp a:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin-top: 10px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #777;
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.auth-divider::before {
    margin-right: 15px;
}

.auth-divider::after {
    margin-left: 15px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    background: white;
    color: #555;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.profile-pic-upload {
    text-align: center;
    margin-bottom: 25px;
}

.profile-pic-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5f5f5;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-pic-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-pic-upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.terms-check input {
    margin-right: 10px;
    margin-top: 3px;
}

.terms-check label {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.terms-check a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-check a:hover {
    text-decoration: underline;
}

.otp-timer {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

.otp-timer span {
    font-weight: 600;
    color: var(--primary-color);
}

/* ================ STORY VIDEO PLAYER ================ */
.story-video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 700px;
    background-color: #000;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.story-progress-container {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.story-progress {
    height: 100%;
    width: 0%;
    background-color: white;
    transition: width linear;
}

.story-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: none;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-close-btn:hover {
    background-color: rgba(255, 107, 107, 0.8);
    transform: scale(1.1);
}

.story-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.story-shop-btn {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px); /* Creates the glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Subtle inner glow */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.3) 0%, 
        rgba(78, 205, 196, 0.3) 100%);
    z-index: -1;
    border-radius: inherit;
}

.story-shop-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.story-shop-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.story-category-title {
    position: absolute;
    top: 25px;
    left: 25px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 10;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .story-video-container {
        height: 70vh;
        border-radius: 15px;
    }
    
    .story-close-btn {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .story-video-container {
        height: 65vh;
        border-radius: 12px;
    }
    
    .story-progress-container {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .story-category-title {
        font-size: 1.2rem;
        top: 15px;
        left: 15px;
    }
}

/* ================ TOAST NOTIFICATIONS ================ */
.toastify-success {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    font-weight: 500 !important;
}

.toastify-error {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    font-weight: 500 !important;
}

/* ================ VIDEO REELS MOBILE FIX ================ */
@media (max-width: 767.98px) {
    .video-reels-section .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -5px;
    }
    
    .video-reels-section .col-lg-3.col-md-4.col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 5px;
    }
    
    .reel-container {
        height: 300px;
        margin-bottom: 10px;
    }
    
    .reel-buy-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* ================ FOOTER STYLES ================ */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    position: relative;
    z-index: 1;
}

.footer-col-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    width: 40px;
    height: auto;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #FFB6C1;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333333;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid #444444;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.newsletter-form {
    margin-top: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #333333;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: #999999;
}

.form-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    width: 100%;
}

.form-btn:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding: 2rem 0;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #999999;
    font-size: 0.8125rem;
}

.footer-extra-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-extra-link {
    color: #b0b0b0;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-extra-link:hover {
    color: #ffffff;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-col-group {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-link:hover {
        transform: none;
    }
    
    .footer-extra-links {
        gap: 0.75rem;
    }
}

/* ================ ANIMATIONS ================ */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.6; transform: scale(0.98); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal.fade .modal-dialog {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Add these to your CSS file */

/* Smooth transitions for all animated elements */
[data-aos] {
    transition-property: transform, opacity;
}

/* Custom animations */
[data-aos="fade-in"] {
    opacity: 0;
    transition-property: opacity;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

/* Custom animation for category circles */
.category-circle[data-aos] {
    transform: scale(0.8);
    opacity: 0;
    transition-property: transform, opacity;
}

.category-circle[data-aos].aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Custom animation for feature cards */
.feature-card[data-aos] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

.feature-card[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Animation for stats */
.stat-item[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition-property: transform, opacity;
}

.stat-item[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
/* Add these to your CSS file */

/* Footer animations */
.footer[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: transform, opacity;
}

.footer[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer columns animation */
.footer-col[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition-property: transform, opacity;
}

.footer-col[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer links animation */
.footer-links li[data-aos] {
    opacity: 0;
    transform: translateX(-10px);
    transition-property: transform, opacity;
}

.footer-links li[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Social icons animation */
.social-link[data-aos] {
    opacity: 0;
    transform: scale(0.8);
    transition-property: transform, opacity;
}

.social-link[data-aos].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Newsletter form animation */
.newsletter-form[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition-property: transform, opacity;
}

.newsletter-form[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer bottom animation */
.footer-bottom[data-aos] {
    opacity: 0;
    transition-property: opacity;
}

.footer-bottom[data-aos].aos-animate {
    opacity: 1;
}

/* Footer extra links animation */
.footer-extra-link[data-aos] {
    opacity: 0;
    transform: translateY(10px);
    transition-property: transform, opacity;
}

.footer-extra-link[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
/* Add this to your CSS file */
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Add these to your CSS file */

/* Smooth transitions for all animated elements */
[data-aos] {
    transition-property: transform, opacity;
}

/* Custom animations for product cards */
.product-card[data-aos] {
    transform: translateY(20px);
    opacity: 0;
    transition-property: transform, opacity;
}

.product-card[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Animation for filter section */
.filter-section[data-aos] {
    transform: translateX(-20px);
    opacity: 0;
    transition-property: transform, opacity;
}

.filter-section[data-aos].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

/* Animation for search/sort section */
.search-sort-section[data-aos] {
    transform: translateY(20px);
    opacity: 0;
    transition-property: transform, opacity;
}

.search-sort-section[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Animation for pagination */
.pagination-container[data-aos] {
    transform: translateY(20px);
    opacity: 0;
    transition-property: transform, opacity;
}

.pagination-container[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}