@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Sans+MS&display=swap');

:root{
   --main-color:#00d27f;
   --orange:#f39c12;
   --red:#e74c3c;
   --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);
   --pink:#ff6b8b;
   --yellow:#ffd166;
   --green:#06d6a0;
   --blue:#118ab2;
   --dark-blue:#073b4c;
}

*{
   font-family: 'Nunito', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   /* Improved accessibility */
   -webkit-tap-highlight-color: transparent;
}

*::selection{
   background-color: var(--main-color);
   color:var(--white);
}

::-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;
   /* Prevent text size adjustment */
   -webkit-text-size-adjust: 100%;
   text-size-adjust: 100%;
}

body{
   background-color: var(--light-bg);
   /* Improved accessibility */
   -webkit-user-select: text;
   user-select: text;
}

section{
   padding:2rem;
   max-width: 1200px;
   margin:0 auto;
   width: 100%;
}

.heading{
   font-size: clamp(2.5rem, 6vw, 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;
   flex-wrap: wrap;
}

.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;
}

@keyframes fadeIn{
   0%{
      transform: translateY(1rem);
   }
}

/* === Header Styles === */
.header{
   position: sticky;
   top:0; left:0; right:0;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   z-index: 1000;
}

.header .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   padding: 1rem;
   flex-wrap: wrap;
   gap: 1rem;
}

.header .flex .logo{
   font-size: clamp(1.8rem, 5vw, 2.5rem);
   color:var(--black);
   display: flex;
   align-items: center;
}

.header .flex .logo span{
   color:var(--main-color);
}

.header .flex .logo-img {
   width: min(42px, 10vw);
   height: min(42px, 10vw);
   margin-right: 10px;
   filter: drop-shadow(2px 2px 0 #ff4b4b);
}

.header .flex .navbar{
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.header .flex .navbar a{
   font-size: clamp(1.4rem, 3vw, 2rem);
   color:var(--black);
   padding: 0.6rem 1rem;
   border-radius: 20px;
   transition: all 0.3s ease;
   background: rgba(0, 0, 0, 0.05);
}

.header .flex .navbar a:hover{
   color:var(--main-color);
   background: rgba(0, 0, 0, 0.1);
   text-decoration: none;
}

.header .flex .icons{
   display: flex;
   align-items: center;
   gap: 1rem;
   flex-wrap: wrap;
}

.header .flex .icons > *{
   font-size: clamp(1.8rem, 4vw, 2.5rem);
   cursor: pointer;
   color:var(--black);
   width: min(40px, 10vw);
   height: min(40px, 10vw);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.header .flex .icons > *:hover{
   color:var(--main-color);
   transform: scale(1.1);
   background: rgba(0, 0, 0, 0.1);
}

.header .flex .icons a span{
   font-size: 1.2rem;
   position: absolute;
   top: -5px;
   right: -5px;
   background: var(--red);
   color: white;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.header .flex .profile{
   position: absolute;
   top:100%; right:1rem;
   background-color: var(--white);
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
   padding:1.5rem;
   width: min(30rem, 90vw);
   padding-top: 1.2rem;
   display: none;
   animation:fadeIn .2s linear;
   z-index: 1001;
}

.header .flex .profile.active{
   display: inline-block;
}

.header .flex .profile p{
   text-align: center;
   color:var(--black);
   font-size: 1.8rem;
   margin-bottom: 1rem;
}

#menu-btn{
   display: none;
}

/* === Home Section === */
.home-bg{
   background:url(../images/index-bg.png) no-repeat;
   background-size: cover;
   background-position: center;
}

.home-bg .home .slide{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:1.5rem;
   padding-bottom: 4rem;
   padding-top: 2rem;
   user-select: none;
   background: linear-gradient(135deg, #ffd1dc 0%, #fffdd0 100%);
}

.home-bg .home .slide .image{
   flex:1 1 40rem;
   text-align: center;
}

.home-bg .home .slide .image img{
   height: min(40rem, 50vw);
   width: 100%;
   object-fit: contain;
   border-radius: 20px;
}

.home-bg .home .slide .content{
   flex:1 1 40rem;
   padding: 1.5rem;
}

.home-bg .home .slide .content span{
   font-size: clamp(1.6rem, 3vw, 2rem);
   color:#000;
}

.home-bg .home .slide .content h3{
   margin-top: 1rem;
   font-size: clamp(2.5rem, 5vw, 4rem);
   color:#000;
   text-transform: uppercase;
}

.home-bg .home .slide .content .btn{
   display: inline-block;
   width: auto;
}

/* Custom font style */
.Font {
   font-family: 'Georgia', 'Times New Roman', Times, serif;
   font-size: clamp(1.4rem, 4vw, 2.5rem);
   color: #333;
   text-shadow: 2px 2px 0px var(--yellow), -2px -2px 0px #a2d2ff;
   line-height: 1.4;
   margin-bottom: 2rem;
   padding: 0 1rem;
}

.color-tags {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-top: 20px;
   flex-wrap: wrap;
   padding: 0 1rem;
}

.color-tag {
   background: var(--pink);
   color: white;
   padding: 8px 15px;
   border-radius: 20px;
   font-weight: bold;
   font-size: clamp(0.8rem, 2.5vw, 1rem);
}

.color-tag:nth-child(2) {
   background: var(--green);
}

.swiper-pagination-bullet-active{
   background-color: var(--main-color);
}

/* === Category Section === */
.category-container {
   padding: 2rem 1rem;
   background: linear-gradient(135deg, #f9f5ff 0%, #e0fcff 100%);
}

.category {
   width: 100%;
   max-width: 1200px;
   position: relative;
   padding: 1.5rem;
   background: white;
   border-radius: 20px;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   overflow: hidden;
   margin: 0 auto;
}

.category-heading {
   text-align: center;
   font-size: clamp(1.8rem, 5vw, 2.5rem);
   color: var(--pink);
   margin-bottom: 1.5rem;
   position: relative;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   text-shadow: 2px 2px 0px var(--yellow);
   font-family: 'Georgia', 'Times New Roman', Times, serif;
   padding: 0 1rem;
}

.category-heading:after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 4px;
   background: var(--green);
   border-radius: 2px;
}

.category-subtitle {
   text-align: center;
   color: var(--blue);
   font-size: clamp(1rem, 3vw, 1.2rem);
   margin-top: -0.5rem;
   margin-bottom: 2rem;
   font-weight: 500;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
   padding: 0 1rem;
}

.category-slider {
   padding: 1rem 0;
}

.category-slide {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   background: linear-gradient(145deg, #ffffff, #f0f0f0);
   border-radius: 15px;
   padding: 1.5rem 1rem;
   box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.4s ease;
   border: 3px solid transparent;
   text-decoration: none;
   color: #333;
   position: relative;
   overflow: hidden;
   height: auto;
}

.category-slide:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue), var(--dark-blue));
}

.category-slide:hover {
   transform: translateY(-10px) scale(1.03);
   box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
   border-color: var(--yellow);
}

.category-slide img {
   width: min(80px, 20vw);
   height: min(80px, 20vw);
   object-fit: contain;
   margin-bottom: 1rem;
   transition: all 0.5s ease;
   filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
}

.category-slide:hover img {
   transform: rotate(10deg) scale(1.2);
}

.category-slide h3 {
   font-size: clamp(0.8rem, 2.5vw, 1.1rem);
   font-weight: 600;
   color: var(--dark-blue);
   margin-top: 0.5rem;
   transition: all 0.3s ease;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
   padding: 0 0.5rem;
}

.category-slide:hover h3 {
   color: var(--pink);
}

.category-buttons {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-top: 2rem;
   padding: 0 1rem;
}

.category-prev, .category-next {
   width: min(50px, 12vw);
   height: min(50px, 12vw);
   border-radius: 50%;
   background: linear-gradient(145deg, var(--pink), #ff9e9e);
   color: white;
   border: none;
   font-size: clamp(1.2rem, 3vw, 1.5rem);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
   transition: all 0.3s ease;
}

.category-prev:hover, .category-next:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

.category-pagination {
   position: relative;
   margin-top: 1.5rem;
   text-align: center;
}

.swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background: var(--blue);
   opacity: 0.5;
   transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   background: var(--pink);
   transform: scale(1.3);
}

.bounce-animation {
   animation: categoryBounce 2s infinite;
}

@keyframes categoryBounce {
   0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
   40% {transform: translateY(-20px);}
   60% {transform: translateY(-10px);}
}

/* === Products Section === */
.home-products {
   width: 100%;
   max-width: 1200px;
   margin: 2rem auto;
   padding: 1rem;
   position: relative;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.home-products .heading {
   text-align: center;
   margin-bottom: 2rem;
   font-size: clamp(1.8rem, 5vw, 2.5rem);
   color: var(--pink);
   text-shadow: 2px 2px 0px var(--yellow);
   position: relative;
   display: block;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
   padding: 0 1rem;
}

.home-products .heading::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 5px;
   background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue));
   border-radius: 10px;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.products-slider {
   padding: 1.5rem 0.5rem 3rem;
   position: relative;
}

.products-slider .slide {
   background: white;
   border-radius: 20px;
   overflow: hidden;
   padding: 1rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   border: 3px solid transparent;
   background-clip: padding-box;
   position: relative;
   text-align: center;
   height: auto;
}

.products-slider .slide:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
   border-image: linear-gradient(45deg, var(--pink), var(--yellow), var(--green), var(--blue));
   border-image-slice: 1;
}

.products-slider .slide form {
   display: flex;
   flex-direction: column;
   height: 100%;
}

.products-slider .fa-heart, .products-slider .fa-eye {
   position: absolute;
   top: 1rem;
   width: min(35px, 10vw);
   height: min(35px, 10vw);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   cursor: pointer;
   font-size: clamp(0.8rem, 2.5vw, 1rem);
   transition: all 0.3s ease;
   z-index: 10;
   border: none;
}

.products-slider .fa-heart {
   background-color: var(--pink);
   right: 1rem;
}

.products-slider .fa-heart:hover {
   background-color: #e63946;
   transform: scale(1.1);
}

.products-slider .fa-eye {
   background-color: var(--blue);
   right: min(60px, 16vw);
   text-decoration: none;
}

.products-slider .fa-eye:hover {
   background-color: var(--dark-blue);
   transform: scale(1.1);
}

.products-slider .slide img {
   width: 100%;
   height: min(200px, 40vw);
   object-fit: contain;
   margin: 1rem 0;
   transition: all 0.3s ease;
   filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.products-slider .slide:hover img {
   transform: scale(1.05);
}

.products-slider .name {
   font-size: clamp(1rem, 3vw, 1.2rem);
   color: var(--dark-blue);
   margin: 0.5rem 0;
   font-weight: bold;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.products-slider .name:nth-of-type(2) {
   background: var(--yellow);
   display: inline-block;
   padding: 0.3rem 1rem;
   border-radius: 20px;
   color: var(--dark-blue);
   font-weight: bold;
   margin: 0.3rem auto;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
   font-size: clamp(0.8rem, 2.5vw, 1rem);
}

.products-slider .flex {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 1rem 0;
   gap: 0.5rem;
   flex-wrap: wrap;
}

.products-slider .price {
   font-size: clamp(1.1rem, 3.5vw, 1.4rem);
   color: var(--green);
   font-weight: bold;
   display: flex;
   align-items: center;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.products-slider .price span {
   font-size: clamp(0.8rem, 2.5vw, 1rem);
   margin: 0 2px;
}

.products-slider .qty {
   width: min(60px, 20vw);
   padding: 0.5rem;
   border: 2px solid var(--yellow);
   border-radius: 10px;
   text-align: center;
   font-size: clamp(0.8rem, 2.5vw, 1rem);
   font-weight: bold;
   color: var(--dark-blue);
}

.products-slider .qty:focus {
   outline: none;
   border-color: var(--green);
}

.products-slider .btn {
   background: linear-gradient(45deg, var(--pink), #ff9e6d);
   color: white;
   border: none;
   padding: clamp(0.8rem, 2.5vw, 1.2rem);
   border-radius: 10px;
   font-size: clamp(0.9rem, 2.8vw, 1.1rem);
   font-weight: bold;
   cursor: pointer;
   transition: all 0.3s ease;
   margin-top: 0.5rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.products-slider .btn:hover {
   background: linear-gradient(45deg, #ff9e6d, var(--pink));
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
}

/* Products slider navigation buttons */
.products-buttons {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-top: 1.5rem;
}

.products-prev, .products-next {
   width: min(50px, 12vw);
   height: min(50px, 12vw);
   border-radius: 50%;
   background: linear-gradient(145deg, var(--blue), var(--dark-blue));
   color: white;
   border: none;
   font-size: clamp(1.2rem, 3vw, 1.5rem);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 5px 15px rgba(17, 138, 178, 0.4);
   transition: all 0.3s ease;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 10;
}

.products-prev {
   left: -1.5rem;
}

.products-next {
   right: -1.5rem;
}

.products-prev:hover, .products-next:hover {
   transform: translateY(-50%) scale(1.1);
   box-shadow: 0 8px 20px rgba(17, 138, 178, 0.6);
}

/* === Loading Screen === */
#loading-screen {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #fff;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   transition: opacity 0.5s ease;
}

.loader-logo {
   width: min(120px, 30vw);
   height: auto;
   animation: bounce 1.5s infinite;
}

.loading-text {
   margin-top: 20px;
   font-size: clamp(1rem, 4vw, 1.5rem);
   color: #333;
   font-family: 'Georgia', 'Times New Roman', Times, serif;
}

@keyframes bounce {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-10px); }
}

#loading-screen.hidden {
   opacity: 0;
   pointer-events: none;
}

/* === Footer === */
.footer{
   background-color: var(--white);
}

.footer .grid{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25rem, 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);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
   .header .flex {
      padding: 1rem;
   }
}

@media (max-width: 991px){
   html{
      font-size: 55%;
   }
   
   .header .flex .navbar {
      position: fixed;
      top: 70px;
      left: -100%;
      background: white;
      height: calc(100vh - 70px);
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 30px;
      transition: left 0.3s ease;
      z-index: 999;
      gap: 20px;
   }

   .header .flex .navbar.active {
      left: 0;
   }
   
   .header .flex .navbar a {
      width: 80%;
      text-align: center;
      padding: 12px;
      font-size: 18px;
   }
   
   #menu-btn{
      display: inline-block;
   }
   
   .home-bg .home .slide .content{
      text-align: center;
   }

   .home-bg .home .slide .content h3{
      font-size: 3rem;
   }
   
   .category-heading {
      font-size: 2.2rem;
   }
   
   .home-products .heading {
      font-size: 2.2rem;
      font-family: 'Georgia', 'Times New Roman', Times, serif;
   }
}

@media (max-width: 768px){
   .category {
      padding: 1rem;
      border-radius: 15px;
   }
   
   .category-heading {
      font-size: 1.8rem;
   }
   
   .category-slide {
      padding: 1rem 0.5rem;
   }
   
   .category-slide img {
      width: 50px;
      height: 50px;
   }
   
   .category-slide h3 {
      font-size: 0.9rem;
   }
   
   .category-prev, .category-next {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
   }
   
   .home-products .heading {
      font-size: 1.8rem;
      font-family: 'Georgia', 'Times New Roman', Times, serif;
   }
   
   .products-slider .slide {
      padding: 0.8rem;
   }
   
   .products-slider .fa-heart, .products-slider .fa-eye {
      width: 30px;
      height: 30px;
      font-size: 14px;
   }
   
   .products-slider .fa-eye {
      right: 45px;
   }
   
   .products-slider .name {
      font-size: 1.1rem;
   }
   
   .products-slider .price {
      font-size: 1.2rem;
   }
   
   .products-slider .btn {
      padding: 0.8rem;
      font-size: 1rem;
   }
   
   .products-prev, .products-next {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
   }
   
   .products-prev {
      left: -1rem;
   }
   
   .products-next {
      right: -1rem;
   }
   
   .Font {
      font-size: 1.8rem;
   }
}

@media (max-width: 480px){
   .Font {
      font-size: 1.4rem;
      text-shadow: 1px 1px 0px #ffd166, -1px -1px 0px #a2d2ff;
   }
   
   .category-heading {
      font-size: 1.5rem;
   }
   
   .category {
      padding: 0.8rem;
      border-radius: 10px;
   }
   
   .category-slide {
      padding: 0.8rem 0.3rem;
   }
   
   .category-slide img {
      width: 40px;
      height: 40px;
   }
   
   .category-slide h3 {
      font-size: 0.7rem;
   }
   
   .home-products {
      padding: 0.5rem;
      font-family: 'Georgia', 'Times New Roman', Times, serif;
   }
   
   .home-products .heading {
      font-size: 1.5rem;
      font-family: 'Georgia', 'Times New Roman', Times, serif;
   }
   
   .products-slider {
      padding: 1rem 0.3rem 2.5rem;
   }
   
   .products-slider .slide img {
      height: 140px;
   }
   
   .products-slider .flex {
      flex-direction: column;
      gap: 0.5rem;
   }
   
   .products-slider .qty {
      width: 100%;
      max-width: 80px;
   }
   
   .products-prev, .products-next {
      width: 35px;
      height: 35px;
      font-size: 1rem;
   }
   
   .products-prev {
      left: -0.8rem;
   }
   
   .products-next {
      right: -0.8rem;
   }
   
   .header .flex .logo span {
      display: none;
   }
   
   .header .flex .logo-img {
      margin-right: 0;
   }
   
   .footer .grid {
      grid-template-columns: 1fr;
   }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 360px) {
   .category-slide {
      padding: 0.5rem 0.2rem;
   }
   
   .category-slide img {
      width: 35px;
      height: 35px;
   }
   
   .category-slide h3 {
      font-size: 0.6rem;
   }
   
   .products-slider .slide {
      padding: 0.5rem;
   }
   
   .products-slider .fa-heart, .products-slider .fa-eye {
      width: 25px;
      height: 25px;
      font-size: 12px;
   }
   
   .products-slider .fa-eye {
      right: 35px;
   }
   
   .header .flex .icons > * {
      width: 30px;
      height: 30px;
   }
}

/* Additional zoom prevention for iOS devices */
@media (max-width: 768px) {
   input, select, textarea {
      font-size: 16px !important;
   }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
   * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
   }
}