        :root {
            --primary: #00C9A7;
            --primary-dark: #00A88B;
            --primary-light: #E8FCF8;
            --secondary: #FF6B6B;
            --accent: #4ECDC4;
            --dark: #2C3E50;
            --dark-light: #34495E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --gold: #FFD700;
            --silver: #C0C0C0;
            --bronze: #CD7F32;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            background: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Language Switcher */
        .lang-switcher {
            position: fixed;
            top: 100px;
            left: 20px;
            z-index: 1000;
            background: white;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            display: flex;
            gap: 0.5rem;
        }
        
        .lang-btn {
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .lang-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Enhanced Professional Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 201, 167, 0.15);
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
        }
        
        .navbar.scrolled {
            padding: 0.7rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            margin: 0 0.2rem;
            padding: 0.7rem 1.2rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
            background: var(--primary-light);
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        
        .nav-link.active::before {
            width: 30px;
        }
        
        /* Professional Mega Menu */
        .mega-menu {
            position: static !important;
        }
        
        .mega-dropdown {
            width: 100%;
            left: 0 !important;
            right: 0 !important;
            background: white;
            border: none;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            padding: 2.5rem;
            margin-top: 0;
            border-top: 3px solid var(--primary);
        }
        
        .mega-menu-title {
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-light);
        }
        
        .mega-menu-link {
            display: flex;
            align-items: center;
            padding: 0.7rem 1rem;
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin-bottom: 0.3rem;
        }
        
        .mega-menu-link:hover {
            color: var(--primary);
            background: var(--primary-light);
            transform: translateX(-5px);
        }
        
        .mega-menu-icon {
            width: 30px;
            height: 30px;
            background: var(--primary-light);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 0.8rem;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        /* Enhanced Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 500;
        }
        
        /* Buttons Enhanced */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 201, 167, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 201, 167, 0.4);
            color: white;
        }
        
        .btn-secondary-custom {
            background: linear-gradient(135deg, var(--secondary), #ff5252);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }
        
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
            color: white;
        }
        
        /* User Actions */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .cart-btn {
            position: relative;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .cart-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .cart-badge {
            position: absolute;
            top: -5px;
            left: -5px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .user-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .user-btn:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Section Styling */
        .section-padding {
            padding: 6rem 0;
        }
        
        .section-title {
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            color: var(--dark);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        /* Packages Section */
        .packages-section {
            background: linear-gradient(to bottom, #ffffff 0%, var(--primary-light) 100%);
        }
        
        .package-card {
            border-radius: 20px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            background: white;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .package-header {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }
        
        .package-name {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0;
        }
        
        .package-price span {
            font-size: 1rem;
            font-weight: 500;
        }
        
        .package-body {
            padding: 2rem;
        }
        
        .package-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .package-feature i {
            color: var(--primary);
            margin-left: 1rem;
            font-size: 1.2rem;
        }
        
        /* Products Section */
        .products-section {
            background: white;
        }
        
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            background: white;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
            background-color: #f8f9fa;
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .product-price {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .product-rating {
            color: var(--gold);
            margin-bottom: 0.5rem;
        }
        
        /* Menu Section */
        .menu-section {
            background: linear-gradient(135deg, var(--accent) 0%, #00C9A7 100%);
            color: white;
        }
        
        .menu-slider {
            padding: 2rem 0;
        }
        
        .menu-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .menu-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .menu-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .menu-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .menu-price {
            font-weight: 800;
            color: var(--gold);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background: var(--light);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 1rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '\201C';
            font-size: 4rem;
            position: absolute;
            top: -1rem;
            right: -0.5rem;
            color: var(--primary-light);
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 1rem;
        }
        
        .testimonial-name {
            font-weight: 700;
            margin-bottom: 0.2rem;
        }
        
        .testimonial-role {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Doctor Section */
        .doctor-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
            color: white;
        }
        
        .doctor-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .doctor-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--primary);
        }
        
        .doctor-name {
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        
        .doctor-specialty {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        /* Coaching Section */
        .coaching-section {
            background: linear-gradient(135deg, var(--secondary) 0%, #ff5252 100%);
            color: white;
        }
        
        .coaching-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .coaching-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .coaching-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .coaching-title {
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-right: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Badges */
        .badge {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.35rem 0.65rem;
        }
        
        /* Animation Classes */
        .animate-fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        .animate-slide-up {
            animation: slideUp 0.8s ease-out forwards;
        }
        
        .animate-slide-right {
            animation: slideRight 0.8s ease-out forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideRight {
            from { 
                opacity: 0;
                transform: translateX(-30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Language Specific */
        [lang="en"] {
            direction: ltr;
            text-align: left;
        }
        
        [lang="en"] .section-title::after {
            right: auto;
            left: 0;
        }
        
        [lang="en"] .nav-link::before {
            right: auto;
            left: 50%;
            transform: translateX(-50%);
        }
        
        [lang="en"] .package-feature i {
            margin-left: 0;
            margin-right: 1rem;
        }
        
        [lang="en"] .testimonial-text::before {
            right: auto;
            left: -0.5rem;
        }
        
        [lang="en"] .testimonial-avatar {
            margin-left: 0;
            margin-right: 1rem;
        }
        
        [lang="en"] .footer-title::after {
            right: auto;
            left: 0;
        }
        
        [lang="en"] .footer-links a:hover {
            padding-right: 0;
            padding-left: 5px;
        }
        
        [lang="en"] .mega-menu-link:hover {
            transform: translateX(5px);
        }
        
        [lang="en"] .mega-menu-icon {
            margin-left: 0;
            margin-right: 0.8rem;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .nav-link {
                padding: 0.6rem 1rem !important;
                font-size: 0.9rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .navbar-collapse {
                background: white;
                border-radius: 15px;
                padding: 1.5rem;
                margin-top: 1rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .user-actions {
                margin-top: 1rem;
                justify-content: center;
            }
            
            .lang-switcher {
                top: 80px;
                left: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .section-padding {
                padding: 4rem 0;
            }
        }

        :root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --border: #dee2e6;
    --danger: #dc3545;
    --success: #28a745;
}

/* Hero */
.products-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('../img/sports-hero.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}
.products-hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1rem; }
.products-hero p { font-size: 1.25rem; margin-bottom: 2rem; }
.search-form .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}
.search-form .btn {
    border-radius: 0 50px 50px 0;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
}
.search-form .btn:hover { background: var(--primary-dark); }

/* Sidebar */
.sidebar-filter {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}
.sidebar-filter h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}
.category-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}
.category-link:hover,
.category-link.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}
.filter-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
}
.filter-btn:hover { background: var(--primary-dark); }
.special-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}
.special-btn.discount {
    background: #ffe6e6;
    color: var(--danger);
    border: 1px solid var(--danger);
}
.special-btn.new {
    background: #e6f7e6;
    color: var(--success);
    border: 1px solid var(--success);
}

/* Product Card */
.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.product-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem; }
.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.product-card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}
.btn-details, .add-to-cart-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-details {
    background: var(--primary);
    color: white;
    border: none;
}
.btn-details:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.add-to-cart-btn {
    border: 2px solid var(--primary) !important;
    color: var(--primary);
    background: transparent;
}
.add-to-cart-btn:hover {
    background: var(--primary) !important;
    color: white !important;
}
.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--danger);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}
.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* product-details.css - تصميم أنيق واحترافي مع تفاصيل الخصم */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #2a9d8f;
    --danger: #e63946;
    --border: #dee2e6;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

.product-details {
    min-height: 80vh;
    background-color: #fafafa;
}

/* Sticky Image */
.product-image-sticky {
    position: sticky;
    top: 90px;
}

.main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    padding: 15px;
}

.main-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: var(--transition);
}

.main-image-wrapper img:hover {
    transform: scale(1.02);
}

.thumbnails {
    margin-top: 20px;
}

.thumbnail-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--primary);
}

.thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail-item:hover .thumbnail-img {
    transform: scale(1.1);
}

/* Title */
.product-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--secondary);
    font-weight: 700;
}

.category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

.category-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

/* Price Box */
.price-box {
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.original-price {
    font-size: 1.3rem;
}

.final-price {
    font-size: 2rem;
    font-weight: 700;
}

.discount-badge {
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Action Buttons */
.action-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    font-weight: 600;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.4);
}

.btn-wishlist {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
}

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

/* Quick Info */
.quick-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--secondary);
}

.quick-info h5 {
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.quick-info h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.quick-info li {
    transition: var(--transition);
}

.quick-info li:hover {
    background-color: rgba(0,0,0,0.02);
    padding-right: 10px;
}

/* Discount Details */
.discount-header {
    border-radius: 10px 10px 0 0 !important;
}

.discount-content {
    border-radius: 0 0 10px 10px;
}

.discount-info-card {
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.discount-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.discount-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.discount-description {
    border-left: 3px solid var(--primary);
}

/* Countdown Timer */
.countdown-timer {
    border: 1px solid var(--border);
}

.time-unit {
    min-width: 70px;
}

.time-value {
    min-width: 60px;
}

/* No Discount */
.no-discount {
    border: 2px dashed var(--border);
}

/* Related Products */
.related-products .section-title {
    color: var(--secondary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.related-products .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.product-card .discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: bold;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
}

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

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

.card-body {
    padding: 20px;
}

.card-body h6 a {
    transition: var(--transition);
}

.card-body h6 a:hover {
    color: var(--primary) !important;
}

/* Toast */
.toast {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .final-price {
        font-size: 1.6rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-wishlist {
        width: 100%;
        margin-top: 10px;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-value {
        min-width: 50px;
        font-size: 1.2rem !important;
        padding: 0.5rem !important;
    }
}
    