/* Custom CSS for ShopEase E-commerce Site */

/* CSS Custom Properties - Modern Trendy Colors */
/* 142 76% 36%; اخضر   */
/* 330 81% 60%; وردي */
/* 31 81% 56%; ناري */
/* 217 91% 60%; ازرق */
/* 0 84% 60%; احمر */
/* 240 10% 98%; ابيض */
/* 222 84% 5%; اسود */
/* 215 25% 27%; اسود فاتح */
/* 215 16% 47%; ابيض فاتح */
/* 
        :root {
            --primary-color: 240, 94%, 68%;
            --secondary-color: 332, 89%, 58%;
            --surface-color: 0, 0%, 100%; 
            --text-primary: 0, 0%, 20%; 
            --border-color: 0, 0%, 90%;
            --background-color: 0, 0%, 97%;
            --danger-color: 0, 84%, 60%; 
    
            --gradient-primary: linear-gradient(135deg, hsl(240, 94%, 68%), hsl(267, 91%, 65%));
            --gradient-accent: linear-gradient(135deg, hsl(332, 89%, 58%), hsl(267, 91%, 65%));
            
            --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
            --shadow-medium: 0 4px 12px rgba(0,0,0,0.15);
            --shadow-heavy: 0 6px 18px rgba(0,0,0,0.2);
            --shadow-colored: 0 4px 12px hsla(240, 94%, 68%, 0.25);
            
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
         */


:root {
    --primary-color: 340 90% 65%;   
    --tertiary-color: 48 100% 67%;  
    --secondary-color: 200 90% 65%;
    --accent-color: 141 70% 60%; 
    --danger-color: 0 84% 60%;      
    --background-color: 48 100% 97%;
    --surface-color: 0 0% 100%;    
    --dark-surface: 222 84% 5%;    
    --text-primary: 222 84% 5%;    
    --text-nav: 340 90% 65%;        
    --text-secondary: 200 90% 40%;  
    --text-light: 48 100% 67%;   
    --border-color: 200 90% 85%;  
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--tertiary-color)) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(var(--secondary-color)) 0%, hsl(var(--accent-color)) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--secondary-color)) 100%);
    --gradient-dark: linear-gradient(135deg, hsl(var(--dark-surface)) 0%, hsl(var(--primary-color)) 100%);
    --gradient-danger: linear-gradient(135deg, hsl(var(--danger-color)) 0%, hsl(340, 90%, 65%) 100%);
    --shadow-light: 0 1px 3px 0 rgba(255, 92, 168, 0.08), 0 1px 2px 0 rgba(79, 195, 247, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(255, 92, 168, 0.10), 0 2px 4px -1px rgba(255, 224, 102, 0.08);
    --shadow-heavy: 0 20px 25px -5px rgba(255, 92, 168, 0.12), 0 10px 10px -5px rgba(79, 195, 247, 0.10);
    --shadow-colored: 0 10px 15px -3px hsla(var(--primary-color), 0.18);
    --border-radius: 1.2rem;
    --border-radius-lg: 2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Baloo 2', 'Comic Sans MS', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* 
.section, .container {
    max-width: 1200px;
    margin: 0 auto;
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
} */

/* Global Styles */
body {
    font-family: 'Cairo', sans-serif;

    font-family: var(--font-sans);
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background: hsl(var(--background-color));
    overflow-x: hidden;
}
/* 
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
} */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.18);
    box-shadow: var(--shadow-medium);
}

/* Animated backgrounds */
.animated-bg {
    background: linear-gradient(-45deg, hsl(var(--primary-color)), hsl(var(--tertiary-color)), hsl(var(--secondary-color)), hsl(var(--accent-color)));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}


/* Gradient buttons for trendy look */
.container-gradient-primary {
    background: linear-gradient(90deg, hsl(var(--secondary-color)), hsl(var(--tertiary-color)));
    color: #fff;
    border: none;
}
.container-gradient-primary:hover, .btn-gradient-primary:focus {
    background: linear-gradient(90deg, hsl(var(--secondary-color)), hsl(var(--primary-color)));
    color: #fff;
}

/* Trendy shadow for cards */
.trendy-shadow {
    box-shadow: 0 8px 32px 0 hsla(var(--primary-color), 0.13), 0 1.5px 8px 0 hsla(var(--secondary-color), 0.10);
}
/* Gradient buttons for trendy look */
.btn-gradient-primary {
    background: linear-gradient(90deg, hsl(var(--primary-color)), hsl(var(--tertiary-color)));
    color: #fff;
    border: none;
}
.btn-gradient-primary:hover, .btn-gradient-primary:focus {
    background: linear-gradient(90deg, hsl(var(--tertiary-color)), hsl(var(--primary-color)));
    color: #fff;
}
.btn-gradient-secondary {
    background: linear-gradient(90deg, hsl(var(--secondary-color)), hsl(var(--accent-color)));
    color: #fff;
    border: none;
}
.btn-gradient-secondary:hover, .btn-gradient-secondary:focus {
    background: linear-gradient(90deg, hsl(var(--accent-color)), hsl(var(--secondary-color)));
    color: #fff;
}
.btn-gradient-accent {
    background: linear-gradient(90deg, hsl(var(--accent-color)), hsl(var(--primary-color)));
    color: #fff;
    border: none;
}
.btn-gradient-accent:hover, .btn-gradient-accent:focus {
    background: linear-gradient(90deg, hsl(var(--primary-color)), hsl(var(--accent-color)));
    color: #fff;
}
.btn-gradient-tertiary {
    background: linear-gradient(90deg, hsl(var(--tertiary-color)), hsl(var(--secondary-color)));
    color: #222;
    border: none;
}
.btn-gradient-tertiary:hover, .btn-gradient-tertiary:focus {
    background: linear-gradient(90deg, hsl(var(--secondary-color)), hsl(var(--tertiary-color)));
    color: #222;
}
.btn-gradient-danger {
    background: linear-gradient(90deg, hsl(var(--danger-color)), hsl(var(--primary-color)));
    color: #fff;
    border: none;
}
.btn-gradient-danger:hover, .btn-gradient-danger:focus {
    background: linear-gradient(90deg, hsl(var(--primary-color)), hsl(var(--danger-color)));
    color: #fff;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary {
    border: 2px solid hsl(var(--primary-color));
    color: hsl(var(--primary-color));
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}


/* Feature Cards */
.feature-card {
    background: hsl(var(--surface-color));
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}


/* Contact Form */
.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    width: 20px;
    margin-top: 0.25rem;
}

/* Team Cards */
.team-card {
    padding: 2rem 1rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: hsl(var(--background-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid hsl(var(--border-color));
}

.card {
    border: 1px solid hsl(var(--border-color));
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.card-header {
    background-color: hsl(var(--background-color));
    border-bottom: 1px solid hsl(var(--border-color));
    font-weight: 600;
}

/* Statistics */
.stat-card {
    padding: 2rem 1rem;
}

/* Value Cards */
.value-card {
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

/* Social Links */
.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Form Validation */
.form-control.is-valid {
    border-color: hsl(var(--secondary-color));
}

.form-control.is-invalid {
    border-color: hsl(0 65% 51%);
}

.valid-feedback {
    color: hsl(var(--secondary-color));
}

.invalid-feedback {
    color: hsl(0 65% 51%);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem hsl(var(--primary-color) / 0.25);
}

.trendy-label {
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: hsl(222, 84%, 5%);
    letter-spacing: 0.01em;
    margin-top: 0.1rem;
    background: linear-gradient(90deg, hsl(340, 90%, 65%) 0%, hsl(48, 100%, 67%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: background 0.3s;
}
@media (max-width: 900px) {
    .trendy-subcategories { gap: 1.2rem; padding: 1.5rem 0 1rem 0; }
    .trendy-subcategory { min-width: 70px; max-width: 90px; }
    .trendy-circle { width: 54px; height: 54px; }
    .trendy-circle img { width: 28px; height: 28px; }
    .trendy-label { font-size: 0.92rem; }
}
@media (max-width: 600px) {
    .trendy-subcategories { gap: 0.7rem; padding: 1rem 0 0.5rem 0; border-radius: 1.2rem; }
    .trendy-subcategory { min-width: 56px; max-width: 70px; }
    .trendy-circle { width: 40px; height: 40px; }
    .trendy-circle img { width: 18px; height: 18px; }
    .trendy-label { font-size: 0.8rem; }
}


/* Wishlist Page Styles */
.wishlist-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.wishlist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-opacity=".1"/><stop offset="100%" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="30" cy="5" r="8" fill="url(%23a)"/><circle cx="60" cy="15" r="6" fill="url(%23a)"/><circle cx="80" cy="8" r="12" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.wishlist-header {
    position: relative;
    z-index: 2;
}

.wishlist-stats {
    position: relative;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--text-secondary));
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-light);
}



.wishlist-btn:hover {
    background: white;
    color: hsl(var(--danger-color));
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: hsl(var(--danger-color));
    color: white;
}
.wishlist-controls {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid hsl(var(--border-color));
}

.wishlist-card {
    transition: var(--transition);
    border: 1px solid hsl(var(--border-color));
    position: relative;
    overflow: hidden;
    min-height: 100%; /* يخلي كل الكروت نفس الطول حسب عمود الـ Bootstrap */
    display: flex;
    flex-direction: column;
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.remove-from-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--danger-color));
    transition: var(--transition);
    z-index: 2;
}

.remove-from-wishlist:hover {
    background: hsl(var(--danger-color));
    color: white;
    transform: scale(1.1);
}

.wishlist-item-list .card {
    border: 1px solid hsl(var(--border-color));
    transition: var(--transition);
}

.wishlist-item-list .card:hover {
    box-shadow: var(--shadow-light);
    border-color: hsl(var(--primary-color) / 0.3);
}

.empty-wishlist {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid hsl(var(--border-color));
}

.empty-icon {
    animation: pulse 2s ease-in-out infinite;
}


/* Order Icon */
.order-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Empty State */
.empty-state-icon {
    font-size: 3rem;
    color: #6c757d;
    opacity: 0.3;
}

/* Light Primary Background */
.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Product Image Thumbnail */
.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

/* Soft Shadow */
.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
    
    .order-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: hsl(var(--primary-color));
    border-radius: 2px;
}
.section-subtitle {
    color: hsl(var(--text-secondary));
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}
.category-card {
    background: hsl(var(--surface-color));
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-light);
    border: 1px solid hsl(var(--border-color));
    color: hsl(var(--text-primary));
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.category-image-container {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--background-color));
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}
.category-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.category-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--tertiary-color)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: hsl(var(--text-primary));
}
.category-count {
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.category-ription {
    color: hsl(var(--text-secondary));
    font-size: 0.85rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, hsl(var(--secondary-color)) 0%, hsl(var(--accent-color)) 100%);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin: 4rem auto;
    max-width: 1400px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-item {
    text-align: center;
    padding: 1.5rem;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}




/* Footer */
footer {
    background: hsl(var(--dark-surface));
    color: hsl(var(--text-light));
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-logo span {
    color: hsl(var(--primary-color));
}
.footer-about {
    margin-bottom: 1.5rem;
    color: hsl(var(--text-light));
}
.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: hsl(var(--primary-color));
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: hsl(var(--text-light));
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a:hover {
    color: hsl(var(--primary-color));
    padding-right: 5px;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}
.social-links a:hover {
    background: hsl(var(--primary-color));
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    padding-top: 3rem;
    color: hsl(var(--text-light));
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero {
        height: 350px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 3rem 5%;
    }
    
    .features {
        padding: 2rem;
    }
}
.custom-narrow-container {
    width: 99%;            /* أو جرّب 60% حسب ما يعجبك */
    max-width: 2400px;      /* حد أقصى للعرض */
    margin: 2rem auto;     /* يوسّطها + مسافة من الأعلى والأسفل */
    padding: 2rem;
    background-color: linear-gradient(90deg, hsl(var(--accent-color)), hsl(var(--primary-color)));
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


.page-header {
    background: linear-gradient(135deg, hsl(var(--background-color)) 0%, hsl(210 20% 95%) 100%);
    border-bottom: 1px solid hsl(var(--border-color));
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Product Thumbnail */
.product-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius, 1.2rem);
    overflow: hidden;
    border: 1px solid hsl(var(--border-color, 200 90% 85%));
}
.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Empty Cart State */
.empty-cart-icon {
    font-size: 3.5rem;
    color: hsl(var(--text-secondary, 200 90% 40%));
    opacity: 0.2;
}
/* Hover Effects */
.hover-scale {
    transition: var(--transition, transform 0.3s ease, box-shadow 0.3s ease);
}
.hover-scale:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium, 0 10px 25px rgba(0, 0, 0, 0.1)) !important;
}
.hover-highlight:hover {
    background-color: hsla(var(--primary-color, 340 90% 65%), 0.03);
}
.hover-primary:hover {
    color: hsl(var(--primary-color, 340 90% 65%)) !important;
}
/* Light Primary Background */
.bg-primary-light {
    background-color: hsla(var(--primary-color, 340 90% 65%), 0.1);
}
/* Soft Shadow */
.shadow-soft {
    box-shadow: var(--shadow-light, 0 5px 15px rgba(0, 0, 0, 0.03));
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    .product-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Modern Gradient Background */
.bg-gradient-primary-to-secondary {
    background: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--secondary-color)) 100%);
}

/* Text Gradient Effect */
.text-gradient-primary {
    background: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--secondary-color)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-success {
    background: linear-gradient(135deg, hsl(var(--success-color)) 0%, hsl(var(--accent-color)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styles */
.floating-label-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #6c757d;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1;
    background: white;
    padding: 0 0.25rem;
    margin-left: 0.5rem;
}

.form-control:focus ~ .floating-label,
.form-control:not(:placeholder-shown) ~ .floating-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: #667eea;
}


/* Icon Circles */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-xl {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Shadow */
.shadow-primary {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Text Colors */
.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .page-header {
        text-align: center;
    }
    
    .breadcrumb {
        justify-content: center !important;
    }
    }

    .order-icon {
        background: hsl(var(--primary-color));
    }
    
    .order-summary {
        background: hsl(var(--tertiary-color));
    }
    
    .modern-input {
        border-color: hsl(var(--border-color));
        background: hsl(var(--background-color));
    }
    
    .modern-input:focus {
        border-color: hsl(var(--primary-color));
        box-shadow: 0 0 0 0.25rem hsl(var(--shadow-colored));
    }
    
    .form-floating label {
        color: hsl(var(--text-secondary));
    }
    
    .form-floating .fa {
        color: hsl(var(--text-secondary));
    }
    
    /* Hover Scale Effect */
    .hover-scale {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hover-scale:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 14px hsl(var(--shadow-medium)) !important;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .card-body {
            padding: 2rem !important;
        }
        
        .btn-lg {
            padding: 0.5rem 1.5rem !important;
            font-size: 1rem !important;
        }
    }


    .categories-section {
        padding: 3rem 0;
        background-color: hsl(var(--background-color));
    }
    .category-card {
        transition: var(--transition);
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }
    .category-image-container {
        height: 180px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(var(--surface-color));
    }
    .category-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }
    .category-card:hover .category-image {
        transform: scale(1.05);
    }
    .category-image-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: hsl(var(--text-secondary));
        background-color: hsl(var(--border-color));
    }
    .category-nav-prev, .category-nav-next {
        color: hsl(var(--text-primary));
        background: rgba(255, 255, 255, 0.8);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: var(--shadow-light);
    }
    .category-nav-prev::after, .category-nav-next::after {
        font-size: 1rem;
    }
    @media (max-width: 768px) {
        .category-image-container {
            height: 120px;
        }
        .category-nav-prev, .category-nav-next {
            display: none;
        }
    }


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}


