/* ========== GLOBAL ========== */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    background: #f3f4f6;
    color: #111827;
  }
  
  a {
    color: inherit;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* ========== HEADER ========== */
  .site-header {
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* TOP BAR */
  .nav-top {
    background: #f9fafb;
    font-size: 12px;
    color: #4b5563;
  }
  
  .nav-top .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }
  
  .nav-top-link {
    text-decoration: none;
    color: #4b5563;
  }
  
  .nav-top-link:hover {
    color: #111827;
  }
  
  .nav-top-separator {
    margin: 0 6px;
  }
  
  .nav-geo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* MAIN BAR */
  .nav-main {
    border-top: 1px solid #e5e7eb;
  }
  
  .nav-main-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
  }
  
  /* Logo */
  .nav-logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }
  
  .nav-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  
  .nav-logo-text {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
    white-space: nowrap;
  }
  
  /* Burger mobile */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    margin-left: 8px;
  }
  
  .nav-toggle-line {
    width: 20px;
    height: 2px;
    background: #111827;
  }
  
  /* Search */
  .nav-search {
    flex: 1 1 auto;
    max-width: 540px;
  }
  
  .nav-search form {
    display: flex;
  }
  
  .nav-search-input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 999px 0 0 999px;
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .nav-search-input:focus {
    outline: none;
    border-color: #111827;
  }
  
  .nav-search-button {
    border: 1px solid #111827;
    border-radius: 0 999px 999px 0;
    background: #111827;
    color: #ffffff;
    padding: 0 16px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .nav-search-button:hover {
    background: #000000;
  }
  
  /* Actions */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #374151;
    font-size: 13px;
  }
  
  .nav-icon-link:hover {
    color: #111827;
  }
  
  .nav-icon {
    font-size: 16px;
  }
  
  .nav-icon-text {
    white-space: nowrap;
  }
  
  .nav-cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 999px;
    padding: 1px 5px;
    font-size: 10px;
  }
  
  .nav-cta {
    padding: 6px 14px;
    border-radius: 999px;
    background: #10b981;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .nav-cta:hover {
    background: #059669;
  }
  
  /* MENU BAR */
  .nav-menu {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }
  
  .nav-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  
  .nav-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    font-size: 14px;
  }
  
  .nav-menu-list a {
    text-decoration: none;
    color: #4b5563;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
  }
  
  .nav-menu-list a:hover {
    color: #111827;
    border-bottom-color: #111827;
  }
  
  .nav-menu.is-closed {
    display: none;
  }
  
  /* ========== MAIN LAYOUT ========== */
  main {
    max-width: 1200px;
    margin: 24px auto 80px;
    padding: 0 16px;
  }
  
  .section {
    margin-bottom: 32px;
  }
  
  .section-header {
    margin-bottom: 14px;
  }
  
  .section-header h2 {
    font-size: 20px;
    margin: 0 0 4px;
  }
  
  .section-header p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
  }
  
  /* ========== HERO (SXO) ========== */
  .hero {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 32px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 80px minmax(0, 420px) minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
  }
  
  /* Thumbnails vertical 1:1 */
  .hero-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-thumb {
    width: 64px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: 2px solid #d1d5db;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease;
  }
  
  .hero-thumb:hover {
    transform: scale(1.05);
  }
  
  .hero-thumb.active {
    border-color: #111827;
  }
  
  /* Main image 1:1, tetap ringan */
  .hero-main-wrapper {
    max-width: 420px;
    width: 100%;
  }
  
  .hero-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
    transition: opacity 0.25s ease-in-out;
  }
  
  .hero-title {
    font-size: 22px;
    margin: 0 0 8px;
  }
  
  .hero-rating {
    font-size: 13px;
    color: #f59e0b;
    margin-bottom: 8px;
  }
  
  .hero-rating span {
    color: #4b5563;
    margin-left: 6px;
  }
  
  .hero-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
  }
  
  .hero-bullets {
    margin: 0 0 12px;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
  }
  
  .hero-bullets li {
    margin-bottom: 4px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 12px;
    color: #111827;
  }
  
  .hero-cta-box {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 14px;
    font-size: 14px;
    margin-top: 12px;
  }
  
  .hero-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .hero-price-note {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
  }
  
  .hero-cta-btn,
  .hero-cart-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Tombol WhatsApp */
  .hero-cta-btn {
    background: #10b981;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .hero-cta-btn:hover {
    background: #059669;
  }
  
  /* Tombol Keranjang */
  .hero-cart-btn {
    background: #111827;
    border: none;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
  }
  
  .hero-stock {
    font-size: 12px;
    color: #065f46;
    margin-bottom: 2px;
  }
  
  .hero-location {
    font-size: 12px;
    color: #6b7280;
  }
  
  /* BENEFITS */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  
  .benefit-card {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 12px;
    font-size: 14px;
    color: #374151;
  }
  
  /* DETAIL LAYANAN */
  .detail-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    font-size: 14px;
    color: #4b5563;
  }
  
  .detail-layout ul {
    margin: 0;
    padding-left: 18px;
  }
  
  /* PRICING */
  .pricing-table-wrapper {
    overflow-x: auto;
  }
  
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #ffffff;
  }
  
  .pricing-table th,
  .pricing-table td {
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    text-align: left;
  }
  
  .pricing-table th {
    background: #f3f4f6;
    font-weight: 600;
  }
  
  /* STEPS / HOW IT WORKS */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    font-size: 13px;
  }
  
  .step-card {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 10px;
  }
  
  .step-number {
    font-weight: 700;
    font-size: 13px;
    color: #111827;
    margin-bottom: 4px;
  }
  
  .step-title {
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .step-text {
    color: #6b7280;
    font-size: 13px;
  }
  
  /* FAQ */
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  
  .faq-item {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item[open] {
    border-color: #111827;
  }
  
  .faq-item p {
    margin-top: 6px;
    color: #4b5563;
  }
  
  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    font-size: 13px;
  }
  
  .testimonial-card {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 10px;
  }
  
  .testimonial-rating {
    color: #f59e0b;
    margin-bottom: 4px;
  }
  
  .testimonial-text {
    margin-bottom: 4px;
    color: #4b5563;
  }
  
  .testimonial-meta {
    font-size: 12px;
    color: #6b7280;
  }
  
  /* PORTOFOLIO (1:1) */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  
  .portfolio-card {
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    font-size: 13px;
  }
  
  .portfolio-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  
  .portfolio-body {
    padding: 8px;
  }
  
  .portfolio-title {
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .portfolio-meta {
    font-size: 12px;
    color: #6b7280;
  }
  
  /* ARTIKEL TERKAIT */
  .articles-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  
  .article-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px;
    font-size: 13px;
  }
  
  .article-title {
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .article-meta {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
  }
  
  .article-excerpt {
    font-size: 13px;
    color: #4b5563;
  }
  
  /* FOOTER BARU */
  .site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 24px 0 16px;
    margin-top: 32px;
    font-size: 14px;
  }
  
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
  }
  
  .footer-title {
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-list li {
    margin-bottom: 4px;
  }
  
  .footer-list a {
    text-decoration: none;
    color: #d1d5db;
  }
  
  .footer-list a:hover {
    color: #ffffff;
  }
  
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px 0;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 960px) {
    .nav-main-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
  
    .nav-logo {
      flex: 0 1 auto;
      min-width: 0;
      order: 1;
      margin-right: auto;
    }
  
    .nav-toggle {
      display: flex;
      flex: 0 0 auto;
      order: 3;
    }
  
    .nav-search {
      flex: 1 1 100%;
      max-width: 100%;
      order: 4;
    }
  
    .nav-actions {
      flex: 0 1 auto;
      justify-content: flex-end;
      order: 2;
    }
  
    .hero-grid {
      grid-template-columns: 70px minmax(0, 360px) minmax(0, 1fr);
    }
  
    .steps {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .benefits-grid,
    .detail-layout,
    .faq-grid,
    .testimonials-grid,
    .portfolio-grid,
    .articles-list,
    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .nav-top {
      display: none;
    }
  
    .nav-logo-text {
      font-size: 14px;
    }
  
    .nav-actions .nav-icon-text {
      display: none;
    }
  
    .nav-cta {
      padding: 6px 10px;
      font-size: 12px;
    }
  
    .nav-menu {
      border-top: none;
    }
  
    .nav-menu-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-menu-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
  
    .nav-menu-list a {
      display: block;
      width: 100%;
      padding: 12px 0;
      border-bottom: 1px solid #f3f4f6;
    }
  
    .hero {
      padding: 18px;
    }
  
    .hero-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-main-wrapper {
      max-width: none;
    }
  
    .hero-thumbs {
      flex-direction: row;
      order: 2;
    }
  
    .hero-thumb {
      width: 56px;
    }
  
    .benefits-grid,
    .detail-layout,
    .faq-grid,
    .testimonials-grid,
    .portfolio-grid,
    .articles-list,
    .steps,
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  