@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* Placeholder Color */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #adc1cb !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #adc1cb !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #adc1cb !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #adc1cb !important;
}

body {
  font-size: 16px;
  font-weight: 600;
  color: #272727;
  letter-spacing: 1px;
  font-family: "Urbanist", sans-serif;
}

/* Font Color */
.text-bluewood {
  color: #272727 !important;
}
.text-aqua-blue {
  color: #26d2de !important;
}
.text-greenish-blue {
  color: #307479 !important;
}
.text-casel {
  color: #327176 !important;
}
.text-smalt-blue {
  color: #3b878c !important;
}
.text-apache {
  color: #cfc569 !important;
}
.text-sand {
  color: #d2a35c !important;
}
.text-bianca {
  color: #fbfaf1 !important;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
img {
  max-width: 100%;
}

.btn {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  min-width: 180px;
  color: #ffd88c;
  padding: 11px 15px;
  background: #000;
  border-radius: 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn:hover,
.btn:focus {
  color: #9f7334;
  background: #000;
  border: 1px solid #000;
}
ul li {
  list-style: none;
}

/* Header Styles */
header {
  width: 100%;
  z-index: 25;
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  background: rgb(255 255 255 / 80%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header.sticky {
  padding: 3px 0;
  background: #fff;
  -webkit-box-shadow: 0px 2px 10px #d7dee5;
  -moz-box-shadow: 0px 2px 10px #d7dee5;
  box-shadow: 0px 2px 10px #d7dee5;
}
header .navbar-expand-lg {
  padding: 0;
}
header .navbar-brand img {
  height: 90px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header.sticky .navbar-brand img {
  height: 50px;
}
header .navbar-expand-lg .navbar-nav .nav-link {
  font-size: 16px;
  color: #272727;
  font-weight: 600;
  padding: 4px 20px;
  position: relative;
  text-transform: uppercase;
}
header .navbar-expand-lg .navbar-nav .nav-link::before {
  content: "";
  width: 0px;
  height: 3px;
  position: absolute;
  bottom: -4px;
  left: 20px;
  background: #2f1100;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header .navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #9f7334;
}
header .navbar-expand-lg .navbar-nav .nav-link:hover::before {
  width: 30px;
}
header .navbar-expand-lg .navbar-nav .nav-link.active,
header .navbar-expand-lg .navbar-nav .nav-link.show {
  color: #9f7334;
  font-weight: 700;
}
header .shop-links,
.mobile-icon-links {
  height: 100%;
  display: flex;
  column-gap: 30px;
  align-items: center;
  justify-content: flex-end;
}
header .shop-links a,
.mobile-icon-links a {
  position: relative;
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
  -moz-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .shop-links a:hover,
.mobile-icon-links a:hover {
  opacity: 0.95;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
header .shop-links a img,
.mobile-icon-links a img {
  height: 20px;
  opacity: 0.65;
}
header .shop-links .cart-count,
.mobile-icon-links a .cart-count {
  position: absolute;
  top: -8px;
  right: -7px;
  width: 20px;
  height: 20px;
  display: flex;
  font-size: 10px;
  color: #351500;
  font-weight: 800;
  align-items: center;
  border-radius: 100%;
  background: #cba568cc;
  justify-content: center;
}

header .shop-links .wishlist-count,
.mobile-icon-links a .wishlist-count {
  position: absolute;
  top: -8px;
  right: -7px;
  width: 20px;
  height: 20px;
  display: flex;
  font-size: 10px;
  color: #351500;
  font-weight: 800;
  align-items: center;
  border-radius: 100%;
  background: #cba568cc;
  justify-content: center;
}
@media (max-width: 767.98px) {
  header .shop-links .wishlist-count,
.mobile-icon-links a .wishlist-count {

  right: -1px;

}
}

.search-modal .modal-dialog {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  max-width: 100%;
}
.search-modal .modal-content {
  width: 100%;
  height: 100vh;
  border-radius: 0;
  background: rgb(255 255 255 / 80%);
}
.search-modal .modal-header {
  border: none;
  padding: 30px 80px;
}
.search-modal .modal-header .btn-close {
  opacity: 1;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.search-modal .modal-body {
  margin: auto;
  width: 1000px;
  padding-top: 30px;
}
.search-modal .modal-body h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}
.search-modal .modal-body .form-control {
  border: none;
  padding: 10px 0;
  border-radius: 0;
  font-weight: 500;
  color: #272727;
  letter-spacing: 1px;
  background: transparent;
  border-bottom: 1px solid #d7dee5;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.modal-search-nodata {
  display: flex;
  padding: 40px 10px;
  align-items: center;
  justify-content: center;
}
.modal-search-result {
  overflow: auto;
  height: calc(100vh - 220px);
}
.modal-search-card {
  width: 100%;
  display: flex;
  margin: 15px 0;
  column-gap: 30px;
  position: relative;
  align-items: center;
}
.modal-search-img {
  width: 100px;
}
.modal-search-more {
  display: flex;
  padding-top: 30px;
  align-items: center;
  justify-content: center;
}
.modal-search-info h4 {
  color: #000;
  font-size: 17px;
  font-weight: 400;
}
.modal-search-info h6 {
  font-size: 16px;
  color: #2f1200;
  font-weight: 600;
}
.modal.right .modal-dialog {
  position: fixed;
  right: 0;
  margin: 0;
  height: 100%;
  min-width: 400px;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.4s ease-out;
  -moz-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
}
.modal.right.show .modal-dialog {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}
.slider-modal .modal-content {
  height: 100%;
  border-radius: 0;
  background: rgb(255 255 255 / 80%);
}
.slider-modal h1 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px !important;
}
.slider-modal .modal-header .btn-close {
  opacity: 1;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.slider-modal .modal-header {
  height: 51px;
  padding: 10px 15px;
}
.slider-modal .modal-body {
  overflow: auto;
  padding: 20px 15px;
  height: calc(100vh - 51px);
}
.login-form-wrapper form {
  row-gap: 25px;
  display: flex;
  flex-direction: column;
}
.login-form-wrapper .form-control {
  font-weight: 500;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.login-form-wrapper .form-floating > label {
  font-size: 15px;
}
.login-button .btn {
  width: 100%;
}
.login-consern {
  display: flex;
  row-gap: 10px;
  font-size: 14px;
  align-items: self-start;
  flex-direction: column;
  justify-content: space-between;
}
.login-consern .form-check,
.login-consern .form-check .form-check-input,
.login-consern .form-check label {
  cursor: pointer;
}
.login-consern a {
  color: #272727;
}
.login-consern a:hover {
  color: #2f1200;
}
.login-form-wrapper {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d7dee5;
}
.create-account-wrapper {
  display: flex;
  row-gap: 15px;
  align-items: center;
  padding-bottom: 20px;
  flex-direction: column;
  justify-content: center;
}
.create-account-wrapper img {
  width: 140px;
  opacity: 0.2;
}
.create-account-wrapper a {
  color: #9f7334;
}
.create-account-wrapper a:hover {
  color: #2f1200;
}
.cart-footer-wrapper .subtotal {
  display: flex;
  column-gap: 20px;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.cart-footer-btn .btn {
  margin-top: 10px;
}
.cart-footer-btn .btn-cart-link {
  color: #301200;
  background: #d7dee5;
  border-color: #d7dee5;
}
.cart-footer-wrapper .subtotal h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.cart-footer-wrapper .subtotal h6 {
  font-size: 18px;
  font-weight: 700;
}
.cart-modal .cart-list-wrapper {
  overflow: auto;
  height: calc(100vh - 260px);
}
.modal-search-card .remove-cart-item {
  position: absolute;
  right: 10px;
  top: 0;
}
.modal-search-card .remove-cart-item img {
  width: 10px;
  cursor: pointer;
}

.section {
  padding-top: 120px;
}
.common-head {
  text-align: center;
  padding-bottom: 30px;
}
.common-head h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}
.common-head h2 span {
  font-weight: 800;
}

.scroll-top-arrow,
.scroll-top-arrow:focus {
  background: #fff;
  font-size: 17px;
  line-height: 34px;
  box-shadow: 0 0 25px rgba(23, 23, 23, 0.25);
  display: none;
  height: 34px;
  width: 34px;
  padding: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  text-decoration: none;
  bottom: 15px;
  z-index: 1029;
  border-radius: 100%;
}
.scroll-top-arrow:hover {
  background: #fff;
  color: #828282;
  box-shadow: 0 0 30px rgba(23, 23, 23, 0.4);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.scroll-top-arrow img {
  width: 16px;
}
.whatsapp {
  position: fixed;
  z-index: 1;
  left: 15px;
  width: 40px;
  height: 40px;
  bottom: 15px;
}

footer {
  padding: 60px 0;
  text-align: center;
  background: #000;
}
.social a {
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 10px 15px;
  align-items: center;
  justify-content: center;
  background: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.social a::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fe1f49;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.social a:hover::before {
  top: 0;
}
.social a img {
  position: relative;
  filter: brightness(0) invert(1) sepia(1) saturate(100%) contrast(100%);
  -webkit-transition: filter 0.5s ease-in-out;
  -moz-transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
}
.enquiry-text {
  padding-top: 30px;
}
.enquiry-text h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}
.mail-phone {
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mail-phone a,
.mail-phone p {
  margin: 0;
  font-size: 36px;
  color: #ffd78a;
}
.mail-phone span {
  margin: 0;
  color: #fff;
  font-size: 36px;
}
.copy-rights {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding-top: 40px;
}
.mobile-icon-links {
  display: none;
}
.footer-logo-section {
  text-align: left;
}
.footer-logo-section a {
  display: block;
  text-align: left;
  margin-bottom: 40px;
}
.footer-logo-section .footer-para {
  font-size: 18px;
  color: #828282;
  font-weight: 400;
}
.footer-heading {
  color: #fff;
  display: block;
  font-size: 18px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
footer ul {
  padding-left: 0;
  list-style: none;
}
footer ul li {
  text-align: left;
  margin-bottom: 7px;
}
footer a,
.footer-address p {
  color: #828282;
  font-weight: 400;
  text-align: left;
}
.footer-address p {
  line-height: 30px;
}
.footer-info-icon {
  display: flex;
  color: #828282;
  font-weight: 400;
  column-gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}
.footer-info-icon img {
  width: 30px;
}
.social-icon-footer ul {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.social-icon-footer ul li a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon-footer ul li a img {
  max-height: 100%;
}
.copyright {
  display: flex;
  text-align: left;
  align-items: center;
}
.copyright p {
  margin: 0;
  color: #828282;
  font-weight: 400;
}
.footer-payment {
  text-align: right;
}
.copyright,
.footer-payment {
  margin-top: 60px;
}
footer li a:hover {
  color: #9f7334;
}

/* Media Query */
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* X-Large devices (large desktops, less than 1300px) */
@media (max-width: 1299.98px) {
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .mail-phone {
    gap: 20px;
  }
  .mail-phone a,
  .mail-phone p {
    font-size: 30px;
  }
  .footer-address,
  .footer-social-links {
    margin-top: 40px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 65px;
  }
  .mobile-icon-links {
    position: fixed;
    bottom: 0;
    z-index: 15;
    width: 100%;
    height: auto;
    display: flex;
    background: #fff;
    padding: 7px 15px;
    padding-top: 15px;
    -webkit-box-shadow: 0px 2px 10px #d7dee5;
    -moz-box-shadow: 0px 2px 10px #d7dee5;
    box-shadow: 0px 2px 10px #d7dee5;
  }
  .mobile-icon-links .shop-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-icon-links .shop-links a {
    row-gap: 5px;
    display: flex;
    font-size: 11px;
    color: #272727;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .shop-items-wrapper,
  .mail-phone span {
    display: none;
  }
  .whatsapp,
  .scroll-top-arrow {
    bottom: 100px;
  }
  .mail-phone {
    gap: 10px;
    flex-direction: column;
  }
  .navbar-nav .nav-item {
    opacity: 0;
  }
  .navbar-toggler {
    color: #000;
    background: #fff;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
  }
  header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }
  .section {
    padding-top: 80px;
  }
  .search-modal .modal-body {
    width: 100%;
  }
  .search-modal .modal-header {
    padding: 30px;
  }
  .search-modal .modal-body {
    padding-top: 0;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .mail-phone a,
  .mail-phone p {
    line-height: 30px;
    word-break: break-all;
  }
  .copyright,
  .footer-payment {
    text-align: center;
  }
  .footer-payment {
    margin-top: 20px;
  }
  .copyright p {
    width: 100%;
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  header .navbar-brand img {
    height: 84px;
  }
  .mail-phone {
    gap: 20px;
  }
  .mail-phone a {
    max-width: 280px;
  }
  .modal.right .modal-dialog {
    min-width: 320px;
  }
  .modal-search-img {
    width: 70px;
  }
  .footer-links {
    margin-top: 40px;
  }
  .search-modal .modal-dialog {
    width: 300px;
  }
  .search-modal .modal-body h2 {
    font-size: 22px;
  }
  .modal-search-info h4 {
    font-size: 16px;
    font-weight: 500;
  }
}
