/* =========================
   Chillax Vista 15K Styles
   ========================= */
:root {
  --bg1: #0C0C1B;
  --bg2: #1A1A40;
  --accent1: #F94F6C;
  --accent2: #B47AE1;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  color: #fff;
  font-family: 'Prompt', sans-serif;
  scroll-behavior: smooth;
}

/* ---------- HERO ---------- */
header {
  text-align: center;
  padding: 6rem 1rem 4rem;
}
header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
header p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #ccc;
  line-height: 1.7;
}
.hero-btn {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(180,122,225,0.5);
  transition: all 0.3s;
}
.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(180,122,225,0.8);
}

/* ---------- PRODUCT GRID ---------- */
.product-card {
  background: radial-gradient(100% 100% at 50% 0%, rgba(255,255,255,.08) 0%, rgba(0,0,0,.6) 100%);
  border-radius: 18px;
  transition: transform .3s, box-shadow .3s;
  text-align: center;
  padding: 1rem;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(180,122,225,.3);
}
.product-card img {
  border-radius: 1rem;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.product-card h3 {
  margin-top: 0.5rem;
}

/* ---------- DETAIL PAGE ---------- */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 3rem;
  background: radial-gradient(circle at center, rgba(125,60,192,0.25) 0%, rgba(12,12,27,1) 80%);
  border-radius: 2rem;
  box-shadow: 0 0 25px rgba(180,122,225,0.3);
}
.detail img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.detail h1 {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.detail h2 {
  color: var(--accent2);
  margin-bottom: 1.2rem;
}
.detail p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.detail ul {
  list-style: disc;
  color: #aaa;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.back {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.back:hover {
  transform: scale(1.05);
}

/* ---------- FLOAT BUTTONS ---------- */
.floating-menu, .contact-float {
  position: fixed;
  bottom: 20px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-menu { left: 20px; }
.contact-float { right: 20px; }
.float-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  transition: .3s;
}
.float-btn:hover {
  background: rgba(255,255,255,.3);
}

/* ---------- LANGUAGE SWITCH ---------- */
.lang-switch {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 60;
}
.lang-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.lang-btn:hover {
  background: rgba(255,255,255,.3);
}
.lang-btn.active {
  background: rgba(255,255,255,.5);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  color: #777;
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* === Responsive helpers === */
@media (max-width: 768px){
  .detail{grid-template-columns:1fr !important;gap:1.25rem !important;padding:1.5rem !important}
  .detail img{order:-1 !important;margin-bottom:0.75rem !important;max-width:100%;height:auto}
  .floating-menu{display:none}
}
@media (max-width: 640px){
  .lang-switch{right:12px;top:12px}
}
