/* style.css */

/* =========================
      GLOBAL CSS
========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: #ffffff;
   overflow-x: hidden;   /* REMOVE HORIZONTAL SCROLL */
}

/* =========================
        NAVBAR
========================= */

.navbar{
  background: #ffffff;
  padding: 16px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* LOGO */

.navbar-brand{
  font-size: 32px;
  font-weight: 700;
  color: #c40000 !important;
  letter-spacing: 1px;
}
/* LOGO IMAGE */
.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
    margin-left:10px;
  }
}
.navbar-brand span{
  color: #111111;
}

/* NAV LINKS */

.navbar-nav .nav-link{
  color: #222222 !important;
  font-size: 16px;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: 0.3s;
}
.active{
  color: #00a651;
}
.navbar-nav .nav-link:hover{
  color: #c40000 !important;
}

/* UNDERLINE EFFECT */

.navbar-nav .nav-link::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #c40000;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
  width: 100%;
}

/* ORDER BUTTON */

.order-btn{
  background: #c40000;
  color: #ffffff;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #c40000;
  transition: 0.3s;
}

.order-btn:hover{
  background: transparent;
  color: #c40000;
}

/* TOGGLER */

.navbar-toggler{
  border: none;
  box-shadow: none !important;
}

/* =========================
      RESPONSIVE CSS
========================= */

/* TABLET */

@media(max-width: 991px){

  .navbar{
    padding: 14px 0;
  }

  .navbar-collapse{
    background: #ffffff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  .navbar-nav{
    text-align: center;
  }

  .navbar-nav .nav-link{
    margin: 12px 0;
    display: inline-block;
  }

  .order-btn{
    display: block;
    width: fit-content;
    margin: 15px auto 0;
  }

}

/* MOBILE */

@media(max-width: 576px){

  .navbar-brand{
    font-size: 26px;
  }

  .navbar-nav .nav-link{
    font-size: 15px;
  }

  .order-btn{
    padding: 10px 24px;
    font-size: 14px;
  }

}

/* =========================
        HERO SECTION
========================= */

.hero-section{
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #fff5f5, #ffe9ef);
  padding-top: 90px;
}

/* BACKGROUND CIRCLES */

.hero-circle{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-circle-1{
  width: 300px;
  height: 300px;
  background: rgba(255, 0, 76, 0.18);
  top: -80px;
  left: -80px;
}

.hero-circle-2{
  width: 350px;
  height: 350px;
  background: rgba(255, 100, 150, 0.18);
  bottom: -100px;
  right: -100px;
}

/* HERO CONTENT */

.hero-content{
  position: relative;
  z-index: 2;
  animation: fadeLeft 1s ease;
}

.hero-tag{
  display: inline-block;
  background: #ffffff;
  color: #c40000;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.hero-heading{
  font-size: 64px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-heading span{
  color: #d6004d;
}

.hero-text{
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn-primary{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 0, 80, 0.25);
}

.hero-btn-primary:hover{
  transform: translateY(-4px);
  color: #ffffff;
}

.hero-btn-secondary{
  background: #ffffff;
  color: #111111;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #ffffff;
}

.hero-btn-secondary:hover{
  background: #ffdbe8;
  color: #c40000;
}

/* IMAGE */

.hero-image-wrapper{
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeRight 1s ease;
}

.hero-image-bg{
  position: absolute;
  width: 430px;
  height: 430px;
  background: linear-gradient(to bottom right, #ffccd9, #ffc1e3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: floating 4s ease-in-out infinite;
}

.hero-image{
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  object-fit: cover;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.15); */
}

/* ANIMATIONS */

@keyframes fadeLeft{

  from{
    opacity: 0;
    transform: translateX(-50px);
  }

  to{
    opacity: 1;
    transform: translateX(0);
  }

}

@keyframes fadeRight{

  from{
    opacity: 0;
    transform: translateX(50px);
  }

  to{
    opacity: 1;
    transform: translateX(0);
  }

}

@keyframes floating{

  0%{
    transform: translate(-50%, -50%) translateY(0px);
  }

  50%{
    transform: translate(-50%, -50%) translateY(-15px);
  }

  100%{
    transform: translate(-50%, -50%) translateY(0px);
  }

}

/* =========================
      RESPONSIVE CSS
========================= */

@media(max-width: 991px){

  .hero-section{
    padding-top: 130px;
    text-align: center;
  }

  .hero-content{
    margin-bottom: 60px;
  }

  .hero-heading{
    font-size: 48px;
  }

  .hero-text{
    margin: auto;
    margin-bottom: 35px;
  }

  .hero-buttons{
    justify-content: center;
  }

}

@media(max-width: 576px){

  .hero-heading{
    font-size: 36px;
  }

  .hero-text{
    font-size: 15px;
  }

  .hero-btn-primary,
  .hero-btn-secondary{
    width: 100%;
    text-align: center;
  }

  .hero-image-bg{
    width: 280px;
    height: 280px;
  }

}
/* =========================
        ABOUT SECTION
========================= */

.about-section{
  padding: 110px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* IMAGE SIDE */

.about-image-wrapper{
  position: relative;
  z-index: 2;
}

.about-shape{
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(to bottom right, #ffd6df, #ffe7ef);
  border-radius: 50%;
  top: -40px;
  left: -40px;
  z-index: -1;
  animation: aboutFloat 5s ease-in-out infinite;
}

.about-image{
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.12); */
}

/* FLOATING CARD */

.about-floating-card{
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  animation: floatingCard 3s ease-in-out infinite;
}

.about-floating-card h4{
  font-size: 34px;
  font-weight: 700;
  color: #d6004d;
  margin-bottom: 5px;
}

.about-floating-card p{
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-weight: 500;
}

/* CONTENT */

.about-content{
  padding-left: 20px;
}

.about-tag{
  display: inline-block;
  background: #ffe8ee;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.about-heading{
  font-size: 48px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-heading span{
  color: #d6004d;
}

.about-text{
  font-size: 16px;
  color: #666666;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* FEATURES */

.about-features{
  margin-top: 35px;
}

.about-feature-box{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.feature-icon{
  width: 55px;
  height: 55px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(255, 0, 80, 0.2);
}

.about-feature-box h5{
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 5px;
}

.about-feature-box p{
  color: #666666;
  margin: 0;
  font-size: 15px;
}

/* BUTTON */

.about-btn{
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 0, 80, 0.25);
}

.about-btn:hover{
  transform: translateY(-4px);
  color: #ffffff;
}

/* ANIMATIONS */

@keyframes aboutFloat{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-18px);
  }

  100%{
    transform: translateY(0px);
  }

}

@keyframes floatingCard{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-10px);
  }

  100%{
    transform: translateY(0px);
  }

}

/* =========================
      RESPONSIVE CSS
========================= */

@media(max-width: 991px){

  .about-section{
    padding: 80px 0;
  }

  .about-content{
    padding-left: 0;
    text-align: center;
  }

  .about-heading{
    font-size: 38px;
  }

  .about-feature-box{
    justify-content: center;
    text-align: left;
  }

  .about-floating-card{
    right: 10px;
  }

}

@media(max-width: 576px){

  .about-heading{
    font-size: 30px;
  }

  .about-text{
    font-size: 15px;
  }

  .about-floating-card{
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .about-feature-box{
    flex-direction: column;
    text-align: center;
  }

  .about-btn{
    width: 100%;
    text-align: center;
  }

}

/* =========================
      NEW PRODUCTS SECTION
========================= */

.new-products-section{
  padding: 110px 0;
  background: linear-gradient(to bottom, #fff8f8, #ffeef3);
  overflow: hidden;
}

/* =========================
        SECTION TITLE
========================= */

.new-products-title{
  margin-bottom: 60px;
}

.new-products-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.new-products-heading{
  font-size: 50px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
  line-height: 1.3;
}

.new-products-heading span{
  color: #d6004d;
}

.new-products-subtext{
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
}

/* =========================
          CARD
========================= */

.new-product-card{
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  height: 100%;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    0 8px 20px rgba(255, 0, 90, 0.08);
}

/* HOVER */

.new-product-card:hover{
  transform: translateY(-6px);

  box-shadow:
    0 28px 60px rgba(0,0,0,0.14),
    0 12px 30px rgba(255, 0, 90, 0.14);
}

/* =========================
          IMAGE
========================= */

.new-product-image-box{
  position: relative;
  overflow: hidden;
}

.new-product-image{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.new-product-card:hover .new-product-image{
  transform: scale(1.08);
}

/* CATEGORY */

.new-product-category{
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
          CONTENT
========================= */

.new-product-content{
  padding: 30px 24px;
  text-align: center;
}

.new-product-content h4{
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 22px;
}

/* BUTTON */

.new-product-btn{
  display: inline-block;
  background: #ffe1ea;
  color: #d6004d;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.new-product-btn:hover{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 991px){

  .new-products-section{
    padding: 80px 0;
  }

  .new-products-heading{
    font-size: 38px;
  }

  .new-products-subtext{
    font-size: 15px;
    padding: 0 10px;
  }

}

/* MOBILE */

@media(max-width: 576px){

  .new-products-section{
    padding: 70px 0;
  }

  .new-products-title{
    margin-bottom: 40px;
  }

  .new-products-heading{
    font-size: 30px;
    line-height: 1.4;
  }

  .new-products-subtext{
    font-size: 14px;
    line-height: 1.8;
  }

  /* ONE CARD PERFECT */

  .new-product-card{
    max-width: 340px;
    margin: auto;
  }

  .new-product-image{
    height: 220px;
  }

  .new-product-content{
    padding: 24px 18px;
  }

  .new-product-content h4{
    font-size: 20px;
  }

  .new-product-btn{
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

}

/* =========================
      WHY CHOOSE US
========================= */

.why-section{
  padding: 110px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND */

.why-bg-circle{
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 0, 90, 0.06);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  filter: blur(40px);
}

/* =========================
      SECTION TITLE
========================= */

.why-title{
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.why-tag{
  display: inline-block;
  background: #ffe5ee;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-heading{
  font-size: 50px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 18px;
}

.why-heading span{
  color: #d6004d;
}

.why-subtext{
  max-width: 700px;
  margin: auto;
  color: #666666;
  font-size: 16px;
  line-height: 1.9;
}

/* =========================
        CARD
========================= */

.why-card{
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  transition: 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.06),
    0 8px 20px rgba(255, 0, 90, 0.05);
}

/* TOP BORDER EFFECT */

.why-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
}

/* HOVER */

.why-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.12),
    0 12px 28px rgba(255, 0, 90, 0.12);
}

/* ICON */

.why-icon{
  width: 90px;
  height: 90px;
  background: linear-gradient(to bottom right, #ffe2ea, #ffd1e1);
  border-radius: 50%;
  margin: auto;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;

  transition: 0.4s;
}

.why-card:hover .why-icon{
  transform: rotate(8deg) scale(1.08);
}

/* CONTENT */

.why-card h4{
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 15px;
}

.why-card p{
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

/* =========================
      RESPONSIVE
========================= */

@media(max-width: 991px){

  .why-section{
    padding: 80px 0;
  }

  .why-heading{
    font-size: 38px;
  }

  .why-subtext{
    font-size: 15px;
    padding: 0 10px;
  }

}

@media(max-width: 576px){

  .why-section{
    padding: 70px 0;
  }

  .why-title{
    margin-bottom: 40px;
  }

  .why-heading{
    font-size: 30px;
  }

  .why-subtext{
    font-size: 14px;
    line-height: 1.8;
  }

  .why-card{
    padding: 35px 22px;
  }

  .why-icon{
    width: 75px;
    height: 75px;
    font-size: 30px;
  }

  .why-card h4{
    font-size: 20px;
  }

}
/* =========================
    TESTIMONIAL SECTION
========================= */

.testimonial-section{
  padding: 110px 0;
  background: linear-gradient(to bottom, #fff7f8, #ffeef3);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND SHAPES */

.testimonial-shape{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.testimonial-shape-1{
  width: 280px;
  height: 280px;
  background: rgba(255, 0, 90, 0.08);
  top: -80px;
  left: -80px;
}

.testimonial-shape-2{
  width: 350px;
  height: 350px;
  background: rgba(255, 120, 160, 0.08);
  bottom: -100px;
  right: -100px;
}

/* =========================
      SECTION TITLE
========================= */

.testimonial-title{
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonial-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.testimonial-heading{
  font-size: 50px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
  line-height: 1.3;
}

.testimonial-heading span{
  color: #d6004d;
}

.testimonial-subtext{
  max-width: 700px;
  margin: auto;
  color: #666666;
  font-size: 16px;
  line-height: 1.9;
}

/* =========================
      TESTIMONIAL CARD
========================= */

.testimonial-card{
  background: #ffffff;
  max-width: 850px;
  margin: auto;
  padding: 50px 40px;
  border-radius: 35px;
  text-align: center;
  position: relative;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08),
    /* 0 10px 25px rgba(255, 0, 90, 0.06); */
}

/* QUOTE ICON */

.testimonial-card::before{
  content: '❝';
  position: absolute;
  top: 20px;
  left: 35px;
  font-size: 70px;
  color: rgba(214, 0, 77, 0.12);
}

/* STARS */

.testimonial-stars{
  font-size: 28px;
  color: #ffb400;
  margin-bottom: 25px;
  letter-spacing: 4px;
}

/* TEXT */

.testimonial-text{
  font-size: 20px;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 35px;
  font-weight: 500;
}

/* USER */

.testimonial-user{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.testimonial-user-img{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffe1ea;
}

.testimonial-user h5{
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 5px;
}

.testimonial-user span{
  font-size: 14px;
  color: #777777;
}

/* =========================
      CAROUSEL BUTTONS
========================= */

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next{
  width: 60px;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon{
  background-color: rgba(214, 0, 77, 0.75);
  border-radius: 50%;
  padding: 22px;
  background-size: 55%;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 991px){

  .testimonial-section{
    padding: 80px 0;
  }

  .testimonial-heading{
    font-size: 38px;
  }

  .testimonial-card{
    padding: 45px 30px;
  }

  .testimonial-text{
    font-size: 18px;
  }

}

@media(max-width: 576px){

  .testimonial-section{
    padding: 70px 0;
  }

  .testimonial-title{
    margin-bottom: 40px;
  }

  .testimonial-heading{
    font-size: 30px;
  }

  .testimonial-subtext{
    font-size: 14px;
    line-height: 1.8;
  }

  .testimonial-card{
    padding: 35px 22px;
    border-radius: 25px;
  }

  .testimonial-card::before{
    font-size: 50px;
    top: 15px;
    left: 20px;
  }

  .testimonial-stars{
    font-size: 22px;
  }

  .testimonial-text{
    font-size: 15px;
    line-height: 1.8;
  }

  .testimonial-user{
    flex-direction: column;
    gap: 12px;
  }

  .testimonial-user-img{
    width: 65px;
    height: 65px;
  }

  .testimonial-user h5{
    font-size: 18px;
  }

  /* HIDE ARROWS */

  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next{
    display: none;
  }

}

/* =========================
          FAQ SECTION
========================= */

.faq-section{
  padding: 110px 0;
  background: linear-gradient(to bottom, #ffffff, #fff1f5);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND */

.faq-shape{
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 0, 90, 0.06);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(50px);
}

/* =========================
        LEFT CONTENT
========================= */

.faq-content{
  position: relative;
  z-index: 2;
}

.faq-tag{
  display: inline-block;
  background: #ffe5ee;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-heading{
  font-size: 50px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 22px;
}

.faq-heading span{
  color: #d6004d;
}

.faq-text{
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 35px;
}

/* BUTTON */

.faq-btn{
  display: inline-block;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;

  box-shadow:
    0 15px 30px rgba(255, 0, 90, 0.18);
}

.faq-btn:hover{
  transform: translateY(-5px);
  color: #ffffff;
}

/* =========================
          ACCORDION
========================= */

.faq-accordion .accordion-item{
  border: none;
  border-radius: 22px !important;
  overflow: hidden;
  margin-bottom: 22px;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.06),
    0 8px 20px rgba(255, 0, 90, 0.05);
}

/* BUTTON */

.faq-accordion .accordion-button{
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  padding: 24px 28px;
  box-shadow: none !important;
}

/* ACTIVE */

.faq-accordion .accordion-button:not(.collapsed){
  background: linear-gradient(to right, #fff0f5, #ffe5ee);
  color: #d6004d;
}

/* ICON */

.faq-accordion .accordion-button::after{
  background-size: 18px;
}

/* BODY */

.faq-accordion .accordion-body{
  font-size: 15px;
  color: #666666;
  line-height: 1.9;
  padding: 0 28px 28px;
  background: #ffffff;
}

/* =========================
          RESPONSIVE
========================= */

@media(max-width: 991px){

  .faq-section{
    padding: 80px 0;
  }

  .faq-content{
    text-align: center;
  }

  .faq-heading{
    font-size: 38px;
  }

  .faq-text{
    font-size: 15px;
  }

}

@media(max-width: 576px){

  .faq-section{
    padding: 70px 0;
  }

  .faq-heading{
    font-size: 30px;
  }

  .faq-text{
    font-size: 14px;
    line-height: 1.8;
  }

  .faq-btn{
    width: 100%;
    text-align: center;
  }

  .faq-accordion .accordion-button{
    font-size: 16px;
    padding: 20px;
  }

  .faq-accordion .accordion-body{
    font-size: 14px;
    padding: 0 20px 20px;
  }

}

/* =========================
          FOOTER
========================= */

.footer-section{
  background: #ffffff;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f1f1f1;
}



/* =========================
        FOOTER LOGO
========================= */

.footer-logo{
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-img{
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-text{
  color: #666666;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 350px;
}

/* =========================
        SOCIAL ICONS
========================= */

.footer-social{
  display: flex;
  gap: 15px;
}

.footer-social a{
  width: 45px;
  height: 45px;
  background: #fff4ec;
  color: #d6004d;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
  border: 1px solid #ffe0cc;
}

.footer-social a:hover{
  background: linear-gradient(to right, #fa2065, #be0966);
  color: #ffffff;
  transform: translateY(-5px);
}

/* =========================
        FOOTER TITLES
========================= */

.footer-links h4,
.footer-contact h4{
  color: #111111;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* =========================
        FOOTER LINKS
========================= */

.footer-links ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li{
  margin-bottom: 16px;
}

.footer-links ul li a{
  color: #666666;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.footer-links ul li a:hover{
  color: #d6004d;
  padding-left: 6px;
}

/* =========================
          CONTACT
========================= */

.footer-contact p{
  color: #666666;
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.8;
}

.footer-contact a{
  color: #666666;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a:hover{
  color: #d6004d;
}

/* =========================
      FOOTER BOTTOM
========================= */

.footer-bottom{
  margin-top: 70px;
  padding: 25px 0;
  border-top: 1px solid #eeeeee;
  text-align: center;
}

.footer-bottom p{
  color: #777777;
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
}

.footer-bottom a{
  color: #d6004d;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 991px){

  .footer-section{
    padding-top: 70px;
  }

  .footer-logo-img{
    height: 60px;
  }

}

@media(max-width: 576px){

  .footer-section{
    padding-top: 60px;
    text-align: center;
  }

  .footer-logo-img{
    height: 55px;
  }

  .footer-text{
    margin: auto;
    margin-bottom: 30px;
  }

  .footer-social{
    justify-content: center;
  }

  .footer-links h4,
  .footer-contact h4{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .footer-bottom{
    margin-top: 45px;
  }

}

/* =========================
      ABOUT HERO
========================= */

.about-page-hero{
  padding: 140px 0 110px;
  background: linear-gradient(to right, #fff3f5, #ffe8ef);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.about-page-heading{
  font-size: 65px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 22px;
}

.about-page-text{
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  color: #666666;
  line-height: 1.9;
}

/* =========================
      ABOUT COMPANY
========================= */

.about-company-section{
  padding: 110px 0;
}

.about-company-image-wrapper{
  position: relative;
}

.about-company-shape{
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 0, 90, 0.08);
  border-radius: 50%;
  top: -40px;
  left: -40px;
}

.about-company-image{
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-company-tag{
  display: inline-block;
  background: #ffe5ee;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.about-company-heading{
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 22px;
}

.about-company-text{
  font-size: 16px;
  color: #666666;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* FEATURES */

.about-company-features{
  margin-top: 35px;
}

.about-company-feature-box{
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.about-company-icon{
  width: 55px;
  height: 55px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  border-radius: 50%;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;
}

.about-company-feature-box h5{
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-company-feature-box p{
  margin: 0;
  color: #666666;
}

/* =========================
      WHY SECTION
========================= */

.about-why-section{
  padding: 110px 0;
  background: linear-gradient(to bottom, #fff7f8, #ffeef3);
}

.about-why-title{
  margin-bottom: 60px;
}

.about-why-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-why-heading{
  font-size: 50px;
  font-weight: 700;
  color: #111111;
}

.about-why-card{
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 30px;
  text-align: center;
  transition: 0.4s;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08),
    0 10px 25px rgba(255, 0, 90, 0.06);
}

.about-why-card:hover{
  transform: translateY(-8px);
}

.about-why-icon{
  width: 90px;
  height: 90px;
  background: linear-gradient(to bottom right, #ffe2ea, #ffd1e1);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  margin-bottom: 25px;

  font-size: 38px;
}

.about-why-card h4{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-why-card p{
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 991px){

  .about-page-heading{
    font-size: 45px;
  }

  .about-company-heading{
    font-size: 38px;
  }

  .about-why-heading{
    font-size: 38px;
  }

}

@media(max-width: 576px){

  .about-page-hero{
    padding: 120px 0 90px;
  }

  .about-page-heading{
    font-size: 34px;
  }

  .about-page-text{
    font-size: 15px;
  }

  .about-company-section,
  .about-why-section{
    padding: 70px 0;
  }

  .about-company-heading{
    font-size: 30px;
  }

  .about-company-text{
    font-size: 14px;
  }

  .about-company-feature-box{
    flex-direction: column;
    text-align: center;
  }

  .about-company-icon{
    margin: auto;
  }

  .about-why-heading{
    font-size: 30px;
  }

  .about-why-card{
    padding: 35px 22px;
  }

}

/* =========================
      NEW PRODUCTS SECTION
========================= */

.new-products-section{
  padding: 110px 0;
  background: linear-gradient(to bottom, #fff8f8, #ffeef3);
  overflow: hidden;
  position: relative;
}

/* =========================
      SECTION TITLE
========================= */

.new-products-title{
  margin-bottom: 60px;
}

.new-products-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.new-products-heading{
  font-size: 52px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 18px;
}

.new-products-heading span{
  color: #d6004d;
}

.new-products-subtext{
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
}

/* =========================
        PRODUCT CARD
========================= */

.new-product-card{
  background: #ffffff;
  border-radius: 30px;
  transition: 0.4s;
  position: relative;
  height: 100%;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    0 8px 22px rgba(255,0,90,0.08);
}

/* HOVER */

.new-product-card:hover{
  transform: translateY(-6px);

  box-shadow:
    0 28px 60px rgba(0,0,0,0.14),
    0 12px 30px rgba(255,0,90,0.14);
}

/* =========================
          IMAGE
========================= */

.new-product-image-box{
  position: relative;
  overflow: hidden;
}

.new-product-image{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.new-product-card:hover .new-product-image{
  transform: scale(1.08);
}

/* CATEGORY */

.new-product-category{
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
          CONTENT
========================= */

.new-product-content{
  padding: 30px 24px;
  text-align: center;
}

.new-product-content h4{
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 22px;
}

/* BUTTON */

.new-product-btn{
  display: inline-block;
  background: #ffe1ea;
  color: #d6004d;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.new-product-btn:hover{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
}

/* =========================
      BUTTONS SECTION
========================= */

.new-products-btns{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 55px;
}

.new-products-arrow{
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #d6004d;
  font-size: 20px;
  cursor: pointer;
  transition: 0.4s;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08),
    0 8px 20px rgba(255,0,90,0.08);
}

/* HOVER */

.new-products-arrow:hover{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  transform: translateY(-5px);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width: 991px){

  .new-products-section{
    padding: 80px 0;
  }

  .new-products-heading{
    font-size: 40px;
  }

  .new-products-subtext{
    font-size: 15px;
    padding: 0 10px;
  }

}

/* MOBILE */

@media(max-width: 576px){

  .new-products-section{
    padding: 70px 0;
  }

  .new-products-title{
    margin-bottom: 40px;
  }

  .new-products-heading{
    font-size: 30px;
    line-height: 1.4;
  }

  .new-products-subtext{
    font-size: 14px;
    line-height: 1.8;
  }

  .new-product-card{
    max-width: 340px;
    margin: auto;
  }

  .new-product-image{
    height: 220px;
  }

  .new-product-content{
    padding: 24px 18px;
  }

  .new-product-content h4{
    font-size: 20px;
  }

  .new-product-btn{
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .new-products-btns{
    margin-top: 35px;
  }

  .new-products-arrow{
    width: 55px;
    height: 55px;
    font-size: 16px;
  }

}
/* =========================
      MOBILE VIEW
   SHOW ONLY 1 CARD
========================= */

@media(max-width: 576px){

  /* HIDE EXTRA CARDS */

  .new-products-section .col-xl-3,
  .new-products-section .col-lg-4,
  .new-products-section .col-md-6{
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .new-products-section .row{
    justify-content: center;
  }

  .new-product-card{
    max-width: 330px;
    margin: auto;
  }

  /* SHOW ONLY FIRST CARD */

  .new-products-section .col-xl-3:not(:first-child){
    display: none;
  }

  /* CARD */

  .new-product-image{
    height: 220px;
  }

  .new-product-content{
    padding: 24px 18px;
  }

  .new-product-content h4{
    font-size: 20px;
  }

  .new-product-btn{
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* BUTTONS */

  .new-products-btns{
    margin-top: 35px;
  }

  .new-products-arrow{
    width: 55px;
    height: 55px;
    font-size: 16px;
  }

}

/* =========================
        NAVBAR
========================= */

.products-page-navbar{
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.products-page-navbar-brand{
  font-size: 38px;
  font-weight: 700;
  text-decoration: none;
  color: #111111;
}

.products-page-navbar-brand span{
  color: #d6004d;
}

.products-page-nav-link{
  color: #222222;
  font-weight: 500;
  margin: 0 12px;
  transition: 0.3s;
  text-decoration: none;
}

.products-page-nav-link:hover,
.products-page-nav-link.active{
  color: #d6004d;
}

.products-page-order-btn{
  display: inline-block;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.products-page-order-btn:hover{
  transform: translateY(-3px);
  color: #ffffff;
}

/* =========================
        HERO SECTION
========================= */

.products-page-hero-section{
  padding: 110px 0;
}

.products-page-hero-tag{
  display: inline-block;
  background: #ffe1ea;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 25px;
}

.products-page-hero-content h1{
  font-size: 62px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 25px;
}

.products-page-hero-content h1 span{
  color: #d6004d;
}

.products-page-hero-content p{
  font-size: 17px;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 35px;
}

.products-page-hero-btn{
  display: inline-block;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.products-page-hero-btn:hover{
  transform: translateY(-4px);
  color: #ffffff;
}

.products-page-hero-image img{
  width: 100%;
  border-radius: 35px;


}

/* =========================
      SECTION TITLE
========================= */

.products-page-section-title{
  margin-bottom: 65px;
}

.products-page-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.products-page-section-title h2{
  font-size: 52px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
}

.products-page-section-title h2 span{
  color: #d6004d;
}

.products-page-section-title p{
  font-size: 16px;
  color: #666666;
  max-width: 650px;
  margin: auto;
  line-height: 1.9;
}

/* =========================
      PRODUCTS SECTION
========================= */

.products-page-section{
  padding: 100px 0;
}

/* =========================
        PRODUCT CARD
========================= */

.products-page-card{
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

  transition: 0.4s;
}

.products-page-card:hover{
  transform: translateY(-7px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.products-page-image-box{
  position: relative;
  overflow: hidden;
}

.products-page-image{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.products-page-card:hover .products-page-image{
  transform: scale(1.08);
}

/* =========================
        CATEGORY
========================= */

.products-page-category{
  position: absolute;
  top: 18px;
  left: 18px;

  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;

  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
        CONTENT
========================= */

.products-page-content{
  padding: 30px 24px;
  text-align: center;
}

.products-page-content h4{
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}

.products-page-content p{
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* =========================
          BUTTON
========================= */

.products-page-btn{
  display: inline-block;
  background: #ffe1ea;
  color: #d6004d;

  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.products-page-btn:hover{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
}

/* =========================
          FOOTER
========================= */

.products-page-footer{
  background: #111111;
  padding: 30px 0;
  margin-top: 100px;
}

.products-page-footer p{
  color: #ffffff;
  margin: 0;
  text-align: center;
  font-size: 15px;
}

/* =========================
      TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  .products-page-hero-section{
    padding: 90px 0;
    text-align: center;
  }

  .products-page-hero-content h1{
    font-size: 46px;
  }

  .products-page-hero-image{
    margin-top: 50px;
  }

  .products-page-section-title h2{
    font-size: 40px;
  }

}

/* =========================
      MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

  .products-page-navbar-brand{
    font-size: 30px;
  }

  .products-page-hero-section{
    padding: 70px 0;
  }

  .products-page-hero-content h1{
    font-size: 34px;
    line-height: 1.4;
  }

  .products-page-hero-content p{
    font-size: 15px;
  }

  .products-page-hero-btn{
    width: 100%;
    text-align: center;
  }

  .products-page-section-title{
    margin-bottom: 45px;
  }

  .products-page-section-title h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .products-page-section-title p{
    font-size: 14px;
  }

  .products-page-image{
    height: 220px;
  }

  .products-page-content{
    padding: 24px 18px;
  }

  .products-page-content h4{
    font-size: 22px;
  }

  .products-page-btn{
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

}

/* =========================
      CONTACT PAGE CSS
========================= */

/* HERO SECTION */

.contact-page-hero-section{
  padding: 120px 0 80px;
  background: linear-gradient(to bottom, #fff4f7, #ffe8ef);
}

.contact-page-hero-content{
  max-width: 800px;
  margin: auto;
}

.contact-page-tag{
  display: inline-block;
  background: #ffffff;
  color: #d6004d;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 25px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.contact-page-hero-content h1{
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 20px;
}

.contact-page-hero-content h1 span{
  color: #d6004d;
}

.contact-page-hero-content p{
  font-size: 17px;
  line-height: 1.9;
  color: #666666;
}

/* =========================
      CONTACT SECTION
========================= */

.contact-page-section{
  padding: 100px 0;
  background: #fff7f8;
}

/* LEFT INFO BOX */

.contact-page-info-box{
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 30px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.06);
}

.contact-page-info-box h2{
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
}

.contact-page-info-box p{
  color: #666666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* INFO ITEM */

.contact-page-info-item{
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-page-icon{
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #c40000, #ff2f6d);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 22px;

  flex-shrink: 0;
}

.contact-page-info-item h5{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111111;
}

.contact-page-info-item p{
  margin: 0;
  color: #666666;
}

/* =========================
        FORM BOX
========================= */

.contact-page-form-box{
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 30px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.06);
}

/* INPUT */

.contact-page-input,
.contact-page-textarea{
  width: 100%;
  border: 1px solid #f2dbe3;
  background: #fff7f9;

  padding: 16px 20px;
  border-radius: 16px;

  font-size: 15px;
  color: #111111;

  margin-bottom: 22px;

  outline: none;
  transition: 0.3s;
}

.contact-page-input:focus,
.contact-page-textarea:focus{
  border-color: #d6004d;
  background: #ffffff;
}

.contact-page-textarea{
  height: 180px;
  resize: none;
}

/* BUTTON */

.contact-page-btn{
  display: inline-block;
  border: none;

  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;

  padding: 15px 38px;
  border-radius: 50px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s;
}

.contact-page-btn:hover{
  transform: translateY(-4px);
}

/* =========================
      TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  .contact-page-hero-content h1{
    font-size: 46px;
  }

  .contact-page-section{
    padding: 80px 0;
  }

  .contact-page-info-box{
    margin-bottom: 20px;
  }

}

/* =========================
      MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

  .contact-page-hero-section{
    padding: 90px 0 60px;
  }

  .contact-page-hero-content h1{
    font-size: 34px;
    line-height: 1.4;
  }

  .contact-page-hero-content p{
    font-size: 15px;
  }

  .contact-page-info-box,
  .contact-page-form-box{
    padding: 30px 22px;
    border-radius: 24px;
  }

  .contact-page-info-box h2{
    font-size: 30px;
  }

  .contact-page-input,
  .contact-page-textarea{
    padding: 14px 16px;
    font-size: 14px;
  }

  .contact-page-btn{
    width: 100%;
    text-align: center;
  }

  .contact-page-icon{
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

}
/* =========================
        ORDER PAGE CSS
========================= */

.order-page-section{
  padding: 100px 0;
  background: linear-gradient(to bottom, #fff5f8, #ffe8ef);
  min-height: 100vh;

  display: flex;
  align-items: center;
}

/* FORM BOX */

.order-page-form-box{
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 35px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.06);
}

/* TITLE */

.order-page-title{
  margin-bottom: 40px;
}

.order-page-tag{
  display: inline-block;
  background: #ffe1ea;
  color: #d6004d;

  padding: 10px 24px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 22px;
}

.order-page-title h2{
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;

  color: #111111;

  margin-bottom: 18px;
}

.order-page-title h2 span{
  color: #d6004d;
}

.order-page-title p{
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

/* INPUT */

.order-page-input,
.order-page-textarea,
.order-page-select{
  width: 100%;

  border: 1px solid #f2dbe3;
  background: #fff7f9;

  padding: 16px 20px;
  border-radius: 18px;

  margin-bottom: 22px;

  outline: none;

  font-size: 15px;
  color: #111111;

  transition: 0.3s;
}

.order-page-input:focus,
.order-page-textarea:focus,
.order-page-select:focus{
  border-color: #d6004d;
  background: #ffffff;
}

.order-page-textarea{
  height: 150px;
  resize: none;
}

/* BUTTON */

.order-page-btn{
  width: 100%;

  border: none;

  background: linear-gradient(to right, #c40000, #ff2f6d);

  color: #ffffff;

  padding: 16px;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.order-page-btn:hover{
  transform: translateY(-4px);
}

/* =========================
      TABLET RESPONSIVE
========================= */

@media(max-width:991px){

  .order-page-title h2{
    font-size: 40px;
  }

}

/* =========================
      MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

  .order-page-section{
    padding: 70px 0;
  }

  .order-page-form-box{
    padding: 35px 22px;
    border-radius: 25px;
  }

  .order-page-title h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .order-page-title p{
    font-size: 14px;
  }

  .order-page-input,
  .order-page-textarea,
  .order-page-select{
    padding: 14px 16px;
    font-size: 14px;
  }

  .order-page-btn{
    font-size: 15px;
  }

}
/* =========================
      VIEW PRODUCT PAGE
========================= */

.view-product-section{
  padding: 90px 0;
  background: #fff7f8;
}

/* =========================
      IMAGE GALLERY
========================= */

.view-product-gallery{
  display: flex;
  gap: 20px;
}

.view-product-thumbs{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.view-thumb{
  width: 110px;
  height: 110px;
  object-fit: cover;

  border-radius: 20px;
  cursor: pointer;

  border: 2px solid transparent;

  transition: 0.3s;
}

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

.active-thumb{
  border-color: #d6004d;
}

.view-product-big-image{
  flex: 1;

  background: #ffffff;
  border-radius: 35px;
  padding: 25px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);
}

.view-product-big-image img{
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
}

/* =========================
      PRODUCT CONTENT
========================= */

.view-product-content{
  background: #ffffff;
  padding: 40px;
  border-radius: 35px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);
}

.view-product-category{
  display: inline-block;

  background: #ffe1ea;
  color: #d6004d;

  padding: 10px 24px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;
}

.view-product-content h1{
  font-size: 48px;
  font-weight: 700;

  color: #111111;

  margin-bottom: 20px;
}

.view-product-short-desc{
  font-size: 16px;
  line-height: 1.9;
  color: #666666;

  margin-bottom: 30px;
}

/* STOCK */

.view-product-stock{
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 30px;

  color: #16a34a;
  font-weight: 600;
}

.view-product-stock i{
  font-size: 20px;
}

/* FEATURES */

.view-product-features{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-bottom: 35px;
}

.view-feature-item{
  background: #fff1f5;

  padding: 14px 18px;
  border-radius: 16px;

  font-size: 14px;
  font-weight: 500;

  color: #444444;
}

.view-feature-item i{
  color: #d6004d;
  margin-right: 8px;
}

/* BUTTON */

.view-product-btn{
  display: inline-block;

  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;

  padding: 16px 40px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.view-product-btn:hover{
  transform: translateY(-4px);
  color: #ffffff;
}

/* =========================
          TABS
========================= */

.view-product-tabs{
  margin-top: 70px;

  background: #ffffff;
  padding: 40px;
  border-radius: 35px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);
}

/* BUTTONS */

.view-tabs-buttons{
  display: flex;
  gap: 20px;

  margin-bottom: 35px;
}

.view-tab-btn{
  border: none;

  background: #ffe5ee;
  color: #d6004d;

  padding: 14px 30px;
  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.active-tab{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
}

/* CONTENT */

.view-tab-content{
  display: none;
}

.active-content{
  display: block;
}

.view-tab-content p{
  font-size: 16px;
  line-height: 2;
  color: #666666;
}

/* =========================
      RESPONSIVE
========================= */

@media(max-width:991px){

  .view-product-gallery{
    flex-direction: column-reverse;
  }

  .view-product-thumbs{
    flex-direction: row;
  }

  .view-product-content h1{
    font-size: 38px;
  }

}

@media(max-width:576px){

  .view-product-section{
    padding: 70px 0;
  }

  .view-product-big-image,
  .view-product-content,
  .view-product-tabs{
    border-radius: 25px;
    padding: 22px;
  }

  .view-thumb{
    width: 80px;
    height: 80px;
  }

  .view-product-content h1{
    font-size: 30px;
    line-height: 1.4;
  }

  .view-product-short-desc{
    font-size: 14px;
  }

  .view-tabs-buttons{
    flex-direction: column;
  }

  .view-tab-btn{
    width: 100%;
  }

  .view-product-btn{
    width: 100%;
    text-align: center;
  }

}
/* =========================
      DASHBOARD CSS
========================= */

.dashboard-page-wrapper{
  display: flex;
  min-height: 100vh;
  background: #fff6f8;
}

/* DASHBOARD LOGO */

.dashboard-page-logo{
  text-align: center;
  margin-bottom: 30px;
}

.dashboard-logo-img{
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* margin-bottom: 10px; */
}

.dashboard-page-logo p{
  font-size: 15px;
  color: #777;
  margin: 0;
  font-weight: 500;
}

/* =========================
        SIDEBAR
========================= */

.dashboard-page-sidebar{
  width: 280px;
  background: #ffffff;

  padding: 35px 25px;

  border-right: 1px solid #f4dce5;

  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;

  overflow-y: auto;
}

/* LOGO */

.dashboard-page-logo{
  margin-bottom: 50px;
}

.dashboard-page-logo h2{
  font-size: 34px;
  font-weight: 700;
  color: #111111;
}

.dashboard-page-logo h2 span{
  color: #d6004d;
}

.dashboard-page-logo p{
  color: #777777;
  margin-top: 5px;
}

/* MENU */

.dashboard-page-menu{
  list-style: none;
  padding: 0;
}

.dashboard-page-menu li{
  margin-bottom: 15px;
}

.dashboard-page-menu-link{
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 15px 18px;
  border-radius: 18px;

  text-decoration: none;

  color: #444444;
  font-weight: 500;

  transition: 0.3s;
}

.dashboard-page-menu-link i{
  font-size: 18px;
}

.dashboard-page-menu-link:hover,
.dashboard-page-menu-link.active{
  background: linear-gradient(to right, #c40000, #ff2f6d);
  color: #ffffff;
}

.logout-link:hover{
  background: #111111;
}

/* =========================
      MAIN CONTENT
========================= */

.dashboard-page-main{
  flex: 1;

  margin-left: 280px;

  padding: 40px;
}

/* TOPBAR */

.dashboard-page-topbar{
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 40px;
}

.dashboard-page-topbar h1{
  font-size: 38px;
  font-weight: 700;
  color: #111111;
}

.dashboard-page-topbar p{
  color: #666666;
  margin-top: 6px;
}

/* ADMIN */

.dashboard-page-admin{
  display: flex;
  align-items: center;
  gap: 14px;

  background: #ffffff;
  padding: 12px 18px;

  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.05);
}

.dashboard-page-admin img{
  width: 55px;
  height: 55px;

  border-radius: 50%;
  object-fit: cover;
}

.dashboard-page-admin h5{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.dashboard-page-admin span{
  font-size: 14px;
  color: #777777;
}

/* =========================
        CARDS
========================= */

.dashboard-page-card{
  background: #ffffff;

  padding: 28px 24px;
  border-radius: 28px;

  display: flex;
  align-items: center;
  gap: 18px;

  transition: 0.3s;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.dashboard-page-card:hover{
  transform: translateY(-6px);
}

.dashboard-page-card-icon{
  width: 70px;
  height: 70px;

  border-radius: 20px;

  background: linear-gradient(to right, #c40000, #ff2f6d);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 26px;
}

.pink-icon{
  background: linear-gradient(to right, #ff4f88, #ff7cab);
}

.red-icon{
  background: linear-gradient(to right, #ff3d3d, #ff6b6b);
}

.orange-icon{
  background: linear-gradient(to right, #ff8a00, #ffb347);
}

.dashboard-page-card h3{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-page-card p{
  margin: 0;
  color: #777777;
}

/* =========================
        TABLE
========================= */

.dashboard-page-table-box{
  background: #ffffff;

  padding: 35px;
  border-radius: 30px;

  margin-top: 40px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

/* TITLE */

.dashboard-page-table-title{
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 25px;
}

.dashboard-page-table-title h3{
  font-size: 28px;
  font-weight: 700;
}

.dashboard-page-view-btn{
  border: none;

  background: #ffe1ea;
  color: #d6004d;

  padding: 12px 24px;
  border-radius: 50px;

  font-weight: 600;
}

/* TABLE */

.dashboard-page-table{
  margin: 0;
}

.dashboard-page-table thead th{
  border: none;

  padding: 18px;
  color: #777777;

  font-size: 15px;
}

.dashboard-page-table tbody td{
  padding: 20px 18px;
  vertical-align: middle;

  border-top: 1px solid #f3e3e8;

  font-weight: 500;
}

/* STATUS */

.dashboard-page-status{
  display: inline-block;

  padding: 8px 18px;
  border-radius: 50px;

  font-size: 13px;
  font-weight: 600;
}

.dashboard-page-status.delivered{
  background: #dcfce7;
  color: #15803d;
}

.dashboard-page-status.pending{
  background: #fef3c7;
  color: #b45309;
}

/* =========================
      RESPONSIVE
========================= */

@media(max-width:991px){

  .dashboard-page-sidebar{
    width: 100%;
    height: auto;

    position: relative;
  }

  .dashboard-page-main{
    margin-left: 0;
    padding: 25px;
  }

  .dashboard-page-wrapper{
    flex-direction: column;
  }

  .dashboard-page-topbar{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

@media(max-width:576px){

  .dashboard-page-main{
    padding: 18px;
  }

  .dashboard-page-topbar h1{
    font-size: 30px;
  }

  .dashboard-page-card{
    border-radius: 22px;
    padding: 22px 18px;
  }

  .dashboard-page-card h3{
    font-size: 26px;
  }

  .dashboard-page-card-icon{
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .dashboard-page-table-box{
    padding: 20px;
    border-radius: 22px;
  }

  .dashboard-page-table-title{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

}

/* =========================
      PRODUCT FORM BOX
========================= */

.dashboard-products-form-box{
  background: #ffffff;

  padding: 40px;

  border-radius: 32px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05),
    0 5px 15px rgba(255, 47, 109, 0.05);

  margin-bottom: 40px;
}

/* LABEL */

.dashboard-products-label{
  display: block;

  margin-bottom: 12px;

  font-size: 15px;
  font-weight: 600;

  color: #222222;
}

/* INPUT */

.dashboard-products-input{
  width: 100%;

  height: 60px;

  border: 1px solid #f2dce4;

  background: #fffafb;

  border-radius: 18px;

  padding: 0 20px;

  outline: none;

  transition: 0.3s;

  font-size: 15px;
}

.dashboard-products-input:focus{
  border-color: #ff2f6d;

  box-shadow:
    0 0 0 4px rgba(255, 47, 109, 0.08);
}

/* TEXTAREA */

.dashboard-products-textarea{
  width: 100%;

  border: 1px solid #f2dce4;

  background: #fffafb;

  border-radius: 20px;

  padding: 18px 20px;

  outline: none;

  resize: none;

  transition: 0.3s;

  font-size: 15px;
}

.dashboard-products-textarea:focus{
  border-color: #ff2f6d;

  box-shadow:
    0 0 0 4px rgba(255, 47, 109, 0.08);
}

.small-textarea{
  height: 120px;
}

/* =========================
      IMAGE UPLOAD BOX
========================= */

.dashboard-upload-box{
  position: relative;

  background: #fff8fa;

  border: 2px dashed #ffc4d6;

  border-radius: 24px;

  padding: 40px 20px;

  text-align: center;

  overflow: hidden;

  transition: 0.3s;
}

.dashboard-upload-box:hover{
  background: #fff1f5;

  border-color: #ff2f6d;
}

.dashboard-file-input{
  position: absolute;

  width: 100%;
  height: 100%;

  left: 0;
  top: 0;

  opacity: 0;

  cursor: pointer;
}

.dashboard-upload-box i{
  font-size: 38px;

  color: #ff2f6d;

  margin-bottom: 12px;
}

.dashboard-upload-box p{
  margin: 0;

  font-weight: 500;

  color: #666666;
}

/* =========================
        BUTTON
========================= */

.dashboard-products-btn{
  border: none;

  background: linear-gradient(to right, #c40000, #ff2f6d);

  color: #ffffff;

  padding: 16px 40px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.dashboard-products-btn:hover{
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(255, 47, 109, 0.25);
}

/* =========================
        TABLE BOX
========================= */

.dashboard-products-table-box{
  background: #ffffff;

  padding: 35px;

  border-radius: 32px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

.dashboard-products-table-title{
  margin-bottom: 25px;
}

.dashboard-products-table-title h3{
  font-size: 30px;

  font-weight: 700;

  color: #111111;
}

/* TABLE */

.dashboard-products-table{
  margin: 0;
}

.dashboard-products-table thead th{
  border: none;

  padding: 18px;

  color: #777777;

  font-size: 15px;

  background: #fff7fa;
}

.dashboard-products-table tbody td{
  padding: 18px;

  vertical-align: middle;

  border-top: 1px solid #f4e4ea;

  font-weight: 500;
}

/* IMAGE */

.dashboard-products-table-image{
  width: 75px;
  height: 75px;

  object-fit: cover;

  border-radius: 18px;
}

/* STATUS */

.dashboard-product-status{
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 600;
}

.dashboard-product-status.available{
  background: #dcfce7;
  color: #15803d;
}

.dashboard-product-status.stock-out{
  background: #fee2e2;
  color: #b91c1c;
}

.dashboard-product-status.upcoming{
  background: #fef3c7;
  color: #b45309;
}

/* ACTION BUTTON */

.dashboard-action-btn{
  width: 42px;
  height: 42px;

  border: none;

  border-radius: 14px;

  color: #ffffff;

  margin-right: 8px;

  transition: 0.3s;
}

.dashboard-action-btn:hover{
  transform: translateY(-3px);
}

.edit-btn{
  background: linear-gradient(to right, #ff4f88, #ff7cab);
}

.delete-btn{
  background: linear-gradient(to right, #ff3d3d, #ff6b6b);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

  .dashboard-products-form-box,
  .dashboard-products-table-box{
    padding: 25px;
  }

}

@media(max-width:576px){

  .dashboard-products-form-box,
  .dashboard-products-table-box{
    padding: 20px;

    border-radius: 24px;
  }

  .dashboard-products-input{
    height: 56px;
  }

  .dashboard-products-btn{
    width: 100%;
  }

  .dashboard-products-table-image{
    width: 60px;
    height: 60px;
  }

  .dashboard-upload-box{
    padding: 30px 15px;
  }

}
/* =========================
        FORM TITLE
========================= */

.dashboard-products-form-title{
  margin-bottom: 30px;
}

.dashboard-products-form-title h3{
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.dashboard-products-form-title p{
  color: #777777;
  font-size: 15px;
  margin: 0;
}

/* =========================
      CATEGORY FORM BOX
========================= */

.dashboard-category-form-box{
  background: #ffffff;

  padding: 40px;

  border-radius: 32px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05),
    0 5px 15px rgba(255, 47, 109, 0.05);

  margin-bottom: 40px;
}

/* TITLE */

.dashboard-category-title{
  margin-bottom: 30px;
}

.dashboard-category-title h3{
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.dashboard-category-title p{
  color: #777777;
  margin: 0;
}

/* LABEL */

.dashboard-category-label{
  display: block;

  margin-bottom: 12px;

  font-size: 15px;
  font-weight: 600;

  color: #222222;
}

/* INPUT */

.dashboard-category-input{
  width: 100%;

  height: 60px;

  border: 1px solid #f2dce4;

  background: #fffafb;

  border-radius: 18px;

  padding: 0 20px;

  outline: none;

  transition: 0.3s;

  font-size: 15px;
}

.dashboard-category-input:focus{
  border-color: #ff2f6d;

  box-shadow:
    0 0 0 4px rgba(255, 47, 109, 0.08);
}

/* BUTTON */

.dashboard-category-btn{
  border: none;

  background: linear-gradient(to right, #c40000, #ff2f6d);

  color: #ffffff;

  padding: 16px 40px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.dashboard-category-btn:hover{
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(255, 47, 109, 0.25);
}

/* =========================
        TABLE BOX
========================= */

.dashboard-category-table-box{
  background: #ffffff;

  padding: 35px;

  border-radius: 32px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

/* TITLE */

.dashboard-category-table-title{
  margin-bottom: 25px;
}

.dashboard-category-table-title h3{
  font-size: 30px;

  font-weight: 700;

  color: #111111;
}

/* TABLE */

.dashboard-category-table{
  margin: 0;
}

.dashboard-category-table thead th{
  border: none;

  padding: 18px;

  background: #fff7fa;

  color: #777777;

  font-size: 15px;
}

.dashboard-category-table tbody td{
  padding: 20px 18px;

  vertical-align: middle;

  border-top: 1px solid #f4e4ea;

  font-weight: 500;
}

/* ACTION BUTTONS */

.dashboard-category-action-btn{
  width: 42px;
  height: 42px;

  border: none;

  border-radius: 14px;

  color: #ffffff;

  margin-right: 8px;

  transition: 0.3s;
}

.dashboard-category-action-btn:hover{
  transform: translateY(-3px);
}

/* EDIT */

.category-edit-btn{
  background: linear-gradient(to right, #ff4f88, #ff7cab);
}

/* DELETE */

.category-delete-btn{
  background: linear-gradient(to right, #ff3d3d, #ff6b6b);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

  .dashboard-category-form-box,
  .dashboard-category-table-box{
    padding: 25px;
  }

}

@media(max-width:576px){

  .dashboard-category-form-box,
  .dashboard-category-table-box{
    padding: 20px;

    border-radius: 24px;
  }

  .dashboard-category-title h3,
  .dashboard-category-table-title h3{
    font-size: 26px;
  }

  .dashboard-category-input{
    height: 56px;
  }

  .dashboard-category-btn{
    width: 100%;
  }

}

/* =========================
      CHECKOUT SECTION
========================= */

.checkout-page-section{
  padding: 100px 0;
  overflow-x: hidden;

  background:
    linear-gradient(to bottom, #fff6f8, #ffffff);
}

/* TITLE */

.checkout-page-title{
  margin-bottom: 60px;
}

.checkout-page-tag{
  display: inline-block;

  background: #ffffff;

  color: #d6004d;

  padding: 10px 24px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.05);
}

.checkout-page-title h2{
  font-size: 52px;

  font-weight: 700;

  color: #111111;

  margin-bottom: 15px;
}

.checkout-page-title h2 span{
  color: #d6004d;
}

.checkout-page-title p{
  color: #666666;

  font-size: 16px;
}

/* =========================
        FORM BOX
========================= */

.checkout-form-box{
  background: #ffffff;

  padding: 40px;

  border-radius: 32px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

.checkout-form-box h3{
  font-size: 30px;

  font-weight: 700;

  margin-bottom: 30px;

  color: #111111;
}

/* LABEL */

.checkout-label{
  display: block;

  margin-bottom: 10px;

  font-size: 15px;
  font-weight: 600;

  color: #222222;
}

/* INPUT */

.checkout-input{
  width: 100%;

  height: 58px;

  border: 1px solid #f0dce3;

  background: #fffafb;

  border-radius: 18px;

  padding: 0 18px;

  outline: none;

  transition: 0.3s;
}

.checkout-input:focus{
  border-color: #ff2f6d;

  box-shadow:
    0 0 0 4px rgba(255, 47, 109, 0.08);
}

/* TEXTAREA */

.checkout-textarea{
  width: 100%;

  border: 1px solid #f0dce3;

  background: #fffafb;

  border-radius: 20px;

  padding: 18px;

  outline: none;

  resize: none;

  transition: 0.3s;
}

.checkout-textarea:focus{
  border-color: #ff2f6d;

  box-shadow:
    0 0 0 4px rgba(255, 47, 109, 0.08);
}

/* =========================
      SUMMARY BOX
========================= */

.checkout-summary-box{
  background: #ffffff;

  padding: 35px;

  border-radius: 32px;

  position: sticky;
  top: 20px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

.checkout-summary-box h3{
  font-size: 30px;

  font-weight: 700;

  margin-bottom: 30px;
}

/* PRODUCT ITEM */

.checkout-product-item{
  display: flex;

  gap: 18px;

  margin-bottom: 30px;
}

/* IMAGE */

.checkout-product-image img{
  width: 120px;
  height: 120px;

  object-fit: cover;

  border-radius: 24px;
}

/* CONTENT */

.checkout-product-content h4{
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 5px;
}

.checkout-product-content p{
  color: #777777;

  margin-bottom: 18px;
}

/* QUANTITY */

.checkout-quantity-box{
  display: flex;

  align-items: center;

  gap: 15px;
}

.checkout-quantity-box button{
  width: 36px;
  height: 36px;

  border: none;

  border-radius: 12px;

  background: #ffe2ec;

  color: #d6004d;

  font-size: 18px;
  font-weight: 700;
}

.checkout-quantity-box span{
  font-weight: 600;
}

/* PRICE DETAILS */

.checkout-price-details{
  border-top: 1px solid #f0dce3;

  padding-top: 25px;
}

/* ROW */

.checkout-price-row,
.checkout-total-row{
  display: flex;

  justify-content: space-between;

  margin-bottom: 18px;

  color: #555555;
}

.checkout-total-row{
  border-top: 1px solid #f0dce3;

  padding-top: 20px;

  margin-top: 20px;

  font-size: 22px;
  font-weight: 700;

  color: #111111;
}

/* BUTTON */

.checkout-place-btn{
  width: 100%;

  border: none;

  background: linear-gradient(to right, #c40000, #ff2f6d);

  color: #ffffff;

  height: 60px;

  border-radius: 50px;

  margin-top: 30px;

  font-size: 17px;
  font-weight: 600;

  transition: 0.3s;
}

.checkout-place-btn i{
  margin-right: 8px;
}

.checkout-place-btn:hover{
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(255, 47, 109, 0.25);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

  .checkout-page-title h2{
    font-size: 40px;
  }

  .checkout-form-box,
  .checkout-summary-box{
    padding: 25px;
  }

  .checkout-summary-box{
    position: relative;
    top: 0;
  }

}

@media(max-width:576px){

  .checkout-page-section{
    padding: 70px 0;
  }

  .checkout-page-title{
    margin-bottom: 40px;
  }

  .checkout-page-title h2{
    font-size: 30px;
  }

  .checkout-form-box,
  .checkout-summary-box{
    padding: 20px;

    border-radius: 24px;
  }

  .checkout-form-box h3,
  .checkout-summary-box h3{
    font-size: 24px;
  }

  .checkout-product-item{
    flex-direction: column;
  }

  .checkout-product-image img{
    width: 100%;
    height: 220px;
  }

}

/* ===================================
        DASHBOARD WRAPPER
=================================== */

.dashboard-page-wrapper{
  display:flex;
  min-height:100vh;
  background:#fff7fa;
  font-family:"Poppins",sans-serif;
}

/* ===================================
            SIDEBAR
=================================== */

.dashboard-page-sidebar{
  width:250px;
  background:#ffffff;
  padding:28px 18px;
  border-right:1px solid #f3e4ea;

  position:sticky;
  top:0;
  height:100vh;

  flex-shrink:0;
}

/* LOGO */

.dashboard-page-logo{
  text-align:center;
  margin-bottom:45px;
}

.dashboard-logo-img{
  width:120px;
  margin-bottom:8px;
}

.dashboard-page-logo p{
  color:#888888;
  font-size:14px;
  margin:0;
}

/* MENU */

.dashboard-page-menu{
  list-style:none;
  padding:0;
  margin:0;
}

.dashboard-page-menu li{
  margin-bottom:12px;
}

.dashboard-page-menu-link{
  display:flex;
  align-items:center;
  gap:14px;

  text-decoration:none;

  padding:14px 16px;

  border-radius:16px;

  color:#333333;

  font-size:15px;
  font-weight:500;

  transition:0.3s;
}

.dashboard-page-menu-link:hover{
  background:#fff0f5;
  color:#ff2f6d;
}

.dashboard-page-menu-link.active{
  background:linear-gradient(to right,#ff003c,#ff3f7d);
  color:#ffffff;
}

.logout-link{
  margin-top:35px;
}

/* ===================================
            MAIN CONTENT
=================================== */

.dashboard-page-main{
  flex:1;

  width:calc(100% - 250px);

  padding:20px 20px 20px 0px;

  margin-left:10px;

  overflow-x:hidden;
}

/* ===================================
            ORDERS BOX
=================================== */

.dashboard-orders-box{
  background:#ffffff;

  padding:30px;

  border-radius:30px;

  box-shadow:0 15px 40px rgba(0,0,0,0.05);

  width:100%;
  max-width:100%;

  overflow:hidden;
}

/* ===================================
                TITLE
=================================== */

.dashboard-orders-title{
  margin-bottom:25px;
}

.dashboard-orders-title h3{
  font-size:32px;
  font-weight:700;
  color:#111111;

  margin-bottom:6px;
}

.dashboard-orders-title p{
  color:#777777;
  margin:0;
  font-size:15px;
}

/* ===================================
          TABLE RESPONSIVE
=================================== */

.dashboard-orders-box .table-responsive{
  width:100%;

  overflow-x:auto;
  overflow-y:hidden;

  border-radius:22px;

  -webkit-overflow-scrolling:touch;
}

/* SCROLLBAR */

.dashboard-orders-box .table-responsive::-webkit-scrollbar{
  height:7px;
}

.dashboard-orders-box .table-responsive::-webkit-scrollbar-track{
  background:#f3f3f3;
  border-radius:50px;
}

.dashboard-orders-box .table-responsive::-webkit-scrollbar-thumb{
  background:#cccccc;
  border-radius:50px;
}

/* ===================================
                TABLE
=================================== */

.dashboard-orders-table{
  margin:0;

  border-collapse:collapse;

  width:100%;
  min-width:1400px;
}

/* ===================================
            TABLE HEAD
=================================== */

.dashboard-orders-table thead th{
  border:none;

  background:#fff7fa;

  color:#666666;

  padding:18px 16px;

  font-size:14px;
  font-weight:600;

  white-space:nowrap;
}

/* ===================================
            TABLE BODY
=================================== */

.dashboard-orders-table tbody td{
  padding:22px 16px;

  vertical-align:middle;

  border-top:1px solid #f3e4ea;

  font-weight:500;

  color:#111111;

  white-space:nowrap;
}

/* ===================================
                USER
=================================== */

.dashboard-order-user{
  display:flex;
  align-items:center;
  gap:14px;

  min-width:220px;
}

/* USER ICON */

.dashboard-order-user-icon{
  width:50px;
  height:50px;

  border-radius:15px;

  background:linear-gradient(to right,#ff2f6d,#ff6b9a);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#ffffff;

  font-size:17px;

  flex-shrink:0;
}

/* USER TEXT */

.dashboard-order-user h5{
  margin:0;

  font-size:15px;
  font-weight:600;

  color:#111111;
}

.dashboard-order-user span{
  font-size:12px;
  color:#888888;
}

/* ===================================
                STATUS
=================================== */

.dashboard-order-status{
  padding:9px 16px;

  border-radius:50px;

  font-size:12px;
  font-weight:600;

  display:inline-block;

  white-space:nowrap;
}

/* PENDING */

.pending-status{
  background:#fff2d8;
  color:#d38a00;
}

/* COMPLETED */

.completed-status{
  background:#ddffea;
  color:#00a651;
}

/* CANCELLED */

.cancelled-status{
  background:#ffe2e2;
  color:#ff3d3d;
}

/* ===================================
            DELETE BUTTON
=================================== */

.dashboard-order-delete-btn{
  width:40px;
  height:40px;

  border:none;

  border-radius:13px;

  background:linear-gradient(to right,#ff3d3d,#ff6b6b);

  color:#ffffff;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  transition:0.3s;
}

.dashboard-order-delete-btn:hover{
  transform:translateY(-3px);

  box-shadow:0 10px 25px rgba(255,61,61,0.25);
}

/* ===================================
            COLUMN WIDTHS
=================================== */

.dashboard-orders-table th:nth-child(1),
.dashboard-orders-table td:nth-child(1){
  min-width:100px;
}

.dashboard-orders-table th:nth-child(2),
.dashboard-orders-table td:nth-child(2){
  min-width:250px;
}

.dashboard-orders-table th:nth-child(3),
.dashboard-orders-table td:nth-child(3){
  min-width:200px;
}

.dashboard-orders-table th:nth-child(4),
.dashboard-orders-table td:nth-child(4){
  min-width:260px;
}

.dashboard-orders-table th:nth-child(5),
.dashboard-orders-table td:nth-child(5){
  min-width:150px;
}

.dashboard-orders-table th:nth-child(6),
.dashboard-orders-table td:nth-child(6){
  min-width:300px;

  white-space:normal;

  line-height:1.6;
}

.dashboard-orders-table th:nth-child(7),
.dashboard-orders-table td:nth-child(7){
  min-width:170px;
}

.dashboard-orders-table th:nth-child(8),
.dashboard-orders-table td:nth-child(8){
  min-width:110px;
}

.dashboard-orders-table th:nth-child(9),
.dashboard-orders-table td:nth-child(9){
  min-width:110px;
}

.dashboard-orders-table th:nth-child(10),
.dashboard-orders-table td:nth-child(10){
  min-width:150px;
}

.dashboard-orders-table th:nth-child(11),
.dashboard-orders-table td:nth-child(11){
  min-width:110px;
}

/* ===================================
              RESPONSIVE
=================================== */

@media(max-width:991px){

  .dashboard-page-sidebar{
    width:220px;
  }

  .dashboard-page-main{
    width:calc(100% - 220px);
    padding:18px;
    margin-left:0;
  }

  .dashboard-orders-box{
    padding:24px;
    border-radius:26px;
  }

  .dashboard-orders-title h3{
    font-size:28px;
  }

}

@media(max-width:768px){

  .dashboard-page-wrapper{
    flex-direction:column;
  }

  .dashboard-page-sidebar{
    width:100%;
    height:auto;
    position:relative;

    border-right:none;
    border-bottom:1px solid #f3e4ea;
  }

  .dashboard-page-main{
    width:100%;
    padding:18px;
  }

}

@media(max-width:576px){

  .dashboard-orders-box{
    padding:18px;
    border-radius:22px;
  }

  .dashboard-orders-title h3{
    font-size:26px;
  }

  .dashboard-orders-title p{
    font-size:14px;
  }

}


/* =========================
        LOGIN SECTION
========================= */

.admin-login-section{
  min-height: 100vh;

  background:
    linear-gradient(to bottom right, #fff0f5, #ffffff);

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

  padding: 60px 15px;
}

/* BACKGROUND CIRCLES */

.admin-login-circle{
  position: absolute;

  border-radius: 50%;

  background:
    linear-gradient(to right, rgba(255,47,109,0.12), rgba(255,0,90,0.08));
}

.circle-one{
  width: 320px;
  height: 320px;

  top: -100px;
  left: -100px;
}

.circle-two{
  width: 260px;
  height: 260px;

  bottom: -80px;
  right: -80px;
}

/* =========================
          LOGIN BOX
========================= */

.admin-login-box{
  background: #ffffff;

  padding: 50px 40px;

  border-radius: 35px;

  position: relative;

  z-index: 2;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    0 10px 25px rgba(255,47,109,0.08);
}

/* LOGO */

.admin-login-logo{
  text-align: center;

  margin-bottom: 35px;
}

.admin-login-logo h2{
  font-size: 42px;

  font-weight: 700;

  color: #111111;

  margin-bottom: 5px;
}

.admin-login-logo h2 span{
  color: #d6004d;
}

.admin-login-logo p{
  color: #888888;

  margin: 0;
}

/* TITLE */

.admin-login-title{
  text-align: center;

  margin-bottom: 35px;
}

.admin-login-title h3{
  font-size: 32px;

  font-weight: 700;

  color: #111111;

  margin-bottom: 10px;
}

.admin-login-title p{
  color: #777777;

  line-height: 1.7;

  margin: 0;
}

/* INPUT BOX */

.admin-login-input-box{
  margin-bottom: 25px;
}

.admin-login-input-box label{
  display: block;

  margin-bottom: 10px;

  font-size: 15px;
  font-weight: 600;

  color: #222222;
}

/* INPUT AREA */

.admin-login-input-area{
  width: 100%;

  height: 60px;

  border: 1px solid #f2dbe4;

  border-radius: 18px;

  background: #fffafb;

  display: flex;

  align-items: center;

  padding: 0 18px;

  transition: 0.3s;
}

.admin-login-input-area:focus-within{
  border-color: #ff2f6d;

  box-shadow:
    0 0 0 4px rgba(255,47,109,0.08);
}

/* ICON */

.admin-login-input-area i{
  color: #d6004d;

  font-size: 16px;

  margin-right: 12px;
}

/* INPUT */

.admin-login-input-area input{
  width: 100%;

  border: none;

  outline: none;

  background: transparent;

  font-size: 15px;
}

/* OPTIONS */

.admin-login-options{
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 30px;

  flex-wrap: wrap;

  gap: 10px;
}

.admin-login-options label{
  color: #666666;

  font-size: 14px;
}

.admin-login-options a{
  text-decoration: none;

  color: #d6004d;

  font-size: 14px;
  font-weight: 500;
}

/* BUTTON */

.admin-login-btn{
  width: 100%;

  height: 60px;

  border: none;

  border-radius: 50px;

  background:
    linear-gradient(to right, #c40000, #ff2f6d);

  color: #ffffff;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s;
}

.admin-login-btn i{
  margin-right: 8px;
}

.admin-login-btn:hover{
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(255,47,109,0.25);
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:576px){

  .admin-login-box{
    padding: 35px 22px;

    border-radius: 28px;
  }

  .admin-login-logo h2{
    font-size: 34px;
  }

  .admin-login-title h3{
    font-size: 26px;
  }

  .admin-login-input-area{
    height: 56px;
  }

}

/* BIG IMAGE BOX */

.view-product-big-image{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: zoom-in;
}

/* BIG IMAGE */

.view-product-big-image img{
  width: 100%;
  display: block;
  transition: transform 0.25s ease;
  transform-origin: center center;
}

/* HOVER ZOOM EFFECT */

.view-product-big-image:hover img{
  transform: scale(2);
}

/* =========================
   PRODUCT PRICE DESIGN
========================= */
.product-price-box{
    margin-top: 20px;
}

.product-main-price{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 42px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 18px;
    letter-spacing: 1px;
    transition: 0.3s ease;

}
/* MOBILE */
@media(max-width:768px){
    .product-main-price{
        font-size: 30px;
        padding: 12px 24px;
    }
}

.product-status-box{
    margin: 15px 0;
}

.product-status{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.product-status.available{
    background: #eafaf1;
    color: #198754;
}

.product-status.out-stock{
    background: #fdeaea;
    color: #dc3545;
}

.product-status.upcoming{
    background: #fff6e5;
    color: #ff9800;
}

.productSwiper {
    overflow: hidden;
    padding: 20px 0 30px;
}

.productSwiper .swiper-wrapper {
    align-items: stretch;
}

.productSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.productSwiper .swiper-slide .new-product-card {
    width: 100%;
}
