* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 40px 20px;
  text-align: center;
}

/* Logo */
.logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}


.h1 {
  font-size: 22px;
  font-weight: 500;
}

.subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 25px;
}

/* CTA */
.cta-main {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 22px;
}

.cta-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #d4af37;
}

.cta-desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 14px;
}

.cta-button {
  display: inline-block;
  padding: 12px 22px;
  background: #d4af37;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* PRODUCT GALLERY VERTICAL */
.product-gallery-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 30px;
}

.product-gallery-vertical img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  background: #111;
  transition: 0.3s ease;
}

.product-gallery-vertical img:hover {
  transform: scale(1.03);
}

.gallery-note {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: -16px;
}

/* HIGHLIGHT */
.highlight {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 24px;
}

.highlight span {
  display: block;
  color: #888;
  margin-top: 4px;
}

/* Social Icons */
.social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.social i {
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.social i:hover {
  color: #d4af37;
}

/* Link Cards */
.market-title {
  margin: 28px 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #d4af37;
}

.link {
  text-decoration: none;
  color: inherit;
}

.link {
  background: #1c1c1c;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.link {
  transition: all 0.3s ease;
}

.link:hover {
  transform: translateY(-2px);
}

.link:hover {
  background: #2a2a2a;
}

.link-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tiktok {
  background: #000;
}

.shopee {
  background: #fff;
}

.instagram{
  background: #fff; #111;
}

 .whatsapp {
  background-color: #25D366;
  color: #fff;
} 

.more {
  color: #777;
  font-size: 18px;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}
