/* 1. GLOBAL & BACKGROUND */
html {
  scrollbar-gutter: stable;
  touch-action: manipulation;
  height: -webkit-fill-available;
}

body {
  background-color: #0d0e12; /* Deep Charcoal/Slate - ne gryna juoda */
  background-image: url("/img/background.gif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #e2e8f0;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  position: relative;
  overflow-x: hidden !important;
  width: 100%;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Itin tamsus gradientas: viršuje vos matoma pilka, apačioje pilna juoda */
  background: radial-gradient(
    circle at 50% 0%,
    rgba(10, 10, 12, 0.4) 0%,
    rgba(2, 2, 2, 1) 100%
  );
  z-index: 1;
}

/* 2. CONTAINER */
.container {
  position: relative;
  z-index: 2;
  max-width: 410px;
  width: 100%;
  padding: 55px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
}

/* 3. HEADER & SOCIALS */
.header-section {
  text-align: center;
  width: 100%;
}

.logo-wrapper {
  margin-bottom: 25px;
}

.main-logo {
  width: 85px;
  height: 85px;
  border-radius: 35px; /* Super-ellipse apvalumas */
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 24px;
  letter-spacing: 2px;
  margin: 15px 0 5px;
  font-weight: 700 !important; /* Standartinis Bold */
  color: #ffffff;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.tagline {
  color: #aaaaaa;
  font-size: 14px;
  margin: 5px 0 30px;
  line-height: 1.5;
  padding: 0 20px;
}

/* SOCIALS */
.social-links {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff !important;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* 4. PRODUCT CARDS */
.card {
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px; /* Itin apvalūs kampai */
  padding: 24px;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.product-thumb {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.info-box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.info-box p {
  margin: 6px 0;
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.4;
}

.price-tag {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.old-price {
  text-decoration: line-through;
  color: #aaaaaa;
  font-size: 12px;
  margin-right: 6px;
}

.promo-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* 5. ACTION BUTTONS - „Ghost Glass“ stilius */
.action-btn {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  text-decoration: none;
  padding: 15px;
  border-radius: 22px; /* Labai apvalūs */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* 6. NEWSLETTER FIX */
.newsletter-card {
  background: transparent !important;
  text-align: center;
  width: 100% !important;
}

.newsletter-header-text {
  font-weight: 900 !important;
  font-size: 24px !important;
  color: #ffffff !important;
  letter-spacing: 1px;
}

.newsletter-sub-text {
  color: #aaaaaa !important;
  font-weight: 900 !important;
  font-size: 28px !important;
  margin-top: -10px !important;
  display: block;
}

.gift-badge {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px; /* Itin apvalūs kampai */
  padding: 12px !important;
  margin: 30px 0 !important;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gift-badge span {
  font-size: 12px !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* MAILERLITE FORMOS INTEGRACIJA */
.ml-embedded button {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border-radius: 22px !important;
  height: 52px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.ml-embedded button:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* 8. FOOTER */
.main-footer {
  margin-top: 50px;
  color: #aaaaaa;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
