@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* --- PENGATURAN DASAR --- */
body {
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #F8FAFC;
    background-color: #232741; 
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* --- ANIMASI & PROFIL --- */
.animated-fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-header {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}
.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.profile-bio {
    font-size: 1rem;
    color: #94A3B8;
    margin-top: 5px;
}
.profile-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 0%, #38bdf8, #1e293b 60%);
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.55);
}

.profile-badges {
    margin-top: 16px;
    display: flex;
    flex-direction: column;   /* 3 baris ke bawah */
    align-items: center;
    gap: 10px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #E2E8F0;
    white-space: nowrap;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.badge-pill.badge-highlight {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-color: rgba(248, 250, 252, 0.9);
    color: #F9FAFB;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.7);
}

/* --- KARTU INFO UMUM --- */
.info-card {
    background: rgba(51, 58, 91, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.info-card h3 {
    margin-top: 0;
    color: #F8FAFC;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
}
.info-card p {
    margin-bottom: 0;
    color: #CBD5E1;
    line-height: 1.7;
}

/* --- TOMBOL KONTAK (EMAIL & WA) --- */
.email-button, .wa-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.3s;
}
.email-button { background-color: #00AEEF; color: #fff; }
.email-button:hover { background-color: #0099CC; transform: scale(1.05); }
.wa-button { background-color: #25D366; color: #fff; }
.wa-button:hover { background-color: #128C7E; transform: scale(1.05); }
.wa-button i { margin-right: 8px; }

/* --- BAGIAN BARU: KUNJUNGI TOKO KAMI --- */
.marketplace-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
  gap: 12px;
}
.btn-marketplace-link {
  background-color: #2b3150;
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-marketplace-link:hover {
  transform: scale(1.05);
  background-color: #3c446c;
}
.btn-marketplace-link .marketplace-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  object-fit: contain;
}

/* --- BAGIAN BARU: ETALASE PRODUK (INFINITE SCROLL) --- */
.product-slider-container {
    overflow: hidden;
}
.swiper-container {
    width: 100%;
}
.swiper-wrapper {
  /* CSS WAJIB untuk efek marquee */
  transition-timing-function: linear !important;
}
.swiper-slide {
    width: 170px !important; /* Lebar kartu produk */
    height: auto;
    background-color: #2b3150;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: none; /* Membuat slide tidak bisa diklik */
}
.product-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.product-info {
    padding: 15px;
    text-align: left;
}
.product-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #F8FAFC;
}
.product-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #00AEEF;
    font-weight: 600;
}

/* --- TOMBOL LINK SOSIAL MEDIA & LAINNYA --- */
.link-buttons {
    margin-top: 20px;
}
.link-buttons a {
    background-color: #2b3150;
    color: #F8FAFC;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.link-buttons a:hover {
    transform: scale(1.03);
    background-color: #3c446c;
}
.link-buttons i {
    font-size: 1.5rem;
    width: 40px;
    text-align: left;
}
.link-buttons span {
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
}
.link-buttons .link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.link-buttons .link-text span {
    font-weight: 600;
    font-size: 0.95rem;
}

.link-buttons .link-text small {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 2px;
}


.link-buttons a.highlight {
    background-color: #5865F2;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --- TOMBOL DONASI --- */
.trakteer-button-highlight {
    display: inline-block;
    background-color: #E33E2B;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.3s;
}
.trakteer-button-highlight:hover {
    background-color: #c9301f;
    transform: scale(1.05);
}

/* --- RESPONSIVE UNTUK DESKTOP --- */
@media (min-width: 640px) {
    .marketplace-links {
        grid-template-columns: repeat(4, 1fr); /* 4 kolom di desktop */
    }
}





