@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.1);
  z-index: 20;
  display: none;
}

.show-overplay {
  display: initial;
}

#root {
  position: relative;
}

.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: 100px;
}

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

.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;
  z-index: 1000;
}

.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: 1;
}

.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;
}

.active-nav {
  opacity: 1;
}

.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;
    z-index: 10;
    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;
  }
}
.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-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;
  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;
}

@media screen and (min-width: 991px) {
  .cart {
    width: 480px;
  }

  .banner-img {
    margin: 0 auto;
    width: 90%;
    height: 580px;
  }

  .banner-infor {
    width: 46%;
    margin: 120px auto 100px auto;
  }
}
.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: 100px;
}

.featured-lists {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-product {
  width: calc(100% - 20px);
}

.featured-img {
  cursor: pointer;
  position: relative;
  height: 380px;
}

.featured-img-sale {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 8px 16px;
  background-color: #fff;
  color: #a25f4b;
}

.featured-img-add {
  position: absolute;
  left: 50%;
  width: 95%;
  transform: translate(-50%, 0);
  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;
}

.featured-img::before {
  transition: all 0.2s linear;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}

.featured-img:hover::before {
  background-image: linear-gradient(180deg, rgba(29, 31, 46, 0.1), rgba(29, 31, 46, 0.1));
}

.featured-img:hover .featured-img-add {
  bottom: -20px;
  opacity: 1;
}

.featured-desc {
  margin: 35px 0 65px 0;
  text-align: center;
}

.featured-name {
  font-size: 18px;
  font-weight: 500;
}

.featured-price {
  color: #a25f4b;
}

.blog {
  position: relative;
  width: 100%;
  background-color: #f6f6f6;
}

.blog-wrapper {
  display: flex;
  flex-direction: column;
}

.blog-header {
  text-align: center;
  padding-top: 100px;
}

.blog-title {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}

.blog-content {
  color: rgba(29, 31, 46, 0.7);
  font-size: 18px;
  line-height: 30px;
}

.blog-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 40px;
}

.blog-img {
  position: relative;
  height: 300px;
}

.blog-img-read {
  position: absolute;
  transform: translate(-50%, 0);
  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;
}

.blog-img::before {
  transition: all 0.2s ease;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}

.blog-img:hover::before {
  background-image: linear-gradient(180deg, rgba(29, 31, 46, 0.1), rgba(29, 31, 46, 0.1));
}

.blog-img:hover .blog-img-read {
  bottom: -20px;
  opacity: 1;
}

.blog-desc {
  padding-top: 25px;
  flex: 1;
  margin: 0 auto;
  text-align: center;
}

.blog-blog {
  display: block;
  margin-block: 10px;
  color: #1d1f2e;
  font-size: 20px;
  line-height: 32px;
  transition: 0.2s linear;
  cursor: pointer;
}

.blog-text {
  color: rgba(29, 31, 46, 0.7);
}

.blog-date {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 10px;
}

.blog-title-secound {
  display: block;
  margin-bottom: 10px;
  color: #1d1f2e;
  font-size: 20px;
  line-height: 32px;
}

@media screen and (min-width: 768px) {
  .blog-product {
    flex-direction: column;
    width: calc(100% - 20px);
  }

  .blog-header {
    width: 50%;
    margin: 0 auto;
  }

  .blog-desc {
    margin-left: 0;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .blog-product {
    flex-direction: column;
    width: calc(50% - 20px);
  }

  .blog-header {
    width: 50%;
    margin: 0 auto;
  }

  .blog-desc {
    text-align: left;
  }
}
.last-header {
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  padding-bottom: 26px;
  text-align: center;
  border-bottom: 1px solid #ececed;
}

.last-wrapper {
  display: flex;
  flex-direction: column;
}

.last-header {
  text-align: center;
  padding-top: 100px;
}

.last-title {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}

.last-content {
  color: rgba(29, 31, 46, 0.7);
  font-size: 18px;
  line-height: 30px;
}

.last-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.last-product {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.last-img {
  width: 100%;
  position: relative;
  height: 300px;
}

.last-img-read {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  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;
}

.last-img::before {
  transition: all 0.2s ease;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}

.last-img:hover::before {
  background-image: linear-gradient(180deg, rgba(29, 31, 46, 0.1), rgba(29, 31, 46, 0.1));
}

.last-img:hover .last-img-read {
  bottom: -20px;
  opacity: 1;
}

.last-desc {
  padding-top: 25px;
  flex: 1;
  text-align: center;
}

.last-blog {
  display: block;
  margin-block: 10px;
  color: #1d1f2e;
  font-size: 20px;
  line-height: 32px;
  transition: 0.2s linear;
  cursor: pointer;
}

.last-text {
  color: rgba(29, 31, 46, 0.7);
}

.last-date {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 10px;
}

.last-title-secound {
  display: block;
  margin-bottom: 10px;
  color: #1d1f2e;
  font-size: 20px;
  line-height: 32px;
}

.about-header {
  text-align: center;
}

.about-title {
  margin-top: 20px;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1d1f2e;
}

.about-text {
  margin-block: 20px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  opacity: 0.6;
}

.about-hef {
  font-size: 16px;
  line-height: 20px;
  color: #a25f4b;
}

.about-category {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.about-category > a {
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  padding: 10px 0px 10px 20px;
  color: rgba(29, 31, 46, 0.7);
  border-left: 3px solid #eccfc6;
  transition: all 0.2s linear;
}

.about-category > a:hover {
  border-left: 3px solid #a25f4b;
  color: #1d1f2e;
  background-color: #f1e4df;
}

.about-author {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-author-box {
  display: flex;
  align-items: center;
  padding-left: 20px;
  gap: 25px;
  border-left: 3px solid #eccfc6;
  transition: all 0.25s linear;
}

.about-author-box > a > img {
  width: 60px;
  height: 60px;
}

.about-author-box > a {
  display: block;
  color: rgba(29, 31, 46, 0.7);
}

.about-author-box:hover {
  border-left: 3px solid #a25f4b;
  color: #1d1f2e;
  background-color: #f1e4df;
  cursor: pointer;
}

.about-something {
  margin-block: 100px;
  text-align: center;
}

.about-something-content {
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 35px;
  border-top: 1px none #ececed;
  border-bottom: 2px solid rgba(162, 95, 75, 0.2);
  border-left: 2px solid rgba(162, 95, 75, 0.2);
  background-color: transparent;
  color: #a25f4b;
  font-size: 20px;
  line-height: 32px;
}

.about-something-author {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .last-list {
    width: 100%;
  }

  .last-product {
    flex-direction: row;
    width: calc(100% - 20px);
  }

  .last-img {
    height: 210px;
    width: 260px;
  }

  .last-header {
    padding-left: 10px;
    text-align: left;
  }

  .last-desc {
    flex-direction: row;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .last-wrapper {
    flex-direction: row;
  }

  .last-list {
    width: 70%;
  }

  .last-product {
    flex-direction: row;
    width: calc(100% - 20px);
  }

  .last-header {
    text-align: left;
    border-bottom: 1px solid #ececed;
  }

  .last-desc {
    text-align: left;
  }

  .about {
    width: 30%;
  }

  .about-header {
    text-align: left;
  }
}
.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%;
  }
}
.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=blog.css.map */
/*# sourceMappingURL=blog.css.map */

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