* {
  margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: poppins;
  overflow-x: hidden;
}

.logo {
  height: 60px;
  width: 100;
}

.marquee-section {
  background-color: #858bf0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.marquee {
  display: inline-block;
  min-width: 200%;
  padding: 5px 0;
  animation: scroll-left 25s linear infinite;
}

.marquee p {
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  color: #ffffff;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


#header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px 30px;
 background-color: #fffafa;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
 position: sticky;
 top: 0;
 left: 0;
 z-index: 999;

}

#navbar {
  display: flex;
  justify-content: center;
  align-items: center;

}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
 position: relative;
text-decoration: none;
font-size: 16px;
font-weight: 600;
color: black;
cursor: pointer;
transition: 0.3s ease;
display: inline-block
}

#navbar li a:hover, 
#navbar li a.active {
  color: #e07a5f;
}

#mobile {
  display: none;
}

.shoping-bag {
  position: relative; 
}

.cart-quantity {
  position: absolute;
  top: -9px;
  right: -9px; 
  background: #3b82f6;
  color: white;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
}

#close {
  display: none;
}
#navbar li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: black;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-block;
}

#navbar li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e07a5f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

#navbar li a:hover::after,
#navbar li a.active::after {
  transform: scaleX(0.9);
}

#hero {
  background-image: url("/IMAGES/bg/background.jpg");
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5vw;
}

#hero h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0px;
}

#hero h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 0;
}

#hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f94144;
  margin-bottom: 15px;
}

#hero p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 600px;
}

#hero button {
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  background-color: #ff4d4d;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); 
  }
  40% {
    transform: translateY(-15px); 
  }
  60% {
    transform: translateY(-7px); 
  }
}

.bounce-text {
  animation: bounce 1.5s infinite;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

#newArrival {
text-align: center;
padding: 50px 40px 50px 40px;
background-color: #fffafa;

}

#newArrival .hed {
  font-size: 2.5rem;
  padding-bottom: 0px;
}

#newArrival p {
  color: rgb(255, 244, 244);
}

#newArrival .newArrivalHeading {
  background-color: #f94144;
  padding: 20px 0px;
}

#newArrival .pro {
  margin-top: 15px;
  width: 22%;
  min-width: 240px;
  padding: 20px 12px;
  border: 1px solid #000000;
  border-radius: 25px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
}

#newArrival .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.12);
}

#newArrival .pro img {
  width: 100%;
  border-radius: 20px;
}

#newArrival .pro .des {
  text-align: start;
  padding: 10px 0;
}

#newArrival .pro .des span {
  color: #606063;
  font-size: 12px;
}
#newArrival .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 16px;
}
#newArrival .pro .des h4 {
  padding-top: 7px;
  font-size: 17px;
  color: #f97316;
  font-weight: bold;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#newArrival .pro .cart-btn,
#featured .pro .cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: none;
  color: #fff;
  background-color: #3b82f6;
  position: absolute;
  right: 12px;
  bottom: 30px;
  transition: 0.3s ease;
}

#newArrival .pro .cart-btn:hover,
#featured .pro .cart-btn:hover{
  color: #3b82f6;
  background-color: #f1f1f1;
}

#newArrival .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
  
}

#banner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-image: url("../IMAGES/set-children-toys.jpg");
  height: 40vh;
  background-size: cover;
  background-position: center;
  padding-bottom: 25px;
}

#banner h2 {
  font-size: 3.5rem;
  color: black;
}

#banner h2 span {
  font-size: 3.5rem;
  color: rgb(255, 0, 0);
}

#banner h3 {
  font-size: 1.3rem;
  display: inline-block;
  color:  rgb(255, 37, 37);
   animation: bounce 1.5s infinite;
   background-color: white;
   padding: 5px 15px;
   border-radius: 10px;
}

.banner-btn {
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-weight: 600;
  padding: 8px 10px;
  background-color: #ff4d4d;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

#banner .banner-btn:hover {
  background-color: white;
  color: rgb(255, 37, 37) ;
}

#categories {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fffafa;
}

#categories h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #111111;
}

#categories p {
  font-size: 1.1rem;
  color: #464545;
  margin-bottom: 2rem;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.category-card {
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-12px);
}

.category-card img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 300px;
  object-fit: cover;
}

.category-card h3 {
  margin: 10px 0;
  color: #222;
  font-size: 1rem;
}

#featured {
text-align: center;
padding: 50px 40px 70px 40px;
background-color: #fffafa;
}

#featured .hed {
  font-size: 2.5rem;
  padding-bottom: 0px;
}

#featured p {
  color: white;
}

#featured .featHed {
  background-color: #f94144;
  padding: 20px 0px;
}

#featured .pro {
  margin-top: 15px;
  width: 22%;
  min-width: 240px;
  padding: 20px 12px;
  border: 1px solid #000000;
  border-radius: 25px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
}

#featured .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.10);
}

#featured .pro img {
  width: 100%;
  border-radius: 20px;
}

#featured .pro .des {
  text-align: start;
  padding: 10px 0;
}

#featured .pro .des span {
  color: #606063;
  font-size: 12px;
}
#featured .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 16px;
}
#featured .pro .des h4 {
  padding-top: 7px;
  font-size: 17px;
  color: #f97316;
  font-weight: bold;
}

#featured .fa-star{
  color: gold;
  
}

.fa-regular.fa-star {
  color: transparent;
  background: none;
}

.fa-star {
  background: none !important;
  background-color: transparent !important;
}

#featured .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  color: #fff;
  background-color: #3b82f6;
  position: absolute;
  right: 30px;
  bottom: 40px;
}

#featured .pro .cart:hover{
  color: #3b82f6;
  background-color: rgb(226, 226, 226);
}

#featured .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.video-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 60px 20px;
}

.video-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  padding: 25px;
  max-width: 300px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #fff;
}

.feature-card p {
  font-size: 1rem;
  color: #ddd;
}

footer {
  display: flex;
 justify-content: space-between;
 align-items: flex-start;
 padding: 30px 50px;
 flex-wrap: wrap;
    background-color: #465a72;
  color: #f3f4f6;
}

footer .col-install .row  img {
  width: 60px;
  margin: 0px 10px;
  cursor: pointer;
}

footer i {
  margin: 0px 8px;
  transition: 0.3s ease;
  cursor: pointer;
}

footer i:hover {
  color: rgb(101, 101, 247);
}

footer h4 {
  margin-top: 30px;
}

.payment {
  width: 200px;
}

footer .col {
  display: flex;
  flex-direction: column;
}

footer a {
  text-decoration: none;
  color: #fff8f8;
  padding: 5px 0px;
  transition: 0.3s ease;
}

footer a:hover {
  color: #f16139;
}

footer h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.row {
  display: flex;
  align-items: center;
  margin: 0px 50px;
  justify-content: center;
  margin: 20px;
}

footer .footerlogo {
  width: 250px;
}

footer .copyright {
  width: 100%;
  text-align: center;
  color: rgb(204, 198, 198);
}

@media (max-width:799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top :0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #f4f1de;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.2);
    padding: 80px 0 0 10px;
    transition: 0.3s;
}

  #navbar.active {
    right: 0px;
  }

#navbar li {
  margin-bottom: 25px;
}
.mobile-cart {
  position: relative;
  display: inline-block;
}

.mobile-cart .cart-quantity {
  position: absolute;
  top: -6px;  
  right: -8px; 
  background-color: #3b82f6;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}


#mobile {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

#mobile i {
color: black;
font-size: 20px;
padding-left: 20px;
}

#close {
  display: initial;
  position: absolute;
  top: 30px;
  left: 30px;
  color: black;
  font-size: 24px;
}

#lg-bag  {
  display: none;
}

#hero {

    height: 80vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
}

#newArrival .pro-container {
    justify-content: center;
}
#newArrival .pro {
   margin: 18px;
}

#banner {
    height: 30vh;
}


#featured .pro-container {
    justify-content: center;

}

#featured .pro {
    margin: 30px;
}


.video-section {
    height: 90vh;

}
}

@media (max-width:477px) {
  #header {
    padding: 10px 10px 0px 10px;
}

#hero {
    height: 80vh;
    padding: 0 20px;
    background-position: 55%;
}

#hero h2 {
    font-size: 1.5rem;
}


#hero h1 {
    font-size: 2.5rem;
}

#newArrival .newArrivalHeading {
    padding: 10px 0px;
}

#newArrival .hed {
    font-size: 1.5rem;
}
#newArrival p {
font-size: 0.8rem;
}

#newArrival .pro {
    width: 100%;
}

#banner h2 {
    font-size: 1rem;
}
#banner h2 span {
    font-size: 1rem;
}

#banner h3 {
    font-size: 1rem;
    padding: 5px 15px;
}
#banner {
    height: 30vh;
}
#newArrival {
    padding: 50px 40px 30px 40px;
}

.banner-btn {
    font-size: 0.5rem;
    font-weight: 600;
    padding: 5px 8px;
}
#categories {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}
#featured .pro {
    width: 100%;

}
}