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

.hero-carousel {
  width: 100%;
  position: relative;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}
.carousel-slide-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
  pointer-events: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s;
}
.carousel-slide-wrap:hover .carousel-btn {
  opacity: 1;
}
.prev { left: 20px; }
.next { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.dot.active {
  background: #fff;
}
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.content-inner {
  max-width: 550px;
  padding: 0 5%;
  pointer-events: auto;
}
.tagline { font-size: 1rem; color: #fff; margin-bottom: 15px; }
.slide-content h1 { font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 20px; }
.description { font-size: 1.1rem; color: #fff; line-height: 1.6; margin-bottom: 30px; }
.button-group { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { padding: 14px 32px; border-radius: 4px; font-size: 1rem; text-decoration: none; transition: 0.3s; }
.btn-primary { background: #e65c00; color: #fff;font-weight:bold; }
.btn-primary:hover { background: #d05200; color: #fff; font-weight:bold;}
.btn-secondary { background: transparent; color: #e65c00; border: 1px solid #e65c00; }

@media (max-width: 768px) {
  .carousel-wrapper { height: auto; }
  .carousel-slide-wrap { height: auto; }
  .carousel-slide { position: absolute; height: auto; }
  .carousel-slide img { width: 100%; height: auto; object-fit: cover; }
  .carousel-slide-wrap::after {
    content: '';
    display: block;
    padding-top: 42%;
  }
  .tagline { color:#555; }
  .slide-content {
    position: relative;
    height: auto;
    padding: 30px 20px;
    background: #fff;
  }
  .content-inner { max-width: 100%; padding: 0; }
  .slide-content h1 { font-size: 1.8rem;color: #333;  }
  .description {  color: #555; }
  .carousel-btn {
    display: flex !important;
    opacity: 1 !important;
    width: 36px;
    height: 36px;
    font-size: 16px;
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .carousel-dots {
    display: flex !important;
    bottom: 12px;
    z-index: 999;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .button-group { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

.container-wrap {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}
.homeproduct-t { text-align: center; margin: 0 0 20px; }
.label-head { font-size: 28px; font-weight: 600; color: #333; }
.homeproductx {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.homeproductx-r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
.homeprobig {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.homeprobig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.homeprobig-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}
.homeprobig-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    text-align: center;
    z-index: 2;
}
.homeprobig-info .label-title,
.homeprobig-info .label-title2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color:#fff ;
}
.homeprobig-info .label-price {
    font-size: 16px;
    opacity: 0.9;
}
.homeprobig:hover .homeprobig-bg,
.homeprobig:hover .homeprobig-info {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.homeprobig a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}
@media (max-width: 768px) {
    .homeproductx {
        grid-template-columns: 1fr;
    }
    .homeproductx-r {
        grid-template-columns: 1fr;
    }
}

.homefeatured {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 15px;
}
.homefeatured-t {
  text-align: center;
  margin-bottom: 35px;
}
.label-head {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}
.swiper {
  width: 100%;
  overflow: hidden;
}
.featureditem {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  height: 100%;
}
.featureditem-module {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.featureditem-module-l {
  width: 100%;
  flex: 0 0 auto;
}
.featureditem-module-l .img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.featureditem-module-r {
  padding: 22px 20px;
  flex: 1;
}
.featureditem-module-info-head {
  font-size: 13px;
  color: #ff7d00;
  font-weight: 600;
  margin-bottom: 8px;
}
.label-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 12px;
}
.label-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  display: block;
  margin-bottom: 20px;
}
.link-more {
  font-size: 14px;
  color: #ff7d00;
  text-decoration: none;
  font-weight: 600;
}
.swiper-pagination {
  margin-top: 30px;
}
.swiper-pagination-bullet {
  background: #ff7d00;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

.skincare-process-section {
  padding: 60px 0;
  background-color: #f9f9fb;
}
.skincare-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px;
}
.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #e65c00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 20px;
}
.process-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px;
  line-height: 1.5;
}
.process-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 1.9rem;
  }
}

.reviews-custom-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 15px;
}
.reviews-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 30px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  height: 100%;
  border: 1px solid #f0f0f0;
}
.stars {
  color: #ffb200;
  font-size: 16px;
  margin-bottom: 15px;
}
.comment {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.user h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.user p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #777;
}
.reviews-pagination .swiper-pagination-bullet {
  background: #ff7d00 !important;
  opacity: 0.4;
}
.reviews-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.nitoyo-news {
    padding: 60px 0;
}
.nitoyo-news .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nitoyo-news .news-title {
    text-align: center;
    font-size: 28px;
    color: #e65c00;
    margin-bottom: 40px;
    position: relative;
}
.nitoyo-news .news-title::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #d9232d;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}
.nitoyo-news .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.nitoyo-news .news-item {
    transition: all 0.3s ease;
}
.nitoyo-news .news-item:hover {
    transform: translateY(-5px);
}
.nitoyo-news .news-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 12px;
}
.nitoyo-news .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nitoyo-news .news-title-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    text-align: center;
}
@media (max-width: 992px) {
    .nitoyo-news .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .nitoyo-news .news-grid {
        grid-template-columns: 1fr;
    }
}

.homefind-box {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
}
.homefind-box .img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.homefind-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}
.homefind-ads {
    position: relative;
    z-index: 3;
    max-width: 960px;
    padding: 0 20px;
    color: #fff;
}
.homefind-ads-l .label-head {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}
.homefind-ads-l .label-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #fff;
    opacity: 0.95;
}
a.link-button {
    display: inline-block;
    padding: 14px 36px;
    background: #ff7d00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.3s ease;
}
a.link-button:hover {
    background: #e67000;
    color: #fff;
}
@media (max-width: 768px) {
    .homefind-box {
        height: auto;
        min-height: 460px;
        padding: 60px 0;
    }
    .homefind-ads-l .label-head {
        font-size: 24px;
    }
}
