/* ============================================
   Inti Rimbo — style.css (update)
   Primary #f16d23 | Navy #18184c
   Hero banner rasio 19:6
   ============================================ */

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

:root {
  --primary: #f16d23;
  --primary-hover: #d45a1a;
  --navy: #18184c;
  --dark: #1a1a1a;
  --gray: #666;
  --light: #f8f9fa;
  --border: #e5e5e5;
  --white: #fff;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== HEADER ========== */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 20px;
}

.logo img {
  height: 96px;
  width: auto;
  display: block;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.search-box {
  position: relative;
  display: flex;
  width: 320px;
  max-width: 40vw;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: visible;
  background: #fff;
}

.search-box input {
  flex: 1;
  border: none;
  padding: 10px 18px;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
  min-width: 0;
  border-radius: 50px 0 0 50px;
}

.search-box button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0 50px 50px 0;
  transition: background 0.2s;
}

.search-box button:hover {
  background: var(--primary-hover);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  z-index: 200;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #eee;
}

.search-dropdown[hidden] {
  display: none !important;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid #f3f3f3;
  transition: background 0.15s;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover,
.search-item.active {
  background: #fff5ef;
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.search-item-info {
  min-width: 0;
  flex: 1;
}

.search-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item-price {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.search-empty {
  padding: 14px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  color: var(--dark);
}

/* ========== NAVBAR ========== */
.navbar {
  background: #fff;
  border-top: 1px solid var(--border);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu > li > a {
  color: var(--dark);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: 0.2s;
  white-space: nowrap;
}

.nav-menu > li > a:hover {
  color: var(--primary);
}

/* ========== HERO SLIDER — rasio 19:6 ========== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 19 / 6;
  overflow: hidden;
  background: var(--navy);
}

.hero .slider,
.hero #slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero .slide,
.hero .slider-slide,
.hero .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero .slide.active,
.hero .slider-slide.active,
.hero .hero-slide.active {
  display: block;
  opacity: 1;
  z-index: 1;
}

.hero .slide img,
.hero .slider-slide img,
.hero .hero-slide img,
.hero #slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero .slide-content,
.hero .hero-caption {
  position: absolute;
  left: 6%;
  bottom: 18%;
  z-index: 2;
  color: #fff;
  max-width: 42%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero .slide-content h1,
.hero .slide-content h2,
.hero .hero-caption h1,
.hero .hero-caption h2 {
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero .btn,
.hero .slide-content .btn,
.hero a.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.hero .btn:hover {
  background: var(--primary-hover);
  color: #fff;
}

.slider-btn,
.hero .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.prev,
.hero .slider-btn.prev {
  left: 16px;
}

.slider-btn.next,
.hero .slider-btn.next {
  right: 16px;
}

.slider-btn:hover {
  background: #fff;
}

.slider-dots,
.hero .slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dots button,
.slider-dots span,
.hero .slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
}

.slider-dots button.active,
.slider-dots span.active,
.hero .slider-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero {
    aspect-ratio: 16 / 9;
  }

  .hero .slide-content,
  .hero .hero-caption {
    max-width: 75%;
    left: 16px;
    bottom: 16%;
  }

  .hero .slide-content h1,
  .hero .slide-content h2,
  .hero .hero-caption h2 {
    font-size: 1.2rem;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }
}

/* ========== FEATURES ========== */
.features {
  background: white;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========== PRODUCTS / CARDS ========== */
.products-section {
  padding: 50px 0;
}

.bg-light {
  background: var(--light);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 1.7rem;
  font-weight: 700;
}

.view-all {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.price {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.price strong {
  color: var(--primary);
  font-size: 1.05rem;
}

.btn-buy {
  display: none !important;
}

/* ========== CTA ========== */
.cta-banner {
  background: linear-gradient(135deg, #f16d23, #c4181e);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-content p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

/* ========== BRANDS ========== */
.brands-section {
  padding: 50px 0 40px;
  background: #f8f9fa;
}

.brands-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}

.brands-title--mt {
  margin-top: 48px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 16px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.25s;
  min-height: 80px;
}

.brand-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.brand-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ========== FOOTER ========== */
.footer {
  background: #18184c;
  color: #ccc;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ========== CATEGORY + PRODUCTS ========== */
.category-products-section {
  padding: 40px 0 50px;
  background: #fff;
}

.cp-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.cp-row-reverse {
  flex-direction: row-reverse;
}

/* Banner Digital Printing & Merchandise — ukuran sama */
.cp-banner {
  flex: 0 0 320px;
  max-width: 320px;
  width: 320px;
}

.cp-banner-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
}

.cp-banner-header {
  padding: 22px 24px 12px;
  flex-shrink: 0;
}

.cp-banner-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.cp-banner-header a {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.cp-banner-header a:hover {
  gap: 10px;
}

.cp-banner-img,
.cp-banner-img-wrap {
  display: block;
  margin-top: auto;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.cp-banner-img img,
.cp-banner-img-wrap img,
#cpBannerImgMerch,
#cpBannerImg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cp-products {
  flex: 1;
  min-width: 0;
}

.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cp-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.cp-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.cp-card a {
  display: block;
  color: inherit;
}

.cp-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.cp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.cp-card:hover .cp-card-img img {
  transform: scale(1.05);
}

.cp-card-body {
  padding: 12px 12px 14px;
}

.cp-card-body h3 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.cp-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cp-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.cp-stars {
  font-size: 0.7rem;
  color: #ffc107;
  letter-spacing: 1px;
}

.cp-btn-buy {
  display: none !important;
}

/* ========== NEW ARRIVALS CAROUSEL ========== */
.product-carousel-section {
  padding: 50px 0 60px;
  background: #fff;
  overflow: hidden;
}

.product-carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.product-carousel__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
}

.product-carousel__link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.product-carousel__link:hover {
  gap: 10px;
}

.product-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(20% - 12.8px);
  min-width: 0;
}

.pcard {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.3s;
}

.pcard:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.pcard a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.pcard-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pcard:hover .pcard-img img {
  transform: scale(1.05);
}

.pcard-body {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pcard-meta {
  font-size: 0.78rem;
  color: #888;
  margin-top: auto;
}

.pcard-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2px;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.95rem;
  transition: 0.2s;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
}

.carousel-btn.prev {
  left: 5px;
}

.carousel-btn.next {
  right: 5px;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-btn:disabled:hover {
  background: #fff;
  color: var(--dark);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .carousel-slide {
    flex: 0 0 calc(25% - 12px);
  }

  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cp-row,
  .cp-row-reverse {
    flex-direction: column;
  }

  .cp-banner {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .cp-banner-inner {
    min-height: 360px;
  }

  .cp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc(33.333% - 11px);
  }

  .product-carousel {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .search-box {
    width: 180px;
    max-width: 50vw;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar {
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 8px);
  }

  .cp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-carousel {
    padding: 0 36px;
  }
}

@media (max-width: 480px) {
  .features .container {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== SOCIAL FOLLOW ========== */
.social-follow-section {
  padding: 48px 0 40px;
  background: #fff;
  text-align: center;
  border-top: 1px solid var(--border);
}

.social-follow-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}

.social-follow-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(241, 109, 35, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  transition: 0.25s;
  background: #fff;
}

.social-circle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(241, 109, 35, 0.3);
}

/* ========== MARKETPLACE & PAYMENT ========== */
.trust-section {
  padding: 36px 0;
  background: #fafafa;
  text-align: center;
  border-top: 1px solid var(--border);
}

.trust-section--alt {
  background: #fff;
}

.trust-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 22px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.trust-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  min-height: 48px;
  transition: 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.trust-logo-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.trust-logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-logo-text.shopee { color: #ee4d2d; }
.trust-logo-text.tokopedia { color: #42b549; }
.trust-logo-text.lazada { color: #0f146d; }
.trust-logo-text.tiktokshop { color: #111; }

.payment-logos {
  gap: 10px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  min-height: 42px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ========== FOOTER: Get Direction ========== */
.footer-address {
  margin-bottom: 12px !important;
}

.btn-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
  transition: 0.2s;
}

.btn-direction:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .social-follow-title {
    font-size: 1.2rem;
  }

  .social-circle {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .trust-title {
    font-size: 1.1rem;
  }
}


/* ========== BOTTOM TRUST: 3 KOLOM ========== */
.bottom-trust-section {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.bottom-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.bottom-trust-col {
  text-align: center;
}

.bottom-trust-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.35;
}

.bottom-trust-col .social-follow-icons {
  justify-content: center;
  gap: 12px;
}

.bottom-trust-col .social-circle {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.bottom-trust-col .trust-logos {
  justify-content: center;
}

.bottom-trust-col .trust-logo-item {
  padding: 10px 14px;
}

.bottom-trust-col .pay-badge {
  padding: 8px 12px;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .bottom-trust-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ========== FLOATING WA + BACK TO TOP ========== */
.float-wa,
.float-top {
  position: fixed;
  right: 20px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, opacity 0.25s, background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.float-wa {
  bottom: 88px;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
}

.float-wa:hover {
  background: #1ebe57;
  color: #fff;
  transform: scale(1.08);
}

.float-top {
  bottom: 24px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.float-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.float-top:hover {
  background: var(--primary, #f16d23);
  color: #fff;
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .float-wa,
  .float-top {
    width: 48px;
    height: 48px;
    right: 14px;
  }
  .float-wa { bottom: 78px; }
  .float-top { bottom: 18px; }
}
