@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
/*global style and classes */
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.container-fluid {
  padding: 0 40px;
}
@media (max-width: 1200px) {
  .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 575px) {
  .container-fluid .logo img {
    max-width: 105px;
  }
}

.main_heading {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.main_heading span {
  position: relative;
  background-color: #fff;
  z-index: 10;
  padding: 0 40px;
  font-size: 50px;
  font-family: "Playfair Display", serif;
  color: #1d1d1f;
}
.main_heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background-color: #feb9ba;
}
@media (max-width: 767px) {
  .main_heading {
    max-width: 250px;
    margin: 0 auto 40px;
  }
  .main_heading span {
    padding: 0;
    font-size: 35px;
  }
  .main_heading::after {
    display: none;
  }
}

.main_link {
  height: 70px;
  background-color: #feb9ba;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.main_link a,
.main_link button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #1d1d1f;
  text-transform: uppercase;
  font-size: 30px;
  background: transparent;
  border: none;
}
@media (max-width: 767px) {
  .main_link {
    height: 60px;
  }
  .main_link a,
  .main_link button {
    font-size: 20px;
  }
}
.main_link:hover {
  background-color: #ef9e9f;
}

.bread {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
}
.bread a {
  color: #1d1d1f;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.bread a.active {
  color: rgba(29, 29, 31, 0.4);
}

/*header*/
.hero .container-fluid ,
header .container-fluid {
  height: 100%;
}
header .main_nav {
  height: 100px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.4);
  position: relative;
}
header .main_nav .nav-links,
header .main_nav .nav-actions {
  flex: 1;
}
header .main_nav .nav-links {
  transition: all 0.3s ease-in-out;
}
header .main_nav .nav-links::after {
  display: none;
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 31, 0.8);
  z-index: 10000;
}
@media (max-width: 991px) {
  header .main_nav .nav-links {
    position: fixed;
    z-index: 80000;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100vh;
  }
  header .main_nav .nav-links .nav_wrapper {
    transition: 0.3s all ease-in-out;
    position: fixed;
    z-index: 80000;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100vh;
    background-color: #feb9ba;
    padding: 24px;
    box-shadow: 0 5px 5px #feb9ba;
  }
  header .main_nav .nav-links.is_open {
    display: block;
  }
  header .main_nav .nav-links.is_open .nav_wrapper {
    right: 0;
  }
  header .main_nav .nav-links.is_open::after {
    display: block;
  }
}
header .main_nav .nav-links ul {
  gap: 40px;
}
@media (max-width: 991px) {
  header .main_nav .nav-links ul {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
header .main_nav .nav-links ul li a {
  color: #1d1d1f;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  padding-bottom: 2px;
}
header .main_nav .nav-links ul li a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.2s ease-in-out;
  background-color: rgba(29, 29, 31, 0.8);
}
header .main_nav .nav-links ul li a:hover::after {
  width: 100%;
}
header .main_nav .nav-actions {
  justify-content: flex-end;
  gap: 20px;
}
header .main_nav .nav-actions .search form {
  width: 155px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 35px;
  padding: 6px 3px 6px 9px;
  background: rgba(217, 217, 217, 0.35);
  border-radius: 2px;
}
header .main_nav .nav-actions .search form input {
  flex: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
header .main_nav .nav-actions .search form input::-moz-placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 14px;
}
header .main_nav .nav-actions .search form input::placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 14px;
}
header .main_nav .nav-actions .search form button {
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  outline: none;
}
@media (max-width: 991px) {
  header .main_nav .nav-actions .search form {
    background-color: transparent;
    width: auto;
    padding: 0;
  }
  header .main_nav .nav-actions .search form input {
    display: none;
  }
}
header .main_nav .nav-actions .languages .dropdown .btn-secondary {
  height: 35px;
  background-color: #feb9ba;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #1d1d1f;
  font-weight: 500;
  padding: 8px;
  box-shadow: none !important;
}
header .main_nav .nav-actions .languages .dropdown .btn-secondary::after {
  display: none;
}
@media (max-width: 991px) {
  header .main_nav .nav-actions .languages .dropdown .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(29, 29, 31, 0.4);
    font-size: 14px;
    height: 25px;
  }
  header .main_nav .nav-actions .languages .dropdown .btn-secondary img {
    display: none;
  }
}
header .main_nav .nav-actions .languages .dropdown .dropdown-menu {
  transform: translate3d(0px, 35px, 0px);
  top: 0px;
  right: 0px;
  left: auto;
  min-width: 66px;
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
  border-radius: 0 0 2px 2px;
  background-color: transparent;
  border: none;
}
header .main_nav .nav-actions .languages .dropdown .dropdown-menu a {
  background-color: #fff2f2;
  color: #ef9e9f;
  font-weight: 500;
  margin: 2px 0;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 8px;
  border-radius: 2px;
}
/* header .main_nav .nav-actions .languages .dropdown .dropdown-menu a[data-language=ar] {
  background-color: rgba(217, 217, 217, 0.35);
  color: #1d1d1f;
} */
header .main_nav .nav-actions .bars_mobile {
  display: none;
}
@media (max-width: 991px) {
  header .main_nav .nav-actions .bars_mobile {
    display: block;
  }
}

.close_sidebar {
  display: none;
}
@media (max-width: 991px) {
  .close_sidebar {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .close_sidebar img {
    width: 100px;
    mix-blend-mode: multiply;
  }
}

/*hero*/
.hero {
  background-image: url(../imgs/home_main.png);
  background-repeat: no-repeat;
  background-position: right;
  height: 640px;
  background-size: cover;
}
.hero .content {
  max-width: 785px;
  height: 100%;
  position: relative;
  max-width: 785px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content h1 {
  font-family: "Playfair Display", serif;
  font-size: 110px;
  line-height: 110px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1200px) {
  .hero .content h1 {
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 28px;
  }
}
.hero .content p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .hero .content p {
    font-size: 25px;
    margin-bottom: 28px;
  }
}
.hero .content a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 260px;
  background: #f9f9f9;
  padding: 16px 40px;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 30px;
  line-height: 39px;
  transition: all 0.3s ease-in-out;
}
.hero .content a:hover {
  background-color: #feb9ba;
}
@media (max-width: 767px) {
  .hero .content {
    max-width: 470px;
  }
  .hero .content h1 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .hero .content p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .hero .content {
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
  .hero .content p {
    max-width: 217px;
  }
  .hero .content a {
    max-width: 100%;
    padding: 11px 34px;
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .hero {
    background-position: center;
    background-image: url(../imgs/home_main_mobile.png);
  }
}

/*categories*/
.categories {
  padding: 60px 0 0;
}
.categories .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: auto;
  gap: 20px;
}
.categories .container-fluid::-webkit-scrollbar {
  display: none;
  width: 0;
  background-color: transparent;
}
.categories .container-fluid .item {
  text-align: center;
  width: 140px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .categories .container-fluid .item {
    width: 120px;
  }
}
.categories .container-fluid .item .img_container {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid #feb9ba;
  background-color: #fff2f2;
  margin: 0 auto 20px auto;
  overflow: hidden;
}
.categories .container-fluid .item .img_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.categories .container-fluid .item .img_container img:hover {
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .categories .container-fluid .item .img_container {
    width: 88px;
    height: 88px;
    border-width: 3px;
  }
}
.categories .container-fluid .item .category_name {
  font-size: 25px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .categories .container-fluid .item .category_name {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .categories .container-fluid .item .category_name {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .categories {
    padding: 40px 0 0 0;
  }
}
.categories.catalog_categories .container-fluid .item .img_container {
  border-color: rgb(217, 217, 217);
  background-color: rgba(217, 217, 217, 0.35);
}
.categories.catalog_categories .container-fluid .item .category_name {
  color: rgba(29, 29, 31, 0.8);
  border-bottom: 2px solid transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.categories.catalog_categories .container-fluid .item.active .img_container {
  border-color: #feb9ba;
  background-color: #fff2f2;
}
.categories.catalog_categories .container-fluid .item.active .category_name {
  color: #1d1d1f;
  border-bottom: 2px solid #1d1d1f;
}

/*featured */
.featured {
  padding: 60px 0;
}
.featured .featured_items {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 767px) {
  .featured .featured_items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .featured .featured_items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.featured .featured_items .item {
  transition: all 0.3s ease-in-out;
}
.featured .featured_items .item .product_img {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.featured .featured_items .item .product_img img {
  max-width: 100%;
  border-radius: 2px;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.featured .featured_items .item .product_data {
  text-align: center;
}
.featured .featured_items .item .product_data h3 {
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1f;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 1;
}
.featured .featured_items .item .product_data span {
  color: #ef9e9f;
  font-weight: 600;
}
@media (max-width: 575px) {
  .featured .featured_items .item .product_data h3 {
    font-size: 14px;
  }
  .featured .featured_items .item .product_data span {
    font-size: 14px;
    font-weight: 400;
  }
}
.featured .featured_items .item:hover .product_img img {
  transform: scale(1.03);
}
@media (max-width: 575px) {
  .featured .featured_items {
    margin-bottom: 20px;
  }
  .featured .featured_items .item {
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .featured {
    padding: 40px 0;
  }
}

/*best_seller*/
.best_seller {
  background-color: #fff2f2;
  padding: 60px 0;
}
.best_seller .main_heading span {
  background-color: #fff2f2;
}
.best_seller .featured_items {
  margin: 0;
  flex-wrap: wrap;
}
.best_seller .featured_items .item {
  flex: 23%;
  margin-bottom: 40px;
}
.best_seller .featured_items .item .product_img {
  border-radius: 50%;
}
.best_seller .featured_items .item .product_img img {
  border-radius: 50%;
}
@media (max-width: 510px) {
  .best_seller .featured_items .item {
    flex: 48%;
  }
  .best_seller .featured_items .item .product_img img {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .best_seller {
    padding: 40px 0;
  }
  .best_seller .featured_items {
    margin: 0;
    flex-wrap: wrap;
  }
  .best_seller .featured_items .item {
    margin: 0;
  }
  .best_seller .main_link {
    margin-top: 20px;
  }
}

/*instagram_gallery*/
.instagram_gallery {
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .instagram_gallery {
    padding-bottom: 40px;
  }
}
.instagram_gallery .head {
  margin-bottom: 60px;
  text-align: center;
}
.instagram_gallery .head h2 {
  font-size: 78px;
  line-height: 78px;
  font-family: "Playfair Display", serif;
  color: #1d1d1f;
  margin-bottom: 40px;
}
.instagram_gallery .head p {
  margin: 0;
  font-size: 30px;
  color: #1d1d1f;
}
.instagram_gallery .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 40px;
}
.instagram_gallery .gallery .img {
  overflow: hidden;
}
.instagram_gallery .gallery .img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.2s ease-in-out;
}
.instagram_gallery .gallery .img img:hover {
  transform: scale(1.03);
}
@media (max-width: 1300px) {
  .instagram_gallery .head {
    margin-bottom: 20px;
  }
  .instagram_gallery .head h2 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 50px;
  }
  .instagram_gallery .head p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .instagram_gallery .gallery {
    gap: 2px;
  }
  .instagram_gallery .head {
    margin-bottom: 20px;
  }
  .instagram_gallery .head h2 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 35px;
  }
  .instagram_gallery .head p {
    font-size: 16px;
  }
}

/*footer */
footer {
  padding-bottom: 60px;
  position: relative;
  background-color: #fff2f2;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 337px;
  background-image: url(../imgs/Shape.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
footer .container-fluid {
  position: relative;
  z-index: 100;
}
footer .container-fluid .newsletter {
  min-height: 200px;
  background-color: #feb9ba;
  display: flex;
  align-items: center;
  padding: 64px 40px;
  gap: 38px;
  margin-bottom: 51px;
}
footer .container-fluid .newsletter h2 {
  margin: 0;
  font-size: 50px;
  line-height: 50px;
  color: #1d1d1f;
  font-family: "Playfair Display", serif;
}
footer .container-fluid .newsletter form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .container-fluid .newsletter form input {
  height: 72px;
  border-radius: 2px;
  border: none;
  outline: none;
  padding: 20px;
  flex: 1;
  font-size: 20px;
}
footer .container-fluid .newsletter form input::-moz-placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 20px;
}
footer .container-fluid .newsletter form input::placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 20px;
}
footer .container-fluid .newsletter form button {
  height: 72px;
  border: none;
  border-radius: 2px;
  width: 285px;
  padding: 20px;
  font-size: 30px;
  background-color: rgb(249, 249, 249);
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
footer .container-fluid .newsletter form button:hover {
  background-color: #ef9e9f;
}
@media (max-width: 1300px) {
  footer .container-fluid .newsletter {
    padding: 40px 15px;
  }
  footer .container-fluid .newsletter h2 {
    font-size: 40px;
  }
  footer .container-fluid .newsletter form button {
    font-size: 18px;
    width: 150px;
  }
}
@media (max-width: 991px) {
  footer .container-fluid .newsletter {
    flex-direction: column;
  }
  footer .container-fluid .newsletter form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .container-fluid .newsletter {
    flex-direction: column;
    padding: 20px 15px;
  }
  footer .container-fluid .newsletter h2 {
    font-size: 35px;
    max-width: 180px;
    line-height: 35px;
    text-align: center;
  }
  footer .container-fluid .newsletter form {
    width: 100%;
    gap: 12px;
  }
  footer .container-fluid .newsletter form button {
    font-size: 16px;
    width: auto;
    height: 60px;
  }
  footer .container-fluid .newsletter form input {
    height: 60px;
    font-size: 16px;
  }
  footer .container-fluid .newsletter form input::-moz-placeholder {
    color: rgba(29, 29, 31, 0.8);
    font-size: 16px;
  }
  footer .container-fluid .newsletter form input::placeholder {
    color: rgba(29, 29, 31, 0.8);
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  footer .container-fluid .newsletter form {
    flex-direction: column;
  }
  footer .container-fluid .newsletter form input,
  footer .container-fluid .newsletter form button {
    width: 100%;
  }
}
footer .container-fluid .footer_links .links {
  display: flex;
  gap: 40px;
}
footer .container-fluid .footer_links .links a {
  color: #1d1d1f;
  color: #1d1d1f;
  text-decoration: none;
  display: block;
}
footer .container-fluid .footer_links .separator {
  height: 1px;
  background-color: #feb9ba;
  margin: 51px 0 48px;
}
footer .container-fluid .footer_links .copyrights {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container-fluid .footer_links .copyrights p {
  margin: 0;
  font-size: 14px;
  color: #1d1d1f;
}
footer .container-fluid .footer_links .copyrights .more_links {
  display: flex;
  align-items: center;
  gap: 40px;
}
footer .container-fluid .footer_links .copyrights .more_links a {
  color: #1d1d1f;
  text-decoration: none;
}
@media (max-width: 1300px) {
  footer {
    padding: 0 0 40px 0;
  }
  footer .container-fluid .footer_links .separator {
    margin: 40px 0;
  }
  footer .container-fluid .footer_links .copyrights {
    flex-direction: column;
    gap: 40px;
  }
  footer .container-fluid .footer_links .copyrights .more_links a {
    font-size: 14px;
  }
}

/*about us page */
.about_intro {
  padding: 60px 0;
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.about_intro h1 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  line-height: 65px;
  letter-spacing: -2px;
  max-width: 767px;
  margin: 0 auto 60px;
  color: #1d1d1f;
}
.about_intro p {
  font-size: 25px;
  line-height: 32px;
  color: rgba(29, 29, 31, 0.8);
  margin: 0;
}
@media (max-width: 767px) {
  .about_intro {
    padding: 40px 0;
  }
  .about_intro h1 {
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -1px;
    margin-bottom: 40px;
  }
  .about_intro p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .about_intro {
    text-align: start;
  }
}

.about_content {
  padding-bottom: 60px;
}
.about_content .image {
  margin-bottom: 60px;
}
.about_content .image img {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 425px) {
  .about_content .image {
    aspect-ratio: 1/1.4;
  }
  .about_content .image img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: none;
       object-fit: none;
  }
}
.about_content .content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 575px) {
  .about_content .content {
    text-align: start;
  }
}
.about_content .content p {
  font-size: 25px;
  line-height: 32px;
  color: rgba(29, 29, 31, 0.8);
  margin: 0;
}
@media (max-width: 767px) {
  .about_content {
    padding-bottom: 40px;
  }
  .about_content .image {
    margin-bottom: 40px;
  }
  .about_content .content {
    gap: 20px;
  }
  .about_content .content p {
    font-size: 16px;
    line-height: 20px;
  }
}

/*join_us*/
.join_us {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 80px;
}
.join_us .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background-color: #fff2f2;
}
@media (max-width: 1200px) {
  .join_us .content {
    padding: 20px;
  }
}
.join_us .content h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 50px;
  color: #1d1d1f;
}
.join_us .content p {
  max-width: 587px;
  font-size: 25px;
  color: rgba(29, 29, 31, 0.8);
  margin-bottom: 40px;
}
.join_us .content form input {
  width: 100%;
  border-radius: 0 !important;
  border: 1px solid rgba(29, 29, 31, 0.4);
  height: 72px;
  font-size: 20px;
  padding: 10px 25px;
  margin-bottom: 23px;
  font-size: 20px;
}
.join_us .content form input::-moz-placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 20px;
}
.join_us .content form input::placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 20px;
}
.join_us .img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .join_us {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 40px;
  }
  .join_us .content h2 {
    font-size: 35px;
    max-width: 460px;
    margin-bottom: 20px;
    line-height: 40px;
  }
  .join_us .content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .join_us .content form input {
    height: 60px;
    padding: 5px 10px;
    font-size: 16px;
  }
  .join_us .content form input::-moz-placeholder {
    font-size: 16px;
  }
  .join_us .content form input::placeholder {
    font-size: 16px;
  }
}

/*contactus_hero*/
.contactus_hero {
  background-image: url(../imgs/contact_Hero.png);
  height: 600px;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}
.contactus_hero .container-fluid {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.contactus_hero .container-fluid span {
  font-size: 25px;
  margin-bottom: 20px;
}
.contactus_hero .container-fluid h1 {
  font-size: 78px;
  font-family: "Playfair Display", serif;
  max-width: 500px;
  margin: 0;
  line-height: 78px;
}
@media (max-width: 575px) {
  .contactus_hero {
    background-position: 85%;
  }
  .contactus_hero .container-fluid {
    background: linear-gradient(180deg, rgba(193, 160, 135, 0) 40%, rgba(29, 29, 31, 0.6) 100%);
    justify-content: flex-end;
    padding-bottom: 20px;
  }
  .contactus_hero .container-fluid span {
    font-size: 20px;
  }
  .contactus_hero .container-fluid h1 {
    font-size: 50px;
    max-width: 375px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .contactus_hero {
    background-position: 75%;
  }
}

/*contact__headlines*/
.contact__headlines {
  padding: 60px 0;
  background-color: #fff2f2;
}
.contact__headlines .container-fluid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.contact__headlines .container-fluid .headline_item {
  aspect-ratio: 1;
  border: 1px solid rgba(237, 159, 175, 0.168627451);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* border-image-source: linear-gradient(212.71deg, #ffffff 40%, rgba(255, 233, 233, 0.6) 65%, rgba(254, 185, 186, 0.4) 100%); */
  border-image-slice: 1;
  box-shadow: -7px 5px 5px rgba(237, 159, 175, 0.1882352941);
}
.contact__headlines .container-fluid .headline_item .wrapper {
  max-width: 320px;
  margin: auto;
  padding: 8px;
}
.contact__headlines .container-fluid .headline_item .wrapper h3 {
  font-size: 30px;
  font-family: "Playfair Display", serif;
  line-height: 33px;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.contact__headlines .container-fluid .headline_item .wrapper p {
  font-size: 18px;
  color: rgba(29, 29, 31, 0.8);
}
@media (max-width: 1200px) {
  .contact__headlines .container-fluid .headline_item .wrapper h3 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .contact__headlines .container-fluid .headline_item .wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contact__headlines {
    padding: 40px 0;
  }
  .contact__headlines .container-fluid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .contact__headlines {
    padding: 40px 0;
  }
  .contact__headlines .container-fluid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  .contact__headlines .container-fluid h3 {
    font-size: 35px !important;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #feb9ba;
    margin-bottom: 20px;
  }
}

/*contact*/
.contact {
  padding: 60px 0;
  background-color: #fff2f2;
}
.contact .container-fluid {
  display: flex;
  gap: 20px;
}
.contact .container-fluid .heading {
  min-width: 440px;
}
.contact .container-fluid .heading h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  color: #1d1d1f;
  line-height: 65px;
}
.contact .container-fluid .heading p {
  font-size: 25px;
  color: rgba(29, 29, 31, 0.8);
}
.contact .container-fluid .contact_form {
  flex: 1;
}
.contact .container-fluid .contact_form .main_link {
  height: 50px;
  margin-top: 20px;
}
.contact .container-fluid .contact_form .main_link button {
  font-size: 25px;
}
.contact .container-fluid .contact_form .main_data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.contact .container-fluid .contact_form .main_data .form_conrtol input {
  width: 100%;
  height: 60px;
  padding: 16px;
  background-color: #fff;
  border: 1px solid rgba(29, 29, 31, 0.4);
  outline: none;
  font-size: 14px;
  border-radius: 2px;
}
.contact .container-fluid .contact_form .main_data .form_conrtol input::-moz-placeholder {
  font-size: 14px;
  color: rgba(29, 29, 31, 0.8);
}
.contact .container-fluid .contact_form .main_data .form_conrtol input::placeholder {
  font-size: 14px;
  color: rgba(29, 29, 31, 0.8);
}
.contact .container-fluid .contact_form .reason h4 {
  font-size: 18px;
  color: rgba(29, 29, 31, 0.8);
  margin-bottom: 20px;
}
.contact .container-fluid .contact_form .reason ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}
.contact .container-fluid .contact_form .reason ul li label {
  padding: 16px 30px;
  background-color: #fff;
  border-radius: 444px;
  margin: 0;
  font-size: 14px;
  color: rgba(29, 29, 31, 0.8);
}
.contact .container-fluid .contact_form .reason ul li label.active {
  background-color: #feb9ba;
  color: #fff;
}
.contact .container-fluid .contact_form .message_data input,
.contact .container-fluid .contact_form .message_data textarea {
  width: 100%;
  height: 60px;
  padding: 16px;
  background-color: #fff;
  border: 1px solid rgba(29, 29, 31, 0.4);
  outline: none;
  font-size: 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.contact .container-fluid .contact_form .message_data textarea {
  height: 120px;
}
@media (max-width: 991px) {
  .contact .container-fluid .heading {
    min-width: 350px;
  }
}
@media (max-width: 767px) {
  .contact .container-fluid {
    flex-direction: column;
    gap: 40px;
  }
  .contact .container-fluid .heading {
    min-width: unset;
    text-align: center;
  }
  .contact .container-fluid .heading h2 {
    margin-bottom: 20px;
    font-size: 35px;
    line-height: 40px;
  }
  .contact .container-fluid .heading p {
    font-size: 16px;
    margin: 0;
  }
  .contact .container-fluid .heading br {
    display: none;
  }
}
@media (max-width: 575px) {
  .contact .container-fluid .contact_form .main_link {
    height: 60px;
    margin-top: 20px;
  }
  .contact .container-fluid .contact_form .main_link button {
    font-size: 20px;
  }
  .contact .container-fluid .contact_form .main_data {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .contact .container-fluid .contact_form .reason {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact .container-fluid .contact_form .reason h4 {
    font-size: 20px;
  }
  .contact .container-fluid .contact_form .reason label {
    font-size: 16px !important;
  }
}

.attach_file {
  position: relative;
  border: 2px dashed rgba(29, 29, 31, 0.4);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out;
  color: #1d1d1f;
}

.attach_file:hover {
  border-color: #ef9e9f;
}

.file_box {
  display: inline-block;
  height: 100%;
  cursor: pointer;
  position: relative;
  padding-bottom: 1px;
}
.file_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1d1d1f;
  width: 96%;
  background-color: #1d1d1f;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}

.file_box span {
  display: inline-block;
  color: #1d1d1f;
}

.file_preview {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file_preview img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.file_preview .file_item {
  position: relative;
}

.file_preview .file_item span {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

.images_type {
  color: rgba(29, 29, 31, 0.4);
}

/*category */
.category_hero img {
  width: 100%;
}
.category_hero .desktop_view_hero {
  display: block;
}
.category_hero .mobile_view_hero {
  display: none;
}
@media (max-width: 575px) {
  .category_hero .desktop_view_hero {
    display: none;
  }
  .category_hero .mobile_view_hero {
    display: block;
  }
}

/*filters* /

/* General dropdown styles */
.categories_filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: space-between;
}
.categories_filters .filters,
.categories_filters .sort {
  display: flex;
  gap: 6px;
}
.categories_filters .filters .dropdown,
.categories_filters .sort .dropdown {
  position: relative;
}
.categories_filters .filters .dropdown .dropdown_btn,
.categories_filters .sort .dropdown .dropdown_btn {
  padding: 5px 7px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: border-color 0.3s;
  font-size: 18px;
  height: 35px;
  font-weight: 500;
  color: #09080b;
}
.categories_filters .filters .dropdown .dropdown_btn p,
.categories_filters .sort .dropdown .dropdown_btn p {
  font-weight: 400;
  margin: 0 4px 0 0;
  color: #474749;
  font-size: 18px;
}
.categories_filters .filters .dropdown .dropdown_btn img,
.categories_filters .sort .dropdown .dropdown_btn img {
  transition: 0.3s all ease-in-out;
}
.categories_filters .filters .dropdown .dropdown_btn.active,
.categories_filters .sort .dropdown .dropdown_btn.active {
  border-color: rgba(29, 29, 31, 0.4);
}
.categories_filters .filters .dropdown .dropdown_btn.active img,
.categories_filters .sort .dropdown .dropdown_btn.active img {
  transform: rotate(180deg);
}
@media (max-width: 575px) {
  .categories_filters .filters .dropdown .dropdown_btn,
  .categories_filters .sort .dropdown .dropdown_btn {
    font-size: 16px;
  }
}
.categories_filters .filters .dropdown .dropdown_menu,
.categories_filters .sort .dropdown .dropdown_menu {
  display: none;
  position: absolute;
  top: 43px;
  background-color: #fff;
  border-radius: 5px;
  min-width: 245px;
  z-index: 10;
  padding: 20px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(29, 29, 31, 0.4);
  border-radius: 8px;
}
.categories_filters .filters .dropdown .dropdown_menu {
  left: 0;
}
.categories_filters .sort .dropdown .dropdown_menu {
  right: 0;
}
.categories_filters .filters .dropdown .dropdown_menu.active,
.categories_filters .sort .dropdown .dropdown_menu.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10000000;
}
.categories_filters .filters .dropdown .dropdown_menu li,
.categories_filters .sort .dropdown .dropdown_menu li {
  padding: 0;
  cursor: pointer;
}
.categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox,
.categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
}
.categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox input,
.categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox input {
  display: none;
}
.categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox .checkmark,
.categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark {
  width: 24px;
  height: 24px;
  border: 1px solid #1d1d1f;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox .checkmark::after,
.categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark::after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url(../imgs/check.png);
  background-size: cover;
  display: none;
}
.categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox .checkmark.arrival::after,
.categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark.arrival::after {
  background-image: url(../imgs/arrival_check.svg);
  width: 16px;
  height: 16px;
} */

.check-mark-active {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url(../imgs/check.png);
  background-size: cover;
  /* display: none; */
}

.check-mark-arrival-active {
  content: "";
  background-image: url(../imgs/arrival_check.svg);
  width: 12px;
  height: 12px;
  background-size: cover;
  /* display: none; */
}
@media (max-width: 575px) {
  .categories_filters .filters .dropdown .dropdown_menu,
  .categories_filters .sort .dropdown .dropdown_menu {
    min-width: unset;
    width: -moz-max-content;
    width: max-content;
    padding: 16px;
  }
  .categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox .checkmark,
  .categories_filters .filters .dropdown .dropdown_menu .categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark,
  .categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark,
  .categories_filters .sort .dropdown .dropdown_menu .categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark {
    width: 20px;
    height: 20px;
  }
}
.categories_filters .filters .dropdown .dropdown_menu li .custom_checkbox .checkmark,
.categories_filters .filters .dropdown .dropdown_menu .categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark,
.categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark,
.categories_filters .sort .dropdown .dropdown_menu .categories_filters .sort .dropdown .dropdown_menu li .custom_checkbox .checkmark {
  gap: 12px;
}
.categories_filters .filter_tags {
  flex: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.categories_filters .filter_tags .tag {
  height: 33px;
  border: 1px solid #474749;
  padding: 0 7px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.categories_filters .filter_tags .tag span {
  font-size: 18px;
  color: #474749;
}

.custom_checkbox input:checked + .checkmark::after {
  display: block !important;
}

.custom_checkbox span:last-child {
  font-size: 17px;
  color: #1d1d1f;
  font-weight: 500;
}
@media (max-width: 575px) {
  .custom_checkbox span:last-child {
    font-size: 14px;
  }
}

/*cart*/
.cart {
  display: flex;
  padding-bottom: 40px;
}
.cart .cart_wrapper {
  padding: 40px 0;
  flex: 1;
}
.cart .cart_wrapper h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  font-size: 50px;
  color: #1d1d1f;
}
.cart .cart_wrapper h1 .products_number {
  color: rgba(29, 29, 31, 0.4);
}
.cart .cart_wrapper .cart_item {
  display: flex;
  border: 1px solid rgba(29, 29, 31, 0.4);
  margin-bottom: 20px;
}
.cart .cart_wrapper .cart_item:last-child {
  margin: 0;
}
.cart .cart_wrapper .cart_item .product_img {
  max-width: 325px;
  aspect-ratio: 1;
}
.cart .cart_wrapper .cart_item .product_img img {
  width: 100%;
  height: 100%;
}
.cart .cart_wrapper .cart_item .product_data {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart .cart_wrapper .cart_item .product_data .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}
.cart .cart_wrapper .cart_item .product_data .name .name_div {
  font-size: 25px;
  color: #1d1d1f;
  font-weight: 500;
}
.cart .cart_wrapper .cart_item .product_data .name .remove {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(29, 29, 31, 0.4);
  border-bottom: 1px solid rgba(29, 29, 31, 0.4);
  margin-bottom: 2px;
}
.cart .cart_wrapper .cart_item .product_data .name .remove h6 {
  margin: 0;
}
.cart .cart_wrapper .cart_item .product_data .color,
.cart .cart_wrapper .cart_item .product_data .size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #1d1d1f;
}
.cart .cart_wrapper .cart_item .product_data .color h6,
.cart .cart_wrapper .cart_item .product_data .size h6 {
  font-weight: 400;
  margin: 0;
}
.cart .cart_wrapper .cart_item .product_data .quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart .cart_wrapper .cart_item .product_data .quantity .inc_dec {
  display: flex;
  gap: 10px;
}
.cart .cart_wrapper .cart_item .product_data .quantity .inc_dec input {
  width: 60px;
  height: 40px;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #1d1d1f;
  outline: none;
  color: #1d1d1f;
  padding: 0;
  margin: 0;
  font-size: 25px;
}
.cart .cart_wrapper .cart_item .product_data .quantity .price {
  font-size: 25px;
  color: #1d1d1f;
  margin: 0;
}
.cart .summary {
  padding: 50px 40px 40px;
  width: 575px;
  background-color: rgba(217, 217, 217, 0.35);
}
.cart .summary h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  font-size: 30px;
}
.cart .summary .order_price .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.cart .summary .order_price .inner.shipping {
  margin-bottom: 30px;
}
.cart .summary .order_price .inner h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.cart .summary .order_price .total {
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 25px;
}
.cart .summary .order_price .total h5 {
  font-size: 25px;
  font-weight: 500;
  margin: 0;
}
.cart .summary .order_price .main_link {
  height: 50px;
  margin-top: 12px;
}
.cart .summary .order_price .main_link a {
  font-size: 25px;
}
@media (max-width: 1400px) {
  .cart .summary {
    width: 450px;
  }
}
@media (max-width: 1200px) {
  .cart .summary {
    width: 350px;
  }
  .cart .summary h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .cart .summary .order_price .inner,
  .cart .cart .summary .order_price .inner h5 {
    font-size: 14px;
  }
  .cart .summary .order_price .total h5,
  .cart .summary .order_price .total h5 {
    font-size: 20px;
  }
  .cart .summary .order_price .main_link a {
    font-size: 16px;
  }
  .cart .cart_wrapper .cart_item .product_data .name {
    margin-bottom: 26px;
  }
  .cart .cart_wrapper .cart_item .product_data .name .name_div {
    font-size: 16px;
  }
  .cart .cart .cart_wrapper .cart_item .product_data .name .remove {
    font-size: 14px;
  }
  .cart .cart_wrapper .cart_item .product_data .quantity .price {
    font-size: 20px;
  }
  .cart .cart_wrapper .cart_item .product_data .quantity .inc_dec {
    gap: 6px;
  }
  .cart .cart_wrapper .cart_item .product_data .quantity .inc_dec img {
    width: 30px;
  }
  .cart .cart_wrapper .cart_item .product_data .quantity .inc_dec input {
    width: 50px;
    height: 30px;
    font-size: 16px;
  }
  .cart .summary .order_price .total {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .cart {
    flex-direction: column;
  }
  .cart .cart_wrapper h1 {
    margin-bottom: 20px;
    font-size: 35px;
    color: #1d1d1f;
  }
  .cart .main_wrapper {
    padding: 20px 0;
    border-top: 1px solid rgba(29, 29, 31, 0.4);
    border-bottom: 1px solid rgba(29, 29, 31, 0.4);
  }
  .cart .cart_wrapper {
    padding-bottom: 20px;
  }
  .cart .summary {
    padding: 0 15px;
    width: 100%;
    background: transparent;
  }
  .cart .summary h3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cart .cart_wrapper .cart_item .product_img {
    max-width: 200px;
  }
  .cart .cart_wrapper .cart_item .product_data .wrapper {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .cart .cart_wrapper .cart_item .product_data .wrapper .name {
    flex: 100%;
  }
}
@media (max-width: 575px) {
  .cart .cart_wrapper .cart_item .product_data {
    padding: 12px;
  }
  .cart .cart_wrapper .cart_item .product_img {
    max-width: 156px;
  }
  .cart .cart_wrapper .cart_item .product_data .name .remove h6 {
    display: none;
  }
}
@media (max-width: 575px) {
  .cart .cart_wrapper .cart_item .product_img {
    max-width: 135px;
  }
}

/*checkout */
.checkout .main_wrapper .cart_item .name {
  margin-bottom: 40px;
}
.checkout .main_wrapper .cart_item .name_div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout .main_wrapper .cart_item .name_div h5 {
  margin: 0;
  font-size: 25px;
}
.checkout .main_wrapper .cart_item .product_data .color {
  margin-bottom: 10px;
}
.checkout .main_wrapper .cart_item .product_data .size {
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .checkout .main_wrapper .cart_item .product_data .color {
    flex: 100%;
  }
}
@media (max-width: 767px) {
  .checkout .main_wrapper .cart_item.identification .size {
    margin: 0 !important;
  }
}
.checkout .main_wrapper .shipping form {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.checkout .main_wrapper .shipping form .form_control {
  flex: calc(50% - 20px);
}
@media (max-width: 575px) {
  .checkout .main_wrapper .shipping form .form_control {
    flex: 100%;
  }
}
.checkout .main_wrapper .shipping form .form_control.address {
  flex: 100%;
}
.checkout .main_wrapper .shipping form .form_control input,
.checkout .main_wrapper .shipping form .form_control select {
  width: 100%;
  border: 1px solid rgba(29, 29, 31, 0.4);
  height: 50px;
  border-radius: 2px;
  outline: none;
  padding: 16px 10px;
  font-size: 14px;
  color: #1d1d1f;
}
.checkout .main_wrapper .shipping form .form_control input::-moz-placeholder, .checkout .main_wrapper .shipping form .form_control select::-moz-placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 14px;
}
.checkout .main_wrapper .shipping form .form_control input::placeholder,
.checkout .main_wrapper .shipping form .form_control select::placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 14px;
}
.checkout .main_wrapper .shipping form .form_control select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../imgs/select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.checkout .main_wrapper .shipping form .shipping-methods {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex: 100%;
}
.checkout .main_wrapper .shipping form .shipping-methods h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1d1d1f;
}
.checkout .main_wrapper .shipping form .shipping-methods .shipping-option input[type=radio] {
  display: none;
}
.checkout .main_wrapper .shipping form .shipping-methods .shipping-option {
  display: flex;
  align-items: center;
  height: 70px;
  margin-bottom: 10px;
  background-color: rgba(217, 217, 217, 0.35);
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.checkout .main_wrapper .shipping form .shipping-methods .shipping-option:last-child {
  margin: 0;
}
.checkout .main_wrapper .shipping form .shipping-methods .description {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 500;
}
.checkout .main_wrapper .shipping form .shipping-methods .custom-radio {
  width: 20px;
  height: 20px;
  border: 1px solid #1d1d1f;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}
.checkout .main_wrapper .shipping form .shipping-methods .shipping-option input[type=radio]:checked + .custom-radio {
  border: 5px solid #1d1d1f;
}
.checkout .summary .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.checkout .summary .head h3 {
  margin: 0;
}
.checkout .summary .head a {
  font-size: 14px;
  color: rgba(29, 29, 31, 0.4);
  padding-bottom: 0px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.4);
}
.checkout .summary .cart_items_summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.4);
}
.checkout .summary .cart_items_summary .item {
  display: flex;
  gap: 20px;
}
.checkout .summary .cart_items_summary .item .img {
  max-width: 120px;
}
.checkout .summary .cart_items_summary .item .img img {
  width: 100%;
}
.checkout .summary .cart_items_summary .item .data h4,
.checkout .summary .cart_items_summary .item .data span {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1f;
}
.checkout .summary .cart_items_summary .item .data span {
  margin: 0;
}
.checkout .summary .cart_items_summary .other_data_mobile_view {
  display: none;
}
.checkout .summary .toggle_cart_mobile_view {
  display: none;
}
.checkout .summary .order_price .inner {
  margin-bottom: 20px;
}
.checkout .summary .order_price .inner.shipping {
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .checkout .summary {
    padding: 50px 20px 40px;
  }
  .checkout .summary .head h3 {
    font-size: 25px;
  }
}
@media (max-width: 1200px) {
  .checkout .summary {
    width: 450px;
  }
}
@media (max-width: 991px) {
  .checkout .summary {
    width: 100%;
    padding: 20px 15px 0px;
    display: flex;
    flex-direction: column;
  }
  .checkout .summary .head {
    order: 3;
    display: none;
  }
  .checkout .summary .head a {
    font-size: 20px;
    width: 100%;
    border: none;
    border-radius: 2px;
    background-color: rgba(29, 29, 31, 0.8);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
  }
  .checkout .summary .head.active {
    display: flex;
  }
  .checkout .summary .cart_items_summary {
    gap: 15px;
    order: 2;
    border-top: 1px solid rgba(29, 29, 31, 0.4);
    padding-top: 20px;
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
  }
  .checkout .summary .cart_items_summary.active {
    display: flex;
    max-height: unset;
    opacity: 1;
  }
  .checkout .summary .cart_items_summary .item {
    display: flex;
    gap: 12px;
  }
  .checkout .summary .cart_items_summary .item .img {
    max-width: 65px;
  }
  .checkout .summary .cart_items_summary .item .img img {
    width: 100%;
  }
  .checkout .summary .cart_items_summary .item .wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .checkout .summary .cart_items_summary .item .wrapper .data {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .checkout .summary .cart_items_summary .item .wrapper .data h4,
  .checkout .summary .cart_items_summary .item .wrapper .data span {
    font-size: 14px;
  }
  .checkout .summary .cart_items_summary .item .wrapper .other_data_mobile_view {
    display: flex;
    gap: 12px;
  }
  .checkout .summary .cart_items_summary .item .wrapper .other_data_mobile_view .color {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .checkout .summary .cart_items_summary .item .wrapper .other_data_mobile_view .color h6 {
    margin: 0 5px 0 0;
    font-size: 14px;
  }
  .checkout .summary .toggle_cart_mobile_view {
    display: flex;
    order: 1;
    margin-bottom: 20px;
    justify-content: space-between;
    color: #1d1d1f;
  }
  .checkout .summary .toggle_cart_mobile_view .toggler {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .checkout .summary .toggle_cart_mobile_view .toggler h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
  }
  .checkout .summary .toggle_cart_mobile_view .toggler img {
    height: 15px;
    transition: 0.2s all ease-in-out;
  }
  .checkout .summary .toggle_cart_mobile_view .toggler.active img {
    transform: rotate(180deg);
  }
  .checkout .summary .toggle_cart_mobile_view .total_price {
    font-size: 14px;
    font-weight: 500;
  }
  .checkout .summary .order_price {
    display: none;
  }
}
@media (max-width: 991px) {
  .checkout {
    flex-direction: column-reverse;
  }
  .checkout .cart_wrapper {
    padding-top: 0;
  }
  .checkout .bread {
    display: none;
  }
}

/*product */
.product {
  padding: 20px 0;
}
.product .bread {
  width: 100%;
}
.product .bread.mobile_view {
  display: none;
}
@media (max-width: 991px) {
  .product .bread.mobile_view {
    display: flex;
  }
}
.product .container-fluid {
  display: flex;
  gap: 135px;
  align-items: center;
}
@media (max-width: 1300px) {
  .product .container-fluid {
    gap: 40px;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .product .container-fluid {
    overflow: hidden;
  }
}
.product .product_gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 670px;
}
.product .product_gallery .main_image {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.product .product_gallery .main_image img {
  max-width: 100%;
  width: 100%;
}
.product .product_gallery .small_images_wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.product .product_gallery .small_images_wrapper .small_images_container {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
.product .product_gallery .small_images_wrapper .small_images_container img {
  width: 124px;
  height: 124px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}
@media (max-width: 1300px) {
  .product .product_gallery .small_images_wrapper .small_images_container img {
    width: 90px;
    height: 90px;
  }
}
.product .product_gallery .small_images_wrapper .small_images_container img.active {
  border-color: #1d1d1f;
  opacity: 1;
}
@media (max-width: 575px) {
  .product .product_gallery .small_images_wrapper .small_images_container {
    gap: 8px;
  }
  .product .product_gallery .small_images_wrapper .small_images_container img {
    width: 60px;
    height: 60px;
  }
}
.product .product_gallery .small_images_wrapper .nav_button {
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  height: 100%;
}
.product .product_gallery .small_images_wrapper .nav_button .btn_icon {
  position: relative;
  z-index: 100;
}
.product .product_gallery .small_images_wrapper .nav_button.prev {
  left: 0;
}
.product .product_gallery .small_images_wrapper .nav_button.prev .custom_overlay {
  width: 124px;
  height: 124px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 45.48%, #ffffff 75.81%);
  position: absolute;
  top: 0;
  left: -20px;
}
@media (max-width: 575px) {
  .product .product_gallery .small_images_wrapper .nav_button.prev .custom_overlay {
    width: 60px;
    height: 60px;
  }
}
.product .product_gallery .small_images_wrapper .nav_button.prev .btn_icon {
  transform: rotate(180deg);
}
.product .product_gallery .small_images_wrapper .nav_button.next {
  right: 0;
}
.product .product_gallery .small_images_wrapper .nav_button.next.overlay {
  padding: 0;
  border: none;
  background-color: transparent;
  right: -30px;
}
.product .product_gallery .small_images_wrapper .nav_button:disabled {
  display: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.product .product_gallery.mobile_view {
  display: none;
}
@media (max-width: 1300px) {
  .product .product_gallery {
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .product .product_gallery {
    display: none;
  }
  .product .product_gallery.mobile_view {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.product .product_info {
  max-width: 440px;
}
@media (max-width: 575px) {
  .product .product_info {
    max-width: unset;
    width: 100%;
  }
}
.product .product_info .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 25px;
}
.product .product_info .head h3 {
  font-size: 30px;
  color: #1d1d1f;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .product .product_info .head h3 {
    font-size: 20px;
  }
}
.product .product_info .head .mobile_view_price {
  display: none !important;
  font-weight: 500;
  color: #1d1d1f;
}
@media (max-width: 991px) {
  .product .product_info .head .mobile_view_price {
    display: block !important;
    white-space: nowrap;
    font-size: 18px;
  }
}
.product .product_info .rate {
  margin-bottom: 20px;
}
.product .product_info .price {
  font-size: 25px;
  color: #1d1d1f;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .product .product_info .price {
    display: none !important;
  }
}
.product .product_info .product_color {
  margin-bottom: 20px;
}
.product .product_info .product_color .inner {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.product .product_info .product_color .inner h6 {
  color: #1d1d1f;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.product .product_info .product_color .inner span {
  color: #1d1d1f;
  font-size: 16px;
}
.product .product_info .product_color .color_images {
  display: flex;
  gap: 8px;
}
.product .product_info .product_color .color_images .image_container {
  width: 55px;
  height: 55px;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 2px;
}
.product .product_info .product_color .color_images .image_container img {
  width: 100%;
  height: 100%;
}
.product .product_info .product_color .color_images .image_container.active {
  border-color: #1d1d1f;
}
.product .product_info .product_size .inner {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.product .product_info .product_size .inner h6 {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.product .product_info .product_size .inner span {
  color: #1d1d1f;
}
.product .product_info .product_size .sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.product .product_info .product_size .sizes .size_container {
  width: 65px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(29, 29, 31, 0.4);
  color: #1d1d1f;
}
.product .product_info .product_size .sizes .size_container.active {
  border-color: #1d1d1f;
}
@media (max-width: 575px) {
  .product .product_info .product_size .sizes {
    flex-wrap: wrap;
  }
}
.product .product_info .main_link {
  height: 50px;
  margin-bottom: 40px;
}
.product .product_info .main_link a {
  font-size: 25px;
}
.product .product_info .details h5 {
  font-size: 16px;
  padding-bottom: 1px;
  color: #1d1d1f;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #1d1d1f;
}
.product .product_info .details p {
  color: #1d1d1f;
  line-height: 19px;
  margin-bottom: 20px;
}
.product .product_info .details span {
  font-weight: 600;
  color: #1d1d1f;
  display: block;
  margin-bottom: 20px;
}
.product .product_info .details span:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .product .product_info .details h5 {
    font-size: 14px;
  }
  .product .product_info .details p {
    font-size: 14px;
  }
  .product .product_info .details span {
    font-size: 14px;
  }
}

.login {
  background-color: #fff2f2;
}
.login .container-fluid {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .container-fluid .login_wrapper {
  flex: 1;
  max-width: 500px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.login .container-fluid .login_wrapper h1 {
  font-size: 35px;
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
  font-weight: 500;
  color: #1d1d1f;
}
@media (max-width: 767px) {
  .login .container-fluid .login_wrapper h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.login .container-fluid .login_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login .container-fluid .login_wrapper form .form_control {
  margin-bottom: 0;
  position: relative;
}
.login .container-fluid .login_wrapper form .form_control input {
  width: 100%;
  border-radius: 0 !important;
  border: 1px solid rgba(29, 29, 31, 0.4);
  height: 55px;
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  outline: none;
  color: #1d1d1f;
}
.login .container-fluid .login_wrapper form .form_control input::-moz-placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 16px;
}
.login .container-fluid .login_wrapper form .form_control input::placeholder {
  color: rgba(29, 29, 31, 0.8);
  font-size: 16px;
}
@media (max-width: 767px) {
  .login .container-fluid .login_wrapper form .form_control input {
    font-size: 14px;
  }
  .login .container-fluid .login_wrapper form .form_control input::-moz-placeholder {
    font-size: 14px;
  }
  .login .container-fluid .login_wrapper form .form_control input::placeholder {
    font-size: 14px;
  }
}
.login .container-fluid .login_wrapper form .form_control .togglepassword {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.login .container-fluid .login_wrapper form .main_link {
  height: 60px;
}
.login .container-fluid .login_wrapper form .main_link button {
  font-size: 25px;
}
@media (max-width: 767px) {
  .login .container-fluid .login_wrapper form .main_link button {
    font-size: 20px;
  }
}
.login .container-fluid .login_wrapper form .create_account {
  font-size: 18px;
  color: #1d1d1f;
  margin: 0;
  text-align: center;
  font-weight: 500;
}
.login .container-fluid .login_wrapper form .create_account a {
  color: #feb9ba;
}
@media (max-width: 767px) {
  .login .container-fluid .login_wrapper form .create_account {
    font-size: 16px;
  }
}
.login .container-fluid .login_wrapper.register_wrapper {
  max-width: 850px;
}
.login .container-fluid .login_wrapper.register_wrapper form {
  display: grid;
  gap: 20px;
  max-width: 850px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.login .container-fluid .login_wrapper.register_wrapper form .main_link,
.login .container-fluid .login_wrapper.register_wrapper form .create_account {
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  .login .container-fluid .login_wrapper.register_wrapper form {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.user_profile {
  padding: 40px 0;
  background-color: #fff2f2;
}
.user_profile .wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .user_profile .wrapper {
    flex-direction: column;
  }
}
.user_profile .wrapper aside {
  padding: 20px;
  border-radius: 8px;
  flex: 0 1 calc(25% - 10px);
  background-color: #fff;
}
.user_profile .wrapper aside .user_data .profile_img {
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
}
@media (max-width: 767px) {
  .user_profile .wrapper aside .user_data .profile_img {
    width: 100px;
    height: 100px;
  }
}
.user_profile .wrapper aside .user_data .profile_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 4px;
  border: 3px solid #feb9ba;
}
.user_profile .wrapper aside .user_data .profile_name {
  text-align: center;
  margin-bottom: 20px;
}
.user_profile .wrapper aside .user_data .profile_name h4 {
  font-size: 20px;
  color: #1d1d1f;
  margin: 0;
}
.user_profile .wrapper aside .user_data .profile_name h4 span {
  font-size: 16px;
  display: block;
  color: rgba(29, 29, 31, 0.4);
}
@media (max-width: 767px) {
  .user_profile .wrapper aside .user_data .profile_name h4 {
    font-size: 18px;
  }
}
.user_profile .wrapper aside .user_data .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.user_profile .wrapper aside .user_data .menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px;
  color: #1d1d1f;
  transition: 0.2s all ease-in-out;
  font-weight: 500;
  color: #1d1d1f;
}
@media (max-width: 767px) {
  .user_profile .wrapper aside .user_data .menu li a {
    font-size: 14px;
  }
}
.user_profile .wrapper aside .user_data .menu li a.active {
  background-color: #feb9ba;
}
.user_profile .wrapper aside .user_data .menu li a:hover {
  gap: 13px;
}
.user_profile .wrapper aside .user_data .menu li a.active {
  background-color: #feb9ba;
  border-radius: 8px;
}
.user_profile .wrapper aside .user_data .menu li a img {
  width: 20px;
}
.user_profile .wrapper .profile_section {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
}
.user_profile .wrapper .profile_section .form_wrapper .profile_form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 767px) {
  .user_profile .wrapper .profile_section .form_wrapper .profile_form {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.user_profile .wrapper .profile_section .form_wrapper .profile_form .form_control label {
  display: block;
  font-size: 18px;
  color: #1d1d1f;
  margin-bottom: 12px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .user_profile .wrapper .profile_section .form_wrapper .profile_form .form_control label {
    font-size: 14px;
  }
}
.user_profile .wrapper .profile_section .form_wrapper .profile_form .form_control input {
  height: 60px;
  border: 1px solid rgba(29, 29, 31, 0.4);
  padding: 10px;
  font-size: 16px;
  color: #1d1d1f;
  border-radius: 2px;
  outline: none;
  width: 100%;
}
@media (max-width: 991px) {
  .user_profile .wrapper .profile_section .form_wrapper .profile_form .form_control input {
    font-size: 14px;
  }
}
.user_profile .wrapper .profile_section .form_wrapper .profile_form .form_control.last {
  grid-column: 1/-1;
}
.user_profile .wrapper .profile_section .form_wrapper .update {
  grid-column: 1/-1;
}
.user_profile .wrapper .profile_section .form_wrapper .update .main_link {
  height: 60px;
}
.user_profile .wrapper .profile_section .form_wrapper .update .main_link button {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .user_profile .wrapper .profile_section .form_wrapper .update .main_link button {
    font-size: 16px;
  }
}

.orders_section h1 {
  font-size: 20px;
  color: #1d1d1f;
  font-weight: 500;
  margin-bottom: 40px;
}
.orders_section .table_wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.orders_section .table_wrapper .table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
@media (max-width: 991px) {
  .orders_section .table_wrapper .table {
    min-width: 920px;
  }
}
.orders_section .table_wrapper .table thead th {
  vertical-align: bottom;
  border-bottom: none;
  font-size: 13px;
  color: #1d1d1f;
}

.table td,
.table th {
  width: auto;
  word-wrap: break-word;
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid rgba(29, 29, 31, 0.2);
  font-size: 13px;
  color: #1d1d1f;
}

.order_price_td {
  white-space: nowrap;
}

.order_status span {
  padding: 5px 10px;
  background: transparent;
  border-radius: 4px;
}
.order_status span.canceled {
  background-color: #dc3545;
  color: #fff;
}
.order_status span.complete {
  background-color: #28a745;
  color: #fff;
}
.order_status span.pending {
  background-color: #ffc107;
  color: #fff;
}/*# sourceMappingURL=style.css.map */
