@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Dancing+Script&family=Inter:wght@100;200;300;400&family=Karla:wght@200;300;400;500&family=Ms+Madi&family=Poppins:wght@100;200;300;400;500;600&family=Prata&family=Roboto:wght@400;500&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

html {
  font-family: "Karla", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  padding: 18px 24px;
  cursor: pointer;
}

.overplay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none;
}

.show-overplay {
  display: initial;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 10px;
}

.container-product {
  width: 100%;
  max-width: 980px;
  padding-inline: 10px;
  margin: 0 auto;
}

.nav {
  height: 70px;
  align-items: center;
  position: relative;
  display: flex;
  justify-content: space-around;
}
.nav-logo {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #1d1f2e;
}
.nav-menu {
  position: absolute;
  width: 100%;
  top: 60px;
  gap: 20px;
  background-color: #fff;
  transition: top 0.3s ease-in-out;
  opacity: 0;
  padding: 30px;
  z-index: 10;
}
.nav-menu-item {
  margin-bottom: 20px;
  text-align: center;
}
.nav-menu-link {
  position: relative;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.5;
  color: #1d1f2e;
}
.nav-menu-link:hover {
  opacity: 0.8;
}
.nav-menu-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 4px;
  left: 0;
  bottom: -4px;
  margin-top: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.24s ease;
  background-color: #a25f4b;
}
.nav-menu-link:hover::before {
  transform: scaleX(1);
}
.nav-text {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-hamberger {
  position: relative;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background-color: #1d1f2e;
  cursor: pointer;
  opacity: 0.5;
}
.nav-hamberger:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  border-radius: inherit;
  background-color: #1d1f2e;
  top: 8px;
}
.nav-hamberger::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  border-radius: inherit;
  background-color: #1d1f2e;
  top: -8px;
  right: 0;
}

.box-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #a25f4b;
  border-radius: 50%;
}

.number {
  font-size: 16px;
  color: #fff;
}

.open-menu {
  top: 70px;
  opacity: 1;
}

@media screen and (min-width: 991px) {
  .nav {
    display: flex;
    justify-content: center;
    gap: 76px;
  }
  .nav-menu {
    position: initial;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    width: unset;
    padding: unset;
  }
  .nav-menu-item {
    margin: unset;
  }
  .nav-hamberger {
    display: none;
  }
}
.menu {
  position: relative;
  margin: 100px 0px 125px 0px;
}
.menu-desc {
  text-align: center;
}
.menu-title {
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}
.menu-text {
  color: #1d1f2e;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
.menu-btn {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.menu-btn-item {
  outline: none;
  background-color: transparent;
  width: 100%;
  display: block;
  border: 1px solid #ececed;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s linear;
  color: rgba(162, 95, 75, 0.6);
}
.menu-btn-item:hover {
  color: #a25f4b;
  border: 1px solid #a25f4b;
}

.active-btn {
  color: #a25f4b;
  border: 1px solid #a25f4b;
}

.pd-btn {
  padding: 10px 16px;
}

.hide {
  display: none;
}

@media screen and (min-width: 767px) {
  .menu-btn {
    flex-direction: row;
  }
  .menu-btn-item {
    width: calc(20% - 10px);
  }
}
@media screen and (min-width: 991px) {
  .menu-btn {
    flex-direction: row;
  }
  .menu-btn-item {
    width: calc(20% - 10px);
  }
}
.cart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 30px 40px;
  background-color: #1d1f2e;
  z-index: 1001;
  transition: 0.3s;
}
.cart-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid hsla(0deg, 0%, 100%, 0.7);
  padding-bottom: 20px;
  color: #fff;
  cursor: pointer;
  width: 100%;
}
.cart-box2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-title {
  color: hsla(0deg, 0%, 100%, 0.7);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-lose {
  font-size: 20px;
  cursor: pointer;
}
.cart-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cart-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  gap: 20px;
}
.cart-img {
  height: 80px;
  width: 80px;
}
.cart-quantity {
  color: #fff;
  padding: 14px 24px;
}
.cart-name {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.cart-price {
  color: #fff;
  line-height: 28px;
}
.cart-delete {
  transition: color 400ms ease;
  color: #fff;
  opacity: 0.7;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}
.cart-delete:hover {
  color: hsla(0deg, 0%, 100%, 0.3);
}
.cart-total {
  color: #fff;
}
.cart-total-title {
  font-size: 20px;
  line-height: 32px;
  padding: 20px 0px;
  border-top: 1px solid hsla(0deg, 0%, 100%, 0.7);
}
.cart-btn {
  display: inline-block;
  width: 100%;
  color: #1d1f2e;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 400ms ease;
}
.cart-btn:hover {
  opacity: 0.9;
}

.cart-active {
  right: 0;
}

.title-center {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-block: 30px;
}

.slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 100px;
}
.slide-desc {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.slide-text {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
}
.slide-content {
  color: #1d1f2e;
}
.slide-btn {
  margin: 15px;
  padding: 18px 24px;
  background-color: #1d1f2e;
  color: #fff;
  text-transform: uppercase;
}
.slide-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.slide-dot-item {
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #1d1f2e;
}
.slide-arrow {
  display: none;
}

.active-dot {
  background-color: #1d1f2e;
}

.hide-slider {
  display: none;
}

@media screen and (min-width: 767px) {
  .slide-btn {
    width: 212px;
    text-align: left;
    margin-top: 15px;
  }
}
@media screen and (min-width: 991px) {
  .hide-slider {
    display: none;
  }

  .cart {
    width: 480px;
  }

  .slide {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 80px;
    transition: all 0.3s linear;
  }
  .slide-img {
    width: calc(50% - 80px);
    height: 400px;
  }
  .slide-desc {
    width: calc(50% - 80px);
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .slide-btn {
    margin-left: 0;
    width: 212px;
  }
  .slide .title-center {
    text-align: left;
  }
  .slide-arrow {
    display: initial;
    margin-top: 20px;
    cursor: pointer;
  }
  .slide-arrow > span {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #1d1f2e;
    opacity: 0.4;
    transition: all 0.25s linear;
  }
  .slide-arrow > span:hover {
    opacity: 1;
  }
  .slide-next {
    right: 0;
  }
  .slide-prev {
    left: 0;
  }
}
.product {
  overflow: hidden;
}
.product-listss {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product-item {
  width: 100%;
  margin-bottom: 30px;
}
.product-img {
  position: relative;
  height: 380px;
}
.product-img-add {
  position: absolute;
  left: 50%;
  bottom: -30px;
  padding: 18px 24px;
  width: 95%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.2s ease;
  color: #1d1f2e;
  opacity: 0;
  transition-delay: 0.1s;
  text-transform: uppercase;
  font-weight: 500;
}
.product-img::before {
  transition: all 0.2s ease;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}
.product-img:hover::before {
  background-image: linear-gradient(180deg, rgba(29, 31, 46, 0.1), rgba(29, 31, 46, 0.1));
}
.product-img:hover .product-img-add {
  bottom: -20px;
  opacity: 1;
}
.product-desc {
  text-align: center;
  margin-top: 10px;
}
.product-name {
  color: #1d1f2e;
  font-size: 18px;
  font-weight: 500;
}
.product-price {
  color: #a25f4b;
}

@media screen and (min-width: 767px) {
  .product-item {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 991px) {
  .product-item {
    width: calc(33.3333333333% - 20px);
  }
}
.signup {
  width: 100%;
  position: relative;
  background-color: #1d1f2e;
}
.signup-box {
  padding: 80px 20px 85px;
  text-align: center;
}
.signup-more {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.signup-title {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 50px;
  color: #fff;
}
.signup-input > input {
  caret-color: #fff;
  display: block;
  width: 100%;
  border: 1px solid #333;
  padding: 18px 24px;
  background-color: #1d1f2e;
  color: #cccccc;
  transition: all 0.3s linear;
}
.signup-input > input:hover {
  border: 1px solid #fafafa;
}
.signup-input:focus {
  border: 1px solid #fafafa;
}
.signup-btn {
  margin-top: 10px;
  width: 100%;
  background-color: #fff;
  color: #1d1f2e;
  font-size: 18px;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

@media screen and (min-width: 992px) {
  .signup-input {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .signup-input > input {
    width: 36%;
  }
  .signup-btn {
    text-align: center;
    margin-top: unset;
    width: 12%;
  }
}
.infor {
  margin-bottom: 100px;
}
.infor-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.infor-title {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.infor-text {
  padding: 20px 0px 65px 0px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #1d1f2e;
  opacity: 0.8;
}
.infor-product {
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.infor-product-content {
  list-style: disc;
  color: #1d1f2e;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

@media screen and (min-width: 991px) {
  .infor-box {
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    gap: 80px;
  }
  .infor-desc {
    width: calc(50% - 20px);
  }
  .infor-product-text {
    width: calc(50% - 80px);
  }
}
.footer {
  margin: 100px 0px;
}
.footer-box {
  text-align: center;
}
.footer-col {
  margin-bottom: 36px;
}
.footer-title {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #1d1f2e;
  margin-bottom: 36px;
}
.footer-link {
  padding-bottom: 10px;
  color: #1d1f2e;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  opacity: 0.8;
  transition: all 0.2s linear;
}
.footer-link:hover {
  color: #a25f4b;
}
.footer-email {
  font-size: 24px;
  font-weight: 400;
}
.footer-since {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 500;
  padding-top: 36px;
}
.footer-since:hover {
  color: #a25f4b;
}

.fz {
  font-size: 32px;
}

@media screen and (min-width: 992px) {
  .footer-box {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}

/*# sourceMappingURL=outmenu.css.map */
