/* Floral Theme Styles */
:root {
    /* Pink Color Palette */
    --pink-primary: #FF69B4; /* Hot Pink */
    --pink-secondary: #FFB6C1; /* Light Pink */
    --pink-accent: #DB7093; /* Pale Violet Red */
    --pink-dark: #C71585; /* Medium Violet Red */
    --pink-light: #FFF0F5; /* Lavender Blush */
    --pink-gradient: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-accent) 100%);
    --pink-overlay: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,240,245,0.8) 100%);
    
    /* Floral Elements */
    --floral-element-opacity: 0.1;
    --floral-element-size: 8rem;
}

/* Global Floral Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(219, 112, 147, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    background: var(--pink-light);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(219, 112, 147, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--pink-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(219, 112, 147, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--pink-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--pink-accent);
    max-width: 90%;
    line-height: 1.6;
}

.hero-cta .btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: var(--pink-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(219, 112, 147, 0.4);
}

.hero-cta .btn-outline-pink {
    border: 2px solid var(--pink-accent);
    color: var(--pink-accent);
    background: transparent;
}

.hero-cta .btn-outline-pink:hover {
    background: var(--pink-accent);
    color: white;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--pink-primary);
    top: -50px;
    right: -50px;
    animation: float-orb 15s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--pink-accent);
    bottom: -30px;
    left: -30px;
    animation: float-orb 12s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Navbar Styling */
.navbar-glass {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.98) 0%, rgba(255, 230, 240, 0.98) 100%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 4px 30px rgba(199, 21, 133, 0.1);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

/* Navbar on scroll */
.navbar-glass.scrolled {
    background: rgba(255, 245, 250, 0.98) !important;
    box-shadow: 0 2px 20px rgba(199, 21, 133, 0.15);
    padding: 0.3rem 0;
}

/* Navbar brand */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pink-dark) !important;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--pink-accent) !important;
    transform: translateY(-2px);
}

.navbar-brand i {
    color: var(--pink-accent);
    transition: all 0.3s ease;
}

.navbar-brand:hover i {
    transform: scale(1.1);
}

/* Nav links */
.nav-link {
    color: var(--pink-dark) !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pink-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link i {
    margin-right: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Active nav link */
.nav-link.active {
    font-weight: 600;
    color: var(--pink-accent) !important;
}

/* Login/Register buttons */
.navbar .btn-outline-light {
    color: var(--pink-dark);
    border-color: var(--pink-accent);
    background: transparent;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
    background: var(--pink-gradient);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 112, 147, 0.3);
}

/* Mobile menu button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28219, 112, 147, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu */
.navbar-collapse {
    background: rgba(255, 240, 245, 0.98);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(199, 21, 133, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pink-dark) !important;
    position: relative;
    z-index: 2;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pink-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-brand:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-brand, .nav-link {
    color: var(--pink-dark) !important;
}

.nav-link:hover, .nav-link:focus {
    color: var(--pink-primary) !important;
}

/* Buttons */
.btn-primary, .modern-btn-primary {
    background: var(--pink-gradient);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover, .modern-btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 112, 147, 0.4);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Floral Decorative Elements */
.floral-decor {
    position: fixed;
    z-index: 0;
    opacity: var(--floral-element-opacity);
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floral-1 { animation-delay: 0s; }
.floral-2 { animation-delay: -5s; }
.floral-3 { animation-delay: -10s; }

.floral-1 {
    top: 10%;
    left: 5%;
    font-size: var(--floral-element-size);
    color: var(--pink-primary);
    transform: rotate(-15deg);
}

.floral-2 {
    bottom: 15%;
    right: 8%;
    font-size: calc(var(--floral-element-size) * 1.25);
    color: var(--pink-accent);
    transform: rotate(25deg);
}

.floral-3 {
    top: 20%;
    right: 15%;
    font-size: var(--floral-element-size);
    color: var(--pink-secondary);
}

/* Modern Products Hero Section */
.modern-products-hero {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(219, 112, 147, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1490750967868-88aa4486ec95?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    -webkit-background-blend-mode: overlay;
    background-blend-mode: overlay;
    color: #2c0a0a;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(199, 21, 133, 0.15);
}

.modern-products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 240, 245, 0.1) 0%, rgba(255, 230, 240, 0.2) 100%);
    pointer-events: none;
}

.modern-products-hero .container {
    position: relative;
    z-index: 2;
}

.modern-products-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c0a0a;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.modern-products-hero .lead {
    font-size: 1.25rem;
    color: #4a1a1a;
    margin-bottom: 2rem;
    max-width: 600px;
}

.modern-products-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.modern-products-hero .breadcrumb-item a {
    color: #4a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-products-hero .breadcrumb-item a:hover {
    color: var(--pink-dark);
}

.modern-products-hero .breadcrumb-item.active {
    color: var(--pink-dark);
    font-weight: 600;
}

.modern-products-hero .results-info {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    color: #4a1a1a;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    :root {
        --floral-element-size: 5rem;
        --floral-element-opacity: 0.08;
    }
    
    .modern-products-hero {
        padding: 100px 0 60px;
        border-radius: 0 0 20px 20px;
    }
    
    .modern-products-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .modern-products-hero .lead {
        font-size: 1.1rem;
    }
}
