@font-face {
    font-family: 'Sofia Pro';
    src: url('../font/sofiapro-light.otf') format('opentype');
  }


body {
    font-family: 'Sofia Pro', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #fe9e81;
}



.navbar {
  background-color: #333;
  z-index: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.navbar-toggler-icon {
  background-color: #fff;
}

.navbar-brand {
    transition: filter 0.3s ease; /* Add a smooth transition for the brightness */
}   

.navbar-brand:hover {
    filter: brightness(0.6); /* Reduce brightness to make it darker on hover */
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
}


.nav-item {
    position: relative;
    margin-right: 20px;
}   

.nav-item:last-child {
    margin-right: 0px;
}

.nav-link {
    color: #484848 !important;
    padding: 10px 20px;
    transition: color 0.3s;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.nav-link:hover {
    color: #fe9e81;
}

.navbar-toggler-icon:focus {
  background-color: #000; /* Set the background color to black */
}



  /* Hide the dropdown menu initially */
  .nav-item.dropdown .dropdown-menu {
    display: none;
  }
  
  /* Show the dropdown menu on hover with a slight delay */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }


.nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fe9e81;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

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

@media (min-width:992px) {

  .dropdown-menu {
    border-radius: 0px;
    border: 0px;
    background-color: #fe9e81 !important;
  }

  .dropdown-item {
    font-size: 18px;
    color: white !important;
    font-weight: 600;
    text-transform: capitalize;
  }

  .dropdown-item:hover {
  background-color: white;
  color: #fe9e81 !important;
  }
}

@media(max-width:991px) {
  .nav-row-reverse {
    flex-direction: row-reverse;
  }

  .navbar {
      padding: 10px 0px;
  }

  .navbar-brand {
      margin-right: 0;
  }

  .navbar-toggler {
      order: -1;
  }

  .navbar-nav {
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
  }

  .nav-item {
      margin-right: 0;
      margin-bottom: 10px;
  }
}



/* FULL SCREEN SLIDER */

/* Add a fade transition to the carousel items */
.carousel-item {
    transition: all 0.5s ease-in-out;
  }
  
/* Prevent images from stretching */
.carousel-item img {
  object-fit: cover;
}
  


/* MAIN SECTOIN */


.main-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }
  
  .main-home {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden; /* Add this rule */
  }
  
  .main-home:hover img {
    opacity: 0.3;
  }
  
  .main-home .image-container:hover img  {
    opacity: 1;
  }
  
  .image-container {
    max-width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden; /* Add this rule */
  }
  
  .image-label {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Text color for the label */
  }

  .image-label a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
  }

  .image-label a:hover {
    text-decoration: underline;
  }

.image-label h2 {
  font-weight: 900;
  font-size: 40px;
}

@media (max-width:992px) {
  .main-home {
    flex-direction: column;
  }
}

/* SHOP */

.shop-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.shop-item {
    margin: 20px;
}

.shop-item:hover {
    transform: scale(1.01);
    transition: all 0.3s;
    border: 1px solid lightgray;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.shop-imag img {
    max-width: 100%;
    max-height: 300px;
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}


.shop-content {
    padding: 15px;
}


/* Category */

.category-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.section-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section-title a {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
}

.splide__slide {

}

.splide__slide img {
    width: 100% !important;
    height: 100% !important;
}

.carousel-caption {
    top: 60%; /* Adjust the percentage as needed */
}

.carousel-caption h5 {
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 700;
}

.see-more {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: var(--purple);
    padding: 15px 30px;
    border-radius: 20px;
    border: 1px solid var(--purple);
}

.see-more:hover {
    background-color: white;
    color: var(--purple);
    transition: 0.3s all;
}

/* WOMEN */

.product-card {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.2s;
    margin-bottom: 30px;
    min-height: 650px;
}

.product-card:hover {
    box-shadow: 0 4px 10px rgba(254,158,129, 1);
    transition: all 0.5s;
}


.product-image img {
    max-height: 400px;
    object-fit: contain;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price span {
    font-size: 20px;
    color: #333 !important;
}

.product-price {
    font-size: 25px;
    font-weight: 800;
    color: #e74c3c;
}

.product-description {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
}

.product-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 5px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.close-button:focus {
    outline: none;
}

.product-img {
    max-width: 100%;
}

.product-img img {
    width: 100%;
}

.product-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
}

.product-details div {
    padding: 10px;
}

@media (max-width:992px) {
    .product-details {
    }
}

.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
}

.color-options-container {
    max-width: 100%; /* Set a maximum width for the container */
    overflow-x: auto; /* Allow horizontal scrolling */
    margin: 10px 0; /* Add some margin for spacing */
}

.color-options {
    display: flex;
}

.color-option {
    width: 75px;
    height: 75px;
    margin: 0 10px;
    object-fit: contain ;
    cursor: pointer;
}

/* NEW DESIGN CARD */
            
.page-wrapper {
  height: 100%;
  display: table;
}

.page-wrapper .page-inner {
  display: table-cell;
  vertical-align: middle;
}

.el-wrapper {
  padding: 15px;
  margin: 15px auto;
  background-color: #fff;
  width: 100%;
}

@media (min-width: 768px) {
  .el-wrapper {
    width: calc(33.33% - 30px);
  }
}

.el-wrapper .box-up,
.el-wrapper .box-down {
  width: 100%;
  height: auto;
}

.el-wrapper img.products-img {
  max-width: 100%;
  height: auto;
}

.el-wrapper:hover .h-bg {
  left: 0;
}

.el-wrapper:hover .price {
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--purple);
}

.el-wrapper:hover .add-to-cart {
  left: 50%;
}

.el-wrapper:hover .img {
  webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
}

.el-wrapper:hover .info-inner {
  bottom: 15px;
}

.el-wrapper img {
  height: 100%;
  object-fit: cover;
}

.el-wrapper:hover .a-size {
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  bottom: 50px;
  opacity: 1;
}

.el-wrapper .box-down {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.el-wrapper .box-up {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.h-bg {
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  width: 660px;
  height: 100%;
  background-color: var(--purple);
  position: absolute;
  left: -659px;
}

.h-bg .h-bg-inner {
  width: 50%;
  height: 100%;
  background-color: #464646;
}

.info-inner {
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  position: absolute;
  width: 100%;
  bottom: 25px;
}

.info-inner .p-name,
.info-inner .p-company {
  display: block;
}

.info-inner .p-name {
  background-color: rgb(254, 158, 129);
  font-family: 'PT Sans', sans-serif;
  font-size: 22px;
  color: #fff;
}

.info-inner .p-company {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #8c8c8c;
}

.a-size {
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  position: absolute;
  width: 100%;
  bottom: -20px;
  font-family: 'PT Sans', sans-serif;
  color: #828282;
  opacity: 0;
  text-align: left;
}

.a-size .size {
  color: #252525;
}

.a-size .features ul li {
  color: black;
}

.cart {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.cart .price {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  font-size: 25px;
  position: absolute;
  bottom: 100px;
  left: -200px;
  color: #fff;
}

.cart .add-to-cart {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  background-color: #464646;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: -100px;
  font-size: 14px;
  width: 100px;
  height: 40px;
  line-height: 40px;
}

.catalog-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .catalog-wrapper {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .features .col-lg-6 {
    width: 50%;
  }

  .color-option {
    width: 150px;
  }

  .el-wrapper {
    width: 100%; /* Set the width to 48% for 2 products per row */
    margin-bottom: 20px; /* Add some margin between the products */
  }

  .el-wrapper:nth-child(odd) {
    clear: both; /* Clear the float for every odd element to start a new row */
  }

  .el-wrapper .info-inner {
    bottom: 15px;
  }

  .h-bg {
    left: 0;
  }

  .box-up {
    height: 700px !important;
  }

  .el-wrapper .a-size {
    bottom: 15px;
  }

  .p-name {
    font-size: 35px !important;
  }
}


.contact-us {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-way {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.contact-way:last-child {
  margin-bottom: 0px;
}

.contact-img {
  width: 100px;
  height: 100px;
  background-color: var(--purple);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;

}

.contact-img img {
  width: 70%;
  object-fit: contain;
}

.contact-info {
  margin-left: 30px;
  font-size: 30px;
}

.contact-info a {
  text-decoration: none;
  color: black;
}

.social-img {
  max-width: 100px;
}

.social-img img {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
}

input[type="text"], textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

textarea {
  height: 150px;
}

input[type="submit"] {
  background-color: var(--purple);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 10px;
  border-radius: 3px;
  margin-top: 10px;
  display: none;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 3px;
  margin-top: 10px;
  display: none;
}

@media (max-width:992px) {
  .contact-us {
    flex-direction: column;
  }

  .contact-us .col-lg-6 {
    width: 100%;
    margin-bottom: 50px;
  }
}

/* Footer */

footer {
    background-color: #f6f6f6;
    padding: 30px 0px;
}

.footer-section {
    display: flex;
    flex-direction: row;
    justify-content: space;
    align-items: flex-start;
}

.footer-section h3 {
    color: var(--purple);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding-left: 0px;
}

.footer-section ul li a {
    color: #333;
    text-transform: lowercase;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--purple);
    transition: 0.3s all;
}

footer .legal a {
  color: black;
  text-decoration: none;
}

footer .legal a:hover {
  color: var(--purple);
  transition: 0.3s;
}

/*  BANNER  */

.banner {
  padding: 150px 0px;
  background-image: url(../img/clothes-banner-1.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
}

.banner2 {
  padding: 150px 0px;
  background-image: url(../img/accessories-banner.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.banner2 h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
}


.banner3 {
  padding: 150px 0px;
  background-image: url(../img/contact-banner.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.banner3 h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
}



.banner4 {
  padding: 150px 0px;
  background-image: url(../img/about-banner.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.banner4 h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
}



.banner5 {
  padding: 150px 0px;
  background-image: url(../img/legal.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.banner5 h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
}

/* SIDEBAR */

.sidebar a {
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  line-height: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.sidebar p {
  color: white;
  margin-left: 30px;
  margin-bottom: 0px;
}

.sidebar {
  height: auto;
  width: 0px;
  position: fixed;
  text-align: center;
  top: 35vh;
  padding: 10px;
}

.sidebar img {
  padding: 5px;
  max-width: 50px;
  position: relative;
  vertical-align: middle;
}

.social {
  margin-left: -190px;
  width: 230px;
  padding: 0;
  display: inline-table;
  height: 0px;
  background-color: rgba(128, 128, 128, 0.73);
  -moz-transition-property: margin-left;
  -moz-transition-duration: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-property: margin-left;
  -ms-transition-duration: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-property: margin-left;
  -o-transition-duration: 0.2s;
  -o-transition-delay: 0.2s;
  -webkit-transition-property: margin-left;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s;
  box-shadow: 0px 0px 6px 0px #3E3D3D;
  cursor: pointer;
}

.social:hover {
  margin-left: -30px;
  width: 230px;
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #8d2a86;
}

.google {
  background-color: #373737;
}

.youtube:hover {
  background-color: #E52D27;
}

.linkedin:hover {
  background-color: #0976B4;
}

.send-btn {
  border: none;
  border-radius: 5px;
  padding: 10px;
  background-color: var(--purple);
  color: white;
  font-weight: 700;
}