*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: #fafcff; color: #0c1a2e; overflow-x: hidden; margin: 0; padding: 0; }

  /* ── dot grid ── */
  .dot-grid {
    background-image: radial-gradient(circle, #b9e3fd 1px, transparent 1px);
    background-size: 28px 28px;
  }

  /* NAVBAR START */
  .nav-glass {
    background: rgba(250,252,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185,227,253,0.4);
    transition: box-shadow 0.3s;
  }

  /* ── CART ICON ── */
  .cart-btn {
    position: relative;
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #e0f0fe; background: #fff;
    cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.15s;
  }
  .cart-btn:hover { background: #e0f0fe; border-color: #7dcefb; transform: scale(1.05); }
  .cart-badge {
    position: absolute; top: -5px; right: -5px;
    width: 18px; height: 18px; border-radius: 50%;
    background: linear-gradient(135deg, #0e9de8, #027ec4);
    color: #fff; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  }
  .cart-badge.show { transform: scale(1); }

  /* ── CART SIDEBAR ── */
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(12,26,46,0.4);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .cart-overlay.open { opacity: 1; visibility: visible; }
  .cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 400px; max-width: 100vw;
    background: #fff;
    z-index: 901;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid #e0f0fe;
  }
  .cart-sidebar.open { transform: translateX(0); }
  .cart-header {
    padding: 22px 24px 18px;
    border-bottom: 1px solid #f0f8ff;
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
  }
  .cart-close {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #e0f0fe; background: none; cursor: pointer;
    transition: background 0.2s;
  }
  .cart-close:hover { background: #f0f8ff; }
  .cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
  .cart-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; gap: 14px; color: #94a3b8;
  }
  .cart-item {
    display: flex; gap: 14px; padding: 14px 0;
    border-bottom: 1px solid #f0f8ff;
    align-items: flex-start;
  }
  .cart-item-img {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0f0fe;
  }
  .cart-item-info { flex: 1; }
  .cart-item-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0c456d;
    line-height: 1.45;
    margin-bottom: 6px;
  } 
  .cart-item-cat { font-size: 11px; color: #7dcefb; font-weight: 500; margin-bottom: 6px; }
  .cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #027ec4;
    font-family: 'DM Serif Display', serif;
  }

  .qty-ctrl {
    display: inline-flex; align-items: center; gap: 0;
    border: 1px solid #e0f0fe; border-radius: 8px; overflow: hidden;
    margin-top: 8px;
  }
  .qty-btn {
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    background: #f0f8ff; border: none; cursor: pointer; font-size: 14px; color: #027ec4;
    transition: background 0.15s;
  }
  .qty-btn:hover { background: #e0f0fe; }
  .qty-val { width: 32px; text-align: center; font-size: 13px; font-weight: 600; color: #0c456d; }
  .cart-remove { cursor: pointer; color: #94a3b8; font-size: 16px; transition: color 0.2s; margin-top: 2px; }
  .cart-remove:hover { color: #ef4444; }
  .cart-footer {
    padding: 18px 24px 24px;
    border-top: 1px solid #f0f8ff;
    flex-shrink: 0;
  }

  .btn-checkout {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #0e9de8, #027ec4);
    color: #fff; font-weight: 700; font-size: 14px;
    border: none; border-radius: 14px; cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
  }
  .btn-checkout:hover { opacity: 0.92; transform: translateY(-1px); }

  .cart-continue-btn{
    width:100%;
    
    margin-top:10px;
    
    padding:10px;
    
    border:none;
    
    background:none;
    
    cursor:pointer;
    
    font-size:13px;
    
    font-weight:500;
    
    color:#64748b;
    }

  /* ── WHATSAPP BUTTON ── */
  .wa-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border: 1px solid #e0f0fe;

    cursor: pointer;
    text-decoration: none;

    transition:
      background 0.2s,
      border-color 0.2s,
      transform 0.15s;
  }

  .wa-btn:hover {
    background: #f0fdf4;
    border-color: #86efac;
    transform: scale(1.05);
  }

  .wa-btn svg {
    width: 19px;
    height: 19px;
  }
  /* NAVBAR END */

  /* ── HERO ── */
  .hero-wrap {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
  }

  .hero-text-col {
    padding: 7rem 5% 5rem 8%;
  }

  .hero-img-col {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
  }

  .hero-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(2, 126, 196, 0.18) 0%,
      rgba(7, 84, 131, 0.28) 100%
    );
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(14, 157, 232, 0.1);
    border: 1px solid rgba(14, 157, 232, 0.25);

    border-radius: 999px;
    padding: 6px 16px;

    font-size: 13px;
    font-weight: 500;
    color: #027ec4;

    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
  }

  .hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0e9de8;

    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.5;
      transform: scale(1.4);
    }
  }

  /* ── MOBILE & TABLET ── */
  @media (max-width: 900px) {
    .hero-wrap {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    /* Teks tampil dulu */
    .hero-text-col {
      order: 1;
      padding: 5.5rem 6% 2.5rem;
      text-align: center;
    }

    /* Gambar tampil setelah teks */
    .hero-img-col {
      order: 2;
      height: 58vw;
      min-height: 260px;
    }

    /* Rapihkan heading dan paragraf */
    .hero-text-col h1,
    .hero-text-col p {
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
    }

    /* Tombol di tengah */
    .hero-text-col .flex {
      justify-content: center;
    }
  }

  /* ── EXTRA MOBILE ── */
  @media (max-width: 640px) {
    .hero-text-col {
      padding-top: 5rem;
      padding-bottom: 2rem;
    }

    .hero-img-col {
      height: 70vw;
      min-height: 240px;
    }

    .hero-text-col h1 {
      font-size: 2rem;
      line-height: 1.25;
    }

    .hero-text-col p {
      font-size: 0.95rem;
    }
  }

  /* ── HOMEPAGE PRODUCT GRID ── */
  .homepage-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  @media (max-width: 1200px) {
    .homepage-product-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 900px) {
    .homepage-product-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
  }

  @media (max-width: 600px) {
    .homepage-product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  }

  /* ===== PRODUCT CARD ===== */
  .product-card {
    background: #fff;
    border: 1px solid #e0f0fe;
    border-radius: 20px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    cursor: pointer;

    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .product-card:hover {
    transform: translateY(-5px);
    border-color: #c8e9ff;
    box-shadow: 0 16px 40px rgba(2,126,196,0.12);
  }

  /* Mobile */
  @media (max-width:768px){

    .product-card-body{
      padding:16px 14px 14px;
    }

    .price-sale{
      font-size:17px;
    }

  }

  /* ===== IMAGE ===== */
  .product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    z-index: 1;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
  }

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

  .product-card{
    cursor:pointer;
  }
  
  .product-img-wrap a{
    display:block;
  }
  
  .product-title-link{
    text-decoration:none;
  }
  
  .product-title-link h3{
    transition:.2s;
  }
  
  .product-card:hover .product-title-link h3{
    color:#027ec4;
  }

  /* ===== CATEGORY TAG ===== */
  .product-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 10px;

    border-radius: 999px;

    font-size: 10.5px;
    font-weight: 700;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,.3);
  }

  /* ===== CARD BODY ===== */
  .product-card-body {
    position: relative;

    background: #fff;

    padding: 18px 16px 16px;

    display: flex;
    flex-direction: column;
    flex: 1;

    border-top-left-radius: 18px;
    border-top-right-radius: 18px;

    margin-top: -18px;

    z-index: 2;

    box-shadow: 0 -6px 18px rgba(2,126,196,0.05);
  }

  /* ===== PRICE ===== */
  .price-original {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
  }

  .price-sale {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: #027ec4;
    font-weight: 400;
    line-height: 1;
  }

  .price-discount-badge {
    display: inline-block;

    background: #fef2f2;
    color: #dc2626;

    font-size: 10px;
    font-weight: 700;

    padding: 3px 8px;

    border-radius: 999px;

    letter-spacing: 0.04em;
  }

  /* ===== BUTTON ===== */
  .product-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 100%;

    padding: 10px 16px;

    margin-top: auto;

    border-radius: 12px;

    background: linear-gradient(
      135deg,
      #e0f0fe,
      #f0f8ff
    );

    border: 1.5px solid #e0f0fe;

    cursor: pointer;

    transition:
      background 0.2s,
      border-color 0.2s,
      transform 0.15s;
  }

  .product-add-btn:hover {
    background:
      linear-gradient(
        135deg,
        #b9e3fd,
        #e0f0fe
      );

    border-color: #7dcefb;

    transform: translateY(-1px);
  }

  .product-add-btn.added {
    background:
      linear-gradient(
        135deg,
        #0e9de8,
        #027ec4
      );

    border-color: #027ec4;
  }

  .product-add-btn.added svg path,
  .product-add-btn.added svg circle {
    stroke: #fff;
    fill: #fff;
  }

  .product-add-btn.added .add-btn-label {
    color: #fff;
  }

  .add-btn-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #027ec4;
    white-space: nowrap;
  }

  .health-modal{
    position:fixed;
    inset:0;
    z-index:9999;
  
    opacity:0;
    pointer-events:none;
  
    transition:.3s;
  }
  
  .health-modal.open{
    opacity:1;
    pointer-events:auto;
  }
  
  .health-overlay{
    position:absolute;
    inset:0;
  
    background:rgba(7,20,35,.55);
  
    backdrop-filter:blur(6px);
  }
  
  .health-content{
    position:absolute;
  
    top:50%;
    left:50%;
  
    transform:translate(-50%,-50%) scale(.95);
  
    width:min(920px,92vw);
    max-height:85vh;
  
    overflow-y:auto;
  
    background:#fff;
  
    border-radius:32px;
  
    padding:36px;
  
    transition:.3s;
  
    box-shadow:
      0 30px 80px rgba(0,0,0,.18);
  }
  
  .health-content::-webkit-scrollbar{
    width:5px;
  }
  
  .health-content::-webkit-scrollbar-thumb{
    background:#c7e7ff;
    border-radius:999px;
  }
  
  .health-modal.open .health-content{
    transform:translate(-50%,-50%) scale(1);
  }
  
  .health-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
  
    margin-bottom:28px;
  }
  
  .health-subtitle{
    font-size:13px;
    color:#7dcefb;
    font-weight:600;
  }
  
  .health-header h3{
    font-size:28px;
    color:#075483;
    font-family:"DM Serif Display",serif;
  }
  
  .health-close{
    width:42px;
    height:42px;
  
    border:none;
    border-radius:14px;
  
    background:#f0f8ff;
  
    cursor:pointer;
  
    font-size:22px;
  
    color:#027ec4;
  }

  .health-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
  }
  
  .health-card{
    display:block;
  
    padding:24px;
  
    border-radius:22px;
  
    background:#f8fbff;
  
    border:1px solid #e0f0fe;
  
    text-decoration:none;
  
    transition:.25s;
  }
  
  .health-card:hover{
    transform:translateY(-4px);
  
    border-color:#7dcefb;
  
    box-shadow:0 18px 35px rgba(2,126,196,.12);
  }
  
  .health-card h4{
    color:#075483;
    font-weight:700;
    margin-bottom:8px;
  }
  
  .health-card p{
    color:#64748b;
    font-size:13px;
    line-height:1.6;
  }
  
  @media(max-width:768px){

    .health-content{
      top:auto;
      left:0;
      right:0;
      bottom:0;
  
      width:100%;
      max-height:88vh;
  
      transform:translateY(100%);
  
      border-radius:28px 28px 0 0;
  
      padding:22px 18px 28px;
  
      overflow-y:auto;
    }
  
    .health-modal.open .health-content{
      transform:translateY(0);
    }
  
    .health-header{
      margin-bottom:18px;
    }
  
    .health-header h3{
      font-size:22px;
      line-height:1.3;
    }
  
    .health-grid{
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
  
    .health-card{
      flex-direction:column;
      align-items:flex-start;
  
      gap:10px;
  
      min-height:140px;
  
      padding:16px;
    }
  
    .health-icon{
      width:46px;
      height:46px;
    }
  
    .health-info h4{
      font-size:14px;
    }
  
    .health-info p{
      font-size:12px;
      line-height:1.5;
    }
  
    .health-arrow{
      margin-top:auto;
      align-self:flex-end;
    }
  
  }

  /* slider nav — inline di header, bukan absolute */
  .slider-nav-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #fff; border: 1.5px solid #e0f0fe;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(2,126,196,0.10);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .slider-nav-btn:hover { background: #e0f0fe; border-color: #7dcefb; transform: scale(1.08); }
  /* Di mobile, tombol prev/next disembunyikan — navigasi pakai swipe/geser langsung */
  @media (max-width: 640px) { .slider-nav-btn { display: none !important; } }

  /* dots */
  .prod-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #b9e3fd; cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none; padding: 0;
  }
  .prod-dot.active { background: #027ec4; transform: scale(1.45); }

  /* ── about ── */
  .about-section { background: linear-gradient(160deg, #0c456d 0%, #027ec4 60%, #38b5f8 100%); }

  /* ── vision cards ── */
  .vision-card { background: #fff; border: 1px solid #e0f0fe; border-radius: 16px; padding: 1.75rem 1.5rem; transition: box-shadow 0.3s; }
  .vision-card:hover { box-shadow: 0 12px 36px rgba(2,126,196,0.12); }
  .misi-item { display: flex; align-items: flex-start; gap: 14px; }
  .misi-num { flex-shrink:0; width:32px; height:32px; border-radius:50%; background:linear-gradient(135deg,#0e9de8,#027ec4); color:#fff; font-size:13px; font-weight:600; display:flex; align-items:center; justify-content:center; }

  /* ── carousel ── */
  .carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
  .carousel-slide { min-width: 100%; height: 400px; overflow: hidden; border-radius: 22px; position: relative; }
  .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .carousel-slide-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(7,84,131,0.55) 0%,transparent 60%); }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #b9e3fd; transition: background 0.3s, transform 0.3s; cursor: pointer; }
  .carousel-dot.active { background: #027ec4; transform: scale(1.4); }
  .carousel-btn { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid #e0f0fe; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, box-shadow 0.2s; box-shadow: 0 2px 12px rgba(2,126,196,0.1); }
  .carousel-btn:hover { background: #e0f0fe; }
  /* Di mobile, tombol prev/next galeri disembunyikan — navigasi pakai swipe/geser langsung */
  @media (max-width: 640px) { .carousel-btn { display: none !important; } }

  /* ── TRUST STRIP ── */
  .trust-strip { background: linear-gradient(135deg, #f0f8ff, #e8f4fd); border-top: 1px solid #e0f0fe; border-bottom: 1px solid #e0f0fe; }
  .trust-item { display: flex; align-items: center; gap: 12px; padding: 20px 0; }
  .trust-icon { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid #e0f0fe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 8px rgba(2,126,196,0.08); }

  /* ── TESTIMONIAL ── */
  .testi-card { background: #fff; border: 1px solid #e0f0fe; border-radius: 20px; padding: 24px; transition: box-shadow 0.3s, transform 0.3s; }
  .testi-card:hover { box-shadow: 0 16px 40px rgba(2,126,196,0.1); transform: translateY(-4px); }
  .star { color: #f59e0b; font-size: 13px; }

  /* ── reveal ── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── section label ── */
  .section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #027ec4; margin-bottom: 1rem; }
  .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: #0e9de8; border-radius: 2px; }

  /* ── info section ── */
  .info-card { background: #fff; border: 1px solid #e0f0fe; border-radius: 18px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
  .info-card:hover { box-shadow: 0 16px 40px rgba(2,126,196,0.1); transform: translateY(-4px); }

  /* scrollbar slim */
  .cart-body::-webkit-scrollbar { width: 4px; }
  .cart-body::-webkit-scrollbar-track { background: transparent; }
  .cart-body::-webkit-scrollbar-thumb { background: #b9e3fd; border-radius: 2px; }

  /* ── TESTIMONIAL SLIDER ── */
  .testi-slider-wrap { position: relative; overflow: hidden; }
  .testi-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .testi-card {
    background: #fff;
    border: 1px solid #e0f0fe;
    border-radius: 20px;
    padding: 24px;
  
    flex-shrink: 0;
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
  
    transition: box-shadow 0.3s, transform 0.3s;
  
    /* baru */
    display: flex;
    flex-direction: column;
    min-height: 280px;
  }
  .testi-card:hover { box-shadow: 0 16px 40px rgba(2,126,196,0.1); transform: translateY(-4px); }
  @media (max-width: 1024px) { .testi-card { width: calc((100% - 40px) / 3); } }
  @media (max-width: 768px)  { .testi-card { width: calc((100% - 20px) / 2); } }
  @media (max-width: 480px)  { .testi-card { width: 85vw; } }
  .star { color: #f59e0b; font-size: 13px; }
  .testi-nav-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 1px solid #e0f0fe;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(2,126,196,0.12);
    transition: background 0.2s;
  }
  .testi-nav-btn:hover { background: #e0f0fe; }
  /* Di mobile, tombol prev/next testimoni disembunyikan — navigasi pakai swipe/geser langsung */
  @media (max-width: 640px) { .testi-nav-btn { display: none !important; } }
  .testi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #b9e3fd; border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .testi-dot.active { background: #027ec4; transform: scale(1.35); }  
  /* ── TESTIMONIAL SLIDER END ── */

/* ── operational ── */ .op-row { display:flex; align-items:center; justify-content:space-between; padding:12px 0; border-bottom:1px solid #e0f0fe; font-size:14px; } .op-row:last-child { border-bottom: none; } .op-badge { font-size:11px; font-weight:600; padding:3px 10px; border-radius:999px; letter-spacing:0.04em; } .op-open { background:#e0f7ea; color:#167a3b; } .op-close { background:#fee2e2; color:#b91c1c; } /* ── contact card ── */ .contact-card { background:#fff; border:1px solid #e0f0fe; border-radius:16px; padding:1.5rem; display:flex; align-items:center; gap:14px; transition:box-shadow 0.25s,transform 0.25s; text-decoration:none; color:inherit; } .contact-card:hover { box-shadow:0 10px 32px rgba(2,126,196,0.13); transform:translateY(-3px); } .contact-icon { width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

  /* ── FOOTER ── */
  .footer-bg { background: #0a1628; }
  .footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(14,157,232,0.4), transparent); }
  .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
  .footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; padding: 4px 0; transition: color 0.2s, padding-left 0.2s; }
  .footer-link:hover { color: #38b5f8; padding-left: 6px; }
  .footer-social { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
  .footer-social:hover { background: rgba(14,157,232,0.15); border-color: rgba(14,157,232,0.4); color: #38b5f8; }
  .footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(14,157,232,0.08); border: 1px solid rgba(14,157,232,0.2); border-radius: 8px; padding: 6px 12px; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }

  /* ==========================
  FOOTER MINI TITLE
  ========================== */

  .footer-mini-title{
    font-size:10px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(255,255,255,.28);
    margin-bottom:12px;
  }

  /* ==========================
    SHIPPING
  ========================== */

  .footer-shipping{
    margin-top:24px;
  }

  .shipping-logos{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }

  .shipping-logos img{
    width:58px;
    height:34px;

    object-fit:contain;

    background:#fff;
    padding:5px 8px;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.08);

    transition:.25s;
  }

  .shipping-logos img:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(14,157,232,.15);
  }

  /* ==========================
    MARKETPLACE
  ========================== */

  .footer-marketplace{
    margin-top:24px;
  }

  .marketplace-link{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:10px;

    font-size:13px;

    color:rgba(255,255,255,.50);

    text-decoration:none;

    transition:.2s;
  }

  .marketplace-link:hover{
    color:#38b5f8;
    transform:translateX(4px);
  }

  .marketplace-dot{
    width:9px;
    height:9px;

    border-radius:50%;

    flex-shrink:0;
  }

  .marketplace-dot.tokopedia{
    background:#42b549;
  }

  .marketplace-dot.shopee{
    background:#ee4d2d;
  }

  /* MOBILE */

  @media(max-width:768px){

    .footer-shipping,
    .footer-marketplace{
      margin-top:20px;
    }

    .shipping-logos img{
      width:52px;
      height:30px;
    }

  }
  /* ── FOOTER END ── */
  /* ── SHOPPING GUIDE TOOLTIP (floating, pojok kanan bawah) ── */
  .guide-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0e9de8,#027ec4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 24px rgba(2,126,196,0.35);
    z-index: 850;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .guide-fab:hover { transform: scale(1.07); box-shadow: 0 8px 28px rgba(2,126,196,0.45); }
  .guide-fab svg { width: 22px; height: 22px; }
  /* Denyut halus supaya pertama kali terlihat oleh pengunjung baru */
  .guide-fab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #027ec4;
    opacity: 0.55;
    animation: guidePulse 2.4s ease-out infinite;
    pointer-events: none;
  }
  @keyframes guidePulse {
    0%   { transform: scale(1);   opacity: 0.45; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
  }

  .guide-panel {
    position: fixed;
    bottom: 86px;
    right: 24px;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e0f0fe;
    box-shadow: 0 16px 48px rgba(2,126,196,0.22);
    z-index: 851;
    padding: 18px;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .guide-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .guide-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  .guide-panel-title { font-family:'DM Serif Display',serif; font-size: 16px; color: #0c456d; }
  .guide-panel-sub { font-size: 11.5px; color: #7dabc9; margin-top: 1px; }
  .guide-panel-close {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #f0f8ff; border: none; cursor: pointer; flex-shrink: 0;
    color: #7dabc9; font-size: 14px; line-height: 1;
    transition: background 0.2s;
  }
  .guide-panel-close:hover { background: #e0f0fe; }

  .guide-steps { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
  .guide-step { display: flex; align-items: flex-start; gap: 11px; }
  .guide-step-num {
    flex-shrink: 0;
    width: 24px; height: 24px; border-radius: 50%;
    background: #f0f8ff; border: 1.5px solid #b9e3fd;
    color: #027ec4; font-size: 11.5px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }
  .guide-step-text { font-size: 12.5px; color: #3a6a8c; line-height: 1.5; padding-top: 2px; }
  .guide-step-text strong { color: #0c456d; font-weight: 700; }

  @media (max-width: 480px) {
    .guide-fab { bottom: 18px; right: 18px; width: 46px; height: 46px; }
    .guide-panel { bottom: 76px; right: 16px; left: 16px; width: auto; }
  }

/* ══════════════════════════════════════════════════════
   SKELETON LOADING
   ══════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg,
    #e8f4fd 25%,
    #d0eaf9 50%,
    #e8f4fd 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
  border-radius: 10px;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Homepage product skeleton ── */
.skeleton-product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e0f0fe;
}
.skeleton-product-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.skeleton-product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skeleton-line { height: 12px; }
.skeleton-line.short { width: 55%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.long { width: 100%; }
.skeleton-price { height: 18px; width: 50%; margin-top: 4px; }
.skeleton-btn { height: 36px; width: 100%; margin-top: 8px; border-radius: 10px; }

/* ── Showcase skeleton ── */
.skeleton-showcase-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0f0fe;
}
.skeleton-showcase-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.skeleton-showcase-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ── Detail skeleton ── */
.skeleton-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 24px;
}
@media (max-width: 768px) {
  .skeleton-detail-wrap { grid-template-columns: 1fr; gap: 24px; }
}
.skeleton-detail-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
}
.skeleton-detail-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.skeleton-detail-title { height: 28px; width: 85%; }
.skeleton-detail-price { height: 32px; width: 50%; }
.skeleton-detail-line { height: 13px; }
.skeleton-detail-btn { height: 48px; border-radius: 14px; margin-top: 8px; }
