@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');

:root{
   --main-color:#dc143c;
   --orange:#ff4500;
   --red:#b22222;
   --black:#333;
   --white:#fff;
   --light-color:#666;
   --light-bg:#eee;
   --border:.2rem solid var(--black);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
   font-family: 'Nunito', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
}

*::selection{
   background-color: var(--main-color);
   color:var(--white);
}

/* Enhanced animations for scroll-triggered elements */
.animate-on-scroll{
   opacity: 0;
   transform: translateY(3rem);
   transition: all 0.6s ease;
}

.animate-on-scroll.animated{
   opacity: 1;
   transform: translateY(0);
}

/* Enhanced particle effects */
.particle:hover{
   transform: scale(1.5);
   background: rgba(255, 255, 255, 0.8);
}

/* Smooth transitions for all interactive elements */
.category .slide,
.home-products .slide{
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category .slide:hover{
   transform: translateY(-1rem) scale(1.05);
   box-shadow: 0 2rem 4rem rgba(220, 20, 60, 0.3);
}

.home-products .slide:hover{
   transform: translateY(-1rem) scale(1.02);
   box-shadow: 0 2rem 4rem rgba(220, 20, 60, 0.4);
}

/* Loading animation for images */
@keyframes imageLoad{
   from{
      opacity: 0;
      transform: scale(0.9);
   }
   to{
      opacity: 1;
      transform: scale(1);
   }
}

img{
   animation: imageLoad 0.5s ease;
}

/* Enhanced button hover effects */
.hero-btn-primary:hover,
.hero-btn-secondary:hover{
   transform: translateY(-0.5rem) scale(1.05);
   box-shadow: 0 1rem 3rem rgba(220, 20, 60, 0.4);
}

.slide-btn:hover{
   transform: translateY(-0.3rem) scale(1.05);
   box-shadow: 0 0.8rem 2rem rgba(220, 20, 60, 0.3);
}

::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

::-webkit-scrollbar-track{
   background-color: transparent;
}

::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
}

body{
   background-color: var(--light-bg);
}

section{
   padding:2rem;
   max-width: 1200px;
   margin:0 auto;
}

.heading{
   font-size: 4rem;
   color:var(--black);
   margin-bottom: 2rem;
   text-align: center;
   text-transform: uppercase;
}

.btn,
.delete-btn,
.option-btn{
   display: block;
   width: 100%;
   margin-top: 1rem;
   border-radius: .5rem;
   padding:1rem 3rem;
   font-size: 1.7rem;
   text-transform: capitalize;
   color:var(--white);
   cursor: pointer;
   text-align: center;
}

.btn:hover,
.delete-btn:hover,
.option-btn:hover{
   background-color: var(--black);
}

.btn{
   background-color: var(--main-color);
}

.option-btn{
   background-color: var(--orange);
}

.delete-btn{
   background-color: var(--red);
}

.flex-btn{
   display: flex;
   gap:1rem;
}

.message{
   position: sticky;
   top:0;
   max-width: 1200px;
   margin:0 auto;
   background-color: var(--light-bg);
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1.5rem;
   z-index: 1100;
}

.message span{
   font-size: 2rem;
   color:var(--black);
}

.message i{
   cursor: pointer;
   color:var(--red);
   font-size: 2.5rem;
}

.message i:hover{
   color:var(--black);
}

.empty{
   padding:1.5rem;
   background-color: var(--white);
   border: var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   color:var(--red);
   border-radius: .5rem;
   font-size: 2rem;
   text-transform: capitalize;
}

.disabled{
   pointer-events: none;
   user-select: none;
   opacity: .5;
}
/* Modern Header Styles */
.header.modern-header{
   position: sticky;
   top:0; left:0; right:0;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
   border-bottom: 0.1rem solid rgba(220, 20, 60, 0.1);
   z-index: 1000;
   transition: all 0.3s ease;
}

.header.modern-header:hover{
   box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
}

.header .flex.header-container{
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   padding: 1rem 2rem;
   max-width: 1400px;
   margin: 0 auto;
}

.header .logo.animate-fade-in{
   font-size: 2.8rem;
   color: var(--black);
   position: relative;
   text-decoration: none;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.header .logo:hover{
   transform: scale(1.05);
}

.header .logo .logo-text{
   font-weight: 700;
   background: linear-gradient(135deg, var(--black), var(--main-color));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.header .logo .logo-accent{
   color: var(--main-color);
   font-weight: 300;
   position: relative;
}

.header .logo .logo-glow{
   position: absolute;
   top: -0.5rem;
   left: -0.5rem;
   right: -0.5rem;
   bottom: -0.5rem;
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   border-radius: 1rem;
   opacity: 0;
   z-index: -1;
   transition: opacity 0.3s ease;
}

.header .logo:hover .logo-glow{
   opacity: 0.2;
}

.header .navbar{
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
}

.header .navbar .nav-link{
   position: relative;
   margin: 0 0.8rem;
   font-size: 1.6rem;
   color: var(--black);
   text-decoration: none;
   padding: 0.8rem 1.2rem;
   border-radius: 2rem;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 500;
   overflow: hidden;
}

.header .navbar .nav-link::before{
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
   transition: left 0.5s ease;
}

.header .navbar .nav-link:hover::before{
   left: 100%;
}

.header .navbar .nav-link:hover{
   color: var(--main-color);
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 69, 0, 0.05));
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(220, 20, 60, 0.2);
}

.header .navbar .nav-link i{
   font-size: 1.4rem;
   transition: transform 0.3s ease;
}

.header .navbar .nav-link:hover i{
   transform: scale(1.1);
}

.header .navbar .nav-link span{
   position: relative;
   z-index: 2;
}

/* Search Container */
.search-container{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) scale(0);
   opacity: 0;
   transition: all 0.3s ease;
   z-index: 1001;
   width: 60%;
   max-width: 500px;
}

.search-container.active{
   transform: translate(-50%, -50%) scale(1);
   opacity: 1;
}

.search-form{
   position: relative;
   width: 100%;
}

.search-input{
   width: 100%;
   padding: 1.2rem 5rem 1.2rem 2rem;
   border: 0.2rem solid var(--main-color);
   border-radius: 3rem;
   font-size: 1.6rem;
   background: var(--white);
   box-shadow: 0 0.5rem 2rem rgba(220, 20, 60, 0.2);
   transition: all 0.3s ease;
   outline: none;
}

.search-input:focus{
   border-color: var(--orange);
   box-shadow: 0 0.5rem 2rem rgba(255, 69, 0, 0.3);
   transform: scale(1.02);
}

.search-btn{
   position: absolute;
   right: 0.5rem;
   top: 50%;
   transform: translateY(-50%);
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   color: var(--white);
   border: none;
   width: 4rem;
   height: 4rem;
   border-radius: 50%;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.6rem;
}

.search-btn:hover{
   transform: translateY(-50%) scale(1.1);
   box-shadow: 0 0.5rem 1rem rgba(220, 20, 60, 0.4);
}

/* Icons */
.header .icons{
   display: flex;
   align-items: center;
   gap: 1rem;
}

.icon-btn{
   position: relative;
   background: none;
   border: none;
   font-size: 2.2rem;
   color: var(--black);
   cursor: pointer;
   padding: 1rem;
   border-radius: 50%;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.icon-btn::before{
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   width: 0;
   height: 0;
   background: radial-gradient(circle, rgba(220, 20, 60, 0.2), transparent);
   border-radius: 50%;
   transform: translate(-50%, -50%);
   transition: width 0.6s ease, height 0.6s ease;
}

.icon-btn:hover::before{
   width: 300%;
   height: 300%;
}

.icon-btn:hover{
   color: var(--main-color);
   transform: scale(1.1) rotate(5deg);
   box-shadow: 0 0.5rem 1rem rgba(220, 20, 60, 0.3);
}

.icon-btn i{
   position: relative;
   z-index: 2;
   transition: transform 0.3s ease;
}

.icon-btn:hover i{
   transform: scale(1.2);
}

.icon-tooltip{
   position: absolute;
   bottom: -3rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--black);
   color: var(--white);
   padding: 0.5rem 1rem;
   border-radius: 0.5rem;
   font-size: 1.2rem;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   white-space: nowrap;
   z-index: 1002;
}

.icon-tooltip::before{
   content: '';
   position: absolute;
   top: -0.5rem;
   left: 50%;
   transform: translateX(-50%);
   border: 0.5rem solid transparent;
   border-bottom-color: var(--black);
}

.icon-btn:hover .icon-tooltip{
   opacity: 1;
   visibility: visible;
   bottom: -4rem;
}

.cart-count{
   position: absolute;
   top: -0.3rem;
   right: -0.3rem;
   background: linear-gradient(135deg, var(--red), var(--orange));
   color: var(--white);
   font-size: 0.8rem;
   font-weight: 600;
   padding: 0.2rem 0.4rem;
   border-radius: 1rem;
   min-width: 1.2rem;
   text-align: center;
   box-shadow: 0 0.2rem 0.5rem rgba(178, 34, 52, 0.3);
   animation: pulse 2s infinite;
}

.cart-icon{
   font-size: 2.2rem !important;
}

@keyframes pulse{
   0%, 100%{
      transform: scale(1);
   }
   50%{
      transform: scale(1.1);
   }
}

/* Modern Profile Dropdown */
.profile.modern-profile{
   position: absolute;
   top: 120%;
   right: 2rem;
   background: linear-gradient(135deg, var(--white), #f8f9fa);
   border-radius: 1.5rem;
   box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
   border: 0.2rem solid transparent;
   border-image: linear-gradient(135deg, var(--main-color), var(--orange)) 1;
   padding: 0;
   width: 32rem;
   display: none;
   animation: slideDownFade 0.3s ease;
   overflow: hidden;
}

.profile.modern-profile.active{
   display: block;
}

@keyframes slideDownFade{
   from{
      opacity: 0;
      transform: translateY(-1rem) scale(0.95);
   }
   to{
      opacity: 1;
      transform: translateY(0) scale(1);
   }
}

.profile-header{
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   padding: 2rem;
   color: var(--white);
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.user-avatar{
   width: 5rem;
   height: 5rem;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2.5rem;
   backdrop-filter: blur(10px);
   border: 0.2rem solid rgba(255, 255, 255, 0.3);
}

.user-avatar.guest{
   background: rgba(255, 255, 255, 0.1);
}

.user-info .user-name{
   font-size: 1.8rem;
   font-weight: 600;
   margin: 0;
   margin-bottom: 0.3rem;
}

.user-info .user-status{
   font-size: 1.4rem;
   opacity: 0.9;
   margin: 0;
}

.profile-actions{
   padding: 2rem;
}

.profile-btn{
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1.2rem 1.5rem;
   margin-bottom: 1rem;
   border-radius: 1rem;
   text-decoration: none;
   color: var(--black);
   transition: all 0.3s ease;
   font-weight: 500;
}

.profile-btn:hover{
   transform: translateX(0.5rem);
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.update-btn{
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 69, 0, 0.1));
   border-left: 0.4rem solid var(--main-color);
}

.update-btn:hover{
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(255, 69, 0, 0.2));
}

.logout-btn{
   background: linear-gradient(135deg, rgba(178, 34, 52, 0.1), rgba(255, 69, 0, 0.1));
   border-left: 0.4rem solid var(--red);
   color: var(--red);
}

.logout-btn:hover{
   background: linear-gradient(135deg, rgba(178, 34, 52, 0.2), rgba(255, 69, 0, 0.2));
   color: var(--red);
}

.profile-divider{
   height: 0.1rem;
   background: linear-gradient(90deg, transparent, var(--light-color), transparent);
   margin: 1.5rem 0;
}

.flex-btn{
   display: flex;
   gap: 1rem;
   justify-content: center;
}

.option-btn{
   flex: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.8rem;
   padding: 1rem 1.5rem;
   border-radius: 1rem;
   text-decoration: none;
   font-weight: 500;
   transition: all 0.3s ease;
}

.register-btn{
   background: linear-gradient(135deg, var(--orange), var(--red));
   color: var(--white);
}

.register-btn:hover{
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(255, 69, 0, 0.3);
}

.login-btn{
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   color: var(--white);
}

.login-btn:hover{
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(220, 20, 60, 0.3);
}

/* Animation Classes */
.animate-slide-down{
   animation: slideDown 0.5s ease;
}

@keyframes slideDown{
   from{
      opacity: 0;
      transform: translateY(-2rem);
   }
   to{
      opacity: 1;
      transform: translateY(0);
   }
}

.animate-fade-in{
   animation: fadeIn 0.8s ease;
}

@keyframes fadeIn{
   from{
      opacity: 0;
   }
   to{
      opacity: 1;
   }
}

#menu-btn{
   display: none;
}

/* Modern Hero Section */
.hero-section{
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   background: linear-gradient(135deg, var(--main-color) 0%, var(--orange) 100%);
}

.hero-bg{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('../images/home-bg.png') no-repeat center center;
   background-size: cover;
   opacity: 0.1;
   z-index: 1;
}

.hero-overlay{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.8) 0%, rgba(255, 69, 0, 0.6) 100%);
   z-index: 2;
}

/* Particle Background */
.particles-container{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: 1;
}

.particle{
   position: absolute;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   pointer-events: none;
   animation: floatParticle 10s linear infinite;
}

.particle:nth-child(odd){
   animation-duration: 8s;
   animation-delay: -2s;
}

.particle:nth-child(3n){
   animation-duration: 12s;
   animation-delay: -4s;
}

@keyframes floatParticle{
   0%{
      transform: translateY(100vh) rotate(0deg);
      opacity: 0;
   }
   10%{
      opacity: 1;
   }
   90%{
      opacity: 1;
   }
   100%{
      transform: translateY(-100px) rotate(360deg);
      opacity: 0;
   }
}

.hero-content{
   position: relative;
   z-index: 3;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   min-height: 100vh;
}

.hero-text{
   color: var(--white);
}

.hero-title{
   font-size: 6rem;
   font-weight: 700;
   margin-bottom: 1rem;
   line-height: 1.1;
}

.hero-title-main{
   display: block;
   background: linear-gradient(135deg, var(--white), #ffeaa7);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: titleGlow 2s ease-in-out infinite alternate;
}

.hero-title-accent{
   display: block;
   color: var(--orange);
   text-shadow: 0 0 2rem rgba(255, 69, 0, 0.5);
}

.hero-subtitle{
   font-size: 1.8rem;
   margin-bottom: 3rem;
   opacity: 0.9;
   line-height: 1.6;
   max-width: 50rem;
}

.hero-stats{
   display: flex;
   gap: 3rem;
   margin-bottom: 3rem;
}

.stat-item{
   text-align: center;
}

.stat-number{
   display: block;
   font-size: 3rem;
   font-weight: 700;
   color: var(--orange);
   margin-bottom: 0.5rem;
   text-shadow: 0 0 1rem rgba(255, 69, 0, 0.3);
}

.stat-label{
   font-size: 1.4rem;
   opacity: 0.8;
   text-transform: uppercase;
   letter-spacing: 0.1rem;
}

.hero-buttons{
   display: flex;
   gap: 2rem;
   flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary{
   padding: 1.5rem 3rem;
   border-radius: 3rem;
   font-size: 1.6rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 1rem;
   text-transform: uppercase;
   letter-spacing: 0.1rem;
}

.hero-btn-primary{
   background: linear-gradient(135deg, var(--white), #f8f9fa);
   color: var(--main-color);
   border: 0.2rem solid var(--white);
}

.hero-btn-primary:hover{
   transform: translateY(-0.5rem);
   box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.3);
   background: var(--white);
}

.hero-btn-secondary{
   background: transparent;
   color: var(--white);
   border: 0.2rem solid var(--white);
}

.hero-btn-secondary:hover{
   background: var(--white);
   color: var(--main-color);
   transform: translateY(-0.5rem);
   box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.3);
}

.hero-image{
   position: relative;
   text-align: center;
}

.hero-image-container{
   position: relative;
   display: inline-block;
}

.hero-main-image{
   width: 100%;
   max-width: 40rem;
   height: auto;
   border-radius: 2rem;
   box-shadow: 0 2rem 4rem rgba(0,0,0,0.3);
   transition: transform 0.3s ease;
}

.hero-main-image:hover{
   transform: scale(1.05) rotate(2deg);
}

.floating-elements{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.floating-card{
   position: absolute;
   background: var(--white);
   padding: 1rem 1.5rem;
   border-radius: 2rem;
   box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
   display: flex;
   align-items: center;
   gap: 0.8rem;
   font-weight: 600;
   color: var(--main-color);
   animation: float 3s ease-in-out infinite;
}

.card-1{
   top: -2rem;
   right: -2rem;
   animation-delay: 0s;
}

.card-2{
   bottom: -2rem;
   left: -2rem;
   animation-delay: 1s;
}

.card-3{
   top: 50%;
   left: -3rem;
   animation-delay: 2s;
}

.scroll-indicator{
   position: absolute;
   bottom: 3rem;
   left: 50%;
   transform: translateX(-50%);
   text-align: center;
   color: var(--white);
   z-index: 4;
   animation: bounce 2s infinite;
}

.scroll-mouse{
   width: 2.5rem;
   height: 4rem;
   border: 0.2rem solid var(--white);
   border-radius: 1.25rem;
   margin: 0 auto 1rem;
   position: relative;
}

.scroll-wheel{
   width: 0.4rem;
   height: 0.8rem;
   background: var(--white);
   border-radius: 0.2rem;
   position: absolute;
   top: 0.5rem;
   left: 50%;
   transform: translateX(-50%);
   animation: scroll 2s infinite;
}


/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev{
   color: var(--main-color);
   background: var(--white);
   width: 5rem;
   height: 5rem;
   border-radius: 50%;
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
   background: var(--main-color);
   color: var(--white);
   transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after{
   font-size: 2rem;
   font-weight: 600;
}

.home-bg .home .swiper-slide.slide{
   background: var(--white);
   border-radius: 1rem;
   box-shadow: var(--box-shadow);
   padding: 2rem;
   margin: 2rem;
   display: flex;
   align-items: center;
   gap: 2rem;
   overflow: hidden;
   border: var(--border);
}

.home-bg .home .slide .content{
   text-align: center;
   flex: 1;
}

.home-bg .home .slide .image{
   flex: 1;
   text-align: center;
}

/* Animations */
@keyframes titleGlow{
   from{
      text-shadow: 0 0 2rem rgba(255, 69, 0, 0.5);
   }
   to{
      text-shadow: 0 0 3rem rgba(255, 69, 0, 0.8), 0 0 5rem rgba(255, 69, 0, 0.4);
   }
}

@keyframes float{
   0%, 100%{
      transform: translateY(0);
   }
   50%{
      transform: translateY(-1rem);
   }
}

@keyframes bounce{
   0%, 20%, 50%, 80%, 100%{
      transform: translateX(-50%) translateY(0);
   }
   40%{
      transform: translateX(-50%) translateY(-1rem);
   }
   60%{
      transform: translateX(-50%) translateY(-0.5rem);
   }
}

@keyframes scroll{
   0%{
      opacity: 0;
      transform: translateX(-50%) translateY(0);
   }
   50%{
      opacity: 1;
      transform: translateX(-50%) translateY(1rem);
   }
   100%{
      opacity: 0;
      transform: translateX(-50%) translateY(2rem);
   }
}

@keyframes parallax{
   from{
      transform: translateY(0);
   }
   to{
      transform: translateY(-50%);
   }
}

/* Responsive Design */
@media (max-width: 1200px){
   .hero-title{
      font-size: 5rem;
   }
   .hero-stats{
      gap: 2rem;
   }
}

@media (max-width: 991px){
   .hero-content{
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
   }
   .hero-title{
      font-size: 4rem;
   }
   .hero-subtitle{
      font-size: 1.6rem;
   }
   .hero-stats{
      justify-content: center;
   }
   .hero-buttons{
      justify-content: center;
   }
   .home-bg .home .slide{
      flex-direction: column;
      text-align: center;
   }
   .slide-title{
      font-size: 3rem;
   }
}

@media (max-width: 768px){
   .hero-title{
      font-size: 3.5rem;
   }
   .hero-stats{
      flex-direction: column;
      gap: 1.5rem;
   }
   .hero-buttons{
      flex-direction: column;
      align-items: center;
   }
   .floating-card{
      display: none;
   }
   .slide-title{
      font-size: 2.5rem;
   }
   .slide-description{
      font-size: 1.5rem;
   }
}

@media (max-width: 450px){
   .hero-title{
      font-size: 3rem;
   }
   .hero-subtitle{
      font-size: 1.4rem;
   }
   .stat-number{
      font-size: 2.5rem;
   }
   .slide-title{
      font-size: 2rem;
   }
}

.swiper-pagination-bullet-active{
   background-color: var(--main-color);
}

.category .slide{
   margin-bottom: 5rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
   text-align: center;
   padding:2rem;
   background: var(--white);
   border-radius: .5rem;
}

.category .slide:hover{
   background-color: var(--black);
}

.category .slide:hover img{
   filter:invert();
}

.category .slide:hover h3{
   color:var(--white);
}

.category .slide img{
   height: 7rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
   user-select: none;
}

.category .slide i{
   color: var(--main-color);
}

.category .slide h3{
   font-size: 2rem;
   color:var(--black);
   user-select: none;
}

.home-products .slide{
   position: relative;
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   margin-bottom: 5rem;
   overflow: hidden;
   user-select: none;
}

.home-products .slide img{
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.home-products .slide .name{
   font-size: 2rem;
   color:var(--black);
}

.home-products .slide .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1rem;
}

.home-products .slide .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.home-products .slide .flex .price{
   margin:1rem 0;
   font-size: 2rem;
   color:var(--red);
}

.home-products .slide .fa-heart,
.home-products .slide .fa-eye{
   position: absolute;
   top:1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   color:var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.home-products .slide .fa-heart{
   right: -6rem;
}

.home-products .slide .fa-eye{
   left: -6rem;
}

.home-products .slide .fa-heart:hover,
.home-products .slide .fa-eye:hover{
   background-color: var(--black);
   color:var(--white);
}

.home-products .slide:hover .fa-heart{
   right: 1rem;
}

.home-products .slide:hover .fa-eye{
   left: 1rem;
}

.quick-view form{
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   margin-top: 1rem;
}

.quick-view form .row{
   display: flex;
   align-items: center;
   gap:1.5rem;
   flex-wrap: wrap;
}

.quick-view form .row .image-container{
   margin-bottom: 2rem;
   flex:1 1 40rem;
}

.quick-view form .row .image-container .main-image img{
   height: 30rem;
   width: 100%;
   object-fit: contain;
}

.quick-view form .row .image-container .sub-image{
   display: flex;
   gap:1.5rem;
   justify-content: center;
   margin-top: 2rem;
}

.quick-view form .row .image-container .sub-image img{
   height: 7rem;
   width: 10rem;
   object-fit: contain;
   padding:.5rem;
   border:var(--border);
   cursor: pointer;
   transition: .2s linear;
}

.quick-view form .flex .image-container .sub-image img:hover{
   transform: scale(1.1);
}

.quick-view form img{
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.quick-view form .row .content{
   flex:1 1 40rem;
}

.quick-view form .row .content .name{
   font-size: 2rem;
   color:var(--black);
}

.quick-view form .row .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1rem;
   margin:1rem 0;
}

.quick-view form .row .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.quick-view form .row .flex .price{
   font-size: 2rem;
   color:var(--red);
}

.quick-view form .row .content .details{
   font-size: 1.6rem;
   color:var(--light-color);
   line-height: 2;
}  

.products{
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 69, 0, 0.05), rgba(255, 255, 255, 0.9));
   padding: 4rem 2rem;
   position: relative;
}

.products::before{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('../images/home-bg.png') no-repeat center center;
   background-size: cover;
   opacity: 0.05;
   z-index: -1;
}

.filter-buttons{
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 1rem;
   margin-bottom: 3rem;
}

.filter-btn{
   padding: 1rem 2rem;
   background: linear-gradient(135deg, var(--white), #f8f9fa);
   border: 0.2rem solid var(--main-color);
   border-radius: 3rem;
   color: var(--main-color);
   font-size: 1.6rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active{
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   color: var(--white);
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(220, 20, 60, 0.3);
}

.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 33rem);
   gap:1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.box-wrapper{
   animation: fadeInUp 0.6s ease-out;
   animation-fill-mode: both;
}

.box-wrapper:nth-child(1){ animation-delay: 0.1s; }
.box-wrapper:nth-child(2){ animation-delay: 0.2s; }
.box-wrapper:nth-child(3){ animation-delay: 0.3s; }
.box-wrapper:nth-child(4){ animation-delay: 0.4s; }
.box-wrapper:nth-child(5){ animation-delay: 0.5s; }
.box-wrapper:nth-child(6){ animation-delay: 0.6s; }
.box-wrapper:nth-child(7){ animation-delay: 0.7s; }
.box-wrapper:nth-child(8){ animation-delay: 0.8s; }

@keyframes fadeInUp{
   from{
      opacity: 0;
      transform: translateY(3rem);
   }
   to{
      opacity: 1;
      transform: translateY(0);
   }
}

.products .box-container .box{
   position: relative;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   padding:2rem;
   overflow: hidden;
}

.products .box-container .box img{
   height: 20rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
}

.products .box-container .box .fa-heart,
.products .box-container .box .fa-eye{
   position: absolute;
   top:1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;
   text-align: center;
   color:var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.products .box-container .box .fa-heart{
   right: -6rem;
}

.products .box-container .box .fa-eye{
   left: -6rem;
}

.products .box-container .box .fa-heart:hover,
.products .box-container .box .fa-eye:hover{
   background-color: var(--black);
   color:var(--white);
}

.products .box-container .box:hover .fa-heart{
   right:1rem;
}

.products .box-container .box:hover .fa-eye{
   left:1rem;
}

.products .box-container .box .name{
   font-size: 2rem;
   color:var(--black);
}

.products .box-container .box .flex{
   display: flex;
   align-items: center;
   gap:1rem;
}

.products .box-container .box .flex .qty{
   width: 7rem;
   padding:1rem;
   border:var(--border);
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.products .box-container .box .flex .price{
   font-size: 2rem;
   color:var(--red);
   margin-right: auto;
}

.form-container form{
   background-color: var(--white);
   padding:2rem;
   border-radius: .5rem;
   border:var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   margin:0 auto;
   max-width: 50rem;
}

.form-container form h3{
   font-size: 2.5rem;
   text-transform: uppercase;
   color:var(--black);
}

.form-container form p{
   font-size: 2rem;
   color:var(--light-color);
   margin:1.5rem 0;
}

.form-container form .box{
   margin:1rem 0;
   background-color: var(--light-bg);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);  
   width: 100%;
   border-radius: .5rem;
}

.about .hero-section{
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 69, 0, 0.1), rgba(255, 255, 255, 0.9));
   padding: 5rem 2rem;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.about .hero-section::before{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('../images/home-bg.png') no-repeat center center;
   background-size: cover;
   opacity: 0.1;
   z-index: -1;
}

.about .hero-content{
   max-width: 800px;
   margin: 0 auto;
}

.about .hero-logo{
   height: 8rem;
   width: auto;
   margin-bottom: 2rem;
   transition: transform 0.3s ease;
}

.about .hero-logo:hover{
   transform: scale(1.05);
}

.about .hero-section h1{
   font-size: 5rem;
   color: var(--black);
   margin: 0;
   font-weight: 700;
   text-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.1);
}

.about .hero-section .tagline{
   font-size: 2.5rem;
   color: var(--main-color);
   margin: 1rem 0;
   font-weight: 500;
   transition: color 0.3s ease;
}

.about .hero-section:hover .tagline{
   color: var(--orange);
}

.about .hero-divider{
   width: 15rem;
   height: 0.5rem;
   background: linear-gradient(to right, var(--main-color), var(--orange), var(--red));
   margin: 2rem auto;
   border-radius: 0.25rem;
}

.about .story-section,
.about .cuisine-section,
.about .promise-section{
   padding: 5rem 2rem;
   background-color: var(--white);
}

.about .story-section{
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 20, 60, 0.05));
}

.about .cuisine-section{
   background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 255, 255, 0.9));
}

.about .promise-section{
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 255, 255, 0.9));
}

.about .container{
   max-width: 1200px;
   margin: 0 auto;
}

.about .section-content{
   display: flex;
   align-items: center;
   gap: 4rem;
   flex-wrap: wrap;
}

.about .text-content{
   flex: 1 1 50rem;
}

.about .image-content{
   flex: 1 1 40rem;
   text-align: center;
}

.about .image-content img{
   width: 100%;
   height: auto;
   max-width: 30rem;
   border-radius: 1rem;
   box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .image-content img:hover{
   transform: scale(1.05);
   box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.2);
}

.about .story-section .section-content,
.about .promise-section .section-content{
   flex-direction: row;
}

.about .cuisine-section .section-content{
   flex-direction: row-reverse;
}

.about .story-section h2,
.about .cuisine-section h2,
.about .promise-section h2{
   font-size: 3rem;
   color: var(--black);
   margin-bottom: 2rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   font-weight: 600;
}

.about .story-section h2 i,
.about .cuisine-section h2 i,
.about .promise-section h2 i{
   color: var(--main-color);
   font-size: 2.5rem;
}

.about .story-section p,
.about .cuisine-section p,
.about .promise-section p{
   font-size: 1.8rem;
   color: var(--light-color);
   line-height: 1.8;
   margin: 0;
}

.about .timeline-section{
   padding: 5rem 2rem;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 69, 0, 0.05));
   text-align: center;
}

.about .timeline-section h2{
   font-size: 3rem;
   color: var(--black);
   margin-bottom: 4rem;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 1rem;
   font-weight: 600;
}

.about .timeline-section h2 i{
   color: var(--main-color);
   font-size: 2.5rem;
}

.about .timeline{
   position: relative;
   max-width: 600px;
   margin: 0 auto;
   padding-left: 2rem;
}

.about .timeline::before{
   content: '';
   position: absolute;
   left: 1rem;
   top: 0;
   bottom: 0;
   width: 0.3rem;
   background: linear-gradient(to bottom, var(--main-color), var(--orange), var(--red));
   border-radius: 0.15rem;
}

.about .timeline-item{
   position: relative;
   margin-bottom: 3rem;
   padding-left: 4rem;
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .timeline-item:hover{
   transform: translateX(0.5rem);
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.about .timeline-item .timeline-icon{
   position: absolute;
   left: -1.5rem;
   top: 0;
   width: 3.5rem;
   height: 3.5rem;
   background: var(--main-color);
   color: var(--white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   transition: background-color 0.3s ease, transform 0.3s ease;
}

.about .timeline-item:hover .timeline-icon{
   background: var(--orange);
   transform: scale(1.1);
}

.about .timeline-item .timeline-content .year{
   font-size: 2rem;
   color: var(--main-color);
   font-weight: 600;
   display: block;
   margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.about .timeline-item:hover .timeline-content .year{
   color: var(--orange);
}

.about .timeline-item .timeline-content p{
   font-size: 1.7rem;
   color: var(--black);
   margin: 0;
   transition: color 0.3s ease;
}

.about .timeline-item:hover .timeline-content p{
   color: var(--light-color);
}

.about .cta-section{
   padding: 5rem 2rem;
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 69, 0, 0.1), rgba(255, 255, 255, 0.9));
   text-align: center;
}

.about .cta-section .container{
   display: flex;
   gap: 2rem;
   justify-content: center;
   flex-wrap: wrap;
}

.about .cta-section .btn{
   display: inline-block;
   padding: 1.5rem 3rem;
   border-radius: 2rem;
   font-size: 1.8rem;
   transition: all 0.3s ease;
   text-decoration: none;
   text-align: center;
   font-weight: 600;
}

.about .cta-section .visit-btn{
   background-color: var(--orange);
   color: var(--white);
}

.about .cta-section .visit-btn:hover{
   background-color: var(--red);
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
}

.about .cta-section .reserve-btn{
   background-color: var(--main-color);
   color: var(--white);
}

.about .cta-section .reserve-btn:hover{
   background-color: var(--red);
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
}

.about .cta-section .contact-btn{
   background-color: var(--white);
   color: var(--main-color);
   border: 0.2rem solid var(--main-color);
}

.about .cta-section .contact-btn:hover{
   background-color: var(--main-color);
   color: var(--white);
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
}

/* Animations */
.fade-in{
   opacity: 0;
   animation: fadeIn 1s ease-in-out forwards;
}

.slide-up{
   opacity: 0;
   transform: translateY(2rem);
   animation: slideUp 1s ease-in-out forwards;
}

@keyframes slideUp{
   to{
      opacity: 1;
      transform: translateY(0);
   }
}

.reviews .slide{
   padding:2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   margin-bottom: 5rem;
   user-select: none;
}

.reviews .slide img{
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
   margin-bottom: .5rem;
}

.reviews .slide p{
   padding:1rem 0;
   line-height: 2;
   font-size: 1.5rem;
   color:var(--light-color);
}

.reviews .slide .stars{
   display: inline-block;
   margin-bottom: 1rem;
   background-color: var(--light-bg);
   padding:1rem 1.5rem;
   border-radius: .5rem;
}

.reviews .slide .stars i{
   margin:0 .3rem;
   font-size: 1.7rem;
   color:var(--orange);
}

.reviews .slide h3{
   font-size: 2rem;
   color:var(--black);
}

.contact form{
   padding:2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   border:var(--border);
   max-width: 50rem;
   margin:0 auto;
}

.contact form h3{
   margin-bottom: 1rem;
   text-transform: capitalize;
   font-size: 2.5rem;
   color:var(--black);
}

.contact form .box{
   margin:1rem 0;
   width: 100%;
   background-color: var(--light-bg);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);
   border-radius: .5rem;
}

.contact form textarea{
   height: 15rem;
   resize: none;
}

/* Modern Reservation Section Styles */
.reservation-hero{
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, var(--main-color) 0%, var(--orange) 50%, var(--red) 100%);
   overflow: hidden;
   padding: 8rem 2rem 4rem;
}

.reservation-hero::before{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('../images/home-bg.png') no-repeat center center;
   background-size: cover;
   opacity: 0.1;
   z-index: 1;
}

.reservation-container{
   position: relative;
   z-index: 3;
   max-width: 1200px;
   width: 100%;
   margin: 0 auto;
}

.reservation-header{
   text-align: center;
   margin-bottom: 4rem;
   animation: fadeInUp 1s ease-out;
}

.reservation-title{
   font-size: 5rem;
   font-weight: 700;
   color: var(--white);
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 1rem;
   text-shadow: 0 0 2rem rgba(0,0,0,0.3);
}

.reservation-title i{
   color: var(--orange);
   font-size: 4rem;
   animation: pulse 2s infinite;
}

.reservation-subtitle{
   font-size: 2rem;
   color: rgba(255, 255, 255, 0.9);
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
}

.reservation-form-wrapper{
   max-width: 80rem;
   margin: 0 auto;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-radius: 2rem;
   box-shadow: 0 3rem 6rem rgba(0,0,0,0.2);
   border: 0.2rem solid rgba(255, 255, 255, 0.2);
   overflow: hidden;
   animation: slideInUp 0.8s ease-out 0.2s both;
}

.reservation-form{
   padding: 4rem;
}

.form-header{
   text-align: center;
   margin-bottom: 3rem;
   position: relative;
}

.form-header h3{
   font-size: 3rem;
   color: var(--black);
   margin-bottom: 1rem;
   font-weight: 600;
}

.form-icon{
   width: 6rem;
   height: 6rem;
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
   box-shadow: 0 1rem 2rem rgba(220, 20, 60, 0.3);
   animation: float 3s ease-in-out infinite;
}

.form-icon i{
   font-size: 2.5rem;
   color: var(--white);
}

.form-grid{
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2.5rem;
   margin-bottom: 3rem;
}

.input-group{
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}

.input-label{
   font-size: 1.6rem;
   font-weight: 600;
   color: var(--black);
   display: flex;
   align-items: center;
   gap: 0.8rem;
}

.input-label i{
   color: var(--main-color);
   font-size: 1.6rem;
}

.modern-input{
   width: 100%;
   padding: 1.5rem;
   border: 0.2rem solid rgba(220, 20, 60, 0.2);
   border-radius: 1rem;
   font-size: 1.6rem;
   color: var(--black);
   background: var(--white);
   transition: all 0.3s ease;
   outline: none;
   box-shadow: 0 0.8rem 2rem rgba(0,0,0,0.1);
}

.modern-input:focus{
   border-color: var(--main-color);
   box-shadow: 0 1rem 3rem rgba(220, 20, 60, 0.3);
   transform: translateY(-0.2rem);
}

.form-actions{
   text-align: center;
   margin-bottom: 2rem;
}

.modern-btn{
   display: inline-flex;
   align-items: center;
   gap: 1rem;
   padding: 1.5rem 4rem;
   border: none;
   border-radius: 3rem;
   font-size: 1.8rem;
   font-weight: 600;
   cursor: pointer;
   text-decoration: none;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
   text-transform: uppercase;
   letter-spacing: 0.1rem;
}

.primary-btn{
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   color: var(--white);
   box-shadow: 0 1rem 2rem rgba(220, 20, 60, 0.3);
}

.primary-btn:hover{
   transform: translateY(-0.5rem) scale(1.05);
   box-shadow: 0 2rem 3rem rgba(220, 20, 60, 0.4);
}

.btn-ripple{
   position: absolute;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.3);
   transform: scale(0);
   animation: ripple 0.6s linear;
}

@keyframes ripple{
   to{
      transform: scale(4);
      opacity: 0;
   }
}

.btn-icon{
   transition: transform 0.3s ease;
}

.primary-btn:hover .btn-icon{
   transform: translateX(0.5rem);
}

.form-footer{
   text-align: center;
   padding-top: 2rem;
   border-top: 0.1rem solid rgba(0,0,0,0.1);
}

.form-note{
   font-size: 1.4rem;
   color: var(--light-color);
   margin: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.8rem;
}

.form-note i{
   color: var(--main-color);
}

/* Floating Elements */
.reservation-floating-elements{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 2;
}

.floating-card{
   position: absolute;
   background: var(--white);
   padding: 1.5rem 2rem;
   border-radius: 2rem;
   box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
   display: flex;
   align-items: center;
   gap: 1rem;
   font-weight: 600;
   color: var(--main-color);
   animation: float 4s ease-in-out infinite;
   border: 0.2rem solid rgba(220, 20, 60, 0.1);
}

.floating-card i{
   font-size: 1.8rem;
   color: var(--orange);
}

.card-1{
   top: 10%;
   right: 10%;
   animation-delay: 0s;
}

.card-2{
   bottom: 15%;
   left: 10%;
   animation-delay: 2s;
}

.card-3{
   top: 50%;
   right: 5%;
   animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp{
   from{
      opacity: 0;
      transform: translateY(3rem);
   }
   to{
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes slideInUp{
   from{
      opacity: 0;
      transform: translateY(5rem) scale(0.95);
   }
   to{
      opacity: 1;
      transform: translateY(0) scale(1);
   }
}

@keyframes float{
   0%, 100%{
      transform: translateY(0);
   }
   50%{
      transform: translateY(-1rem);
   }
}

@keyframes pulse{
   0%, 100%{
      transform: scale(1);
   }
   50%{
      transform: scale(1.1);
   }
}

/* Responsive Design */
@media (max-width: 1200px){
   .reservation-title{
      font-size: 4rem;
   }
   .reservation-subtitle{
      font-size: 1.8rem;
   }
}

@media (max-width: 991px){
   .reservation-hero{
      padding: 6rem 2rem 2rem;
   }
   .reservation-form{
      padding: 3rem 2rem;
   }
   .form-grid{
      grid-template-columns: 1fr;
      gap: 1.5rem;
   }
   .reservation-title{
      font-size: 3.5rem;
   }
   .reservation-title i{
      font-size: 3rem;
   }
   .form-header h3{
      font-size: 2.5rem;
   }
}

@media (max-width: 768px){
   .reservation-hero{
      padding: 4rem 1rem 1rem;
   }
   .reservation-title{
      font-size: 3rem;
      flex-direction: column;
      gap: 0.5rem;
   }
   .reservation-subtitle{
      font-size: 1.6rem;
   }
   .reservation-form{
      padding: 2rem 1.5rem;
   }
   .form-header h3{
      font-size: 2rem;
   }
   .modern-input{
      padding: 1.2rem 1.2rem 1.2rem 4rem;
      font-size: 1.5rem;
   }
   .input-label{
      font-size: 1.5rem;
      left: 4rem;
   }
   .modern-btn{
      padding: 1.2rem 3rem;
      font-size: 1.6rem;
   }
   .floating-card{
      display: none;
   }
}

@media (max-width: 450px){
   .reservation-title{
      font-size: 2.5rem;
   }
   .reservation-subtitle{
      font-size: 1.4rem;
   }
   .reservation-form{
      padding: 1.5rem 1rem;
   }
   .form-header h3{
      font-size: 1.8rem;
   }
   .modern-input{
      font-size: 1.4rem;
   }
   .input-label{
      font-size: 1.4rem;
   }
   .modern-btn{
      padding: 1rem 2rem;
      font-size: 1.5rem;
   }
   .form-note{
      font-size: 1.2rem;
      flex-direction: column;
      gap: 0.5rem;
   }
}

.search-form form{
   display: flex;
   gap:1rem;
}

.search-form form input{
   width: 100%;
   border:var(--border);
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   padding:1.4rem;
   font-size: 1.8rem;
   color:var(--black);
}

.search-form form button{
   font-size: 2.5rem;
   height: 5.5rem;
   line-height: 5.5rem;
   background-color: var(--main-color);
   cursor: pointer;
   color:var(--white);
   border-radius: .5rem;
   width: 6rem;
   text-align: center;
}

.search-form form button:hover{
   background-color: var(--black);
}

.wishlist-total{
   max-width: 50rem;
   margin:0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;;
   padding:2rem;
   text-align: center;
}

.wishlist-total p{
   font-size: 2.5rem;
   color:var(--black);
   margin-bottom: 2rem;
}

.wishlist-total p span{
   color:var(--red);
}

.shopping-cart .fa-edit{
   height: 4.5rem;
   border-radius: .5rem;
   background-color: var(--orange);
   width: 5rem;
   font-size: 2rem;
   color:var(--white);
   cursor: pointer;
}

.shopping-cart .fa-edit:hover{
   background-color: var(--black);
}

.shopping-cart .sub-total{
   margin:2rem 0;
   font-size: 2rem;
   color:var(--light-color);
}

.shopping-cart .sub-total span{
   color:var(--red);
}

.cart-total{
   max-width: 50rem;
   margin:0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border:var(--border);
   border-radius: .5rem;;
   padding:2rem;
   text-align: center;
}

.cart-total p{
   font-size: 2.5rem;
   color:var(--black);
   margin-bottom: 2rem;
}

.cart-total p span{
   color:var(--red);
}

.display-orders{
   text-align: center;
   padding-bottom: 0;
}

.display-orders p{
   display: inline-block;
   padding:1rem 2rem;
   margin:1rem .5rem;
   font-size: 2rem;
   text-align: center;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.display-orders p span{
   color:var(--red);
}

.display-orders .grand-total{
   margin-top: 1.5rem;
   margin-bottom: 2.5rem;
   font-size: 2.5rem;
   color:var(--light-color);
}

.display-orders .grand-total span{
   color:var(--red);
}

.checkout-orders form{
   padding:2rem;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.checkout-orders form h3{
   border-radius: .5rem;
   background-color: var(--black);
   color:var(--white);
   padding:1.5rem 1rem;
   text-align: center;
   text-transform: uppercase;
   margin-bottom: 2rem;
   font-size: 2.5rem;
}

.checkout-orders form .flex{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   justify-content: space-between;
}

.checkout-orders form .flex .inputBox{
   width: 49%;
}

.checkout-orders form .flex .inputBox .box{
   width: 100%;
   border:var(--border);
   border-radius: .5rem;
   font-size: 1.8rem;
   color:var(--black);
   padding:1.2rem 1.4rem;
   margin:1rem 0;
   background-color: var(--light-bg);
}

.checkout-orders form .flex .inputBox span{
   font-size: 1.8rem;
   color:var(--light-color);
}

.orders .box-container{
   display: flex;
   flex-direction: column;
   gap: 2rem;
   max-width: 1000px;
   margin: 0 auto;
}

.orders .order-card{
   background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
   border-radius: 1.5rem;
   box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
   border: 0.2rem solid transparent;
   border-image: linear-gradient(135deg, var(--main-color), var(--orange)) 1;
   overflow: hidden;
   transition: all 0.3s ease;
   animation: slideInUp 0.6s ease-out;
}

.orders .order-card:hover{
   transform: translateY(-0.5rem);
   box-shadow: 0 2rem 4rem rgba(0,0,0,0.15);
   border-image: linear-gradient(135deg, var(--orange), var(--red)) 1;
}

.orders .order-header{
   padding: 2rem;
   cursor: pointer;
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 69, 0, 0.05));
   transition: background-color 0.3s ease;
}

.orders .order-header:hover{
   background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 69, 0, 0.1));
}

.orders .order-summary{
   display: flex;
   align-items: center;
   gap: 2rem;
   position: relative;
}

.orders .order-icon{
   width: 6rem;
   height: 6rem;
   background: linear-gradient(135deg, var(--main-color), var(--orange));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 2.5rem;
   box-shadow: 0 0.5rem 1rem rgba(220, 20, 60, 0.3);
   transition: transform 0.3s ease;
}

.orders .order-card:hover .order-icon{
   transform: scale(1.1);
}

.orders .order-meta{
   flex: 1;
}

.orders .order-meta h3{
   font-size: 2.2rem;
   color: var(--black);
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.orders .order-meta p{
   font-size: 1.6rem;
   color: var(--light-color);
   margin: 0.3rem 0;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.orders .order-meta p i{
   color: var(--main-color);
   width: 2rem;
}

.orders .order-status{
   display: flex;
   align-items: center;
}

.orders .status-badge{
   padding: 0.8rem 1.5rem;
   border-radius: 2rem;
   font-size: 1.4rem;
   font-weight: 600;
   text-transform: uppercase;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
}

.orders .status-badge.pending{
   background: linear-gradient(135deg, #ffeaa7, #fab1a0);
   color: #d63031;
   border: 0.2rem solid #fdcb6e;
}

.orders .status-badge.completed{
   background: linear-gradient(135deg, #55efc4, #00b894);
   color: #00b894;
   border: 0.2rem solid #00cec9;
}

.orders .toggle-icon{
   font-size: 2rem;
   color: var(--main-color);
   transition: transform 0.3s ease;
}

.orders .order-card.expanded .toggle-icon{
   transform: rotate(180deg);
}

.orders .order-details{
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.5s ease, padding 0.5s ease;
   background-color: var(--white);
}

.orders .order-card.expanded .order-details{
   max-height: 50rem;
   padding: 2rem;
}

.orders .detail-section{
   margin-bottom: 2rem;
}

.orders .detail-section h4{
   font-size: 1.8rem;
   color: var(--black);
   margin-bottom: 1.5rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 600;
}

.orders .detail-section h4 i{
   color: var(--main-color);
}

.orders .info-grid{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
   gap: 1.5rem;
}

.orders .info-item{
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 1.5rem;
   border-radius: 1rem;
   border-left: 0.4rem solid var(--main-color);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orders .info-item:hover{
   transform: translateY(-0.2rem);
   box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.orders .info-item .label{
   font-weight: 600;
   color: var(--light-color);
   font-size: 1.4rem;
   display: block;
   margin-bottom: 0.5rem;
}

.orders .info-item .value{
   color: var(--black);
   font-size: 1.6rem;
   font-weight: 500;
}

.orders .info-item .value.bold{
   font-weight: 700;
   color: var(--black);
}

.orders .info-item .value.highlight{
   color: var(--main-color);
   font-weight: 700;
}

.orders .info-item .value.compact{
   font-size: 1.5rem;
   line-height: 1.4;
   color: var(--light-color);
}

@keyframes slideInUp{
   from{
      opacity: 0;
      transform: translateY(3rem);
   }
   to{
      opacity: 1;
      transform: translateY(0);
   }
}

.footer{
   background-color: var(--white);
   /* padding-bottom: 7rem; */
}

.footer .grid{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
   gap:1.5rem;
   align-items: flex-start;
}

.footer .grid .box h3{
   font-size: 2rem;
   color:var(--black);
   margin-bottom: 2rem;
   text-transform: capitalize;
}

.footer .grid .box a{
   display: block;
   margin:1.5rem 0;
   font-size: 1.7rem;
   color:var(--light-color);
}

.footer .grid .box a i{
   padding-right: 1rem;
   color:var(--main-color);
   transition: .2s linear;
}

.footer .grid .box a:hover{
   color:var(--main-color);
}

.footer .grid .box a:hover i{
   padding-right: 2rem;
}

.footer .credit{
   text-align: center;
   padding: 2.5rem 2rem;
   border-top: var(--border);
   font-size: 2rem;
   color:var(--black);
}

.footer .credit span{
   color:var(--main-color);
}






@media (max-width:991px){
   html{
      font-size: 55%;
   }
}
@media (max-width:991px){

   .about .hero-section h1{
      font-size: 4rem;
   }

   .about .hero-logo{
      height: 6rem;
   }

   .about .section-content{
      flex-direction: column;
      gap: 3rem;
   }

   .about .story-section h2,
   .about .cuisine-section h2,
   .about .promise-section h2{
      font-size: 2.5rem;
   }

   .about .timeline-section h2{
      font-size: 2.5rem;
   }

   .about .cta-section .container{
      flex-direction: column;
      gap: 1.5rem;
   }

}

@media (max-width:768px){

   #menu-btn{
      display: inline-block;
   }

   .header .flex .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      border-top: var(--border);
      border-bottom: var(--border);
      background-color: var(--white);
      transition: .2s linear;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
   }

   .header .flex .navbar a{
      display: block;
      margin:2rem;
   }

   .home-bg .home .slide .content{
      text-align: center;
   }

   .home-bg .home .slide .content h3{
      font-size: 3rem;
   }

   .about .right-column{
      padding: 2rem;
   }

   .about .right-column .section h2{
      font-size: 2rem;
   }

   .about .timeline-item{
      padding-left: 2.5rem;
   }

   .about .timeline-item .timeline-icon{
      left: -1rem;
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.2rem;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .heading{
      font-size: 3rem;
   }

   .flex-btn{
      flex-flow: column;
      gap:0;
   }

   .quick-view form .row .image-container .sub-image img{
      width: 8rem;
   }

   .checkout-orders form .flex .inputBox{
      width: 100%;
   }

   .reservation form .flex .inputBox{
      width: 100%;
   }

   .about .header-section .title-container h1{
      font-size: 2.5rem;
   }

   .about .right-column .section h2{
      font-size: 1.8rem;
   }

   .about .cta-section .btn{
      padding: 1.2rem 2rem;
      font-size: 1.6rem;
   }

}
