:root {
  --biru-neon: #00f0ff;
  --ungu-neon: #a900ff;
  --pink-neon: #ff00c8;
  --hitam-bg: #0e0e0e;
  --putih: #ffffff;
}

a.no-underline {
  text-decoration: none;
}


/* --- Global Reset dan Typography --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--hitam-bg);
  color: var(--putih);
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  line-height: 1.5;
}

/* --- Neon Text Gradien --- */
.text-gradient {
  background: linear-gradient(90deg, var(--biru-neon), var(--ungu-neon), var(--pink-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.navbar {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--biru-neon);
  box-shadow: 0 0 10px var(--biru-neon);
}

.navbar-brand {
  font-weight: 600;
  letter-spacing: 1px;
}

.gap-4 {
    gap: 4rem !important; 
}

.nav-thin {
  color: var(--biru-neon) !important;
  font-weight: 400;
  padding: 0.5rem 1.5rem; /* <--- Lebarin kiri-kanan */
  text-transform: uppercase;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}


.nav-thin:hover {
  color: var(--pink-neon) !important;
  text-shadow: 0 0 8px var(--pink-neon);
}

@media (max-width: 767.98px) {
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem; /* Rapatkan jarak antar link */
  }

  .navbar-nav {
    align-items: center; /* Tengahin link di mobile */
  }

  #searchInput {
    font-size: 14px;
  }

  .btn-login-thin, 
  .btn-profile-neon {
    width: 100%; /* Tombol full width di mobile */
  }

  .navbar-collapse {
    padding-bottom: 1rem; /* Biar bawahnya ada jarak */
  }

  .position-relative {
    width: 100% !important; /* Search input full width */
  }
}


.neon-input-thin {
  background-color: #111;
  border: 1px solid var(--biru-neon);
  border-radius: 0.375rem;
  color: white;
  font-size: 0.85rem;
  box-shadow: inset 0 0 5px var(--biru-neon);
}

.neon-input-thin::placeholder {
  color: #777;
}

.neon-input-thin:focus {
  border-color: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  background-color: #000;
  color: #fff;
}

.text-neon {
  color: var(--biru-neon);
}

.btn-login-thin {
  background-color: transparent;
  border: 1px solid var(--biru-neon);
  color: var(--biru-neon);
  font-weight: 400;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-login-thin:hover {
  background-color: var(--biru-neon);
  color: black;
  box-shadow: 0 0 10px var(--biru-neon);
}

.btn-profile-neon {
  background: linear-gradient(135deg, var(--biru-neon), var(--pink-neon));
  color: white;
  font-weight: bold;
  border: none;
  width: 44px;
  height: 44px;
  box-shadow: 0 0 10px var(--biru-neon), 0 0 15px var(--pink-neon);
}


/* --- Input Neon --- */
.neon-input {
  background: #111;
  border: 2px solid var(--biru-neon);
  color: var(--putih);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 10px var(--biru-neon);
  backdrop-filter: blur(4px);
  transition: box-shadow 0.3s;
  height: 48px;
}
.neon-input::placeholder {
  color: #bbb;
}
.neon-input {
  background-color: transparent;
  color: white;
  border: 1px solid var(--biru-neon);
  font-size: 0.85rem;
  box-shadow: 0 0 5px var(--biru-neon);
}
.neon-input:focus {
  outline: none;
  box-shadow: 0 0 10px var(--biru-neon);
}


/* --- Buttons Neon --- */
.btn-neon {
  background: linear-gradient(45deg, var(--biru-neon), var(--ungu-neon));
  color: var(--putih);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 10px var(--biru-neon), 0 0 20px var(--ungu-neon);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-neon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--pink-neon), 0 0 25px var(--biru-neon);
}

.btn-outline-neon {
  border: 2px solid var(--biru-neon);
  color: var(--biru-neon);
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 8px var(--biru-neon);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-outline-neon:hover {
  background: var(--biru-neon);
  color: var(--hitam-bg);
  box-shadow: 0 0 12px var(--biru-neon);
}

/* --- Shadows --- */
.shadow-neon {
  box-shadow: 0 0 15px var(--biru-neon), 0 0 30px var(--ungu-neon);
}

/* --- Carousel --- */
.carousel-inner {
  border-radius: 12px;
  box-shadow: 0 0 20px var(--biru-neon);
}
.carousel-inner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s;
}
.carousel-inner img:hover {
  transform: scale(1.02);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  box-shadow: 0 0 10px var(--pink-neon);
}

/* --- Flash Sale --- */
.flash-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--hitam-bg);
  border: 2px solid var(--biru-neon);
  box-shadow: 0 0 15px var(--ungu-neon);
  transition: transform 0.3s, box-shadow 0.3s;
}
.flash-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--pink-neon), 0 0 30px var(--biru-neon);
}
.flash-card .card-body {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flash-card .card-body h6 {
  font-size: 1.1rem;
  color: var(--pink-neon);
  margin-bottom: 0.25rem;
}
.flash-card .card-body small {
  color: #ccc;
  font-size: 0.9rem;
}
.flash-card .price {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flash-card .price .new-price {
  color: var(--pink-neon);
  font-weight: bold;
}
.flash-card .price .old-price {
  color: #777;
  text-decoration: line-through;
  font-size: 0.9rem;
}
.flash-card .progress {
  height: 6px;
  background: rgba(255,255,255,0.1);
}
.flash-card .progress-bar {
  background: var(--ungu-neon);
}
.flash-card small.text-light-emphasis {
  font-size: 0.85rem;
}
.flash-card .btn-sm {
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
}
/* --- Trending Cards --- */
.trending-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--biru-neon);
  border-radius: 0.75rem;
  backdrop-filter: blur(5px);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 1rem;
}
.trending-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 10px var(--pink-neon), 0 0 20px var(--biru-neon);
}
.trending-img {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
}

/* --- List Produk --- */
.btn-cat {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  transition: background 0.3s, color 0.3s;
}
.btn-cat.active {
  background: var(--biru-neon);
  color: var(--hitam-bg);
}
.product-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--hitam-bg);
  border: 2px solid var(--biru-neon);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.product-card:hover::before {
  left: 100%;
}

.product-card img {
  object-fit: cover;
  height: 150px;
  position: relative;
  z-index: 2;
}

.product-card .card-body {
  background: rgba(0, 0, 0, 0.8);
  padding: 0.75rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.product-card .card-title,
.product-card .card-text {
  color: #fff !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--pink-neon), 0 0 30px var(--biru-neon);
  border-color: var(--pink-neon);
}

.product-card .link-icon {
  background: rgba(0,0,0,0.5);
  padding: 0.25rem;
  border-radius: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

.product-card .link-icon:hover {
  background: var(--pink-neon);
  color: var(--hitam-bg);
}

/* Mobile Product Cards Enhancement */
@media (max-width: 768px) {
  .product-card {
    min-height: 220px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
  }
  
  .product-card img {
    height: 120px;
  }
  
  .product-card .card-body {
    padding: 0.75rem 0.5rem;
  }
  
  .product-card .card-title {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
  }
  
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--pink-neon), 0 0 25px var(--biru-neon);
  }
}

@media (max-width: 576px) {
  .product-card {
    min-height: 160px;
    border-radius: 8px;
    margin-bottom: 0.35rem;
    border-width: 1px;
  }
  
  .product-card img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }
  
  .product-card .card-body {
    padding: 0.35rem;
    background: rgba(0, 0, 0, 0.9);
  }
  
  .product-card .card-title {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    color: var(--biru-neon) !important;
    text-shadow: 0 0 5px var(--biru-neon);
  }
  
  /* Grid layout untuk mobile - 2 kolom yang rapi */
  #produk-container {
    margin: 0 -0.1rem;
  }
  
  #produk-container .col-6 {
    padding: 0.1rem;
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }

  .product-card:hover {
    transform: translateY(-2px);
  }

  .product-card::before {
    display: none; /* Remove shimmer effect on mobile */
  }
}

/* Responsive untuk small tablet */
@media (min-width: 576px) and (max-width: 767px) {
  .product-card {
    min-height: 200px;
  }
  
  .product-card img {
    height: 110px;
  }
  
  .product-card .card-title {
    font-size: 0.85rem;
    text-align: center;
  }
  
  /* 3 kolom untuk small tablet */
  #produk-container .col-sm-4 {
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
  }
}

/* Responsive untuk tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .product-card {
    min-height: 220px;
  }
  
  .product-card img {
    height: 120px;
  }
  
  /* 4 kolom untuk tablet */
  #produk-container .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
}

/* Category buttons mobile enhancement */
@media (max-width: 768px) {
  .btn-cat {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  
  .d-flex.flex-wrap.gap-2 {
    gap: 0.5rem !important;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .btn-cat {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  
  .section-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }
}

/* --- Footer --- */
footer {
  background-color: var(--hitam-bg);
  color: #ddd;
  padding: 2rem 0;
}
footer h5, footer h6 {
  color: var(--biru-neon);
  font-weight: bold;
}
footer a {
  color: #ddd;
  transition: color 0.3s, text-shadow 0.3s;
}
footer a:hover {
  color: var(--biru-neon);
  text-shadow: 0 0 6px var(--biru-neon);
}
footer hr {
  border-color: var(--pink-neon);
  opacity: 0.2;
}
/* Footer neon border-top */
footer {
  border-top: 2px solid var(--biru-neon);
  box-shadow: 0 -2px 10px var(--biru-neon);
}
.section-card {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 
              0 0 30px rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.banner-hero {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px var(--biru-neon), 0 0 40px rgba(0, 240, 255, 0.3);
}

.banner-hero.ratio {
  --bs-aspect-ratio: 56.25%; /* 16:9 aspect ratio */
}

.banner-hero .carousel-item {
  height: 100%;
}

.banner-hero .carousel-item img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .banner-hero {
    border-radius: 15px;
  }
  .banner-hero.ratio {
    --bs-aspect-ratio: 56.25%; /* 16:9 aspect ratio untuk mobile */
  }
  .banner-hero .carousel-item img {
    border-radius: 15px;
  }
}

/* Responsive untuk mobile kecil */
@media (max-width: 576px) {
  .banner-hero {
    border-radius: 12px;
  }
  .banner-hero.ratio {
    --bs-aspect-ratio: 66.67%; /* 3:2 aspect ratio untuk mobile kecil */
  }
  .banner-hero .carousel-item img {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .navbar .search-group {
    flex-direction: column;
    gap: 10px;
  }
}
.btn-neon:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
  transform: translateY(-1px);
}
.btn-outline-neon:hover {
  background-color: rgba(0, 255, 255, 0.1);
  color: #0ff;
}
.logo-text {
  background: linear-gradient(45deg, #0ff, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.search-input:focus {
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
  outline: none;
}

.search-wrapper {
  position: relative;
}

.search-wrapper input {
  border-radius: 6px !important;
  padding-right: 2.2rem !important;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.9rem;
  color: var(--biru-neon);
  text-shadow: 0 0 5px var(--biru-neon);
}

@media (max-width: 992px) {
  .navbar .form-control {
    font-size: 0.9rem;
  }
}
.neon-input:focus {
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
  border-color: rgba(0, 255, 255, 0.5);
}
.btn-neon:hover {
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.6), 0 0 24px rgba(255, 0, 255, 0.4);
  transform: scale(1.03);
}
.text-gradient {
  background: linear-gradient(45deg, #00ffff, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dropdown-menu {
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.navbar-toggler {
  border: 1px solid rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}
.navbar.bg-dark {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
}

.shadow-glow {
  box-shadow: 0 0 10px 3px #00ffff;
  border: 2px solid #00ffff !important;
}

/* Flash Sale Slider */
.flashSaleSwiper {
  padding: 10px 5px;
  margin: -10px -5px;
}

.flashSaleSwiper .swiper-slide {
  width: 280px;
  margin-right: 20px;
  height: auto;
}

.flashSaleSwiper .flash-card {
  height: 320px;
  display: flex;
  flex-direction: column;
}

.flashSaleSwiper .flash-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.flashSaleSwiper .flash-card .card-body h6 {
  font-size: 1rem;
  line-height: 1.2;
  height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.flashSaleSwiper .flash-card .card-body small {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.flashSaleSwiper .flash-card .price {
  margin-bottom: 0.75rem;
}

.flashSaleSwiper .flash-card .progress {
  margin-bottom: 0.75rem;
}

.flash-next,
.flash-prev {
  color: var(--biru-neon) !important;
  transition: all 0.3s ease;
}

.flash-next:after,
.flash-prev:after {
  font-size: 24px !important;
  text-shadow: 0 0 10px var(--biru-neon);
}

.flash-next:hover,
.flash-prev:hover {
  color: var(--pink-neon) !important;
  text-shadow: 0 0 15px var(--pink-neon);
}

@media (max-width: 768px) {
  .flashSaleSwiper .swiper-slide {
    width: 240px;
    margin-right: 15px;
  }
  
  .flashSaleSwiper .flash-card {
    height: 300px;
  }
  
  .flashSaleSwiper .flash-card .card-body h6 {
    font-size: 0.95rem;
  }
  
  .flash-next:after,
  .flash-prev:after {
    font-size: 20px !important;
  }
}

@media (max-width: 576px) {
  .flashSaleSwiper .swiper-slide {
    width: 220px;
  }
  
  .flashSaleSwiper .flash-card {
    height: 280px;
  }
  
  .flashSaleSwiper .flash-card .card-body {
    padding: 0.75rem;
  }
  
  .flashSaleSwiper .flash-card .card-body h6 {
    font-size: 0.9rem;
    height: 2.2em;
  }
}

/* --- Detail Product Page --- */
.hero-banner {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 240, 255, 0.1));
  z-index: 1;
}

.hero-banner .product-icon {
  position: absolute;
  bottom: -50px;
  left: 2rem;
  z-index: 2;
  width: 100px;
  height: 100px;
  border: 3px solid var(--biru-neon);
  border-radius: 15px;
  box-shadow: 0 0 20px var(--biru-neon);
}

.product-info {
  margin-left: 140px;
  margin-top: 60px;
}

.step-card {
  background: rgba(17, 17, 17, 0.9);
  border: 2px solid var(--biru-neon);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(10px);
}

.nominal-card {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  color: var(--putih);
}

.nominal-card table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.nominal-card table td {
  padding: 0.5rem;
  border: none;
  color: var(--putih);
}

.nominal-card table td:last-child {
  text-align: right;
  font-weight: 500;
}

.nominal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nominal-card:hover {
  border-color: var(--biru-neon);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.nominal-card:hover::before {
  left: 100%;
}

.nominal-card.selected {
  border-color: var(--pink-neon);
  box-shadow: 0 0 20px var(--pink-neon);
  background: rgba(255, 0, 200, 0.15);
}

.nominal-card .total-row {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: bold;
  color: var(--pink-neon);
  text-shadow: 0 0 5px var(--pink-neon);
}

.payment-method {
  background: rgba(17, 17, 17, 0.9);
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-method:hover {
  border-color: var(--biru-neon);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.payment-method.selected {
  border-color: var(--pink-neon);
  box-shadow: 0 0 20px var(--pink-neon);
  background: rgba(255, 0, 200, 0.1);
}

.checkout-sidebar {
  background: rgba(17, 17, 17, 0.95);
  border: 2px solid var(--biru-neon);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(10px);
}

.checkout-sidebar .table {
  background: transparent !important;
  color: var(--putih) !important;
  border: none !important;
}

.checkout-sidebar .table td {
  background: transparent !important;
  color: var(--putih) !important;
  border: none !important;
  padding: 0.5rem 0;
}

.checkout-sidebar .table tbody tr {
  background: transparent !important;
  border: none !important;
}

.checkout-sidebar .table-sm td {
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.checkout-sidebar .bg-dark {
  background: rgba(17, 17, 17, 0.95) !important;
  border: 1px solid rgba(0, 240, 255, 0.3) !important;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--biru-neon);
  background: transparent;
  color: var(--biru-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--biru-neon);
  color: var(--hitam-bg);
  box-shadow: 0 0 10px var(--biru-neon);
}

/* Responsive untuk detail page */
@media (max-width: 768px) {
  .hero-banner {
    height: 200px;
    border-radius: 15px;
  }
  
  .hero-banner .product-icon {
    width: 80px;
    height: 80px;
    left: 1rem;
    bottom: -40px;
  }
  
  .product-info {
    margin-left: 100px;
    margin-top: 50px;
  }
  
  .step-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .nominal-card {
    padding: 0.75rem;
  }
  
  .checkout-sidebar {
    margin-top: 2rem;
    position: relative !important;
  }
}

@media (max-width: 576px) {
  .product-info {
    margin-left: 0;
    margin-top: 100px;
    text-align: center;
  }
  
  .hero-banner .product-icon {
    left: 50%;
    transform: translateX(-50%);
  }
}





