/* 
   Paradise Enterprise - Core Design System
   Color Palette: Deep Brown, Saffron Orange, Cream, Dark Red
*/

:root {
    --primary-green: #1B4D3E;
    /* Deep Emerald Forest */
    --vibrant-orange: #E67E22;
    /* Rich Burnt Orange */
    --harvest-yellow: #F1C40F;
    /* Golden Sun */
    --crimson-red: #922B21;
    /* Deep Burgundy */
    --cream: #FAF9F6;
    /* Minimalist Off-White */
    --saffron: #F39C12;
    /* Premium Saffron */
    --primary-brown: #2C1E14;
    /* Luxury Coffee Brown */
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gold: #D4AF37;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-weight: 300;
}

.premium-serif {
    letter-spacing: 1px;
}

/* Enhancing Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary-brown), #3E2B1E);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Page Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-spice {
    width: 60px;
    height: 60px;
    border: 5px solid var(--saffron);
    border-top: 5px solid var(--primary-brown);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.premium-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-brown);
}

/* Navbar Customization */
.navbar {
    background-color: rgba(253, 245, 230, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(61, 43, 31, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-brown) !important;
}

.nav-link {
    color: var(--primary-brown) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--saffron);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: 
        linear-gradient(135deg, rgba(44, 30, 20, 0.95) 0%, rgba(146, 43, 33, 0.85) 50%, rgba(243, 156, 18, 0.8) 100%),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.3) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-premium {
    background-color: var(--primary-brown);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    border: 2px solid var(--primary-brown);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--primary-brown);
}

/* Product Cards */
.product-card {
    border: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card .card-img-top {
    transition: var(--transition-smooth);
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .btn-add-cart {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: var(--saffron);
    color: white;
    border: none;
    padding: 10px;
    transition: var(--transition-smooth);
}

.product-card:hover .btn-add-cart {
    bottom: 0;
}

/* Footer */
footer {
    background-color: var(--primary-brown);
    color: var(--text-light);
    padding: 60px 0 20px;
}

footer h5 {
    color: var(--saffron);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-brown);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10000;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--saffron);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* ============================================
   ENHANCED PROFESSIONAL STYLING
   ============================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--saffron);
    color: white;
}

/* Enhanced Card Hover Effects */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-brown), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styling */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--primary-brown));
    border-radius: 2px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(243, 156, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Price Tag Styling */
.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price-tag small {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Badge Styles */
.badge-new {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #236b54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(27, 77, 62, 0.3);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Stats Counter */
.stats-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stats-box p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--saffron);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--saffron);
    margin-bottom: 15px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(44, 30, 20, 0.3);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: white;
}

.back-to-top.show {
    display: flex;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Input Focus Effect */
.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.15);
}

/* Custom Checkbox */
.custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-green);
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-selector button:hover {
    background: var(--primary-green);
    color: white;
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #888;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-box h2 {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Text Colors */
.text-saffron { color: var(--saffron) !important; }
.text-green { color: var(--primary-green) !important; }
.text-brown { color: var(--primary-brown) !important; }

/* Background Colors */
.bg-saffron { background-color: var(--saffron) !important; }
.bg-green { background-color: var(--primary-green) !important; }
.bg-brown { background-color: var(--primary-brown) !important; }
.bg-cream { background-color: var(--cream) !important; }

/* ============================================
   PROFESSIONAL ENHANCEMENTS
   ============================================ */

/* Enhanced Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: var(--text-dark);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 350px;
    backdrop-filter: blur(10px);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    margin-left: auto;
    padding: 0 0 0 15px;
}

.toast-close:hover {
    color: #333;
}

/* Ripple Effect for Buttons */
.btn-premium, .btn-add-cart {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Social Icons in Footer */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 8px;
}

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 2000px 100%;
    animation: shimmer 2s infinite;
}

/* Glow Effect for Cards on Hover */
.product-card:hover {
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.15);
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--saffron) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Button Glow */
.hero .btn-premium:hover {
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 15px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--saffron), var(--primary-brown), var(--saffron));
    border-radius: 17px;
    z-index: -1;
}

/* Testimonial Section */
.testimonials-section {
    background: linear-gradient(135deg, #f9f4f0 0%, #fff5eb 100%);
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote-icon {
    font-size: 60px;
    color: var(--saffron);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--saffron);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, #1a0f0a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--saffron);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0.8;
}

/* Bouncing Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.bounce-animation {
    animation: bounce 2s ease-in-out infinite;
}

/* Slide In Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-up {
    animation: slideInUp 0.6s ease forwards;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.4s ease forwards;
}

/* Wishlist Heart Button */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn i {
    color: #ddd;
    font-size: 18px;
    transition: all 0.3s ease;
}

.wishlist-btn:hover i,
.wishlist-btn.active i {
    color: #e74c3c;
}

.wishlist-btn.active i {
    animation: heartbeat 0.6s ease;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-brown);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.85rem;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    bottom: calc(100% + 10px);
}

/* Product Image Overlay */
.product-card .card-img-top {
    position: relative;
    overflow: hidden;
}

.product-card .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .img-overlay {
    opacity: 1;
}

/* Checkout Modal */
.checkout-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.checkout-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-brown), #3E2B1E);
    color: white;
    border: none;
}

.checkout-modal .btn-close {
    filter: brightness(0) invert(1);
}

/* Order Summary in Cart */
.cart-summary {
    background: linear-gradient(180deg, #f9f4f0 0%, #fff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Badge Bounce */
.cart-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Loading Button State */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Mobile Optimizations */
@media (max-width: 991px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .toast-notification {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .back-to-top,
    .navbar {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Category Card Hover */
.category-card {
    transition: all 0.5s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card img {
    transition: transform 0.6s ease;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
}

.product-badge.new {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

.product-badge.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: white;
}

/* Input Focus Glow */
.form-control:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.15);
}

/* Link Hover Underline Effect */
a.underline-hover {
    position: relative;
}

a.underline-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

a.underline-hover:hover::after {
    width: 100%;
}

/* Price Strike Effect */
.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
}

.price-new {
    color: var(--saffron);
    font-weight: 700;
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.stock-status.in-stock {
    color: #10b981;
}

.stock-status.low-stock {
    color: #f59e0b;
}

.stock-status.out-of-stock {
    color: #ef4444;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}
