:root {
  --color-white: #fff;
  --color-blue: #1b9fe0;
  --bg-blue: #1b9fe0;
  --bg-blue-hover: #188fc9;
  --color-orange: #f29015;
  --bg-orange: #f29015;
  --bg-orange-hover: #d87c0c;
  --color-gray: #000000;
  --color-title: #000000;
  --radius: 24px;
}


.brands-list-dots {
  display: flex;
  padding-top: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.brands-list-dot {
  width: 32px;
  height: 10px;
  border-radius: var(--radius);
  background: #e0e0e0;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.brands-list-dot.active {
  background: var(--color-orange, #f29015);
  width: 32px;
  height: 10px;
  border-radius: var(--radius);
}


/* ===== */
/* Hero Start */
/* ===== */
.brand-hero-section {
  position: relative;
  height: auto;
  min-height: unset;
  padding-bottom: 29rem;
  display: block;
  margin: 0;
  overflow: hidden;
  background: var(--bg-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.brand-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.01);
  will-change: opacity, visibility, transform;
}

.brand-hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-hero-slide.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-hero-bg-img {
  position: absolute;
  top: 0; 
  left: 0;
  right: 0;
  transform: translateX(-50%); 
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 1.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.brand-hero-slide.active .brand-hero-bg-img {
  transform: scale(1);
}

.brand-hero-slide:not(.active) .brand-hero-bg-img {
  transform: scale(1.4);
}



/* Brand Hero Navigation Buttons */
.brand-hero-nav {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  pointer-events: none;
}

@media (max-width: 768px) {
  .brand-hero-nav {
      position: absolute;
      top: 60%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
      pointer-events: none;
    }
    
    
    .brand-hero-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: none;
      background: var(--color-orange, #f29015);
      color: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      pointer-events: auto;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
}



.brand-hero-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--color-orange, #f29015);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.brand-hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease;
}

.brand-hero-btn:hover::before {
  left: 100%;
}

.brand-hero-btn:active,
.brand-hero-btn:focus {
  outline: none;
  background: #d87c0c;
}

.brand-hero-btn:hover {
  background: #d87c0c;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.brand-hero-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: scale(0.95);
}

.brand-hero-btn i {
  font-size: 18px !important;
}

@media (max-width: 1440px) {
  .brand-hero-section {
    height: auto;
    min-height: unset;
    padding-bottom: 26rem;
    padding-top: 8rem;
  }
  .brand-hero-bg-img {
    padding-top: 8rem;
  }
}
@media (max-width: 1024px) {
  .brand-hero-section {
    height: auto;
    min-height: unset;
    padding-bottom: 18rem;
    padding-top: 6rem;
  }
  .brand-hero-bg-img {
    padding-top: 5rem;
  }
}
@media (max-width: 768px) {
  .brand-hero-section {
    height: auto;
    min-height: unset;
    padding-bottom: 12rem;
  }
  .brand-hero-bg-img {
    padding-top: 5rem;
  }
}
@media (max-width: 425px) {
  .brand-hero-section {
    height: auto;
    min-height: unset;
    padding-bottom: 8rem;
  }
  .brand-hero-bg-img {
    padding-top: 5rem;
  }
}
/* ===== */
/* Hero End */
/* ===== */

/* ===== */
/* Swipper logo brands start */
/* ===== */

.logo-brand-swiper {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-brand-swiper .swiper-wrapper {
  display: flex;
  padding: 1rem 4rem;
}

.logo-brand-swiper .swiper-wrapper.center-logos {
  justify-content: center;
}

.logo-brand-swiper .swiper-slide img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  background-color: var(--color-white);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  filter: grayscale(100%);
  padding: 0.8rem;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .logo-brand-swiper {
    max-width: 500px;
  }

  .logo-brand-swiper .swiper-slide img {
    max-width: 70px;
    max-height: 70px;
    padding: 0.6rem;
  }

  .logo-brand-swiper .swiper-wrapper {
    padding: 1rem 2rem;
  }
}

.logo-brand-swiper .swiper-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1);
}
/* ===== */
/* Swipper logo brands end */
/* ===== */

/* ===== */
/* Brands Section start */
/* ===== */
.brands-section {
  position: relative;
}

.brands-filter-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.filter-description {
  background-color: var(--bg-blue);
  border-bottom-right-radius: 2.5rem;
}

.filter-description p {
  color: #fff;
  padding: 1.6rem 6rem;
  text-align: start;
  font-weight: 500 !important;
}
@media screen and (max-width: 768px) {
  .filter-description p {
    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 500px) {
  .filter-description {
    display: none;
  }
}



.brands-category-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--bg-blue);
  background: #fff;
  color: var(--bg-blue);
  border-radius: var(--radius);
  font-weight: 500 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.brands-category-btn:hover {
  background: var(--bg-blue);
  color: #fff;
}

.brands-category-btn.active {
  background: var(--bg-blue);
  color: #fff;
}

.brands-filter-row {
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}


.brands-filter-form {
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding: 0 6rem;
}

@media (max-width: 768px) {
    .brands-filter-form {
        padding: 0 2rem;
    }
}




.brands-filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.brands-filter-select,
.brands-filter-input {
  width: 300px;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

.brands-filter-select:focus,
.brands-filter-input:focus {
  outline: none;
  border-color: var(--bg-blue);
}

.brands-filter-actions {
  display: flex;
  align-items: end;
  gap: 1rem;
}

.brands-search-btn {
  padding: 0.7rem 1.5rem;
  background: var(--color-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brands-search-btn:hover {
  background: var(--bg-orange-hover);
}

.brands-product-section {
  margin-bottom: 4rem;
  padding: 0 6rem;
}

.brands-product-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.brands-product-card {
  background-color: #f6f6f6;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: var(--radius);
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  position: relative;
}

.brands-product-image {
  position: relative;
  width: 240px;
  height: 260px;
  overflow: hidden;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 2rem;
  border-top-right-radius: 1rem;
  z-index: 2;
}

.brands-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 2rem;
  border-top-right-radius: 1rem;
  transition: transform 0.3s ease;
}

.brands-brand-logo {
  height: 60px;
  width: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.brands-product-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-top: 0.7rem;
}

.brands-product-content {
  padding-right: 2rem;
  flex: 1;
}

.brands-product-content h4 {
  color: #505050;
}

.brands-product-cta {
  display: flex;
  justify-content: center;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  background-color: var(--bg-orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: color 0.3s ease;
  text-decoration: none;
}

.brands-product-cta:hover {
  background-color: var(--bg-orange-hover);
  transition: all 0.3s ease-in-out;
}

.brands-product-cta:hover::after {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .brands-filter-title {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .brands-filter-input {
    width: 100%;
  }

  .brands-product-section {
    padding: 1rem 2rem;
  }

  .brands-product-grid {
    gap: 1rem;
  }

  .brands-product-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }

  .brands-product-image {
    width: 180px;
    height: 180px;
    position: relative;
    align-self: center;
  }

  .brands-product-content {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .brands-product-brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brands-product-cta {
    width: 100%;
    justify-content: center;
  }

  .brands-brand-logo {
    height: 40px;
  }
}
/* ===== */
/* Brands End */
/* ===== */

/* ===== */
/* Brand Detail Banner Section */
/* ===== */
.brand-detail-banner {
  min-height: 80vh;
  background: var(--bg-blue);
  width: 100%;
  border-bottom-right-radius: 8rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.brand-detail-content {
  display: flex;
  flex-direction: row;
  gap: 8rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-detail-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-detail-img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top-right-radius: 4rem;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 24px;
  z-index: 1;
}

.product-detail-img-secondary {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  position: absolute;
  top: 14rem;
  right: -80px;
  z-index: 2;
}

.product-detail-img-secondary:hover {
  transform: scale(1.1);
}

.product-detail-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.product-detail-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-white);
  margin-bottom: 2rem;
  padding-right: 6rem;
  font-weight: 400;
}

.cta-hero-brand-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-detail-cta {
  background: var(--bg-orange);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-detail-cta:hover {
  background: var(--bg-orange-hover);
}

.product-detail-cta i {
  transition: transform 0.3s ease;
}

.product-detail-cta:hover i {
  transform: rotate(-45deg); /* panah kanan → panah ke atas kanan */
}

.product-detail-cta:active {
  transform: translateY(0);
}

.product-detail-external-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.product-detail-external-link:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}

.product-detail-external-link i {
  transform: rotate(-45deg);
  font-size: 1.2rem;
}



@media screen and (max-width: 768px) {
  .brand-detail-banner {
    padding: 3rem 0;
    position: relative;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 0;
    margin-bottom: 4rem;
  }

  .brand-detail-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    top: 4rem;
    gap: 8rem;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80vh;
  }

  .product-detail-img {
    width: 300px;
    height: 300px;
  }

  .brand-detail-image {
    order: 2;
    top: -12rem;
    right: -16rem;
    z-index: 8;
  }

  .product-detail-img {
    object-fit: cover;
    border-top-left-radius: 4rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 4rem;
    border-bottom-left-radius: 24px;
    z-index: 1;
  }

  .product-detail-img-secondary {
    display: none;
  }

  .product-detail-title {
    font-size: 2.2rem;
  }

  .product-detail-description {
    font-size: 1rem;
    padding-right: 2rem;
  }

  .product-detail-cta {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 426px) {
  .brand-detail-banner {
    padding: 3rem 0;
    position: relative;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 0;
    margin-bottom: 4rem;
  }

  .brand-detail-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    top: 4rem;
    gap: 8rem;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80vh;
  }

  .product-detail-img {
    width: 260px;
    height: 260px;
  }

  .brand-detail-image {
    order: 2;
    top: -6rem;
    right: -6rem;
    z-index: 8;
  }

  .product-detail-img {
    object-fit: cover;
    border-top-left-radius: 4rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 4rem;
    border-bottom-left-radius: 24px;
    z-index: 1;
  }

  .product-detail-img-secondary {
    display: none;
  }

  .product-detail-title {
    font-size: 2.2rem;
  }

  .product-detail-description {
    font-size: 1rem;
    padding-right: 2rem;
  }

  .product-detail-cta {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

/* Scroll Down Button */
.scroll-down-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--bg-blue);
  transform: rotate(90deg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  animation: bounceUpDown 2s ease-in-out infinite;
}

@keyframes bounceUpDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-down-btn i {
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

@media screen and (max-width: 1024px) {
  .scroll-down-btn {
    bottom: 16rem;
  }
}

/* Responsive for scroll down button */
@media (max-width: 768px) {
  .scroll-down-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 1.5rem;
  }

  @keyframes bounceUpDown {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-8px);
    }
  }
}


/* ===== */
/* Package Variant Section Start */
/* ===== */
.package-section {
  margin-top: 6rem;
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
  min-height: 90vh;
  position: relative;
}

@media screen and (max-width: 768px) {
  .package-section {
    margin-top: 1rem;
  }

  .variant-header {
    padding: 1rem 2rem;
  }
}

.variant-header {
  padding: 1rem 6rem;
  width: 100%;
  max-width: fit-content;
  background-color: var(--bg-orange);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 24rem;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .variant-header {
    padding: 1rem 2rem;
  }
}

.variant-title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-align: right;
  line-height: 1.2;
}

.variant-content-area {
  position: relative;
  width: 100%;
  background-color: #f6f6f6;
  margin: 0 auto;
}

.variant-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 80vh;
}

/* Variant Cards Styling */
.variant-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default 4 kolom untuk desktop */
  max-width: 4fr;
  gap: 2rem;
  z-index: 4;
  padding: 3rem 6rem;
  margin: 0 auto;
}

.variant-card-container {
  position: relative;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 3rem;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 4;
}

.variant-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
  display: block;
}

.variant-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8rem 1rem 1.5rem 1rem;
  color: #fff;
  width: 100%;
  background: linear-gradient(transparent, rgba(241, 144, 21, 0.4));
  transition: background 0.3s;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.variant-overlay-content {
  width: 100%;
  text-align: start;
}

.product-vatiant-card-title {
  font-size: 20px!important;
  font-weight: 600 !important;
  color: #505050;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.variant-overlay-content p {
  color: #fff;
}

.variant-card-container:hover .variant-detail-row {
  opacity: 1;
  pointer-events: auto;
}
.variant-detail-row span {
  color: #fff;
}

.variant-card-container .variant-card-img {
  transform: scale(1.08);
  transition: transform 0.4s cubic-bezier(0.4, 1.2, 0.6, 1);
}

.variant-card-container:hover .variant-card-img {
  transform: scale(1);
}

.variant-overlay-content {
  margin-bottom: 0;
  transition: margin-bottom 0.3s;
}

.variant-card-container:hover .variant-overlay-content {
  margin-bottom: 2rem;
}

/* Media Queries untuk Responsive Design */

/* Untuk layar 1024px ke atas - tetap 4 kolom */
@media (min-width: 1025px) {
  .variant-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Untuk layar 769px - 1024px - tetap 4 kolom */
@media (min-width: 769px) and (max-width: 1024px) {
  .variant-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 4rem;
  }

  .variant-card-container {
    height: 400px;
  }
}

/* Untuk layar tablet (768px ke bawah) - 2 kolom */
@media (max-width: 768px) {
  .variant-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .variant-card-container {
    height: 400px;
  }

  .variant-card-title {
    font-size: 1rem;
  }

  .variant-card-subtitle {
    font-size: 0.85rem;
  }
}

/* Untuk layar mobile (480px ke bawah) - 1 kolom */
@media (max-width: 480px) {
  .variant-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .variant-card-container {
    height: 400px;
  }

  .variant-card-title {
    font-size: 0.95rem;
  }

  .variant-card-subtitle {
    font-size: 0.8rem;
  }
}
/* ===== */
/* Variant Section End */
/* ===== */

/* ===== */
/* Benefits Section */
/* ===== */
.benefits-section {
  width: 100%;
  padding: 0 6rem;
  min-height: 70vh;
  margin-top: 1rem;
  margin-bottom: 2rem;
  position: relative;
}


.benefits-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.benefits-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.benefits-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.benefits-right {
  flex: 1;
}

.benefits-title {
  color: var(--bg-blue);
  margin-bottom: 2rem;
  text-align: left;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefits-item {
  display: flex;
  align-items: flex-start;
  padding: 1.2rem 1.8rem;
  background: var(--bg-blue);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  width: 100%;
}

.benefits-icon {
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.benefits-icon i {
  color: var(--color-white);
  font-size: 0.8rem;
}

.benefits-text {
  color: var(--color-white);
  font-weight: 500;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 1rem 2rem;
  }

  .benefits-container {
    flex-direction: column;
    gap: 2rem;
  }

  .benefits-left {
    order: 1;
  }

  .benefits-right {
    order: 2;
  }

  .benefits-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: start;
  }

  .benefits-image-container {
    max-width: 400px;
  }

  .benefits-item {
    padding: 1rem 1.5rem;
  }

  .benefits-text {
    font-size: 0.8125rem !important;
  }
}

/* ===== */
/* Benefits Section end */
/* ===== */

/* ===== */
/* Bahan Section */
/* ===== */
.bahan-section {
  width: 100%;
  margin-bottom: 4rem;
}
.bahan-container {
  background-color: #f6f6f6;
  z-index: 1;
  position: relative;
}

.bahan-header {
  padding: 1rem 6rem;
  width: 100%;
  max-width: fit-content;
  background-color: var(--bg-orange);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 24rem;
  margin-left: auto;
}
@media (max-width: 768px) {
    .bahan-header {
        padding: 1rem 2rem;
    }
}

.bahan-title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-align: right;
  line-height: 1.2;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  background-color: #f6f6f6;
}

.bahan-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10!important;
}

.bahan-card:hover {
  transform: translateY(-5px);
}

.bahan-card-image-container {
  position: relative;
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 1rem;
}

.bahan-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.bahan-card-star-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  z-index: 3;
}

.bahan-card-logo {
  position: absolute;
  bottom: -0.8rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.bahan-card-logo-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 50%;
}

.bahan-card-content {
  padding: 1.5rem;
  position: relative;
  min-height: 120px;
}

.bahan-card-title {
  font-size: 20px!important;
  font-weight: 600 !important;
  color: #505050;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
    .bahan-card-title {
     font-size: 18px!important;
    }
}


.bahan-card-subtitle {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

/* Bahan Swiper Container */
.bahan-swiper-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0.2rem;
}

.bahan-swiper {
  overflow: hidden;
  padding: 1rem 0;
}

.bahan-swiper .swiper-wrapper {
  align-items: stretch;
}

.bahan-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.bahan-swiper .swiper-slide .bahan-card {
  height: 100%;
  width: 100%;
}

/* Bahan Navigation Buttons */
.bahan-swiper-button-prev,
.bahan-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--bg-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: none;
  outline: none;
}

.bahan-swiper-button-prev {
  left: -2rem;
}

.bahan-swiper-button-next {
  right: -2rem;
}

.bahan-swiper-button-prev:hover,
.bahan-swiper-button-next:hover {
  background: var(--bg-orange-hover);
  color: var(--color-white);
}

.bahan-swiper-button-prev:active,
.bahan-swiper-button-next:active {
  transform: translateY(-50%) scale(0.95);
}

.bahan-swiper-button-prev i,
.bahan-swiper-button-next i {
  color: var(--color-white);
  transition: color 0.3s ease;
}

/* Disable navigation buttons when not needed */
.bahan-swiper-button-prev.swiper-button-disabled,
.bahan-swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive adjustments for bahan swiper */
@media (max-width: 1024px) {
  .bahan-swiper-container {
    padding: 2rem 3rem;
  }

  .bahan-swiper-button-prev {
    left: 1rem;
  }

  .bahan-swiper-button-next {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .bahan-swiper-button-prev,
  .bahan-swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }

  .bahan-swiper-button-prev {
    left: 0.5rem;
  }

  .bahan-swiper-button-next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .bahan-swiper-button-prev,
  .bahan-swiper-button-next {
    width: 2rem;
    height: 2rem;
  }

  .bahan-swiper-button-prev i,
  .bahan-swiper-button-next i {
    font-size: 0.9rem;
  }
}
/* ===== */
/* Bahan End */
/* ===== */

/* ===== */
/* Panduan Section */
/* ===== */
.panduan-section {
  width: 100%;
  min-height: 60vh;
  margin-top: 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.panduan-container {
  display: flex;
  width: 100%;
  min-height: 60vh;
  position: relative;
  gap: -2rem;
}

.panduan-left {
  flex: 1;
  background: var(--bg-blue);
  color: #fff;
  display: flex;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
  align-items: center;
  justify-content: start;
  padding-left: 6rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 3;
  margin-right: -3rem;
}

.panduan-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 1;
}

.panduan-right {
  flex: 1;
  background: #fff;
  color: var(--color-title);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  border-bottom-right-radius: 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-left: -3rem;
}

.panduan-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     
  object-position: center;
  z-index: 1;            
  border-bottom-right-radius: 4rem;
}


.panduan-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-title);
}

.panduan-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #505050 !important;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}



.panduan-right.active .panduan-bg-img {
  transform: scale(1.05);
}

.panduan-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #359ed9 0%,
    rgba(53, 158, 217, 0.95) 50%,
    rgba(53, 158, 217, 0.7) 60%,
    rgba(53, 158, 217, 0) 100%
  );
  opacity: 0.5;
  pointer-events: none;
  border-bottom-right-radius: 4rem;
}

.panduan-content {
  z-index: 4;
  width: 600px;
  position: relative;
}

.panduan-title {
  font-weight: 600 !important;
  margin-bottom: 2rem;
  color: #fff;
  text-align: start;
}

.panduan-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.panduan-item {
  display: flex;
  align-items: center;
  background: transparent;
  width: auto;
  border: 1.5px solid #fff;
  border-radius: var(--radius);
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.panduan-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--color-orange, #f29015);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
  box-sizing: border-box;
}

.panduan-text {
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 20px!important;
}

@media screen and (max-width: 768px) {
    .panduan-text {
     font-size: 18px!important;
    }
}

.panduan-desc-item {
  display: none;
  margin-left: 4rem;
  position: relative;
  max-width: 100%;
  z-index: 5;
  padding: 2rem;
  border-radius: var(--radius);
  color: #505050 !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (max-width: 1024px) {
  .panduan-desc-item {
    margin-left: 0;
  }
}

.panduan-desc-item.active {
  opacity: 1;
  transform: translateY(0);
}

.panduan-item h6.panduan-number,
.panduan-item h6.panduan-text {
  margin: 0;
}

.panduan-item:last-child {
  margin-bottom: 0;
}

.panduan-item.active {
  background: #fff;
}

.panduan-item.active .panduan-number {
  background: var(--color-orange, #f29015);
  color: #fff;
}

.panduan-item.active .panduan-text {
  color: #505050;
}

.panduan-item:hover {
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.panduan-item:hover .panduan-text {
  color: #505050;
}

.panduan-subtitle {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: #fff;
}

.panduan-target-list {
  padding: 0;
  margin: 0;
}

.panduan-target-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
}

/* Responsive Design for Panduan Section */
@media (max-width: 1024px) {
  .panduan-container {
    flex-direction: column;
    gap: 0;
  }

  .panduan-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .panduan-title {
    font-size: 2.2rem;
  }

  .panduan-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .panduan-section {
    min-height: auto;
  }

  .panduan-container {
    min-height: auto;
  }
  .panduan-content {
    padding: 1rem 1rem;
  }

  .panduan-left,
  .panduan-right {
    padding: 2.5rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .panduan-title {
    font-size: 2rem;
  }

  .panduan-right {
    border-bottom-right-radius: 0;
  }

  .panduan-subtitle {
    font-size: 1.6rem;
  }

  .panduan-description {
    font-size: 1rem;
  }

  .panduan-list {
    grid-template-columns: 3fr;
  }
}

@media (max-width: 480px) {
  .panduan-left,
  .panduan-right {
    padding: 2rem 1rem;
  }

  .panduan-title {
    font-size: 1.8rem;
  }

  .panduan-subtitle {
    font-size: 1.4rem;
  }

  .panduan-description {
    font-size: 0.9rem;
  }
}

/* ===== */
/* Panduan section end */
/* ===== */

/* ===== */
/* CTA Buy Section Start */
/* ===== */
.cta-buy-section {
  width: 100%;
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius);
  margin-bottom: 4rem;
  position: relative;
}

.cta-buy-content p {
  color: #fff !important;
}

.cta-buy-container {
  background: var(--color-blue);
  padding: 4rem;
  border-radius: var(--radius);
  border-bottom-right-radius: 4rem;
  margin-left: 6rem;
  margin-right: 6rem;
  position: relative;
}

.cta-buy-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  padding: 1rem;
  border-radius: var(--radius);
}

.cta-buy-button img {
  width: 70px;           /* ukuran tetap */
  height: 70px;          /* bikin square */
  object-fit: contain;   /* jaga rasio gambar */
  padding: 0.2rem;
}

@media screen and (max-width: 768px) {
  .cta-buy-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .cta-buy-container {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
    padding: 2rem;
  }

  .cta-buy-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.brand-hero-kiri-atas {
  position: absolute;
  top: 3rem;
  left: 4rem;
  width: 300px;
  height: auto;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .brand-hero-kiri-atas {
    top: 3rem;
    left: 10rem;
    width: 300px;
  }
}

.brand-hero-kanan-bawah {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: auto;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .brand-hero-kanan-bawah {
    display: none;
  }
}

.brand-filter-kiri-atas {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  left: -6rem;
  width: 300px;
  height: auto;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

.brand-filter-bawah-kanan {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: auto;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .brand-filter-bawah-kanan {
    width: 200px;
  }
}


/* detail doodle */
.brand-hero-detail-kiri-atas {
  position: absolute;
  top: 3rem;
  left: 8rem;
  width: 300px;
  height: auto;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .brand-hero-detail-kiri-atas {
    left: -8rem;
    top: 12rem;
  }
}

@media screen and (max-width: 425px) {
  .brand-hero-detail-kiri-atas {
    display: none;
  }
}

.brand-hero-detail-kanan-bawah {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: auto;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
}
.brand-benefit-detail-kanan-bawah {
  position: absolute;
  bottom: -9rem;
  left: 0;
  width: 400px;
  height: auto;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

@media screen and (max-width: 425px) {
  .brand-benefit-detail-kanan-bawah {
    width: 300px;
  }
}

.brand-panduan-detail-kiri-bawah {
  position: absolute;
  bottom: -6rem;
  left: -12rem;
  width: 500px;
  height: auto;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}
.brand-bahan-detail-kanan-bawah {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: auto;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

@media screen and (max-width: 425px) {
  .brand-bahan-detail-kanan-bawah {
    width: 300px;
  }
}

.brand-buy-detail-kiri-bawah {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: auto;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .brand-buy-detail-kiri-bawah {
    width: 300px;
  }
}

.brand-buy-kanan-bawah {
  position: absolute;
  bottom: -16rem;
  right: -8rem;
  width: 500px;
  height: auto;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .brand-buy-kanan-bawah {
    width: 400px;
  }
}
@media screen and (max-width: 425px) {
  .brand-buy-kanan-bawah {
    display: none;
  }
}
