/* كات شوب - ملف التنسيقات المخصص */

/* الخطوط العربية */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;700;800;900&display=swap');

/* المتغيرات الأساسية */
:root {
    --brand-orange: #f97316;
    --brand-orange-light: #fb923c;
    --brand-orange-dark: #ea580c;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* إعادة تعيين الخطوط */
* {
    font-family: 'Tajawal', sans-serif;
}

[dir="ltr"] * {
    font-family: 'Inter', sans-serif;
}

/* تحسين الأداء */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* تدرجات مخصصة */
.hero-gradient {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ظلال مخصصة */
.shadow-custom {
    box-shadow: var(--shadow-large);
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

/* الحركات المخصصة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes bounce-slow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
    }
}

/* تطبيق الحركات */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* تأثيرات الظهور التدريجي */
.slide-up {
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.slide-up.active {
    transform: translateY(0);
    opacity: 1;
}

/* تأثيرات الصور */
.hero-image {
    transition: transform 0.5s ease;
}

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

.image-hover-zoom {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.image-hover-zoom img {
    transition: transform 0.5s ease;
}

.image-hover-zoom:hover img {
    transform: scale(1.1);
}

/* شريط التنقل المثبت */
.nav-sticky {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.nav-hidden {
    transform: translateY(-100%);
}

.nav-scroll-up {
    transform: translateY(0);
    box-shadow: var(--shadow-large);
}

/* تحسين أداء النافيجيشن بار */
#navbar {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* تحسين التفاعل مع عناصر النافيجيشن */
#navbar .nav-link {
    position: relative;
    padding: 0.5rem 0;
}

#navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#navbar .nav-link:hover::after {
    transform: scaleX(1);
}

/* تحسين القائمة المنسدلة */
#navbar .dropdown-menu {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* دعم RTL للسلايدر */
[dir="rtl"] .swiper-button-next {
    left: 10px;
    right: auto;
}

[dir="rtl"] .swiper-button-prev {
    right: 10px;
    left: auto;
}

/* أزرار مخصصة */
.btn-primary {
    background: var(--brand-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brand-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

/* البطاقات */
.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

/* التأثيرات البصرية */
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-border {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
}

/* تحسينات الأداء */
.will-change-transform {
    will-change: transform;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* استجابة شاملة */
@media (max-width: 640px) {
    .hero-gradient {
        padding-top: 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .card {
        padding: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin: 0.25rem 0;
    }
    
    /* تحسين السلايدر للجوال */
    .swiper-slide {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
    }
    
    .hero-image {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .heroSwiper {
        height: auto !important;
        max-height: none !important;
    }
    
    /* ضمان ظهور المحتوى */
    .min-h-screen {
        min-height: 100vh !important;
    }
    
    /* تحسين المسافات */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* تحسين النصوص */
    h1 {
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    p {
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
}

/* iPad specific optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 10rem !important;
    }
    
    .hero-section .video-container {
        padding-top: 4rem !important;
    }
    
    .hero-section .aspect-\[9\/16\] {
        height: 60vh !important;
        max-height: 600px;
    }
    
    .hero-section video {
        transform: scale(0.92) !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section p {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
}

/* تحسين التباين للوصولية */
@media (prefers-contrast: high) {
    .hero-gradient {
        background: linear-gradient(135deg, #e65100 0%, #f57c00 100%);
    }
}

/* تحسين للحركة المخفضة */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* تحسين الطباعة */
@media print {
    .hero-gradient {
        background: white !important;
        color: black !important;
    }
    
    .nav-sticky,
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* شريط التحميل */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 9999;
}

.loading-bar.active {
    transform: scaleX(1);
}

/* تحسين التركيز */
*:focus {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}

/* تحسين التمرير */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* تحسين النصوص */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* إخفاء شريط التمرير مع الحفاظ على الوظيفة */
.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* تحسينات قسم المنتجات */
#products-section {
    transition: all 0.3s ease;
}

#products-section.ltr {
    direction: ltr !important;
}

#products-section.ltr .productsSwiper {
    direction: ltr !important;
}

#products-section.ltr .swiper-wrapper {
    direction: ltr !important;
}

#products-section.rtl {
    direction: rtl !important;
}

#products-section.rtl .productsSwiper {
    direction: rtl !important;
}

#products-section.rtl .swiper-wrapper {
    direction: rtl !important;
}

/* توحيد أحجام البطاقات */
.productsSwiper .swiper-slide {
    height: auto;
    padding: 0.5rem;
}

/* Enhanced Card Effects */
.productsSwiper .swiper-slide > div {
    position: relative;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.productsSwiper .swiper-slide > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Enhanced Image Container */
.productsSwiper .swiper-slide .relative {
    overflow: hidden;
}

.productsSwiper .swiper-slide img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.productsSwiper .swiper-slide > div:hover img {
    transform: scale(1.08);
}

/* Enhanced Heart Icon */
.productsSwiper .swiper-slide .fa-heart {
    color: #fb923c;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.productsSwiper .swiper-slide button:hover .fa-heart {
    color: #f97316;
    transform: scale(1.15);
    filter: drop-shadow(0 4px 6px rgba(249, 115, 22, 0.3));
}

/* Enhanced Button Effects */
.productsSwiper .swiper-slide a.inline-flex {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.productsSwiper .swiper-slide a.inline-flex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.productsSwiper .swiper-slide a.inline-flex:hover::before {
    transform: translateX(100%);
}

/* Enhanced Card Title */
.productsSwiper .swiper-slide h3 {
    position: relative;
    transition: all 0.3s ease;
}

.productsSwiper .swiper-slide > div:hover h3 {
    color: #f97316;
    transform: translateY(-2px);
}

/* Enhanced Navigation Buttons */
.productsSwiper .swiper-button-next,
.productsSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.productsSwiper .swiper-button-next:hover,
.productsSwiper .swiper-button-prev:hover {
    background: #f97316;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

.productsSwiper .swiper-button-next:hover i,
.productsSwiper .swiper-button-prev:hover i {
    color: white;
    transform: scale(1.1);
}

/* Enhanced Pagination */
.productsSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fb923c;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.productsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    background: #f97316;
}

/* Card Hover Overlay */
.productsSwiper .swiper-slide > div::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(249, 115, 22, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.productsSwiper .swiper-slide > div:hover::after {
    opacity: 1;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .productsSwiper .swiper-slide > div:hover {
        transform: translateY(-4px);
    }
    
    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* تحسينات قسم المميزات */
#features-section {
    transition: all 0.3s ease;
}

#features-section.ltr {
    direction: ltr !important;
}

#features-section.rtl {
    direction: rtl !important;
}

/* تحسين التفاعل مع البطاقات */
#features-section .group:hover .w-20 {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#features-section .group:hover h3 {
    color: #f97316;
}

/* تحسين النصوص للغة الإنجليزية */
#features-section.ltr h2,
#features-section.ltr h3,
#features-section.ltr p,
#features-section.ltr span {
    text-align: center !important;
    direction: ltr !important;
}

#features-section.ltr .fas.fa-check-circle {
    margin-left: 0.75rem;
    margin-right: 0;
}

#features-section.rtl .fas.fa-check-circle {
    margin-right: 0.75rem;
    margin-left: 0;
}

/* تحسين البطاقات للاستجابة */
@media (max-width: 768px) {
    #features-section .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #features-section .w-20 {
        width: 4rem;
        height: 4rem;
    }
    
    #features-section .text-2xl {
        font-size: 1.5rem;
    }
    
    #features-section .p-8 {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    #features-section .text-5xl {
        font-size: 2rem;
        line-height: 2.25rem;
    }
    
    #features-section .text-xl {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    
    #features-section .mb-16 {
        margin-bottom: 3rem;
    }
    
    #features-section .mt-16 {
        margin-top: 3rem;
    }
}

/* تحسين العناصر المتحركة */
@keyframes slideInFeature {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#features-section .slide-up {
    animation: slideInFeature 0.8s ease forwards;
}

/* تحسين CTA في المميزات */
#features-section .bg-gradient-to-r a:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* تحسين العناصر الزخرفية */
#features-section .absolute.w-6 {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Marketing Text Animation */
.marketing-text {
    animation: marketingGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes marketingGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
                     0 2px 4px rgba(0, 0, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 20px rgba(249, 115, 22, 0.8),
                     0 0 30px rgba(249, 115, 22, 0.6),
                     0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* Marketing Scroll Animation */
.marketing-scroll {
    white-space: nowrap;
    animation: marketingScroll 30s linear infinite;
    animation-delay: 1s;
    transform: translateX(100%);
    will-change: transform;
    padding: 0.5rem 0;
}

@keyframes marketingScroll {
    0% {
        transform: translateX(100%);
    }
    10% {
        transform: translateX(0%);
    }
    90% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.marketing-scroll:hover {
    animation-play-state: paused;
}

/* Mobile optimization for marketing scroll */
@media (max-width: 640px) {
    .marketing-scroll {
        animation-duration: 25s;
        font-size: 0.8rem;
        line-height: 1.3;
        padding: 0.25rem 0;
    }
    
    .marketing-text {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .marketing-scroll {
        animation-duration: 20s;
        font-size: 0.75rem;
    }
    
    .marketing-text {
        font-size: 0.9rem;
    }
}

/* Services Hero Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

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

/* Cat Silhouettes Hover Effect */
.cat-silhouette {
    transition: opacity 0.3s ease-in-out;
}

.cat-silhouette:hover {
    opacity: 0.2;
}

/* Stats Cards Hover Effect */
.stats-card {
    transition: all 0.3s ease-in-out;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

/* Gradient Text Animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg-gradient-text {
    background-size: 200% auto;
    animation: gradientFlow 5s ease infinite;
}

/* تحسينات الموبايل */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .card {
        padding: 1.25rem;
    }

    .grid {
        gap: 1rem;
    }
}

/* تأثيرات حركية */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-out"] {
    transform: scale(1.1);
}

.aos-animate[data-aos="fade-up"],
.aos-animate[data-aos="fade-down"],
.aos-animate[data-aos="fade-right"],
.aos-animate[data-aos="fade-left"] {
    transform: translateX(0) translateY(0);
}

.aos-animate[data-aos="zoom-in"],
.aos-animate[data-aos="zoom-out"] {
    transform: scale(1);
}

/* تحسين الأداء */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* تحسين التفاعل */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* تحسين القراءة */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* تحسين التحميل */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Hero Section Entrance Animations */
@keyframes heroTitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroDescriptionSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-welcome {
    opacity: 0;
    animation: heroTitleSlideIn 0.8s ease forwards;
}

.hero-title {
    opacity: 0;
    animation: heroTextFadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-description {
    opacity: 0;
    animation: heroDescriptionSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* تحسين الحركات للموبايل */
@media (max-width: 640px) {
    .hero-welcome,
    .hero-title,
    .hero-description {
        animation-duration: 0.6s;
    }
}

/* تحسينات قسم المنتجات الرئيسي */
.products-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 146, 60, 0.1) 100%);
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.products-hero .hero-title {
    animation: fadeInDown 1s ease forwards;
}

.products-hero .hero-description {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.products-hero .hero-buttons {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

.products-hero .hero-image {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.marketing-badge {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.store-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.store-button:hover::before {
    transform: translateX(100%);
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .products-hero {
        text-align: center;
    }

    .products-hero .hero-image {
        margin: 2rem auto;
        max-width: 80%;
    }

    .marketing-badge {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }

    .store-button {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Products Section Styles */
.productsSwiper {
    width: 100%;
    height: 100%;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.productsSwiper .swiper-wrapper {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.productsSwiper .swiper-slide {
    height: auto;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Image Container */
.productsSwiper .swiper-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #f97316 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #f97316;
    color: white !important;
}

/* Fix RTL/LTR Navigation */
[dir="rtl"] .swiper-button-next,
[dir="rtl"] .swiper-button-prev,
[dir="ltr"] .swiper-button-next,
[dir="ltr"] .swiper-button-prev {
    transform: none !important;
}

[dir="rtl"] .swiper-button-next::after {
    content: 'prev' !important;
}

[dir="rtl"] .swiper-button-prev::after {
    content: 'next' !important;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #f97316 !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* Ensure images are visible during transitions */
.productsSwiper * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Product Card Hover Effects */
.product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-heart-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: white;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-heart-btn i {
    color: #fb923c;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.product-heart-btn:hover {
    transform: scale(1.1);
}

.product-heart-btn:hover i {
    color: #f97316;
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    min-height: 56px;
    margin-bottom: 1rem;
    text-align: center;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f97316;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-btn:hover {
    background: #ea580c;
}

/* RTL Support */
[dir="rtl"] .product-heart-btn {
    right: 1rem;
    left: auto;
}

[dir="ltr"] .product-heart-btn {
    left: 1rem;
    right: auto;
}

[dir="rtl"] .product-btn i {
    margin-right: 0.5rem;
    margin-left: 0;
}

[dir="ltr"] .product-btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 3rem !important;
    height: 3rem !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem !important;
    color: #f97316 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #f97316 !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: white !important;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 2rem !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: #fb923c !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .product-content h3 {
        font-size: 1rem;
        min-height: 3rem;
    }

    .product-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .product-heart-btn {
        width: 2rem;
        height: 2rem;
    }

    .product-heart-btn i {
        font-size: 1rem;
    }
}

/* Fix for both RTL and LTR */
.productsSwiper {
    direction: inherit !important;
}

.swiper-wrapper {
    direction: inherit !important;
}

.swiper-slide {
    direction: inherit !important;
}

/* Small Cats Swiper Styles */
.smallCatsSwiper {
    width: 100%;
    height: 100%;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.smallCatsSwiper .swiper-wrapper {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.smallCatsSwiper .swiper-slide {
    height: auto;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Image Container */
.smallCatsSwiper .swiper-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Navigation Buttons */
.smallCatsSwiper .swiper-button-next,
.smallCatsSwiper .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #f97316 !important;
}

.smallCatsSwiper .swiper-button-next:hover,
.smallCatsSwiper .swiper-button-prev:hover {
    background-color: #f97316;
    color: white !important;
}

/* Fix RTL/LTR Navigation */
[dir="rtl"] .smallCatsSwiper .swiper-button-next::after {
    content: 'prev' !important;
}

[dir="rtl"] .smallCatsSwiper .swiper-button-prev::after {
    content: 'next' !important;
}

/* Pagination */
.smallCatsSwiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #f97316 !important;
    opacity: 0.5 !important;
}

.smallCatsSwiper .swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* Ensure images are visible during transitions */
.smallCatsSwiper * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Cat Food Swiper Styles */
.catFoodSwiper {
    width: 100%;
    height: 100%;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.catFoodSwiper .swiper-wrapper {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.catFoodSwiper .swiper-slide {
    height: auto;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.catFoodSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.catFoodSwiper .swiper-button-next,
.catFoodSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.catFoodSwiper .swiper-button-next:hover,
.catFoodSwiper .swiper-button-prev:hover {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .catFoodSwiper .swiper-button-next::after {
    content: none;
}

[dir="rtl"] .catFoodSwiper .swiper-button-prev::after {
    content: none;
}

.catFoodSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #f97316;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.catFoodSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.catFoodSwiper * {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Add responsive font sizing for product titles */
.productsSwiper .swiper-slide h3,
.smallCatsSwiper .swiper-slide h3,
.catFoodSwiper .swiper-slide h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .productsSwiper .swiper-slide h3,
    .smallCatsSwiper .swiper-slide h3,
    .catFoodSwiper .swiper-slide h3 {
        font-size: 1rem;
        height: 70px;
    }
}

@media (max-width: 640px) {
    .productsSwiper .swiper-slide h3,
    .smallCatsSwiper .swiper-slide h3,
    .catFoodSwiper .swiper-slide h3 {
        font-size: 0.9rem;
        height: 60px;
    }
}

/* Rewards Swiper Styles */
.rewardsSwiper {
    width: 100%;
    height: 100%;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.rewardsSwiper .swiper-wrapper {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.rewardsSwiper .swiper-slide {
    height: auto;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.rewardsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.rewardsSwiper .swiper-button-next,
.rewardsSwiper .swiper-button-prev {
    color: #fb923c;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rewardsSwiper .swiper-button-next:hover,
.rewardsSwiper .swiper-button-prev:hover {
    background-color: #fb923c;
    color: white;
}

.rewardsSwiper .swiper-pagination-bullet {
    background-color: #fb923c;
    opacity: 0.5;
}

.rewardsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.rewardsSwiper * {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive font sizes for all product cards */
.productsSwiper .swiper-slide h3,
.smallCatsSwiper .swiper-slide h3,
.catFoodSwiper .swiper-slide h3,
.rewardsSwiper .swiper-slide h3 {
    font-size: 1rem;
    line-height: 1.4;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .productsSwiper .swiper-slide h3,
    .smallCatsSwiper .swiper-slide h3,
    .catFoodSwiper .swiper-slide h3,
    .rewardsSwiper .swiper-slide h3 {
        font-size: 0.9rem;
        height: 50px;
    }
}

@media (max-width: 640px) {
    .productsSwiper .swiper-slide h3,
    .smallCatsSwiper .swiper-slide h3,
    .catFoodSwiper .swiper-slide h3,
    .rewardsSwiper .swiper-slide h3 {
        font-size: 0.85rem;
        height: 45px;
    }
}

/* Litter Swiper Styles */
.litterSwiper {
    width: 100%;
    height: 100%;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.litterSwiper .swiper-wrapper {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.litterSwiper .swiper-slide {
    height: auto;
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.litterSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.litterSwiper .swiper-button-next,
.litterSwiper .swiper-button-prev {
    color: #fb923c;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.litterSwiper .swiper-button-next:hover,
.litterSwiper .swiper-button-prev:hover {
    background-color: #fb923c;
    color: white;
}

.litterSwiper .swiper-pagination-bullet {
    background-color: #fb923c;
    opacity: 0.5;
}

.litterSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.litterSwiper * {
    direction: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Update responsive font sizes for all product cards */
.productsSwiper .swiper-slide h3,
.smallCatsSwiper .swiper-slide h3,
.catFoodSwiper .swiper-slide h3,
.rewardsSwiper .swiper-slide h3,
.litterSwiper .swiper-slide h3 {
    font-size: 1rem;
    line-height: 1.4;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .productsSwiper .swiper-slide h3,
    .smallCatsSwiper .swiper-slide h3,
    .catFoodSwiper .swiper-slide h3,
    .rewardsSwiper .swiper-slide h3,
    .litterSwiper .swiper-slide h3 {
        font-size: 0.9rem;
        height: 50px;
    }
}

@media (max-width: 640px) {
    .productsSwiper .swiper-slide h3,
    .smallCatsSwiper .swiper-slide h3,
    .catFoodSwiper .swiper-slide h3,
    .rewardsSwiper .swiper-slide h3,
    .litterSwiper .swiper-slide h3 {
        font-size: 0.85rem;
        height: 45px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #fb923c;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* RTL Support */
[dir="rtl"] .scroll-to-top {
    left: auto;
    right: 30px;
}

[dir="rtl"] .whatsapp-button {
    right: auto;
    left: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .scroll-to-top,
    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 20px;
    }
    
    .scroll-to-top {
        left: 20px;
    }
    
    .whatsapp-button {
        right: 20px;
    }
    
    [dir="rtl"] .scroll-to-top {
        left: auto;
        right: 20px;
    }
    
    [dir="rtl"] .whatsapp-button {
        right: auto;
        left: 20px;
    }
}

/* تحسين الأداء للموبايل */
@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 0 auto;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* تحسين الأداء للتحميل */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* تحسين العرض التدريجي */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Partners Section Styles */
.partnersSwiper {
    padding: 20px 0;
}

.partnersSwiper .swiper-slide {
    height: auto;
    transition: all 0.3s ease;
}

.partnersSwiper .swiper-slide > div {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.partnersSwiper .swiper-slide > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.partnersSwiper .swiper-slide img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partnersSwiper .swiper-button-next,
.partnersSwiper .swiper-button-prev {
    display: none !important;
}

.partnersSwiper .swiper-button-next i,
.partnersSwiper .swiper-button-prev i {
    font-size: 24px;
    color: var(--brand-orange-light);
}

.partnersSwiper .swiper-button-next:hover,
.partnersSwiper .swiper-button-prev:hover {
    background-color: var(--brand-orange-light) !important;
    opacity: 1;
    transform: scale(1.1);
}

.partnersSwiper .swiper-button-next:hover i,
.partnersSwiper .swiper-button-prev:hover i {
    color: white;
}

.partnersSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #f97316;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partnersSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f97316;
    transform: scale(1.2);
}

[dir="rtl"] .partnersSwiper .swiper-button-next {
    transform: rotate(180deg);
}

[dir="rtl"] .partnersSwiper .swiper-button-prev {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .partnersSwiper .swiper-button-next,
    .partnersSwiper .swiper-button-prev {
        display: none;
    }
    
    .partnersSwiper .swiper-slide > div {
        padding: 1rem;
    }
}

.partnersSwiper .swiper-button-next,
.partnersSwiper .swiper-button-prev,
.partnersSwiper .swiper-button-next::after,
.partnersSwiper .swiper-button-prev::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 9999;
    gap: 1rem;
}

.loading-logo {
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in-out;
}

.loading-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.loading-text {
    font-size: 1.5rem;
    color: #333;
    margin: 1rem 0;
    font-weight: 600;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background-color: #eee;
    border-radius: 2px;
    overflow: hidden;
    margin: 1rem 0;
}

.loading-progress-bar {
    width: 100%;
    height: 100%;
    background-color: #ff6b00;
    animation: loading 2s ease-in-out infinite;
}

.loading-paws {
    display: none;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 