/* Modern Fruit-Inspired Design Variables */
:root {
    /* Primary Fruit Colors */
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --orange: #ff8c42;
    --apple-green: #6bcf7f;
    --grape-purple: #a8e6cf;
    --watermelon: #ff6b9d;
    --lemon-yellow: #ffd93d;
    --blueberry: #6c5ce7;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success-color: var(--apple-green);
    --warning-color: var(--lemon-yellow);
    --danger-color: var(--watermelon);
    --info-color: var(--blueberry);
    
    /* Layout */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--blueberry) 100%);
    --gradient-success: linear-gradient(135deg, var(--apple-green) 0%, #22c55e 100%);
    --gradient-warning: linear-gradient(135deg, var(--lemon-yellow) 0%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(255, 140, 66, 0.9) 50%, rgba(107, 207, 127, 0.9) 100%);
}

/* Modern Body Styles */
body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 80px;
    color: var(--gray-800);
    background: linear-gradient(135deg, #fff5f5 0%, #fef7ed 25%, #f0fdf4 50%, #fef3f2 75%, #fdf4ff 100%);
    background-attachment: fixed;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1, .h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2, .h2 {
    font-size: 2.5rem;
}

h3, .h3 {
    font-size: 2rem;
}

/* Modern Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-weight: 800;
    color: var(--gray-900);
}

.section-title:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
}

.section-title:before {
    content: '';
    position: absolute;
    right: 70px;
    bottom: 2px;
    width: 20px;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-sm);
}

/* Modern Buttons */
.btn {
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Modern Navigation */
.navbar {
    padding: 1.2rem 0;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.9) 0%, rgba(254, 247, 237, 0.9) 50%, rgba(240, 253, 244, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.98) 0%, rgba(254, 247, 237, 0.98) 50%, rgba(240, 253, 244, 0.98) 100%) !important;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.15);
    border-bottom: 1px solid rgba(255, 140, 66, 0.3);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: scale(1.05);
    transition: var(--transition-fast);
}

.nav-link {
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    color: var(--gray-700);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-1px);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    right: 1.25rem;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: var(--border-radius-sm);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: calc(100% - 2.5rem);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.1);
}

/* About Section Background */
.py-5.bg-white {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 107, 107, 0.08) 25%, 
        rgba(255, 140, 66, 0.08) 50%, 
        rgba(76, 175, 80, 0.08) 75%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
}

/* Modern About Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.9) 0%, 
        rgba(255, 140, 66, 0.9) 25%, 
        rgba(76, 175, 80, 0.9) 50%, 
        rgba(156, 39, 176, 0.9) 75%, 
        rgba(255, 235, 59, 0.9) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 107, 0.1) 0%, 
        rgba(255, 140, 66, 0.1) 25%, 
        rgba(76, 175, 80, 0.1) 50%, 
        rgba(156, 39, 176, 0.1) 75%, 
        rgba(255, 235, 59, 0.1) 100%);
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    margin: 0.5rem;
}

/* Modern Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 107, 107, 0.05) 25%, 
        rgba(255, 140, 66, 0.05) 50%, 
        rgba(76, 175, 80, 0.05) 75%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
    position: relative;
}

.card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: 1.25rem;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Featured Section */
.featured-section {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.05) 0%, 
        rgba(255, 140, 66, 0.05) 25%, 
        rgba(76, 175, 80, 0.05) 50%, 
        rgba(156, 39, 176, 0.05) 75%, 
        rgba(255, 235, 59, 0.05) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
     background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
     animation: float 20s ease-in-out infinite;
 }
 
 /* Animation keyframes */
 @keyframes float {
     0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
     50% { transform: translate3d(0, -20px, 0) rotate(180deg); }
 }
 
 /* Modal improvements */
 .modal {
     z-index: 1055;
 }
 
 .modal-backdrop {
     z-index: 1050;
 }
 
 .modal.show .modal-dialog {
     transform: translate(0, 0) scale(1);
 }
 
 .modal-dialog {
     transition: transform 0.3s ease-out;
 }
 
 /* Prevent body scroll issues */
 body.modal-open {
     overflow: hidden;
     padding-right: 0 !important;
 }
 
 /* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
}

/* Animations */
/* Floating Fruit Icons */
.floating-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.fruit-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float-fruit 6s ease-in-out infinite;
}

.fruit-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.fruit-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.fruit-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.fruit-4 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

.fruit-5 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.fruit-6 {
    top: 80%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes float-fruit {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Hero Content Animation */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-buttons {
    margin-top: 2rem;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border: 1px solid rgba(255, 140, 66, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

/* About Image Container */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.25);
    border: 3px solid rgba(255, 140, 66, 0.3);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.35);
}

.about-image {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 140, 66, 0.8), rgba(255, 107, 107, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.about-image-container:hover .overlay-content {
    transform: translateY(0);
}

/* About Content Wrapper */
.about-content-wrapper {
    padding: 1rem;
}

.about-description-box {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 107, 107, 0.05) 25%, 
        rgba(255, 140, 66, 0.05) 75%, 
        rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
    position: relative;
    overflow: hidden;
}

.about-description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--orange));
}

.about-description-box p {
    margin: 0;
    color: var(--gray-800) !important;
}

/* About Image Container Inline */
.about-image-container-inline {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border: 2px solid rgba(255, 140, 66, 0.25);
    transition: all 0.4s ease;
    max-width: 500px;
    margin: 0 auto;
}

.about-image-container-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.about-image-inline {
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

.about-image-container-inline:hover .about-image-inline {
    transform: scale(1.03);
}

.about-image-container-inline .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 140, 66, 0.8), rgba(255, 107, 107, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container-inline:hover .image-overlay {
    opacity: 1;
}

.about-image-container-inline .overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.about-image-container-inline:hover .overlay-content {
    transform: translateY(0);
}

/* Enhanced Feature Cards for About Section */
.about-content-wrapper .feature-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 140, 66, 0.08) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 140, 66, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.about-content-wrapper .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border-color: var(--orange);
}

.about-content-wrapper .feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.about-content-wrapper .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(var(--orange-rgb), 0.1);
    position: relative;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.product-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--orange-rgb), 0.9), rgba(var(--red-rgb), 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-badge .badge {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    margin-bottom: 0.5rem;
}

.product-title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.btn-white {
    background: white;
    color: var(--orange);
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--orange);
    transform: translateY(-2px);
}

/* Background Gradients */
.bg-gradient-light {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.08) 0%, 
        rgba(255, 140, 66, 0.08) 25%, 
        rgba(76, 175, 80, 0.08) 50%, 
        rgba(156, 39, 176, 0.08) 75%, 
        rgba(255, 235, 59, 0.08) 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, 
        var(--orange) 0%, 
        var(--primary-color) 25%, 
        var(--apple-green) 50%, 
        var(--grape-purple) 75%, 
        var(--lemon-yellow) 100%);
}

/* Empty State */
.empty-state {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1) 0%, 
        rgba(255, 140, 66, 0.1) 50%, 
        rgba(76, 175, 80, 0.1) 100%);
    border-radius: 1rem;
    border: 2px solid rgba(255, 107, 107, 0.2);
}

/* Branch Cards */
.branch-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--orange-rgb), 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    transition: left 0.5s ease;
}

.branch-card:hover::before {
    left: 0;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

/* Branch Image Styles */
.branch-image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.branch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.branch-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-300);
}

.branch-card:hover .branch-image-container {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.branch-card:hover .branch-image {
    transform: scale(1.1);
}

/* Legacy branch icon styles for backward compatibility */
.branch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.branch-content {
    text-align: center;
}

.branch-title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.branch-address,
.branch-hours,
.branch-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.branch-address i,
.branch-hours i,
.branch-contact i {
    color: var(--orange);
    width: 20px;
}

.branch-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.branch-status {
    position: absolute;
    top: 15px;
    right: 15px;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.open {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: var(--shadow-sm);
}

.status-badge.closed {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Expansion Notice */
.expansion-notice {
    background: linear-gradient(135deg, rgba(var(--orange-rgb), 0.1), rgba(var(--red-rgb), 0.1));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(var(--orange-rgb), 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.expansion-notice h4 {
    color: var(--dark);
    font-weight: 700;
}

.expansion-notice p {
    margin-bottom: 1.5rem;
}

.expansion-notice .btn {
    box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 140, 66, 0.2);
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info h4 {
    color: var(--gray-900);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(107, 207, 127, 0.08) 100%);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 140, 66, 0.15);
    position: relative;
    z-index: 1;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(107, 207, 127, 0.15) 100%);
    transform: translateX(-8px) translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 140, 66, 0.3);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--primary-color) 50%, var(--apple-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-left: 1.25rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.contact-details h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-links h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--primary-color) 50%, var(--blueberry) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-xl);
    color: white;
}

.social-link:hover::before {
    opacity: 1;
}

/* Contact Form styles have been removed as the contact form no longer exists */

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Modern Contact Form */
.form-control {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--gray-200);
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    outline: none;
    background: var(--white);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.1) 0%, 
        rgba(255, 140, 66, 0.1) 25%, 
        rgba(76, 175, 80, 0.1) 50%, 
        rgba(156, 39, 176, 0.1) 75%, 
        rgba(255, 235, 59, 0.1) 100%);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 107, 0.05) 0%, 
        rgba(255, 140, 66, 0.05) 25%, 
        rgba(76, 175, 80, 0.05) 50%, 
        rgba(156, 39, 176, 0.05) 75%, 
        rgba(255, 235, 59, 0.05) 100%);
}

#contact .card {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--orange) 25%, 
        var(--apple-green) 50%, 
        var(--grape-purple) 75%, 
        var(--lemon-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Category Cards */
.category-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 107, 107, 0.1) 25%, 
        rgba(255, 140, 66, 0.1) 50%, 
        rgba(76, 175, 80, 0.1) 75%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 140, 66, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.category-icon {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-title {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.category-description {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    color: var(--gray-600);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--orange) 25%, 
        var(--apple-green) 50%, 
        var(--grape-purple) 75%, 
        var(--lemon-yellow) 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    margin-top: 56px;
}

.page-header::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

/* About Page Styles */
.vision-icon, .value-icon {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card {
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 107, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 107, 107, 0.05));
}

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

.team-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

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

.team-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 30px;
    border-radius: var(--border-radius-sm);
}

/* Contact Page Styles */
.contact-icon {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-control {
    border-radius: var(--border-radius);
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.map-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 450px;
    box-shadow: var(--shadow-md);
}

.social-icon {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.5rem;
}

.social-icon:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-info, .contact-form {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-info:hover, .contact-form:hover {
    box-shadow: var(--shadow-lg);
}

/* Results Info */
.results-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

/* Modern Footer */
footer {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(255, 140, 66, 0.9) 25%, rgba(107, 207, 127, 0.9) 50%, rgba(78, 205, 196, 0.9) 75%, rgba(168, 230, 207, 0.9) 100%);
    /* Additional styling for About Us and Contact Us pages */
    color: var(--white);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lemon-yellow) 0%, var(--watermelon) 25%, var(--apple-green) 50%, var(--blueberry) 75%, var(--grape-purple) 100%);
}

footer h5 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer h5:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--lemon-yellow) 0%, var(--white) 100%);
    border-radius: var(--border-radius-sm);
}

footer ul li {
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

footer ul li:hover {
    transform: translateX(5px);
    color: var(--lemon-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 12px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

footer .social-links a:hover {
    background: linear-gradient(135deg, var(--lemon-yellow) 0%, var(--orange) 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 215, 61, 0.4);
    border-color: var(--lemon-yellow);
    color: var(--gray-800);
}

/* Single Product Gallery Styles */
.single-product-gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.8) 0%, rgba(254, 247, 237, 0.8) 25%, rgba(240, 253, 244, 0.8) 50%, rgba(254, 243, 242, 0.8) 75%, rgba(253, 244, 255, 0.8) 100%);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
    padding: 3rem 2rem;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.single-product-gallery-container:active {
    cursor: grabbing;
}

.single-product-gallery-container.dragging {
    cursor: grabbing;
}

.single-product-gallery-container.dragging .single-product-card {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.single-product-slider {
    position: relative;
    min-height: 400px;
    margin-bottom: 0;
}

.single-product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 20px, 0) scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-height: 450px;
    z-index: 1;
}

.single-product-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.single-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    will-change: transform;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.single-product-card:hover {
    transform: translate3d(0, -10px, 0) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.single-product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.single-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    border-radius: 20px 20px 0 0;
}

.single-product-card:hover .single-product-img {
    transform: scale(1.15);
}

.single-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.85) 0%, rgba(255, 154, 158, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 20px 20px 0 0;
}

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

.single-overlay-content {
    text-align: center;
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s ease;
}

.single-product-card:hover .single-overlay-content {
    transform: translateY(0) scale(1);
}

.single-product-card .text-center {
    padding: 15px;
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-product-card .text-center h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.single-product-card .text-center p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.single-gallery-nav {
    margin-top: 0.5rem;
    position: relative;
    z-index: 20;
    transform: translateY(-20px);
}

.single-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    display: inline-flex;
    margin: 0 auto;
}

.single-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 2px;
}

.single-nav-dot:hover {
    background: rgba(255, 107, 107, 0.6);
    transform: scale(1.2);
}

.single-nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.single-nav-dot.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.single-product-gallery-container {
    position: relative;
}

.single-product-gallery-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 245, 245, 0.9) 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

/* Responsive Styles for Single Product Gallery */
@media (max-width: 991.98px) {
    .single-product-card {
        width: 70%;
        height: 300px;
    }
    
    .single-product-gallery-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .single-product-card {
        width: 85%;
        height: 280px;
    }
    
    .single-product-slider {
        min-height: 350px;
    }
    
    .single-nav-dot {
        width: 12px;
        height: 12px;
    }
    
    .single-nav-dot.active {
        transform: scale(1.3);
    }
    
    .single-nav-dot:hover {
        transform: scale(1.2);
    }
}

@media (max-width: 575.98px) {
    .single-product-card {
        width: 95%;
        height: 250px;
    }
    
    .single-product-gallery-container {
        padding: 1.5rem 1rem;
    }
    
    .single-gallery-nav {
        margin-top: 1.5rem;
    }
    
    .single-nav-dots {
        gap: 10px;
    }
}

.empty-gallery {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-gallery i {
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.product-slide.prev {
    transform: translateX(-100%);
}

.product-card-slider {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-card-slider:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-card-slider .product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-card-slider .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-slider:hover .product-image {
    transform: scale(1.1);
}

.product-card-slider .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-card-slider .product-content {
    padding: 2rem;
}

.product-card-slider .product-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.product-card-slider .product-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card-slider .product-price .current-price {
    color: var(--primary-color);
    font-weight: 800;
}

.product-card-slider .stars {
    color: var(--lemon-yellow);
    margin-bottom: 0.5rem;
}

/* Slider Navigation */
.slider-nav {
    margin-top: 2rem;
}

.slider-dots {
    display: inline-flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-slider {
        height: 600px;
    }
    
    .product-card-slider .product-content {
        padding: 1.5rem;
    }
    
    .product-card-slider .product-title {
        font-size: 1.5rem;
    }
}
