/* Reset dan font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom right, #0d0d0f, #1a0f1f, #2a1833);
    color: #e6e6e6; /* abu terang biar kontras */
    min-height: 100vh;
    position: relative;
    user-select: none;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Topbar */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px); /* efek blur */
    -webkit-backdrop-filter: blur(12px); /* Safari */
    background: rgba(20, 10, 30, 0.75); /* hitam keunguan transparan */
    border-bottom: 1px solid rgba(169, 78, 255, 0.25); /* garis bawah ungu lembut */
}

.container {
    width: 100%;
    max-width: 1150px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    height: 64px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6c3ec7;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #a94eff, #6c3ec7 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav a {
    position: relative;
    margin-left: 28px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 5px 0;
    transition: color 0.18s;
}

.nav a.active,
.nav a:hover {
    color: #a94eff;
}

.nav a.active::after,
.nav a:hover::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 1.5px;
    background: linear-gradient(90deg, #a94eff, #6c3ec7 90%);
    width: 80%;
    margin: 0 auto;
    transition: width 0.2s;
}

.nav a::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 1.5px;
    background: transparent;
    width: 0;
    transition: width 0.2s, background 0.2s;
}

/* Responsive */
@media (max-width: 700px) {
    .container {
        padding: 15px;
        height: 54px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav a {
        margin-left: 12px;
        font-size: 0.97rem;
    }
}


.overlay-bar {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 430px;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(44, 21, 69, 0.43);
    box-shadow: 0 8px 32px rgba(108, 62, 199, 0.19), 0 1.5px 10px rgba(80, 20, 170, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    z-index: 30;
    border: 1px solid rgba(173, 148, 255, 0.15);
}

.left_ui {
    padding: 10px;
}

.name-badge {
    color: #fff;
    font-size: 1.09rem;
    font-weight: bold;
    letter-spacing: 0.8px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(108, 62, 199, 0.07);
    border: none;
}

.product-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.28rem;
    margin: 0;
}

.overlay-btn {
    padding: 8px 25px;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(90deg, #a94eff 50%, #6c3ec7 100%);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(108, 62, 199, 0.12);
    transition: background 0.18s, transform 0.15s;
    outline: none;
}

.overlay-btn:hover {
    background: linear-gradient(90deg, #6c3ec7 60%, #a94eff 100%);
    transform: translateY(-2px) scale(1.045);
}

/* Responsive: Mobile look */
@media (max-width: 520px) {
    .overlay-bar {
        max-width: 97vw;
        padding: 10px 10px;
        border-radius: 16px;
    }

    .name-badge {
        padding: 6px;
        font-size: 0.93rem;
    }

    .product-title {
        font-size: 1.03rem;
        margin: 0;
    }

    .overlay-btn {
        font-size: 0.98rem;
        padding: 6px 12px;
        border-radius: 8px;
    }
}






.product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
    margin-top: 60px;
}

.product_box_uistore {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

.product_box_uistore img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 8px;
    transition: transform .4s, filter .4s, box-shadow .4s;
    will-change: transform, filter, box-shadow
}

.product_box_uistore img:hover {
    transform: scale(1.09) translateY(-3px);
    filter: brightness(1.05) contrast(1.1);
    box-shadow: 0 0 12px rgba(255, 126, 95, .5), 0 10px 20px rgba(0, 0, 0, .2)
}
.card_file_sell {
    width: 20%;
    height: 45%;
    background: linear-gradient(135deg, #a94eff, #a94eff);
    position: absolute;
    top: 30%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.iletext {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 10px
}

.product-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(44, 21, 69, 0.43);
    box-shadow: 0 8px 32px rgba(108, 62, 199, 0.19), 0 1.5px 10px rgba(80, 20, 170, 0.04);
    backdrop-filter: blur(8px);
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2)
}

.bulet_icontop,
.click_bg {
    box-shadow: 0 5px 8px rgb(2, 2, 24, .6)
}

.tengah_uistore {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px
}

.bulet_icontop,
.click_bg,
.wa_uistore {
    bottom: 20px;
    position: absolute
}

.click_bg {
    left: 10px;
    background: linear-gradient(135deg, #a94eff, #a94eff);
    padding: 8px 12px;
    border-radius: 30px
}

.click_bg span,
.harga_uistore span {
    color: #fff;
    font-weight: 700;
    font-size: 12px
}

.bulet_icontop {
    right: 10px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center
}

.card_1_text,
.harga_uistore {
    background: linear-gradient(135deg, #a94eff, #a94eff)
}

.bulet_icontop i {
    color: #000;
    font-size: 18px
}

.harga_uistore {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 30px;
    padding: 8px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
    color: #fff;
    font-weight: 700
}

.mobile_uistore,
.uistore_tit {
    left: 0;
    color: #fff;
    text-align: center
}

.footer_uistore {
    padding: 10px;
    gap: 20px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-bottom: 20px
}

.footer_uistore .card_1_text:first-child {
    margin-left: 15px
}

.footer_uistore::-webkit-scrollbar {
    display: none
}

.card_1_text {
    flex-shrink: 0;
    width: 300px;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    scroll-snap-align: start
}

.card_1_text .text_1 {
    font-weight: 700;
    font-size: 16px
}

.card_1_text .text_2 {
    font-size: 14px;
    color: #ebe7e7;
    margin-top: 10px;
    line-height: 1.8;
    white-space: normal;
    overflow-y: auto;
    max-height: 300px;
    padding-right: 10px
}

.card_1_text .text_2::-webkit-scrollbar {
    width: 6px
}

.card_1_text .text_2::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 10px
}

.card_1_text .text_2 ul {
    margin: 0 0 10px 20px;
    padding: 0;
    list-style-type: disc
}

.card_1_text .text_2 li {
    margin-bottom: 8px
}

.card_1_text .text_2 p {
    font-weight: 700;
    margin-bottom: 10px
}

.badge_don {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 36px;
    background: rgba(44, 21, 69, 0.43);
    box-shadow: 0 8px 32px rgba(108, 62, 199, 0.19), 0 1.5px 10px rgba(80, 20, 170, 0.04);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
    z-index: 2;
    letter-spacing: 1px;
}

.qz_overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 5, 20, 0.75); /* hitam keunguan transparan */
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.qz_card {
  background: linear-gradient(135deg, #1a0f1f, #2c1840);
  padding: 30px;
  border-radius: 12px;
  max-width: 420px;
  text-align: center;
  color: #f5f5f5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  position: relative;
  animation: qz_fadeIn 0.5s ease-out;
}

.qz_title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #a94eff, #6c3ec7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qz_text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.qz_text .highlight {
  color: #ffda6c;
  font-weight: 700;
}

.qz_button {
  background: linear-gradient(90deg, #a94eff, #6c3ec7);
  border: none;
  color: white;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.qz_button:hover {
  transform: scale(1.05);
}

.qz_close {
  position: absolute;
  right: 12px; top: 12px;
  font-size: 22px;
  cursor: pointer;
  color: #bbb;
}

@keyframes qz_fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qz_toast_container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.qz_toast {
  min-width: 260px;
  max-width: 320px;
  background: linear-gradient(135deg, #1a0f1f, #2c1840);
  color: #f5f5f5;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
  opacity: 0;
  transform: translateX(100%);
  animation: qz_slideIn 0.5s forwards;
}

.qz_toast::before {
  content: "🔥";
  margin-right: 8px;
}

@keyframes qz_slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes qz_slideOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
