/* Banner  */
.banner-slider {
  border-radius: 0;
  overflow: hidden;
  margin: 0;
}

.banner-slider .slick-arrow {
  opacity: 1;
}

.service-card .info .button-option.full {
  grid-template-columns: repeat(1, 1fr);
}

.banner-slider .slick-arrow {
  background: transparent !important;
  width: 30px;
  height: 118px;
  opacity: 1;
  border: 0;
  border-radius: 0;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.banner-slider .slick-arrow span {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/> </svg>");
  background-repeat: no-repeat;
  background-position-x: 0%;
  background-position-y: 49%;
  width: 100%;
  height: 100%;
  z-index: 9;
  position: absolute;
  display: block;
  clear: both;
  overflow: hidden;
  left: 0px;
  top: 0;
}

.banner-slider .slick-next span {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/> </svg>");
  left: 10px;
}

.banner-slider .slick-prev {
  left: -1px;
}

.banner-slider .slick-next {
  right: -1px;
}

.banner-slider .item {
  position: relative;
}

.banner-slider .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.banner-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider .item .text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  width: 1000px;
  color: #fff;
  text-align: center;
  max-width: 100%;
  padding: 0 15px;
  opacity: 0;
  transition: all 1.5s ease;
  z-index: 2;
}

.banner-slider .item .text-content .bade {
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.banner-slider .item .text-content h2 {
  font-size: clamp(28px, 4vw, 80px);
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-family-heading);
}

.banner-slider .item .text-content p {
  font-size: 20px;
  margin-bottom: 50px;
}

.banner-slider .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
}

.banner-slider img {
  width: 100%;
  transform: scale(1.3); /* ban Ã„â€˜Ã¡ÂºÂ§u phÃƒÂ³ng to */
  transition: transform 2s ease;
}

.banner-slider .slick-active img {
  transform: scale(1); /* thu vÃ¡Â»Â bÃƒÂ¬nh thÃ†Â°Ã¡Â»Âng */
}

.banner-slider .slick-active .text-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.banner-slider .item {
  height: 100vh;
  min-height: 500px;
}

@media (max-width: 768px) { 
  .banner .item {
    height: 50vh;
  }
}

@media (max-width: 575px) {
    .banner-slider .item .text-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* Cam kÃ¡ÂºÂ¿t  */
.awe-section-3 {
  padding: 30px 0;
}

.policies-item {
  margin-bottom: 10px;
}

.policies-item:not(:last-child) .inner {
  border-right: 0;
}

.policies-item .inner {
  border: 1px solid #eee;
  padding: 20px;
}

.policies-item .icon-wrap {
  transform: rotateX(0deg) scale(1);
  transition: all linear 0.4s;
  margin-bottom: 15px;
}

.policies-item .icon-wrap img {
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  display: inline-block;
}

.policies-item .media-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  display: block;
  margin-bottom: 6px;
}

.policies-item .media-body p {
  font-size: 14px;
  color: #6c757d;
}

.policies-item:hover .icon-wrap {
  animation: rotateX 1s forwards;
  -webkit-animation: rotateX 1s forwards;
}

@keyframes rotateX {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(360deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

@media (max-width: 575px) {
  .policies-item .inner {
    justify-content: center;
    border: 0;
    text-align: center;
  }

  .awe-section-3 {
    padding: 10px 0;
  }
}

/* Category home  */
.category-home {
  padding: 40px 0 50px;
  position: relative;
}

.category-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.featured-news .section-header {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: end;
  gap: 40px;
  margin-bottom: 35px;
}

.section-header .header-label {
  /* display: flex;
  align-items: center;
  gap: 8px; */
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header .header-label svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.section-header .header-label svg path {
  stroke: currentColor;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #000;
  font-family: var(--font-family-heading);
}

.category-home .section-header .header-right,
.featured-news .section-header .header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.title-page-des {
  font-size: 16px;
  line-height: 1.6;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(0deg,rgba(231, 156, 22, 1) 0%, rgba(255, 228, 160, 1) 100%);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: .3s;
  cursor: pointer;
  border: 1px solid #e79c16;
}

.btn-view-all:hover {
  background: #FFF;
  color: #000000;
  border: 1px solid #000;
}

.btn-view-all .arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-view-all .arrow-icon svg path {
  stroke: #000000;
}

.btn-view-all:hover .arrow-icon {
  background: #000000;
}

.btn-view-all:hover .arrow-icon path {
  stroke: #FFF;
}

.see-more-mobile {
  display: none;
}

/* --- Projects grid --- */
.category-home .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.category-home .section-header h2 {
  color: #FFF;
}

.category-home .projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.category-home .projects-grid .card {
  position: relative;
  display: block;
  color: #FFF;
}

.category-home .projects-grid .card-img {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

/* .category-home .projects-grid .card-large {
  grid-row: 1 / 3;
} */

.category-home .projects-grid .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.category-home .projects-grid .card:hover img {
  transform: scale(1.04);
}

.category-home .projects-grid .card-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay on all cards */
.category-home .projects-grid .card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: 20px;
}

/* Card content */
.projects-grid .card-content {
  max-width: 90%;
}

.projects-grid .card-large .card-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.projects-grid .card-large .card-content .desc {
  font-size: 16px;
  line-height: 1.6;
}

.projects-grid .card-small .card-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.projects-grid .card-small .card-content .desc {
  font-size: 16px;
  line-height: 1.6;
}

.projects-grid .card-arrow {
  width: 70px;
  height: 70px;
  background: #000;
  position: absolute;
  bottom: 0px;
  right: 0px;
  border-radius: 50%;
  display: flex;
  align-items: end;
  justify-content: end;
  border-radius: 40px 0px 0px 0px;
}

.projects-grid .card-arrow-inner {
  background-color: #000000;
  color: #FFF;
  display: flex;
  padding: 18px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.projects-grid .card-arrow-right {
  top: -40px;
  width: 25px;
  height: 40px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 0px 20px 0px 0px #000;
  position: absolute;
  right: 0;
}

.projects-grid .card-arrow-left {
  bottom: 0px;
  width: 40px;
  height: 25px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 20px 0px 0px 0px #000;
  position: absolute;
  left: -40px;
}

.projects-grid .card-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
}

@media (max-width: 900px) {
  .category-home .section-header {
    flex-direction: column;
    gap: 24px;
  }

  .category-home .section-header .header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .category-home .projects-grid {
    grid-template-columns: 1fr;
  }

  .category-home .projects-grid .card-large {
    grid-row: auto;
    min-height: 320px;
  }

  .category-home .projects-grid .card-small {
    min-height: 220px;
  }
}

@media (max-width: 575px) {
  .projects-grid .card-large .card-content h3 {
    font-size: 20px;
  }

  .projects-grid .card-large .card-content .desc {
    font-size: 14px;
  }

  .category-home {
    padding: 30px 0;
  }

  .projects-grid .card-small .card-content h3 {
    font-size: 20px;
  }

  .projects-grid .card-small .card-content .desc {
    font-size: 14px;
  }
}

/* Best seller  */
.best-seller {
  background: #ede8dc;
  border-radius: 20px;
  padding: 60px 0px;
}

.best-seller .section-header {
  display: grid;
  grid-template-columns: auto max-content;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.best-seller .section-header h2 {
  color: #000;
}

.best-seller .section-header .header-label {
  justify-content: center;
}

.best-seller-slider .slick-slide,
.best-seller-sliderrr .slick-slide {
  margin: 0 10px 5px;
}

.best-seller-slider .slick-list,
.best-seller-sliderrr .slick-list {
  margin: 0 -10px;
}

.service-card {
  border-radius: 20px;
  position: relative;
}

.service-card .card-img {
  padding-bottom: 100%;
  border-radius: 12px;
}

.service-card .card-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 47px;
  height: 42px;
  background: #FFF;
  display: flex;
  justify-content: end;
  z-index: 2;
  border-radius: 0px 0px 0px 24px;
}

.service-card .card-arrow-mid {
  background-color: #d49c45;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 2;
}

.service-card .card-arrow-top {
  width: 36px;
  height: 20px;
  position: absolute;
  top: 0;
  left: -36px;
  border-radius: 0px 20px 0px 0px;
  box-shadow: 20px 0px 0px 0px #FFFFFF;
}

.service-card .card-arrow-bot {
  width: 20px;
  height: 36px;
  position: absolute;
  bottom: -36px;
  right: 0;
  border-radius: 0px 20px 0px 0px;
  box-shadow: 0px -20px 0px 0px #FFFFFF;
}

.service-card .card-arrow svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
}

/* Card body */
.service-card .card-name {
  /* position: absolute;
  z-index: 1;
  bottom: 0;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px 20px 0px 0px;
  padding: 10px 20px 0 20px;
  background-color: #FFF;
  text-align: center; */

}

/* .service-card .card-name::before {
  content: '';
  width: 30px;
  height: 12px;
  display: block;
  position: absolute;
  bottom: 0;
  left: -30px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 20px 0px 0px 0px #FFFFFF;
}

.service-card .card-name::after {
  content: '';
  width: 30px;
  height: 12px;
  display: block;
  position: absolute;
  bottom: 0;
  right: -30px;
  border-radius: 0px 0px 0px 20px;
  box-shadow: -20px 0px 0px 0px #FFFFFF;
} */

.service-card .card-name h3 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.service-card .info {
  padding: 10px 0;
  text-align: left;
}

.service-card .info .price-old {
  color: #9c9b9b;
  font-size: 14px;
  font-weight: 400;
}

.service-card .info .price {
  color: #820f1e;
  font-size: 18px;
  font-weight: 600;
}

.service-card .info .price-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
  color: #000000;
  font-weight: bold;
  font-size: 16px;
}

.service-card .info .price-wrap span {
  color: #444;
  font-weight: 400;
}

.service-card .info .button-option {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.service-card .info .button-option .btn-option {
  font-size: 14px;
  color: #666;
  padding: 0;
  border-radius: 5px;
  display: flex;
  font-weight: 500;
  align-items: center;
  gap: 5px;
}

.service-card .info .button-option .btn-option:hover {
  color: #000000;
}

.service-card .info .button-option .btn-option svg {
  width: 17px;
  height: 17px;
}

.service-card .info .button-option .btn-option svg path {
  stroke: currentColor;
}

.service-card .info .button-option .buy-now {
  background-color: #000000;
  color: #FFF;
  display: none;
}

.service-card .info .button-option .buy-now:hover {
  background-color: #e4a452;
}

.service-card .info .button-lienhe {
  text-align: center;
  margin-top: 10px;
}

.service-card .info .button-lienhe a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #cf0000;
  color: #FFF;
  border-radius: 5px;
}

.service-card .discount {
  background: linear-gradient(0deg,rgba(231, 156, 22, 1) 0%, rgba(255, 228, 160, 1) 100%);
  border-radius: 0px 30px 30px 0px;
  padding: 5px 14px;
  color: #000;
  position: absolute;
  left: 0px;
  top: 10px;
  text-align: center;
}

.service-card .hethang {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  text-align: center;
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFF;
}

.best-seller .image {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}

@media (max-width: 575px) {
  .best-seller {
    padding: 25px 0px;
  }

  .service-card .card-name h3 {
    font-size: 18px;

  }

  .service-card .info .price {
    font-size: 18px;
  }

  .best-seller .section-header {
    grid-template-columns: 1fr;
  }

  .best-seller .image {
    margin-bottom: 15px;
  }

}

/* Why choose */
.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 60px 0px;
}

.why-choose-inner .title-page-des {
  margin: 20px 0;
}

.why-choose .left-col .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-choose .left-col .feature-item {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 5px;
}

.why-choose .left-col .feature-item .feat-icon {
  width: 42px;
  height: 42px;
}

.why-choose .left-col .feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}

.why-choose .left-col .feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.why-choose .right-col {
  padding-right: 20px;
}

.why-choose .right-col-inner {
  position: relative;
}

.why-choose .right-col .bg-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 88%;
  height: 88%;
  background: #d49c45;
  border-radius: 20px;
  z-index: 0;
}

.why-choose .right-col .main-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}


.why-choose .right-col .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Timely Delivery badge */
.why-choose .right-col .badge-delivery {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: max-content;
  padding: 0 20px 20px 0;
  background-color: #FFF;
  border-radius: 0px 0px 20px 0px;
}

.why-choose .right-col .badge-delivery::before {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  border-radius: 20px 0px 0px 0px;
  box-shadow: -20px 0px 0px 0px #FFFFFF;
}

.why-choose .right-col .badge-delivery::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 40px;
  height: 40px;
  border-radius: 20px 0px 0px 0px;
  box-shadow: 0px -20px 0px 0px #FFFFFF;
}

.why-choose .right-col .badge-delivery .badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose .right-col .badge-delivery .badge-label {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 0px 50px;
  }
}

@media (max-width: 575px) {
  .why-choose .left-col .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-choose-inner .title-page-des {
    margin: 10px 0 20px;
  }
}

/* review customer  */
.customer-review {
  margin: 30px 0 150px;
  position: relative;
  border-radius: 20px;
  min-height: 380px;
  height: 400px;
  text-align: center;
}

.customer-review .inner {
  transform: translateY(52px);
}

.customer-review .section-header {
  color: #FFF;
}

.customer-review .section-header h2 {
  margin-bottom: 15px !important;
  color: #FFF;
}

.customer-review .btn-view-all {
  margin-top: 40px;
}

.customer-review::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 14, 4, 0.62), rgba(20, 14, 4, 0.62));
  z-index: 0;
  border-radius: 20px;
}

.cards-strip-slider .slick-slide {
  margin: 0 10px;
}

.cards-strip-slider .slick-list {
  margin: 0 -10px;
}

.cards-strip-slider {
  margin-top: 40px;
}

.cards-strip-slider .info-card {
  border-radius: 18px;
  overflow: hidden;
  background: #d49c45;
}

.cards-strip-slider .info-card .card-photo {
  padding-bottom: 55%;
}

.cards-strip-slider .info-card .card-body {
  padding: 20px;
  color: #FFF;
}

.cards-strip-slider .info-card .card-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cards-strip-slider .info-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 67px;
}

@media (max-width: 768px) {
  .customer-review {
    height: auto;
    margin: 30px 0 70px;
  }

  .cards-strip-slider {
    margin-top: 25px;
  }
}

/* FAQ  */
.faq-wrap {
  padding: 45px 0;
}

.faq-wrap .inner {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.7fr;
  gap: 36px;
}

.faq-wrap .title-page-des {
  margin: 20px 0;
}

/* Accordion */
.faq-wrap .accordion-item {
  background: #f5f0e8;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}

.faq-wrap .accordion-item.open {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.faq-wrap .accordion-item .acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.faq-wrap .accordion-item .acc-header span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-wrap .accordion-item .acc-header .chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: #1a1208;
  fill: none;
  transition: transform 0.3s;
}

.faq-wrap .accordion-item.open .acc-header .chevron {
  transform: rotate(180deg);
  stroke: #d49c45;
}

.faq-wrap .accordion-item .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 22px;
}

.faq-wrap .accordion-item.open .acc-body {
  max-height: 500px;
  padding: 0 22px 20px;
}

.faq-wrap .accordion-item .acc-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-wrap .mid-col {
  position: relative;
}

.faq-wrap .mid-col .photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/ 4.12;
}

.faq-wrap .mid-col .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Question mark badge */
.faq-wrap .mid-col .qmark-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 65px;
  height: 65px;
  border-radius: 0px 16px 0px 40px;
  background: #FFF;
  display: flex;
  align-items: start;
  justify-content: end;
  z-index: 2;
}

.faq-wrap .mid-col .qmark-badge-mid {
  background-color: #e79c16;
  color: #FFF;
  font-size: 20px;
  padding: 13px;
  border-radius: 50%;
  display: flex;
  position: relative;
  z-index: 2;
}

.faq-wrap .mid-col .qmark-badge-top {
  width: 40px;
  height: 25px;
  position: absolute;
  left: -40px;
  top: 0px;
  border-radius: 0px 20px 0px 0px;
  box-shadow: 20px 0px 0px 0px #FFFFFF;
}

.faq-wrap .mid-col .qmark-badge-bot {
  width: 25px;
  height: 40px;
  position: absolute;
  right: 0px;
  bottom: -40px;
  border-radius: 0px 20px 0px 0px;
  box-shadow: 0px -20px 0px 0px #FFFFFF;
}

.faq-wrap .mid-col .qmark-badge svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
}

.faq-wrap .right-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-wrap .right-col .stat-card {
  padding: 30px 15px;
  background-color: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 14px; */
  text-align: center;
}

/* Circular progress ring */
.faq-wrap .right-col .stat-card .ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
}

.faq-wrap .right-col .stat-card .ring-wrap svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.faq-wrap .right-col .stat-card .ring-wrap .ring-bg {
  fill: none;
  stroke: #e8dece;
  stroke-width: 11;
}

.faq-wrap .stat-card .ring-wrap .ring-fill {
  fill: none;
  stroke: #e79c16;
  stroke-width: 11;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 30;
  /* 90% = 10% gap Ã¢â€ â€™ 0.1 * 220 = 22 */
  transition: stroke-dashoffset 1s ease;
}

.faq-wrap .stat-card .ring-wrap .ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.faq-wrap .right-col .stat-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

.faq-wrap .right-col .stat-card p {
  font-size: 13px;
  color: #888;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .faq-wrap .inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-wrap .right-col {
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .faq-wrap {
    padding: 20px 0 30px;
  }

}

/* Featured news  */
.featured-news {
  background: #edeade;
  border-radius: 20px;
  padding: 60px 0;
}

.featured-news .slick-slide {
  margin: 0 15px 3px;
}

.featured-news .slick-list {
  margin: 0 -15px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Single blog card Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.blog-card .card-img {
  padding-bottom: 66%;
  border-radius: 12px;
}

.blog-card .card-body {
  position: relative;
}

.blog-card .date-badge {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #000000;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.blog-card .date-badge .day {
  font-size: 17px;
  font-weight: 700;
}

.blog-card .date-badge .month {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

/* Card body */
.blog-card .card-body {
  padding: 35px 0px 0px 0px;
}

.blog-card .card-body h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  font-weight: 700;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 56px;
}

.blog-card .card-body .desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 48px;
}

.blog-card .card-body .btn-learn {
  display: inline-flex;
  background: #000000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.22s;
}

.blog-card .card-body .btn-learn:hover {
  background: #e4a452;
}

@media (max-width: 992px) {
  .featured-news .section-header {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    margin-bottom: 25px;
  }

  .featured-news .slick-slide {
    margin: 0 10px 3px;
  }

  .featured-news .slick-list {
    margin: 0 -10px;
  }
}

@media (max-width: 575px) {
  .featured-news .section-header .header-right {
    display: block;
    text-align: center;
  }

  .featured-news .title-page-des {
    margin-bottom: 10px;
    text-align: left;
  }

  .featured-news {
    padding: 30px 0;
  }

  .blog-card .card-body {
    padding: 35px 10px 0px 10px;
  }

  .btn-view-all {
    font-size: 15px;
    padding: 8px 20px;
    display: none;
  }

  .see-more-mobile {
    display: block;
    margin-top: 20px;
  }

  .see-more-mobile  .btn-view-all {
    display: inline-flex;
  }
}

/* Contact home  */
.contact-home {
  margin: 50px 0;
}

.contact-home .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-home .title-page-des {
  margin: 20px 0;
}

/* Info box */
.contact-home .left-col .info-box {
  background: #f0ece1;
  border-radius: 20px;
  padding: 36px 36px 32px;
}

.contact-home .left-col .info-box .info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-home .left-col .info-box .info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-home .left-col .info-box .info-row:first-child {
  padding-top: 0;
}

.contact-home .left-col .info-box .info-row h3 {
  font-size: 16px;
  font-weight: 700;
}

.contact-home .left-col .info-box .info-row p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.contact-home .right-col {
  background: #f0ece1;
  border-radius: 20px;
  padding: 36px 36px 40px;
}

.contact-home .right-col .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-home .right-col .form-row.single {
  grid-template-columns: 1fr;
}

.contact-home .right-col .form-row input,
.contact-home .right-col .form-row textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e8e1d3;
  border-radius: 100px;
  padding: 14px 20px;
  outline: none;
  font-size: 15px;
  transition: border-color 0.22s;
  resize: none;
}

.contact-home .right-col .form-row input:focus,
.contact-home .right-col .form-row textarea:focus {
  border-color: #d49c45;
}

.contact-home .right-col .form-row textarea {
  border-radius: 16px;
  height: 150px;
  padding: 16px 20px;
}

.contact-home .right-col .btn-send {
  display: block;
  width: 100%;
  background: #000000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.22s, transform 0.2s;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-home .right-col .btn-send:hover {
  background: #d49c45;
}

@media (max-width: 860px) {
  .contact-home .inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-home .right-col .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-home {
    margin: 30px 0;
  }

  .contact-home .left-col .info-box {
    padding: 20px;
  }

  .contact-home .left-col .info-box .info-row {
    grid-template-columns: 100px 1fr;
    align-items: center;
  }

  .contact-home .right-col {
    padding: 20px;
  }

  .section-header.clamp2 h2 {
    max-width: 80%;
    margin: 0 auto;
  }

  .contact-home .left-col .info-box .info-row p {
    max-width: 80%;
  }
}

.furniture {
  padding: 60px 0;
}

.furniture .inner {
  display: grid;
  grid-template-columns: 35% auto;
  gap: 60px;
}

.furniture .section-header h2 {
  margin-bottom: 18px;
}

.furniture .title-page-des {
  padding-bottom: 30px;
  border-bottom: 1px solid #E1E1E1;
}

.widget-aunuca .item svg,
.widget-aunuca .item img {
  width: 36px;
  height: 36px;
}

.widget-aunuca .item {
  display: grid;
  grid-template-columns: 36px auto;
  gap: 20px;
  margin-top: 30px;
}

.widget-aunuca .item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.widget-aunuca .item p {
  font-size: 16px;
  color: #555;
}

.widget-aunuca {
  margin-bottom: 35px;
}

.btn-web-3 {
  background-color: #BA4B4000;
  padding: 14px 34px 14px 28px;
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  font-size: 14px;
  display: inline-flex;
  color: #000;
}

.btn-web-3.bg-white {
  color: #FFF;
}

.btn-web-3:hover {
  color: #FFF;
}

.btn-web-3.bg-white:hover {
  color: #000;
}

.btn-web-3::before {
  content: "";
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  border-radius: 30px;
}

.btn-web-3.bg-white::before {
  border: 2px solid #FFF;
}

.btn-web-3::after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}

.btn-web-3:hover::after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}

.btn-web-3 .blob-effect .text {
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 4;
  font-weight: 500;
  font-size: 15px;
  /* color: #E79C16; */
  position: relative;
}

.btn-web-3 .blob-effect .blob-btn__inner {
      z-index: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.btn-web-3 .blob-effect .blob-btn__blobs {
  position: relative;
    display: block;
    height: 100%;
}

.btn-web-3:hover .blob-effect .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

.btn-web-3 .blob-effect .blob-btn__blob {
      
          position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #000;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

.btn-web-3.bg-white .blob-effect .blob-btn__blob {
    background: #FFF;
}

.btn-web-3 .blob-effect .blob-btn__blob:nth-child(1) {
      left: 0%;
    transition-delay: 0s;
}

.btn-web-3 .blob-effect .blob-btn__blob:nth-child(2) {
          left: 30%;
    transition-delay: 0.08s;
}


.btn-web-3 .blob-effect .blob-btn__blob:nth-child(3) {
      left: 60%;
    transition-delay: 0.16s;
}


.btn-web-3 .blob-effect .blob-btn__blob:nth-child(4) {
          left: 90%;
    transition-delay: 0.24s;
}

.btn-web-3 span {
  z-index: 2;
}


.btn-web-3 span svg {
  width: 20px;
  height: 20px;
}

.btn-web-3 span svg path {
  stroke: currentColor;
}

@media (max-width: 575px) {
    .btn-web-3 {
          padding: 10px 25px 10px 25px;
    }
}

.furniture .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.furniture .right .image img {
  border-radius: 20px;
  width: 100%;
}

.furniture .right .e-con {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.furniture .right .e-con .bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 200px;
  animation: effect 10s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.furniture .right .e-con .text {
  position: relative;
  z-index: 2;
  width: 78px;
  text-align: center;
}

.furniture .right .e-con .text h2 {
  font-size: 27px;
  font-weight: 600;
  line-height: 31.2px;
  color: #000;
}

.furniture .right .element-211 {
  position: absolute;
  left: 36.9px;
  top: 38px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: 7.5px;
}

.furniture .right .element-211 svg {
  overflow: visible;
  height: auto;
  max-width: 100%;
  width: 125px;
  word-spacing: 12px;
}

.furniture .right .element-211 svg path {
  fill: transparent;
  stroke: transparent;
  stroke-width: 1px;
}

.furniture .right .element-211 svg text {
  fill: #333;
  transition: 0.3s
}

@media (max-width: 1200px) {
    .furniture .inner {
      gap: 30px;
    }

    .furniture .title-page-des {
      padding-bottom: 25px;
    }
}

@media (max-width: 992px) { 
  .furniture .inner {
        grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {  
  .furniture .right {
    gap: 12px;
  }

  .widget-aunuca .item p {
    font-size: 14px;
  }

  .widget-aunuca .item {
    margin-top: 20px;
  }

  .widget-aunuca {
    margin-bottom: 30px;
  }

  .furniture {
    padding: 30px 0 10px;
  }
}


.minimalist {
  display: grid;
  grid-template-columns: 60% 40%;
  position: relative;
}

.minimalist .section-header h2 {
  color: #FFF;
  margin-bottom: 18px;
}

.minimalist .title-page-des {
  margin-bottom: 30px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LEFT: dark olive panel Ã¢â€â‚¬Ã¢â€â‚¬ */
.minimalist .left-panel {
  background: #000;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 200px 72px max(10px, calc((100vw - 1280px) / 2));
  position: relative;
  z-index: 1;
}

/* Feature checklist */
.minimalist .left-panel ul {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 10px 24px;
  margin-bottom: 40px;
}

.minimalist .left-panel ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #FFF;
}

.minimalist .left-panel ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;

  background-repeat: no-repeat;
  background-size: contain;

  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='20 6 9 17 4 12' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT: photo panel Ã¢â€â‚¬Ã¢â€â‚¬ */
.minimalist .right-panel {
  position: relative;
  display: flex;
}

/* Full background photo */
.minimalist .right-panel .bg-photo {
  height: 800px;
  object-fit: cover;
  width: 100%;
}

/* Oval cutout for floating product */
.minimalist .right-panel .oval-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
      width: 370px;
    height: 550px;
  border-radius: 300px;
  overflow: hidden;
  z-index: 2;
}

.minimalist .right-panel .oval-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1350px) {
    .minimalist .right-panel .oval-wrap {
      display: none;
    }

    .minimalist .left-panel {
          padding: 72px 5% 72px max(10px, calc((100vw - 1280px) / 2));
    }
}

@media (max-width: 900px) {
  .minimalist {
    grid-template-columns: 1fr;
  }

  .minimalist .right-panel .bg-photo {
    height: auto;
  }
}

@media (max-width: 575px) { 
  .minimalist .left-panel {
    padding: 30px 0px;
  }

  .minimalist .left-panel ul {
    grid-template-columns: 1fr;
  }

  .minimalist .title-page-des {
    margin-bottom: 20px;
  }

  .minimalist .left-panel ul {
    margin-bottom: 30px;
  }

  .minimalist .right-panel .oval-wrap {
    /* display: block; */
    position: relative;
    transform: unset;
    width: auto;
    height: auto;
    border-radius: 0;
    top: 0;
    left: 0;
  }

  .minimalist .right-panel {
    display: block;
  }
}

.slogan {
  padding: 60px 0;
  background-color: #000000;
  color: #FFF;
  text-align: center;
  position: relative;
}

.slogan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
}

.slogan .speak h2 {
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.3;
  margin-bottom: 28px;
  font-family: var(--font-family-heading);
}

.slogan .speak .author {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 575px) {
  .slogan .speak .author {
    font-size: 14px;
  }
}

/* Our customers   */
.our-customers {
  padding: 40px 0;
}

.our-customers .section-header {
  text-align: center;
  margin-bottom: 30px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Stats bar Ã¢â€â‚¬Ã¢â€â‚¬ */
.our-customers .stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.our-customers .stats-bar .stat-happy {
  text-align: center;
  padding-right: 32px;
  border-right: 1.5px solid #ddd;
}

.our-customers .stats-bar .stat-happy h2 {
  font-size: 30px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.our-customers .stats-bar .stat-happy p {
  font-size: 16px;
  color: #555;
}

.our-customers .stats-bar .stat-rating {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.our-customers .stats-bar .stat-rating .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(0deg,rgba(231, 156, 22, 1) 0%, rgba(255, 228, 160, 1) 100%);
  border-radius: 100px;
  padding: 6px 12px 6px 10px;
}

.our-customers .stats-bar .stat-rating .pill .stars {
  display: flex;
  gap: 0px;
}

.our-customers .stats-bar .stat-rating .pill .stars svg {
  width: 16px;
  height: 16px;
  fill: #000;
}

.our-customers .stats-bar .stat-rating .pill .score {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #000;
  display: inline-block;
  padding: 1px 6px;
  border-radius: 50px;
}

.our-customers .stats-bar .stat-rating h3 {
  font-size: 16px;
  color: #555;
  font-weight: 400;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Main body Ã¢â€â‚¬Ã¢â€â‚¬ */
.our-customers .main-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left: photo */
.our-customers .main-body .photo-col {
  position: sticky;
  top: 24px;
}

.our-customers .main-body .photo-col img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/3.5;
}

/* Right: review list */
.our-customers .main-body .reviews-col {
  display: flex;
  flex-direction: column;
}

/* Each review row */
.our-customers .main-body .reviews-col .review-row {
  border-bottom: 1px solid #e8e8e8;
  padding: 30px 0;
  cursor: pointer;
}

.our-customers .main-body .reviews-col .review-row:first-child {
  border-top: 1px solid #e8e8e8;
}

/* Header line: name + role + stars */
.our-customers .main-body .reviews-col .review-row .row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.our-customers .main-body .reviews-col .review-row .row-header .author-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.our-customers .main-body .reviews-col .review-row .row-header .author-info .name {
  font-size: 20px;
  font-weight: 700;
}

.our-customers .main-body .reviews-col .review-row .row-header .author-info .role {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.our-customers .main-body .reviews-col .review-row .row-header .stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.our-customers .main-body .reviews-col .review-row .row-header .stars svg {
  width: 17px;
  height: 17px;
  fill: #d49c45;
}

/* Expanded review content */
.our-customers .main-body .reviews-col .review-row .row-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

/* .our-customers .main-body .reviews-col .review-row.expanded .row-content {
  max-height: 300px;
  opacity: 1;
  margin-top: 25px;
} */

.our-customers .main-body .reviews-col .review-row:hover .row-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 25px;
}

.our-customers .main-body .reviews-col .review-row .row-content .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #eee;
}

.our-customers .main-body .reviews-col .review-row .row-content .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-customers .main-body .reviews-col .review-row .row-content .review-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .our-customers .main-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .our-customers .main-body .photo-col {
    position: static;
  }

  .our-customers .main-body .photo-col img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 575px) { 
  .our-customers .stats-bar .stat-rating h3 {
    font-size: 14px;
  }

  .our-customers .stats-bar .stat-happy p {
    font-size: 14px;
  }

  .our-customers .stats-bar .stat-rating {
        padding-left: 20px;
  }

  .our-customers .stats-bar .stat-happy {
    padding-right: 20px;
  }

  .our-customers .stats-bar {
    margin-bottom: 35px;
  }

  .our-customers .main-body .reviews-col .review-row {
    padding: 15px 0;
  }

  .our-customers .main-body .reviews-col .review-row .row-header .author-info .name {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .our-customers .main-body .reviews-col .review-row .row-header .author-info {
    display: block;
  }

  .our-customers .main-body .reviews-col .review-row .row-header .author-info .role {
    display: block;
  }
}

.product-category {
  position: relative;
  padding: 60px 48px;
}

.product-category .section-header h2 {
  color: #FFF;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.product-category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.product-category .cards-row {
  position: relative;
  z-index: 1;
}

.product-category-slider .slick-slide {
  margin: 0 15px;
}

.product-category-slider .slick-list {
  margin: 0 -15px;
}

.product-category .cat-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 40px 30px;
  text-align: center;
  position: relative;
}

.product-category .cat-card .circle-img {
  padding-bottom: 100%;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: filter 0.3s ease;
}

.product-category .cards-row .cat-card:hover .circle-img img {
  filter: brightness(0.55);
}

.product-category .cards-row .cat-card .arrow-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.22s ease;
  z-index: 3;
  cursor: pointer;
  border: none;
}

.product-category .cards-row .cat-card:hover .arrow-btn {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.product-category .cards-row .cat-card .arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s ease;
  transform: rotate(-45deg);
}

/* Hover on arrow itself: black bg + rotate arrow to horizontal */
.product-category .cards-row .cat-card .arrow-btn:hover {
  background: #111;
}

.product-category .cards-row .cat-card .arrow-btn:hover svg {
  transform: rotate(0deg);
}

/* Card text */
.product-category .cards-row .cat-card .cat-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
  transition: color 0.2s;
}

.product-category .cards-row .cat-card .cat-count {
  font-size: 14px;
  color: #999;
  font-weight: 400;
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 59px;
}

@media (max-width: 768px) {
  .product-category {
    padding: 40px 0px;
  }

  .product-category-slider .slick-slide {
        margin: 0 10px;
  }

  .product-category-slider .slick-list {
        margin: 0 -10px;
  }
}


@media (max-width: 575px) {
  .product-category .cat-card .circle-img {
    max-width: 200px;
        padding-bottom: 66%;
        margin: 0 auto 30px;
  }
}

.featured-customer {
	padding: 50px 0;
  position: relative;
}

.featured-customer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
}

.featured-customer-slider .slick-slide {
	margin: 0 10px;
}

.featured-customer-slider .slick-list {
	margin: 0 -10px;
}

@media (max-width: 575px) {
  .featured-customer {
    padding: 30px 0;
  }

  .section-header h2 {
    text-align: justify;
  }

  .best-seller .section-header h2,
  .our-customers .section-header h2,
  .featured-news .section-header h2 {
    text-align: center;
  }
}

#orderSuccess .header-menu {
  background-color: #000;
  margin-top: 0;
}