@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset-Css_Start */
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  background-color: white;
  color: black;
  font-family: "Jost", sans-serif;
}

h1 {
  font-size: 48px;
  font-weight: 600;
}

h2 {
  font-size: 34px;
  font-weight: 400;
  padding: 64px 0px 48px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
  font-weight: 600;
  font-size: 16px;
}

h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.container {
  max-width: 100%;
  padding: 0px 70px;
}

/* Reset-Css_End */
/* Top-Bar-Start */
.shipping-header {
  background-color: #1ecad3;
  max-width: 100%;
  text-align: center;
  padding: 16px 0px;
  font-size: 12px;
  font-weight: 400;
  color: white;
}

/* Top-Bar-End */

/* navbar */
.fixed-bar{
  position:sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}
.nav-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 18px 0px;
  font-family: "Montserrat", sans-serif;

}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-svg-color {
  fill: black;
}

.logo {
  max-height: 100px;
  width: 100%;
  padding-top: 5px;
}

.nav-ul {
  padding: 0px 265px 0px 225px;
  width: 100%;
  list-style-type: none;
  display: flex;
  gap: 25px;
}

.nav-link-tag {
  /* all: unset; */
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.nav-link-tag {
  transition: color 0.3s ease;
}

.nav-right-part {
  display: flex;
  gap: 30px;
}
.nav-container .menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.nav-container .menu-btn div {
  width: 25px;
  height: 3px;
  background-color: black;
}
.nav-container .search-input input:focus {
  outline: none;
  border-color: #d0d5dd;
}

.nav-container .search-input button {
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding-left: 40px;
}
/* Dropdown styles */
.nav-container {
  position: relative;
}
.dropdown-content {
  /* display: flex; */
  display: none;
  align-items: flex-start;
  gap: 80px;
  padding: 40px 180px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  position: absolute;
  top: 100%;
  left: 0;
}
.dropdown-left {
  /* width: 240px; */
  padding-right: 42px;
  border-right: 3px solid #ccc;
}
.dropdown-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown-left a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  display: inline-block;
  padding-bottom: 16px;
}
.dropdown-left a {
  white-space: nowrap;
}
.dropdown-left .dropdown-title a {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 24px;
  display: inline-block;
}
.dropdown-left strong a {
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-top: 16px;
}

.dropdown-center {
  /* max-width: 420px; */
  display: flex;
}
.dropdown-center img {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  object-fit: contain;
  display: block;
  object-position: center;
}

.dropdown-right span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 16px;
}
.dropdown-right p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding-left: 20px;
}
.dropdown-parent:hover::after{
  /* padding-bottom: 27px; */
  border-bottom: 1px solid black;
}
.dropdown-parent:hover .dropdown-content {
  display: flex;
}
.dropdown-parent .dropdown-content {
  display: none;
}
@media(min-width:1920px){
  .nav-ul {
    padding: 0px 472px 0px 500px;
  }
  .nav-container .search-input{
    margin-left: 220px
  }
}
@media (min-width: 746px) {
  .nav-container .search-input {
    /* width: 100%; */
    position: relative;
    display: none;
    /* gap: 40px; */
    padding-left: 220px;
  }
  .nav-container .search-input svg {
    position: absolute;
    top: 10px;
    right: 110px;
  }
  .nav-container .search-input input[type="text"] {
    min-width: 420px;
    padding: 10px 14px;
    border-color: #d0d5dd;
  }
}
/* media Querry navbar */
@media (max-width: 600px) {
  .container {
    padding: 20px 16px;
    width: 100%;
    height: 100%;
  }
  .search-input {
    display: none;
    position: absolute;
    padding: 16px 21px;
    top: 100%;
    left: -18px;
    background-color: white;
    height: 83px;
    z-index: 999;
  }
  .nav-container .search-input input[type="text"] {
    min-width: 343px;
    padding: 10px 14px;
    border-color: #d0d5dd;
  }
  .nav-container .search-input svg {
    position: absolute;
    top: 26px;
    right: 32px;
  }
  .nav-container .search-input button {
    position: absolute;
    top: -22px;
    right: 20px;
  }
  .nav-container .menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    left: -16px;
    margin-top: 1rem;
    padding: 24px 16px;
    z-index: 999;
    border-top: 1px solid #d9d9d9;
  }
  /* menu */
  .dropdown-parent:hover .dropdown-content {
       position: static; 
  display: none;
}
.dropdown-parent:hover{
  border: none;
  padding-bottom: 0;
}
.dropdown-parent.active .dropdown-content {
  display: flex;
  padding: 0;
  box-shadow: none;
}
.dropdown-left{
  border-right: none;
}
.dropdown-center,
  .dropdown-right {
    display: none;
  }

  .menu-dropdown::after {
     content: "";
    background-image: url("../images/up-arrow.svg");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
  }

  
  .dropdown-parent.open .menu-dropdown::after {
    transform: rotate(180deg);
  }
  .dropdown-left li:first-child{
    display: none;
  }

  .menu-dropdown {
       display:flex;
    justify-content:space-between;
    min-width:350px;
    align-items:center;
    padding: 1rem 0;
    font-weight: bold;
    /* border-bottom: 1px solid #d9d9d9; */
  }
  .dropdown-li a {
    padding: 0.5rem 0;
    display: block;
    font-size: 0.95rem;
  }
  .nav-container .menu.active {
    display: flex;
  }
  .nav-container .menu-btn {
    display: flex;
    /* padding-right: 64px; */
  }

  .nav-ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 0;
  }
  .nav-logo {
    /* justify-content: space-between; */
    padding: 0px 40px 0px 64px;
  }

  .logo {
    height: auto;
    max-width: 167px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .icon {
    display: none;
  }

  .nav-container {
    padding: 0 10px;
  }

  .nav-right-part {
    gap: 15px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  /* ,max-width480,375,960,1024,1280,1366 */
  .nav-container{
    justify-content: space-between;
  }
  .container {
    padding: 6px 16px;
    width: 100%;
    height: 100%;
  }
  .nav-logo {
    gap: 215px;
  }
  .logo {
    height: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .icon {
    display: none;
  }

  .hideOnMobile {
    display: none;
  }
  .nav-container .menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0px;
    padding: 1rem;
    z-index: 999;
  }
  .nav-container .menu.active {
    display: flex;
  }
  .nav-container .menu-btn {
    display: flex;
  }
  .nav-ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .nav-right-part {
    gap: 15px;
  }
}
/* Swipper */
.Carousel .swiper {
  width: 100%;
  height: 100%;
}

.Carousel .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-content {
  position: absolute;
  left: 8%;
  max-width: 40%;
  color: white;
  z-index: 2;
  text-align: left;
}

.slider-content p {
  font-size: 15px;
  padding-top: 32px;
  padding-bottom: 40px;
}

.Carousel .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 40px;
  padding-right: 70px;
}

.Carousel .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid white;
  opacity: 0.6;
  width: 16px;
  height: 16px;
  margin: 0 4px;
}

.Carousel .swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
}

@media (max-width: 600px) {
  .slider-content {
    max-width: 90%;
    left: 5%;
  }

  .slider-content h2 {
    font-size: 22px;
  }

  .slider-content p {
    font-size: 14px;
  }

  .slider-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .slider-content {
    max-width: 90%;
    width: 100%;
    left: 5%;
  }

  .slider-content h2 {
    font-size: 22px;
  }

  .slider-content p {
    font-size: 14px;
  }

  .slider-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
/* Sponsers */
.hijab {
  background-color: #f5f5f5;
  width: 100%;
  padding: 56px 124px;
}
.hijab .swiper {
  padding-bottom: 30px;
}
.sponser-alignment {
  align-items: center;
}
.sponsers .swiper {
  width: 100%;
  height: 100%;
}

.sponser {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponser-images {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.swiper-pagination {
  display: none;
}

/* Small Devices */
@media (max-width: 600px) {
  .hijab {
    padding: 48px 52px 40px;
    position: relative;
  }

  .hijab .swiper-pagination {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    text-align: center;
  }

  .hijab .swiper-pagination-bullet {
    background-color: lightgray;
    opacity: 1;
  }
  .hijab .swiper-pagination-bullet-active {
    background-color: black;
    opacity: 1;
  }
}

/*sponser-media-ends */
/* Product */
.product-wrapper {
  display: flex;
  gap: 20px;
}

.products {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 200px;
}

.products img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.products h3 {
  margin-top: 24px;
  margin-bottom: 64px;
  text-transform: uppercase;
}

.custom-swiper-buttons {
  display: none;
  gap: 12px;
}
.custom-swiper-button-prev svg,
.custom-swiper-button-next svg {
  display: block;
}
/* product media query */
@media (max-width: 600px) {
  .section-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
    gap: 87px;
  }
  .product-wrapper {
    gap: 8px;
  }
  .products h3 {
    margin-bottom: 24px;
  }
  /* .product {
    max-width:255px ;
    width: 100%;
  } */
  .custom-swiper-buttons {
    display: flex;
    gap: 20px;
  }
  .products h2 {
    font-size: 24px;
    padding: 0;
  }
  .custom-swiper-button-prev,
  .custom-swiper-button-next {
    width: 28px;
    height: 28px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
    background-color: #fff;
  }

  .custom-swiper-button-prev span,
  .custom-swiper-button-next span {
    font-size: 20px;
    color: #000;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .custom-swiper-buttons {
    display: none;
  }
  .product-wrapper {
    gap: 0px;
  }
}
/* story */
.feature {
  position: relative;
  max-width: 1800px;
  width: 100%;
}

.feature-image {
  width: 100%;
  display: block;
}

.story-text {
  position: absolute;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-left: 90px;
}

.story-text h2 {
  padding-bottom: 34px;
}

.long-text {
  width: 660px;
  line-height: 19px;
  font-size: 16px;
  padding-bottom: 38px;
}
.short-text {
  display: none;
}
.btn {
  max-width: 234px;
  width: 100%;
  background-color: #f26178;
  border: none;
  padding: 24px 32px;
  color: white;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
/* story media query  */
@media (max-width: 600px) {
  .story-text {
    color: white;
    padding-left: 16px;
  }
  .story-text h2 {
    font-size: 24px;
    padding-bottom: 24px;
  }
  .long-text {
    display: none;
  }
  .short-text {
    display: block;
    width: 294px;
    line-height: 13px;
    padding-bottom: 32px;
    font-size: 14px;
    font-weight: 200;
  }
  .btn {
    max-width: 218px;
    width: 100%;
    padding: 16px 24px;
    font-weight: 400;
  }
}
/* Best Seller */
.best-seller-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.best-seller-card img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-seller-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.best-seller-info h5 {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 16px;
}

.best-seller-info .price {
  font-size: 16px;
  font-weight: 500;
}

.best-seller-desc {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  padding-bottom: 64px;
}

/* best-seller media query */
@media (max-width: 600px) {
  .best-seller-items .section-header {
    margin-bottom: 32px;
    gap: 168px;
  }
  .best-seller-items h2 {
    font-size: 24px;
    padding: 0;
  }
  .best-seller-info h5 {
    padding-top: 14px;
  }
  .best-seller-info .price {
    font-size: 14px;
  }
  .best-seller-desc {
    font-size: 12px;
    line-height: 1.3;
    padding-bottom: 48px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .story-text h2 {
    padding-bottom: 16px;
    font-size: 25px;
    padding-top: 34px;
  }
  .story-text {
    padding-left: 62px;
  }
  .long-text {
    width: 370px;
    line-height: 16px;
    font-size: 12px;
    padding-bottom: 16px;
  }
  .btn {
    max-width: 194px;
    width: 100%;
    padding: 14px 15px;
  }
}
/* review */
.review-section {
  width: 100%;
  background-color: #f5f5f5;
}

.review-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 64px;
  flex-grow: 1;

}

.review {
  background-color: white;
  padding: 24px 22px 0px 24px;
}

.review p {
  margin: 20px 0px;
  width: auto;
}

.review h4 {
  font-size: 16px;
  font-weight: 300;
  padding-top: 24px;
  padding-bottom: 66px;
}
/* review media query */
@media (max-width: 600px) {
  .review-swiper h2 {
    padding: 48px 0px 32px;
    font-size: 24px;
  }
  .review-swiper .section-header {
    margin-bottom: 0px;
    gap: 16px;
  }
  .custom-swiper-buttons {
    gap: 16px;
  }
  .review p {
    margin: 16px 0px 24px;
    font-size: 14px;
    width: 223px;
  }
  .review-container {
    gap: 8px;
    padding-bottom: 48px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .custom-swiper-button-prev svg,
  .custom-swiper-button-next svg {
    display: none;
  }
  .review p {
    width: 100%;
    text-align: center;
  }
}
/* social-media */
.social-media-section {
  width: 100%;
  padding-top: 64px;
}

.social-media-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.social-media-link {
  all: unset;
  font-size: 34px;
  font-weight: 700;
  cursor: pointer;
}

.social-media-number {
  font-size: 16px;
  font-weight: 600;
}

.social-media-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 40px;
  padding-bottom: 64px;
}

.social-media-photos img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* social-media query */
@media (max-width: 600px) {
  .social-media-section {
    padding-top: 48px;
  }
  .social-media-section h4 {
    font-size: 10px;
  }
  .social-media-info {
    padding-top: 16px;
    gap: 84px;
  }
  .social-media-link {
    font-size: 24px;
  }
  .social-media-number {
    font-size: 10px;
    text-align: end;
  }
}
/* social-media media query */

/* footer */
footer {
  background-color: #a0e2ba;
  width: 100%;
  padding-top: 67px;
}

.fotter-store-access {
  display: flex;
  justify-content: space-between;
}

.footer-store {
  display: flex;
  gap: 95px;
}

.footer-store-links {
  line-height: 30px;
  font-size: medium;
  font-weight: 300;
}

.footer-store-links h3 {
  font-size: 25px;
  padding-bottom: 20px;
  font-weight: 700;
}

.footer-store-links a {
  all: unset;
  cursor: pointer;
}

.footer-store-links li {
  list-style-type: none;
  font-size: 14px;
  font-weight: 400;
}

.footer-link-with-us h2 {
  padding-bottom: 20px;
}

.footer-signup-info {
  width: 330px;
  line-height: 20px;
  font-size: 16px;
  padding: 24px 0px;
}

.footer-signup {
  font-size: 24px;
  font-weight: 500;
}

.footer-form {
  position: relative;
}

input:focus {
  outline: none;
  border-color: white;
}

.footer-form input[type="text"] {
  width: 100%;
  padding: 6px 10px;
  border-color: transparent;
}

.footer-btn {
  border: none;
}

.footer-btn img {
  background-color: black;
  position: absolute;
  top: 0%;
  left: 91%;
  object-position: center;
  padding: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 24px;
}

.footer-goverment-conditions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 64px;
  padding-top: 170px;
  font-family: "Montserrat", sans-serif;
}

.footer-compulsory {
  display: flex;
  gap: 40px;
  font-size: 12px;
  font-weight: 400;
}
/* footer media query */
@media (max-width: 600px) {
  footer {
    padding-top: 48px;
  }
  .fotter-store-access {
    flex-direction: column-reverse;
  }
  .footer-social-icons {
    padding-bottom: 48px;
  }
  .footer-store {
    flex-direction: column;
    gap: 20px;
  }

  .footer-store-links {
    border-top: 1px solid #444;
    padding-top: 24px;
  }

  .footer-store-links h3 {
    display: flex;
    justify-content: space-between;
    padding-right: 16px;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
  }

  .footer-store-links ul {
    display: none;
    padding-left: 0;
    margin-top: 10px;
  }

  .footer-store-links.active ul {
    display: block;
  }

  .footer-store-links h3::after {
    content: "";
    background-image: url("../images/up-arrow.svg");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .footer-store-links.active h3::after {
    transform: rotate(180deg);
  }
  .footer-goverment-conditions {
    flex-direction: column-reverse;
    padding-top: 32px;
    align-items: center;
  }
  .footer-compulsory {
    padding-top: 32px;
    font-size: 10px;
    gap: 32px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .footer-store {
    gap: 25px;
  }
  .footer-goverment-conditions {
    padding-top: 120px;
  }
}
/* navbar media query for big devices */
@media(min-width:901px) and (max-width:1200px){
  .nav-container{
    align-items: flex-start;
    gap: 35px;
  }
  .search-input{
    position: absolute;
    top: 100%;
  }
  .nav-ul{
    padding: 0px;
  }
  .custom-swiper-button-prev svg, .custom-swiper-button-next svg {
    display: none;
  }
}