/* Luxury theme for Branded Fragrance Ceylon */

:root{
  --bg: #07070c;
  --card: rgba(14, 14, 22, 0.62);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.86);
  --muted: rgba(255,255,255,0.62);

  /* Extracted from logo palette */
  --c1: #D41D49;
  --c2: #762872;
  --c3: #3D2F8B;

  /* Luxury highlight */
  --champagne: rgba(255, 232, 180, 0.82);
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  color: var(--text);
  background: radial-gradient(1000px 600px at 20% 15%, rgba(212,29,73,0.22), transparent 60%),
              radial-gradient(900px 520px at 80% 25%, rgba(61,47,139,0.20), transparent 55%),
              radial-gradient(900px 600px at 55% 85%, rgba(118,40,114,0.18), transparent 60%),
              var(--bg);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

/* Ambient orbs */
.bg-orbs{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.55;
  transform: translate3d(0,0,0);
}

.orb-1{ left: -120px; top: -160px; background: radial-gradient(circle at 30% 30%, rgba(212,29,73,0.70), transparent 60%); }
.orb-2{ right: -200px; top: 80px; background: radial-gradient(circle at 30% 30%, rgba(61,47,139,0.70), transparent 60%); }
.orb-3{ left: 20%; bottom: -220px; background: radial-gradient(circle at 30% 30%, rgba(118,40,114,0.70), transparent 60%); }

.page{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.lux-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
}

.brand{
  display: flex;
  align-items: center;
}

.brand-logo{
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

.divider{
  margin: 18px 0 22px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(212,29,73,0.0), rgba(212,29,73,0.55), rgba(61,47,139,0.55), rgba(61,47,139,0.0));
}

.headline{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.info-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.pill .material-icons{
  font-size: 18px;
  line-height: 18px;
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.notify{
  margin-top: 8px;
}

.notify-row{
  display: flex;
  gap: 10px;
  width: 100%;
}

.notify-input{
  flex: 1;
  min-width: 220px;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.88);
  outline: none;
}

.notify-input::placeholder{ color: rgba(255,255,255,0.45); }

.notify-input:focus{
  border-color: rgba(212,29,73,0.45);
  box-shadow: 0 0 0 4px rgba(212,29,73,0.14);
}

.notify-btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
}

.notify-btn:hover{ transform: translateY(-1px); filter: brightness(1.04); }

.notify-note{
  display: inline-block;
  margin-top: 8px;
  color: rgba(255,255,255,0.52);
}

/* Contact links */
.contact{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  font-size: 0.92rem;
}

.contact-item .material-icons{
  font-size: 18px;
  line-height: 18px;
  color: rgba(255,255,255,0.70);
}

.contact-item:hover{
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}

/* Visual side */
.visual-col{
  position: relative;
  background: radial-gradient(800px 500px at 50% 30%, rgba(255,255,255,0.06), transparent 60%);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.visual-wrap{
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.shine{
  position: absolute;
  inset: 20px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255,255,255,0.10), transparent 45%, rgba(255,255,255,0.06));
  opacity: 0.55;
  pointer-events: none;
}

.bottle{
  width: min(300px, 80%);
  height: auto;
  opacity: 0.98;
}

.tagline{
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.58);
}

/* Footer */
.lux-footer{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}

.lux-footer .dot{ opacity: 0.55; }

/* Responsive */
@media (max-width: 991.98px){
  .visual-col{ border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .visual-wrap{ min-height: 420px; }
  .headline{ font-size: 2.0rem; }
}

@media (max-width: 575.98px){
  .notify-row{ flex-direction: column; }
  .notify-btn{ width: 100%; }
  .brand-logo{ max-width: 340px; }
  .headline{ font-size: 1.7rem; }
}


/* v2: product mock + social buttons + language toggle */
.product-mock{
  width: min(340px, 86%);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.55));
}

.lang-toggle{
  display: inline-flex;
  gap: 8px;
  margin-bottom: 14px;
}

.lang-btn{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
}

.lang-btn.is-active{
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.18);
}

.social-bar{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: transform .12s ease, border-color .12s ease, filter .12s ease;
}

.social-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.22);
  filter: brightness(1.03);
  text-decoration: none;
  color: rgba(255,255,255,0.92);
}

.social-ic{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  color: rgba(255,255,255,0.94);
  font-size: 0.78rem;
}

.social-tx{
  font-weight: 600;
}

.social-whatsapp .social-ic{
  background: linear-gradient(90deg, rgba(42, 226, 135, 0.95), rgba(0, 170, 90, 0.95));
}

@media (max-width: 575.98px){
  .social-bar{ grid-template-columns: 1fr; }
}
