/* start welcome section style */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.row {
  margin: 0;
  padding: 0;
}

.welcome-section {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  position: relative;
}
.welcome-section .image {
  width: 100%;
  height: 100%;
}
.welcome-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -1;
}

.welcome-section .background-opacity {
  background-color: #fdf9f13c;
  width: 100%;
  min-height: calc(100vh - 70px);
}
.welcome-section .content {
  padding-inline: 10px;
  max-width: 500px;
  margin-inline: auto;
  padding-top: 150px;
  text-align: center;
}
.welcome-section .content h1 {
  font-size: 50px;
  font-weight: bold;
}
.welcome-section .content p {
  margin-bottom: 10px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-size: 35px;
  color: var(--red);
  font-family: "CinzelDecorative";
  animation: typing 5s steps(13, end) infinite alternate;
}
.welcome-section .content span {
  margin-left: 10px;
  height: 50px;
  width: 2px;
  background-color: var(--red);
  border-radius: 10px;
  position: absolute;
}
@keyframes typing {
  from {
    width: 0;
  }
  50% {
    width: 12ch;
  }
  75% {
    width: 12ch;
  }
  100% {
    width: 0;
  }
}

.welcome-section .content h5 {
  /* color: var(--beige); */
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.welcome-section .content button {
  font-size: 17px;
  border: 0;
  border-radius: 10px;
  padding: 10px 30px;
  background-color: var(--red);
  transition: 0.3s;
}
.welcome-section .content button a {
  color: var(--beige);
}
.welcome-section .content button:hover {
  background-color: var(--green);
}
.welcome-section .content button:hover a {
  color: var(--beige);
}
/* End welcome section style */

/* Start Categories Section Style */

.category {
  background-color: var(--beige);
  padding-top: 20px;
  padding: 20px 0;
  min-height: 250px;
  font-size: 23px;
}
.category h1,
.top-sales h1,
.about-us h1,
.feedback h1 {
  color: var(--green);
  width: fit-content;
  display: flex;
  align-items: center;
  text-align: left;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
  left: 20px;
}
.category h1::before,
.top-sales h1::before,
.about-us h1::before,
.feedback h1::before {
  content: "";
  width: 5px;
  height: 70px;
  border-radius: 10px;
  background-color: var(--red);
  position: absolute;
  left: -15px;
}
.category .swiper {
  width: 100%;
  min-height: 380px;
}
.category .swiper .swiper-pagination-bullet,
.feedback .swiper .swiper-pagination-bullet {
  background-color: var(--red) !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -8px);
}
.category .swiper-slide {
  background-color: var(--beige);
  color: var(--green);
  font-size: 18px;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.category .swiper-slide:hover img {
  transform: scale(1.2) rotate(2deg);
}
.category button:hover i {
  animation: MoveArrow 0.7s infinite ease-in;
}
.category .swiper-slide p {
  font-weight: bold;
}
.category .swiper-slide button,
.category .swiper-slide p {
  font-size: 18px;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 2px 10px;
  border-radius: 5px;
  z-index: 200;
}
.category .swiper-slide button a {
  color: var(--red);
  cursor: pointer;
}
.category .swiper-slide button i {
  margin-left: 5px;
}
.category .swiper-slide .image {
  border-radius: 5px;
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.category .swiper-slide .image img {
  transition: 0.7s;
  object-fit: cover;
  width: 100%;
  height: 300px;
}

@keyframes MoveArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
/* End Categories Section Style */

/* Start Best Sellers Section Style */

.top-sales {
  margin-top: 30px;
}
.products {
  margin-inline: auto;
  display: flex;
  justify-content: center;
}
.top-sales .card {
  background-color: var(--beige);
  border-radius: 5px;
  border: none;
  padding: 0;
  height: 400px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.top-sales .card .rating {
  background-color: var(--beige);
  padding: 2px 5px;
  border-radius: 5px;
  z-index: 3;
  position: absolute;
  top: 20px;
  left: 10px;
  opacity: 0;
  transition: 0.3s;
}
.top-sales .card .rating i.full {
  color: rgb(255, 225, 0);
}
.top-sales .card .rating i.empty {
  color: rgb(218, 218, 218);
}
.top-sales .card:hover .rating {
  opacity: 1;
}
.top-sales .card .icons {
  margin: 10px;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: var(--beige);
  color: var(--red);
  z-index: 3;
  position: absolute;
  right: -100%;
  transition: 0.5s;
}
.top-sales .card .icons a {
  display: block;
  margin: 10px 0;
  color: var(--red);
  transition: 0.3s;
}
.top-sales .card:hover .icons {
  right: 0px;
}
.top-sales .card .icons a:hover {
  color: var(--green);
}
.top-sales .images img:hover.back {
  opacity: 0;
}
.top-sales .images img:hover.front {
  transform: scale(1.05);
}
.top-sales .images {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.top-sales .card .images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.7s;
  position: absolute;
}
.top-sales .card p {
  width: 100%;
  font-size: 20px;
  text-align: center;
  position: absolute;
}
.top-sales .card p.name {
  bottom: 50px;
}
.top-sales .card p.price {
  color: var(--red);
  bottom: 20px;
}
.top-sales .card .colors {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
.top-sales .card .colors img {
  border-radius: 50%;
  margin: 2px;
  border: 3px solid var(--green);
  width: 25px;
  height: 25px;
  object-fit: cover;
}
.top-sales .card .colors img.active {
  transform: scale(1.2);
  border-color: var(--red);
}
/* End Best Sellers Section Style */

/* Start About Us Section Style */

.about-us {
  min-height: 100vh;
  margin-top: 50px;
  position: relative;
}
.about-us img.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  z-index: -1;
}
.about-us .background-opacity {
  background-color: #fdf9f1d2;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.about-us .content {
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about-us .image {
  margin-top: 20px;
}
.about-us .image img {
  border: 5px solid var(--green);
  border-radius: 50px;
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.about-us .content button {
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: var(--green);
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.3s;
}
.about-us .content button:hover {
  background-color: var(--red);
}
.about-us .content button a {
  color: var(--beige);
}
/* End About Us Section Style */

/* Start FeedBack Section Style */
.feedback {
  margin: 50px 0;
}
.feedback .title {
  display: flex;
  justify-content: space-between;
}
.feedback .title .arrows {
  position: relative;
  width: 150px;
}
.feedback .title .swiper-button-next,
.feedback .title .swiper-button-prev {
  border-radius: 5px;
  width: fit-content;
  color: var(--beige);
  background-color: var(--red);
  font-size: 15px;
  padding: 5px 15px;
}
.feedback .title .swiper-button-next:after,
.feedback .title .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}
.feedback .swiper {
  min-height: 250px;
  height: 250px;
}
.feedback .swiper-slide {
  box-shadow: 0 0 10px #e6e6e6;
  padding: 30px;
  border-radius: 5px;
  background-color: var(--beige);
}
.feedback .swiper-slide .data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.feedback .swiper-slide .data p,
.feedback .swiper-slide .data h5 {
  margin: 0 15px;
}
.feedback .swiper-slide img {
  width: 50px;
  height: 50px;
}
.feedback .swiper-slide .rating i.full {
  color: rgb(255, 225, 0);
}
.feedback .swiper-slide .rating i.empty {
  color: rgb(218, 218, 218);
}
/* End FeedBack Section Style */

/* Start Offers Section Style */

.offers {
  background-image: url("../assests/girls1.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 50vh;
  text-align: center;
}
.offers .background-opacity {
  background-color: #fdf9f15f;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.offers h5 {
  color: var(--red);
}
.offers h1 span {
  font-size: 50px;
  color: var(--red);
}
.offers button {
  border: none;
  outline: none;
  background-color: var(--red);
  color: var(--beige);
  padding: 10px 25px;
  border-radius: 5px;
  transition: 0.5s;
}
.offers button a {
  color: var(--beige);
}
.offers button:hover {
  background-color: var(--green);
}

/* End Offers Section Style */

/*Start responsive design */
@media (max-width: 992px) {
  .category .box {
    width: calc(100% / 3.5);
  }
  .about-us {
    min-height: auto;
  }
}

@media (max-width: 769px) {
  .category .box {
    width: calc(100% / 2.5);
  }
}
@media (max-width: 575px) {
  .welcome-section .content h1 {
    font-size: 50px;
  }
  .welcome-section .content p {
    font-size: 40px;
  }
}
/*End responsive design */
