:root {
      --navy: #071b3a;
      --navy-soft: #102f5f;
      --gold: #d6a93a;
      --gold-light: #f2d27a;
      --white: #ffffff;
      --soft-white: #f5f7fb;
      --text: #1d2633;
      --muted: #6b7280;
      --shadow: 0 20px 60px rgba(7, 27, 58, 0.18);
      --radius: 24px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--soft-white);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    /* NAVBAR */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(7, 27, 58, 0.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(214, 169, 58, 0.35);
    }

    .nav-wrapper {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-weight: 900;
      letter-spacing: 1px;
      font-size: 22px;
    }

    /* .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 0 0 4px rgba(214, 169, 58, 0.18);
    } */

    /* code ini untuk menampilkan logo primkopal, model yg lama di atas dihiding  */
    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      /* background: linear-gradient(135deg, var(--gold), var(--gold-light)); */
      color: var(--navy);
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 0 0 4px rgba(214, 169, 58, 0.18);
    }

    .nav-menu {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-menu a {
      color: var(--white);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: 0.25s;
    }

    .nav-menu a:hover {
      color: var(--gold-light);
    }

    .nav-cta {
      padding: 11px 22px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy) !important;
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(214, 169, 58, 0.25);
    }

    /* HERO */
    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 80% 20%, rgba(214, 169, 58, 0.26), transparent 28%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 55%, #061326 100%);
      color: var(--white);
      padding: 95px 0 80px;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -35% -10%;
      height: 300px;
      background: rgba(255, 255, 255, 0.06);
      transform: rotate(-3deg);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 50px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(214, 169, 58, 0.45);
      border-radius: 999px;
      color: var(--gold-light);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 72px);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: -2px;
      margin-bottom: 24px;
    }

    .hero h1 span {
      color: var(--gold-light);
    }

    .hero p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.82);
      max-width: 620px;
      margin-bottom: 34px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 26px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: 0.3px;
      transition: 0.25s;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      box-shadow: 0 14px 30px rgba(214, 169, 58, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(214, 169, 58, 0.38);
    }

    .btn-secondary {
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(214, 169, 58, 0.35);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .hero-card img {
      height: 380px;
      object-fit: cover;
      border-radius: 18px;
      filter: saturate(1.05) contrast(1.05);
    }

    .hero-card-info {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 6px 4px;
      color: var(--white);
    }

    .hero-card-info strong {
      display: block;
      color: var(--gold-light);
      font-size: 22px;
      line-height: 1;
    }

    .hero-card-info small {
      color: rgba(255, 255, 255, 0.75);
      font-weight: 700;
    }

    /* SECTION */
    section {
      padding: 85px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header span {
      color: var(--gold);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
    }

    .section-header h2 {
      font-size: clamp(30px, 4vw, 46px);
      color: var(--navy);
      line-height: 1.1;
      font-weight: 900;
      margin-top: 10px;
    }

    .section-header p {
      color: var(--muted);
      max-width: 650px;
      margin: 14px auto 0;
    }

    /* ITEMS */
    .items-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .item-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 12px 34px rgba(7, 27, 58, 0.08);
      border: 1px solid rgba(7, 27, 58, 0.08);
      transition: 0.25s;
    }

    .item-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
    }

    .item-card img {
      height: 220px;
      object-fit: cover;
    }

    .item-content {
      padding: 24px;
    }

    .item-content h3 {
      color: var(--navy);
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .item-content p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .price {
      color: var(--gold);
      font-weight: 900;
      font-size: 20px;
    }

    .small-btn {
      padding: 10px 16px;
      background: var(--navy);
      color: var(--white);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
    }

    /* STORY / FOTO NARASI */
    .story {
      background: linear-gradient(180deg, #ffffff 0%, #edf2f8 100%);
    }

    .story-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 70px;
    }

    .story-row:last-child {
      margin-bottom: 0;
    }

    .story-row.reverse .story-image {
      order: 2;
    }

    .story-image {
      position: relative;
    }

    .story-image::before {
      content: "";
      position: absolute;
      inset: 18px -18px -18px 18px;
      background: linear-gradient(135deg, var(--gold), var(--navy));
      border-radius: var(--radius);
      z-index: 0;
    }

    .story-image img {
      position: relative;
      z-index: 1;
      height: 360px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .story-text span {
      color: var(--gold);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
    }

    .story-text h2 {
      color: var(--navy);
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.12;
      font-weight: 900;
      margin: 10px 0 18px;
    }

    .story-text p {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 22px;
    }

    .check-list {
      display: grid;
      gap: 12px;
    }

    .check-list div {
      background: var(--white);
      border-left: 5px solid var(--gold);
      padding: 13px 16px;
      border-radius: 12px;
      font-weight: 800;
      color: var(--navy);
      box-shadow: 0 8px 20px rgba(7, 27, 58, 0.06);
    }

    /* CTA */
    .cta {
      background:
        radial-gradient(circle at 15% 20%, rgba(214, 169, 58, 0.25), transparent 30%),
        linear-gradient(135deg, var(--navy), #030b18);
      color: var(--white);
      text-align: center;
      padding: 80px 0;
    }

    .cta h2 {
      font-size: clamp(30px, 5vw, 52px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .cta p {
      max-width: 680px;
      margin: 0 auto 30px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 17px;
    }

    /* FOOTER */
    footer {
      background: #061326;
      color: var(--white);
      padding: 55px 0 24px;
    }

    /* .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 35px;
    } */

    /* bagian ini karena footer jadi 2 kolom saja, sebelumnya 3 kolom */
    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 50px;
        margin-bottom: 35px;
        }

    .footer-brand h3 {
      font-size: 26px;
      color: var(--gold-light);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.72);
      max-width: 420px;
    }

    .footer-links h4 {
      color: var(--gold-light);
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-links a {
      display: block;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 10px;
      transition: 0.25s;
    }

    .footer-links a:hover {
      color: var(--gold-light);
      padding-left: 4px;
    }

    .socials {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .socials a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(214, 169, 58, 0.25);
      color: var(--gold-light);
      font-weight: 900;
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 22px;
      color: rgba(255, 255, 255, 0.58);
      font-size: 14px;
      text-align: center;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-grid,
      .story-row,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .story-row.reverse .story-image {
        order: 0;
      }

      .items-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-card img,
      .story-image img {
        height: 300px;
      }
    }

    @media (max-width: 640px) {
      .nav-wrapper {
        height: auto;
        padding: 18px 0;
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
      }

      .nav-menu {
        width: 100%;
        gap: 14px;
        flex-wrap: wrap;
      }

      .nav-menu a {
        font-size: 12px;
      }

      .hero {
        padding: 70px 0;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .items-grid {
        grid-template-columns: 1fr;
      }

      .hero-card-info {
        flex-direction: column;
      }
    }
    
    /* ============================= */
/* SHOP PAGE - REFINED VERSION */
/* ============================= */

.shop-page {
  background: var(--soft-white);
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 75px 0 65px;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 169, 58, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 58%, #061326 100%);
  color: var(--white);
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-3deg);
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 2px solid var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}

.shop-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 600;
}

.shop-section {
  padding: 70px 0 90px;
}

.shop-panel,
.cart-panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--navy);
  box-shadow: 8px 8px 0 var(--navy);
}

.shop-panel {
  overflow: hidden;
}

.shop-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-bottom: 3px solid var(--navy);
  background: linear-gradient(135deg, #ffffff, #fff7df);
}

.shop-panel-header span,
.cart-title span,
.cart-total-small span,
.cart-summary span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.shop-panel-header h2,
.cart-title h2 {
  color: var(--navy);
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 5px;
}

.shop-search {
  width: min(380px, 100%);
}

.shop-search input {
  width: 100%;
  padding: 15px 18px;
  border: 3px solid var(--navy);
  border-radius: 14px;
  outline: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--navy);
}

.shop-search input:focus {
  background: #fff9e8;
  box-shadow: 2px 2px 0 var(--navy);
  transform: translate(2px, 2px);
}

/* TABLE */

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.product-table th {
  background: var(--navy);
  color: var(--gold-light);
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-table td {
  padding: 20px;
  border-bottom: 2px solid rgba(7, 27, 58, 0.12);
  color: var(--text);
  vertical-align: middle;
  font-size: 17px;
  font-weight: 700;
}

.product-table tbody tr {
  transition: 0.2s;
}

.product-table tbody tr:hover {
  background: #fff8e6;
}

.product-name-wrap strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.product-name-wrap small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-price {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.stock-badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  border: 2px solid currentColor;
}

.stock-ready {
  background: #dcfce7;
  color: #047857;
}

.stock-empty {
  background: #fee2e2;
  color: #b91c1c;
}

/* NEO BRUTALISM BUTTON */

.neo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--navy);
  border-radius: 13px;
  padding: 12px 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--navy);
  transition: 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.neo-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--navy);
}

.neo-btn:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--navy);
}

.neo-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: 5px 5px 0 var(--navy);
}

.neo-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.neo-btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: #020817;
  box-shadow: 5px 5px 0 #020817;
}

.neo-btn-danger {
  background: #fee2e2;
  color: #991b1b;
  border-color: #991b1b;
  box-shadow: 4px 4px 0 #991b1b;
}

.neo-btn-danger:hover {
  box-shadow: 2px 2px 0 #991b1b;
}

.neo-btn-danger:active {
  box-shadow: 0 0 0 #991b1b;
}

.neo-btn-small {
  padding: 9px 13px;
  font-size: 13px;
  border-radius: 10px;
}

/* CART */

.cart-panel {
  margin-top: 36px;
  padding: 32px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 27px;
  border: 3px solid var(--navy);
  box-shadow: 5px 5px 0 var(--navy);
}

.cart-total-small {
  padding: 13px 20px;
  border-radius: 16px;
  background: #fff7df;
  text-align: center;
  border: 3px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}

.cart-total-small strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
}

.cart-empty {
  padding: 24px;
  border: 3px dashed var(--navy);
  border-radius: 18px;
  background: #fff7df;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 3px solid var(--navy);
  box-shadow: 5px 5px 0 rgba(7, 27, 58, 0.85);
}

.cart-item-info h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 3px;
}

.cart-item-info p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.cart-item-info small {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

/* QTY BUTTON */

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: 3px solid var(--navy);
  cursor: pointer;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  border-radius: 11px;
  box-shadow: 4px 4px 0 var(--navy);
  transition: 0.15s ease;
}

.qty-control button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--navy);
}

.qty-control button:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--navy);
}

.qty-control span {
  min-width: 42px;
  padding: 8px 10px;
  text-align: center;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  border: 3px solid var(--navy);
  border-radius: 11px;
  background: var(--white);
}

.cart-subtotal {
  text-align: right;
}

.cart-subtotal strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
}

.cart-summary {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cart-summary strong {
  display: block;
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 5px;
}

.checkout-btn {
  border: 3px solid var(--navy);
  cursor: pointer;
  padding: 16px 25px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--navy);
  transition: 0.15s ease;
}

.checkout-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--navy);
}

.checkout-btn:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 var(--navy);
}

/* ============================= */
/* RESPONSIVE SHOP */
/* ============================= */

@media (max-width: 900px) {
  .shop-panel-header,
  .cart-header,
  .cart-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-subtotal {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .shop-hero {
    padding: 55px 0;
  }

  .shop-hero h1 {
    font-size: 34px;
  }

  .shop-hero p {
    font-size: 17px;
  }

  .shop-section {
    padding: 48px 0 70px;
  }

  .shop-panel-header,
  .cart-panel {
    padding: 22px;
  }

  .shop-panel-header h2,
  .cart-title h2 {
    font-size: 25px;
  }

  .table-wrapper {
    overflow-x: visible;
  }

  .product-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 16px;
  }

  .product-table thead {
    display: none;
  }

  .product-table,
  .product-table tbody,
  .product-table tr,
  .product-table td {
    display: block;
    width: 100%;
  }

  .product-table tr {
    padding: 18px;
    border: 3px solid var(--navy);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 6px 6px 0 var(--navy);
  }

  .product-table td {
    border-bottom: none;
    padding: 11px 0;
    font-size: 16px;
  }

  .product-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .product-name-wrap strong {
    font-size: 20px;
  }

  .neo-btn,
  .checkout-btn {
    width: 100%;
  }

  .cart-summary strong {
    font-size: 27px;
  }

  .cart-item {
    box-shadow: 5px 5px 0 var(--navy);
  }

  .qty-control {
    justify-content: space-between;
    width: 100%;
  }

  .qty-control span {
    flex: 1;
  }
}

/* ============================= */
/* MOBILE SHOP - DESKTOP COMPOSITION */
/* ============================= */

@media (max-width: 700px) {

  /* halaman tetap rapi, hanya jarak dipadatkan */
  .shop-section {
    padding: 36px 0 60px;
  }

  .container {
    width: min(1180px, 94%);
  }

  .shop-panel,
  .cart-panel {
    border-radius: 18px;
    border-width: 2px;
    box-shadow: 4px 4px 0 var(--navy);
  }

  /* header panel tetap komposisi desktop */
  .shop-panel-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-bottom-width: 2px;
  }

  .shop-panel-header span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .shop-panel-header h2 {
    font-size: 20px;
    margin-top: 3px;
  }

  .shop-search {
    width: 42%;
    min-width: 130px;
  }

  .shop-search input {
    padding: 10px 11px;
    font-size: 12px;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--navy);
  }

  /* TABLE TETAP TABLE, TIDAK BERUBAH JADI CARD */
  .table-wrapper {
    overflow-x: auto;
  }

  .product-table {
    display: table;
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    border-spacing: 0;
  }

  .product-table thead {
    display: table-header-group;
  }

  .product-table tbody {
    display: table-row-group;
  }

  .product-table tr {
    display: table-row;
    width: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-table th,
  .product-table td {
    display: table-cell;
    width: auto;
  }

  .product-table th {
    padding: 11px 9px;
    font-size: 10px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .product-table td {
    padding: 12px 9px;
    font-size: 12px;
    border-bottom: 1px solid rgba(7, 27, 58, 0.12);
    vertical-align: middle;
  }

  .product-table td::before {
    display: none;
    content: none;
  }

  .product-name-wrap strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .product-name-wrap small {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.25;
  }

  .product-price {
    font-size: 12px;
    white-space: nowrap;
  }

  /* stock lebih kecil */
  .stock-badge {
    padding: 5px 8px;
    font-size: 11px;
    border-width: 2px;
    white-space: nowrap;
  }

  /* tombol list item cukup simbol + */
  .product-table .neo-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    font-size: 0;
    border-width: 2px;
    box-shadow: 3px 3px 0 var(--navy);
  }

  .product-table .neo-btn::before {
    content: "+";
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
  }

  .product-table .neo-btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--navy);
  }

  .product-table .neo-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--navy);
  }

  .product-table .neo-btn:disabled::before {
    content: "×";
    font-size: 18px;
  }

  /* CART tetap komposisi seperti desktop */
  .cart-panel {
    margin-top: 28px;
    padding: 18px;
  }

  .cart-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
  }

  .cart-title {
    gap: 10px;
  }

  .cart-icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 var(--navy);
  }

  .cart-title span,
  .cart-total-small span,
  .cart-summary span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .cart-title h2 {
    font-size: 20px;
    margin-top: 2px;
  }

  .cart-total-small {
    padding: 8px 12px;
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 var(--navy);
  }

  .cart-total-small strong {
    font-size: 19px;
  }

  .cart-empty {
    padding: 14px;
    font-size: 12px;
    border-width: 2px;
    border-radius: 12px;
  }

  .cart-list {
    gap: 12px;
  }

  /* cart item tetap 3 kolom seperti desktop */
  .cart-item {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 13px;
    border-width: 2px;
    border-radius: 14px;
    box-shadow: 3px 3px 0 rgba(7, 27, 58, 0.85);
  }

  .cart-item-info h3 {
    font-size: 13px;
    line-height: 1.25;
  }

  .cart-item-info p {
    font-size: 11px;
    line-height: 1.25;
  }

  .cart-item-info small {
    font-size: 10px;
  }

  .qty-control {
    gap: 5px;
    width: auto;
    justify-content: flex-start;
  }

  .qty-control button {
    width: 31px;
    height: 31px;
    font-size: 16px;
    border-width: 2px;
    border-radius: 9px;
    box-shadow: 3px 3px 0 var(--navy);
  }

  .qty-control span {
    min-width: 34px;
    padding: 5px 6px;
    font-size: 13px;
    border-width: 2px;
    border-radius: 9px;
    flex: unset;
  }

  .cart-subtotal {
    text-align: right;
  }

  .cart-subtotal strong {
    font-size: 12px;
    margin-bottom: 7px;
    white-space: nowrap;
  }

  .neo-btn-small {
    padding: 7px 9px;
    font-size: 11px;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 3px 3px 0 #991b1b;
  }

  .cart-summary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 17px;
    border-top-width: 2px;
  }

  .cart-summary strong {
    font-size: 20px;
  }

  .checkout-btn {
    width: auto;
    padding: 11px 14px;
    font-size: 12px;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--navy);
    white-space: nowrap;
  }
}


  /* =====================================================
     PENGIRIMAN PAGE ONLY
     Memanfaatkan style.css utama, tidak mengubah style.css.
  ===================================================== */

  .shipping-page .shop-section {
    padding-top: 58px;
    padding-bottom: 90px;
  }

  .shipping-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(350px, 0.82fr);
    gap: 30px;
    align-items: start;
  }

  .shipping-main {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .shipping-page .shop-panel,
  .shipping-page .cart-panel {
    animation: shippingFadeUp 0.45s ease both;
  }

  .shipping-page .shop-panel-header {
    padding: 30px 32px 26px;
  }

  .shipping-page .shop-panel-header h2,
  .shipping-page .cart-title h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.5px;
  }

  .shipping-page .shop-panel-header span,
  .shipping-page .cart-title span {
    font-size: 12.5px;
    letter-spacing: 1.4px;
  }

  .compact-panel {
    padding-bottom: 0;
  }

  /* =====================================================
     REKAP KERANJANG - MINIMALIS ELEGAN
     Format: Produk | Harga | Qty | Subtotal
  ===================================================== */

  .shipping-page .mini-cart-box {
    display: grid;
    gap: 0;
    padding: 30px 32px 34px;
    background:
      radial-gradient(circle at top right, rgba(214, 169, 58, 0.12), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  }

  .shipping-page .mini-cart-head {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) 120px 86px 140px;
    gap: 18px;
    align-items: center;
    padding: 14px 20px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 10px 24px rgba(214, 169, 58, 0.18);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .shipping-page .mini-cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) 120px 86px 140px;
    gap: 18px;
    align-items: center;
    min-height: 84px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(7, 27, 58, 0.12);
    background: #ffffff;
    transition:
      background 0.18s ease,
      transform 0.18s ease,
      box-shadow 0.18s ease;
  }

  .shipping-page .mini-cart-row:hover {
    background: #fffaf0;
    box-shadow: inset 4px 0 0 var(--gold);
  }

  .shipping-page .mini-cart-row:last-child {
    border-bottom: none;
  }

  .shipping-page .mini-cart-product {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .shipping-page .mini-cart-product strong {
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.12px;
    word-break: break-word;
  }

  .shipping-page .mini-cart-product small {
    color: var(--muted);
    font-size: 12.8px;
    font-weight: 800;
    line-height: 1.35;
  }

  .shipping-page .mini-cart-cell {
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 900;
    line-height: 1.3;
  }

  .shipping-page .mini-cart-cell.price {
    text-align: right;
    white-space: nowrap;
  }

  .shipping-page .mini-cart-cell.qty {
    text-align: center;
  }

  .shipping-page .mini-cart-cell.subtotal {
    text-align: right;
    white-space: nowrap;
    color: var(--gold);
    font-size: 16px;
  }

  .shipping-page .mini-cart-qty-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f5f7fb;
    border: 2px solid rgba(7, 27, 58, 0.12);
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
  }

  .shipping-page .mini-cart-empty {
    padding: 22px;
    border: 2px dashed rgba(7, 27, 58, 0.22);
    border-radius: 18px;
    background: #f9fafc;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
  }

  /* =====================================================
     FORM DATA PEMESAN
  ===================================================== */

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 32px;
  }

  .form-group {
    position: relative;
  }

  .form-group.full {
    grid-column: 1 / -1;
  }

  .form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.1px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    min-height: 52px;
    border: 3px solid var(--navy);
    border-radius: 15px;
    padding: 15px 16px;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy);
    background: #ffffff;
    outline: none;
    box-shadow: 5px 5px 0 var(--navy);
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease,
      border-color 0.18s ease;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(107, 114, 128, 0.78);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    background: #fff9e8;
    border-color: var(--gold);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--navy);
  }

  .form-group textarea {
    min-height: 126px;
    resize: vertical;
    padding-top: 16px;
  }

  .form-group small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
  }

  /* =====================================================
     TUJUAN PENGIRIMAN & MAP
  ===================================================== */

  .shipping-note {
    margin: 28px 32px 20px;
    padding: 16px 18px;
    border: 3px solid var(--navy);
    border-radius: 17px;
    background: linear-gradient(135deg, #fff7df, #fff1c7);
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
    box-shadow: 5px 5px 0 var(--navy);
  }

  .map-search-wrap {
    position: relative;
    padding: 0 32px;
  }

  .map-search-wrap input {
    min-height: 54px;
  }

  .address-dropdown {
    display: none;
    position: absolute;
    z-index: 9999;
    left: 32px;
    right: 32px;
    top: 86px;
    max-height: 310px;
    overflow-y: auto;
    background: #ffffff;
    border: 3px solid var(--navy);
    border-radius: 17px;
    box-shadow: 7px 7px 0 var(--navy);
    animation: shippingDropdown 0.18s ease both;
  }

  .address-dropdown-item {
    padding: 15px 16px;
    border-bottom: 2px solid rgba(7, 27, 58, 0.14);
    cursor: pointer;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    transition: 0.18s ease;
  }

  .address-dropdown-item strong {
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 900;
  }

  .address-dropdown-item:hover {
    background: #fff7df;
    padding-left: 22px;
  }

  #map {
    height: 385px;
    margin: 22px 32px 22px;
    overflow: hidden;
    border: 3px solid var(--navy);
    border-radius: 22px;
    box-shadow: 7px 7px 0 var(--navy);
  }

  .selected-address-box {
    margin: 0 32px 32px;
    padding: 17px 18px;
    border: 3px solid var(--navy);
    border-radius: 17px;
    background: #ffffff;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.55;
    box-shadow: 5px 5px 0 var(--navy);
  }

  .selected-address-box strong {
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
  }

  /* =====================================================
     PANEL KANAN: KURIR & TOTAL
  ===================================================== */

  .sticky-panel {
    position: sticky;
    top: 96px;
    animation: shippingFadeUp 0.5s ease both;
  }

  .shipping-page .cart-panel {
    margin-top: 0;
    padding: 32px;
  }

  .shipping-page .cart-header {
    margin-bottom: 24px;
  }

  .shipping-total-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 20px;
  }

  .shipping-total-box > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 2px solid rgba(7, 27, 58, 0.15);
  }

  /* Hide Total Berat dari tampilan user */
  .shipping-page .shipping-total-box > div:has(#weightText) {
    display: none;
  }

  .shipping-total-box span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }

  .shipping-total-box strong {
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    text-align: right;
  }

  .shipping-total-box .grand {
    margin-top: 6px;
    padding: 17px 18px;
    border: 3px solid var(--navy);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 5px 5px 0 var(--navy);
  }

  .shipping-total-box .grand span {
    color: var(--navy);
  }

  .shipping-total-box .grand strong {
    color: var(--navy);
    font-size: 23px;
    line-height: 1.1;
  }

  .rate-result-box {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 18px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
  }

  .rate-option {
    display: block;
    position: relative;
    padding: 17px 16px 17px 48px;
    border: 3px solid var(--navy);
    border-radius: 17px;
    background: #ffffff;
    color: var(--navy);
    box-shadow: 5px 5px 0 var(--navy);
    cursor: pointer;
    transition: 0.18s ease;
    animation: shippingFadeUp 0.28s ease both;
  }

  .rate-option:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--navy);
    background: #fff9e8;
  }

  .rate-option.selected {
    background: #fff7df;
    border-color: var(--gold);
  }

  .rate-option input {
    position: absolute;
    left: 17px;
    top: 20px;
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
  }

  .rate-option-title {
    color: var(--navy);
    font-size: 15.5px;
    font-weight: 900;
    line-height: 1.3;
  }

  .rate-option-meta {
    margin-top: 7px;
    color: var(--muted);
    font-size: 13.2px;
    font-weight: 800;
  }

  /* =====================================================
     LOADING
  ===================================================== */

  .rate-loading-box {
    display: none;
    margin: 18px 0;
    padding: 20px 18px;
    border: 3px solid var(--navy);
    border-radius: 18px;
    background: #ffffff;
    color: var(--navy);
    text-align: center;
    box-shadow: 5px 5px 0 var(--navy);
  }

  .rate-loading-box strong {
    display: block;
    font-size: 15.5px;
    font-weight: 900;
  }

  .rate-loading-box small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
  }

  .spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    border: 4px solid rgba(7, 27, 58, 0.2);
    border-top-color: var(--gold);
    border-radius: 999px;
    animation: spin 0.75s linear infinite;
  }

  .shipping-page.is-loading::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(7, 27, 58, 0.18);
    backdrop-filter: blur(2px);
    pointer-events: all;
  }

  .shipping-page.is-loading .sticky-panel {
    z-index: 9999;
  }

  .shipping-alert {
    margin-top: 16px;
    padding: 15px 16px;
    border: 3px solid #991b1b;
    border-radius: 17px;
    background: #fee2e2;
    color: #991b1b;
    box-shadow: 5px 5px 0 #991b1b;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
  }

  /* =====================================================
     BUTTON PROPORSI
  ===================================================== */

  .shipping-page .checkout-btn {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    border-radius: 16px;
  }

  /* =====================================================
     ANIMATION
  ===================================================== */

  @keyframes shippingFadeUp {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes shippingDropdown {
    from {
      opacity: 0;
      transform: translateY(-6px) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* =====================================================
     RESPONSIVE
  ===================================================== */

  @media (max-width: 980px) {
    .shipping-layout {
      grid-template-columns: 1fr;
    }

    .sticky-panel {
      position: static;
    }
  }

  @media (max-width: 820px) {
    .shipping-page .mini-cart-box {
      padding: 24px 22px 28px;
    }

    .shipping-page .mini-cart-head {
      display: none;
    }

    .shipping-page .mini-cart-row {
      grid-template-columns: 1fr;
      gap: 10px;
      min-height: auto;
      padding: 18px 0;
    }

    .shipping-page .mini-cart-product strong {
      font-size: 16.5px;
    }

    .shipping-page .mini-cart-cell {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: left !important;
      font-size: 14.5px;
    }

    .shipping-page .mini-cart-cell::before {
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.7px;
      text-transform: uppercase;
    }

    .shipping-page .mini-cart-cell.price::before {
      content: "Harga";
    }

    .shipping-page .mini-cart-cell.qty::before {
      content: "Qty";
    }

    .shipping-page .mini-cart-cell.subtotal::before {
      content: "Subtotal";
    }

    .shipping-page .mini-cart-cell.subtotal {
      font-size: 16px;
    }
  }

  @media (max-width: 700px) {
    .shipping-page .shop-section {
      padding-top: 36px;
    }

    .shipping-main {
      gap: 20px;
    }

    .shipping-page .shop-panel-header {
      padding: 22px;
    }

    .shipping-page .shop-panel-header h2,
    .shipping-page .cart-title h2 {
      font-size: 23px;
    }

    .form-grid {
      grid-template-columns: 1fr;
      gap: 17px;
      padding: 22px;
    }

    .form-group input,
    .form-group textarea {
      font-size: 15px;
      min-height: 51px;
    }

    .shipping-note {
      margin: 22px 22px 16px;
    }

    .map-search-wrap {
      padding: 0 22px;
    }

    .address-dropdown {
      left: 22px;
      right: 22px;
    }

    #map {
      height: 315px;
      margin: 20px 22px;
      border-radius: 18px;
    }

    .selected-address-box {
      margin: 0 22px 24px;
    }

    .shipping-page .cart-panel {
      padding: 24px;
    }

    .shipping-total-box .grand {
      flex-direction: column;
      align-items: flex-start;
    }

    .shipping-total-box .grand strong {
      text-align: left;
      font-size: 24px;
    }
  }

  .form-group .notice-small {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  color: #d97706;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.form-group .notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 15px;
  line-height: 1.2;
  flex-shrink: 0;
}

/* DROP ZONE CART */
.cart-drop-zone {
  border: 3px dashed var(--navy);
  border-radius: 18px;
  background: #fff7df;
  color: var(--navy);
  text-align: center;
  padding: 28px 20px;
  box-shadow: 5px 5px 0 var(--navy);
  transition: 0.18s ease;
}

.cart-drop-zone.drag-over {
  background: var(--gold-light);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--navy);
}

.cart-drop-zone .cart-drop-icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.cart-drop-zone strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
}

.cart-drop-zone p {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.cart-drop-zone small {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.cart-drop-zone .neo-btn {
  margin-top: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.cart-drop-zone.drag-over .cart-drop-icon {
  transform: scale(1.12);
}

.cart-drop-zone .cart-drop-icon {
  transition: 0.18s ease;
}

@media (max-width: 700px) {
  .cart-drop-zone {
    padding: 18px 14px;
  }

  .cart-drop-zone .cart-drop-icon {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .cart-drop-zone strong {
    font-size: 14px;
  }

  .cart-drop-zone p {
    font-size: 12px;
  }

  .cart-drop-zone small {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .cart-drop-zone .neo-btn {
    width: 100%;
  }
}