/**
 * BOTANIQUE EVE - PREMIUM ENHANCEMENTS
 * Superior Design Elements Beyond Mara Organics
 */

/* ============================================
   PREMIUM VISUAL ENHANCEMENTS
   ============================================ */

/* Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Premium Gradient Overlays */
.gradient-overlay-warm {
    background: linear-gradient(135deg, 
        rgba(255, 140, 66, 0.1) 0%, 
        rgba(255, 107, 157, 0.1) 50%,
        rgba(255, 184, 77, 0.1) 100%);
}

/* Floating Animation (for images) */
@keyframes float-smooth {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

.hero-image img {
    animation: float-smooth 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 140, 66, 0.3));
}

/* ============================================
   ENHANCED CATEGORY CARDS
   ============================================ */

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 66, 0.9) 0%, 
        rgba(255, 107, 157, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.85;
}

.category-name {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    transform: translateY(0);
}

.category-card:hover .category-name {
    transform: translateY(-10px) scale(1.1);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 140, 66, 0.25);
}

/* ============================================
   PREMIUM TESTIMONIALS
   ============================================ */

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-rating i {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.2) rotate(360deg);
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */

.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

/* ============================================
   FEATURE BADGES - PREMIUM
   ============================================ */

.feature-badge {
    position: relative;
}

.feature-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-badge:hover::after {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* ============================================
   NEWSLETTER SECTION - ENHANCED
   ============================================ */

.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: -250px;
    right: -100px;
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.newsletter-form .input-group {
    position: relative;
}

.newsletter-form .form-control:focus {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* ============================================
   PRODUCT IMAGE HOVER - PREMIUM
   ============================================ */

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 66, 0.1) 0%, 
        rgba(255, 107, 157, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   PREMIUM PRICE DISPLAY
   ============================================ */

.current-price {
    position: relative;
    display: inline-block;
}

.current-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover .current-price::after {
    transform: scaleX(1);
}

/* ============================================
   TOP BAR - ENHANCED
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================
   FOOTER - PREMIUM ENHANCEMENT
   ============================================ */

.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        transparent);
}

/* ============================================
   CART BADGE - ANIMATED
   ============================================ */

.cart-badge {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.cart-link:hover .cart-badge {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* ============================================
   BREADCRUMB - PREMIUM
   ============================================ */

.breadcrumb-item + .breadcrumb-item::before {
    content: '→';
    color: var(--primary-color);
    font-weight: bold;
}

/* ============================================
   LOADING STATES & MICRO-INTERACTIONS
   ============================================ */

.add-to-cart {
    position: relative;
    transition: all 0.3s ease;
}

.add-to-cart:active {
    transform: scale(0.95);
}

/* ============================================
   RESPONSIVE PREMIUM ENHANCEMENTS
   ============================================ */

@media (min-width: 768px) {
    /* Parallax effect for hero on desktop */
    .hero-image {
        transform-style: preserve-3d;
        perspective: 1000px;
    }
    
    /* Stagger animation for product cards */
    .product-card:nth-child(1) { animation-delay: 0s; }
    .product-card:nth-child(2) { animation-delay: 0.1s; }
    .product-card:nth-child(3) { animation-delay: 0.2s; }
    .product-card:nth-child(4) { animation-delay: 0.3s; }
}

/* ============================================
   PREMIUM SHADOWS & DEPTH
   ============================================ */

.premium-shadow-sm {
    box-shadow: 
        0 2px 8px rgba(255, 140, 66, 0.08),
        0 1px 4px rgba(255, 107, 157, 0.05);
}

.premium-shadow-md {
    box-shadow: 
        0 8px 30px rgba(255, 140, 66, 0.12),
        0 4px 15px rgba(255, 107, 157, 0.08);
}

.premium-shadow-lg {
    box-shadow: 
        0 20px 60px rgba(255, 140, 66, 0.2),
        0 10px 30px rgba(255, 107, 157, 0.15);
}

/* ============================================
   PREMIUM TEXT EFFECTS
   ============================================ */

.premium-text-glow {
    text-shadow: 
        0 0 10px rgba(255, 140, 66, 0.3),
        0 0 20px rgba(255, 107, 157, 0.2),
        0 0 30px rgba(255, 184, 77, 0.1);
}

/* ============================================
   UNIQUE FEATURES NOT IN MARA ORGANICS
   ============================================ */

/* Floating Action Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
}

/* Product Quick View Modal Enhancement */
.quick-view-modal {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
}

/* ============================================
   PRINT OPTIMIZATION
   ============================================ */

@media print {
    .hero-section::before,
    .hero-section::after,
    .floating-whatsapp {
        display: none;
    }
}

