/* AG1-inspired clean, modern design for Ascensa with burgundy-violet gradient theme */
:root {
  --primary: #8a314e; /* Wine/burgundy base */
  --primary-dark: #612235; 
  --primary-light: #b86a83; /* Lighter wine shade */
  --violet: #6b4f89; /* Violet accent */
  --violet-dark: #4d375f;
  --violet-light: #9a8aaf; /* Lighter violet */
  --accent: #d4af37; /* Gold accent */
  --accent-light: #f2e4b5; /* Light gold for subtle accents */
  --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--violet) 100%); 
  --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--violet-light) 100%);
  --gradient-bg: linear-gradient(135deg, rgba(138, 49, 78, 0.05) 0%, rgba(107, 79, 137, 0.05) 100%);
  --text: #333;
  --text-light: #666;
  --background: #fff;
  --light-bg: #f9f9f9;
  --border: #eaeaea;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --heading-font: 'Sora', sans-serif;
  --body-font: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  line-height: 1.6;
  background: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out;
}

.loader-container.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(125, 46, 72, 0.2);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
.header {
  padding: 24px 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 50px;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.05));
}

.brand-name {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Media queries for responsive header */
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  
  .logo {
    height: 40px;
  }
  
  .brand-name {
    font-size: 1.5rem;
  }
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.full-width-bg {
  background: var(--gradient-main);
  position: relative;
}

.full-width-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(252,250,252,0.95), rgba(252,250,252,0.97));
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  min-height: 600px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 800px;
  margin: 0;
}

h1 {
  font-family: var(--heading-font);
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  width: 100%;
  text-align: left;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  color: var(--text-light);
  max-width: 95%;
  font-weight: 400;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 550px;
  margin-left: 0;
  margin-right: auto;
}

.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 16px;
}

.notify-form input {
  flex: 1;
  padding: 18px 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.notify-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(125, 46, 72, 0.1);
}

.cta-button {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(107, 79, 137, 0.25);
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 8px 0 0;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--violet), var(--primary));
  box-shadow: 0 8px 20px rgba(107, 79, 137, 0.35);
  transform: translateY(-2px);
}

.coming-soon {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: left;
}

.accent {
  color: var(--primary);
  font-weight: 600;
}

.product-name {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* What's Inside Section */
.whats-inside {
  background: #f9f6f8;
  position: relative;
  padding: 80px 0;
}

.whats-inside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(138, 49, 78, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(107, 79, 137, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
}

.ingredient-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(107, 79, 137, 0.05);
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(107, 79, 137, 0.1);
}

.ingredient-card:hover::before {
  opacity: 1;
}

.ingredient-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-emoji {
  font-size: 24px;
  display: block;
  line-height: 1;
}

.ingredient-content {
  text-align: left;
  flex: 1;
}

.ingredient-name {
  font-family: var(--heading-font);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.ingredient-dose {
  background: var(--gradient-main);
  color: white;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.ingredient-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-ingredients {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(107, 79, 137, 0.15);
}

.btn-ingredients:hover {
  background: linear-gradient(135deg, var(--violet), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 79, 137, 0.25);
}

.btn-secondary {
  background: #f0f0f0;
  color: var(--text);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #e5e5e5;
}

/* Modal styling */
.modal-backdrop {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#ingredientsModal.show .modal-backdrop {
  opacity: 1;
}

.modal-container {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

#ingredientsModal.show .modal-container {
  transform: translateY(0);
  opacity: 1;
}

.modal-close-btn {
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary);
}

.ingredients-table {
  width: 100%;
  border-collapse: collapse;
}

.ingredients-table th, 
.ingredients-table td {
  padding: 14px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(154, 138, 175, 0.1);
}

.ingredients-table thead th {
  font-weight: 600;
  color: var(--violet);
  font-size: 1.1rem;
  border-bottom: 2px solid var(--accent);
}

.ingredients-table tbody tr:hover {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.03), rgba(107, 79, 137, 0.05));
}

.ingredients-table tbody tr:last-child td {
  border-bottom: none;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-right: 20px;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(5px);
  z-index: -1;
}

.product-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.product-image:hover {
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.15));
  animation-play-state: paused;
}

/* Benefits Section */
.benefits {
  background-color: var(--background);
  padding: 100px 0;
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(138, 49, 78, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 90% 90%, rgba(107, 79, 137, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.8;
}

.benefits-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-family: var(--heading-font);
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(138, 49, 78, 0.03);
}

.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(107, 79, 137, 0.1);
  border-color: rgba(107, 79, 137, 0.08);
}

.benefit:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.benefit-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--gradient-main);
  transform: rotate(45deg);
  box-shadow: 0 10px 25px rgba(107, 79, 137, 0.15);
  transition: all 0.4s ease;
}

.benefit:hover .benefit-shape {
  transform: rotate(30deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(107, 79, 137, 0.25);
}

.energy-shape::before,
.focus-shape::before,
.electrolyte-shape::before,
.metabolism-shape::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: white;
  z-index: -1;
}

.energy-shape::after,
.focus-shape::after,
.electrolyte-shape::after,
.metabolism-shape::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  background: var(--gradient-main);
  opacity: 0.85;
  filter: blur(8px);
  border-radius: 50%;
  z-index: -2;
}

.energy-shape::after {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.focus-shape::after {
  background: linear-gradient(135deg, var(--violet), var(--primary));
}

.electrolyte-shape::after {
  background: linear-gradient(135deg, var(--accent), var(--violet));
}

.metabolism-shape::after {
  background: linear-gradient(135deg, var(--violet-dark), var(--primary-dark));
}

.benefit h3 {
  font-family: var(--heading-font);
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.benefit p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Quality Section */
.quality {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(242, 228, 181, 0.1), rgba(154, 138, 175, 0.05));
  position: relative;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.quality-item {
  text-align: center;
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.quality-item:hover {
  transform: translateY(-5px);
}

.quality-number {
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--heading-font);
  background: linear-gradient(135deg, var(--primary-light), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.quality-item h3 {
  font-family: var(--heading-font);
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}

.quality-item p {
  color: var(--text-light);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, rgba(154, 138, 175, 0.05), rgba(242, 228, 181, 0.07));
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(138, 49, 78, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.social-link {
  color: var(--text-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(138, 49, 78, 0.05);
}

.social-link:hover {
  color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(107, 79, 137, 0.1);
}

.footer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-info {
  margin: 8px 0;
  text-align: center;
}

.mail-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.mail-link:hover {
  color: var(--violet);
  text-decoration: underline;
}

.made-in-india {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.heart {
  color: var(--primary);
  display: inline-block;
  animation: heartbeat 1.5s infinite;
  font-size: 1rem;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.website {
  color: var(--primary-light);
  font-weight: 500;
  font-size: 1.1rem;
  background: linear-gradient(to right, var(--primary), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fuel Smarter Section */
.fuel-smarter {
  padding: 150px 0;
  position: relative;
  background: linear-gradient(to bottom, rgba(154, 138, 175, 0.1), rgba(242, 228, 181, 0.1));
  color: var(--text-light);
  min-height: 700px;
  display: flex;
  align-items: center;
}

.fuel-smarter h2 {
  color: var(--violet);
  font-weight: 600;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  min-height: 500px;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-product {
  max-width: 100%;
  max-height: 500px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.05));
  animation: float 6s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.section-lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 400;
}

.fuel-smarter .section-lead {
  color: #999;
  text-align: left;
  margin-left: 0;
  margin-bottom: 50px;
}

.fuel-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fuel-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-number {
  background-color: rgba(107, 79, 137, 0.1);
  color: var(--violet);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(107, 79, 137, 0.1);
  margin-top: 5px;
  border: 1px solid rgba(107, 79, 137, 0.05);
}

.point-content {
  flex: 1;
}

.point-content h3 {
  font-family: var(--heading-font);
  color: var(--violet);
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
}

.point-content p {
  color: #888;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Outperforms Section */
.outperforms {
  padding: 100px 0;
  background-color: var(--background);
}

.benefits-comparison {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.comparison-col {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.comparison-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.comparison-col.featured {
  border: 1px solid var(--accent-light);
  box-shadow: 0 15px 40px rgba(138, 49, 78, 0.1);
}

.comparison-header {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(154, 138, 175, 0.05));
  padding: 20px;
  text-align: center;
}

.comparison-col.featured .comparison-header {
  background: linear-gradient(135deg, var(--primary-light), var(--violet));
  color: white;
}

.comparison-header h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
}

.comparison-col.featured .comparison-header h3 {
  color: white;
}

.comparison-list {
  list-style: none;
  padding: 30px;
}

.comparison-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-light);
}

.comparison-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-light);
  font-weight: 500;
}

.comparison-list.premium li:before {
  color: var(--accent);
}

/* Join Movement Section */
.join-movement {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  color: white;
  position: relative;
}

.join-movement h2 {
  color: white;
  text-align: center;
}

.join-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.join-movement .section-lead {
  color: rgba(255, 255, 255, 0.9);
}

.join-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.join-form {
  margin: 40px auto;
  max-width: 600px;
  display: block;
  width: 100%;
  text-align: center;
}

/* Add spacing between form elements in join section */
.join-form .form-row {
  margin-bottom: 24px;
}

.join-movement .cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-movement .cta-button:hover {
  background: white;
  color: var(--violet);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.early-benefits {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  text-align: center;
  width: 100%;
  font-weight: 500;
}

/* Updated Footer */
.insta-link {
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 2px 8px;
  border-radius: 4px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(107, 79, 137, 0.1));
}

.insta-link:hover {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.15), rgba(107, 79, 137, 0.15));
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  pointer-events: none; /* Allow clicking through container but not toasts */
}

.toast {
  background: white;
  color: var(--text);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.2s ease-out; /* Faster transition */
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  pointer-events: auto; /* Make toast clickable */
  min-width: 280px;
  font-weight: 500;
}

.toast.visible {
  opacity: 1;
  transform: translateX(0);
  animation: shake 0.3s cubic-bezier(.36,.07,.19,.97) both; /* Faster animation */
}

.toast.success {
  border-left: 4px solid #4caf50;
}

.toast.error {
  border-left: 4px solid #f44336;
}

.toast.info {
  border-left: 4px solid #2196f3;
}

.toast-close {
  margin-left: 8px;
  cursor: pointer;
  font-size: 20px;
  opacity: 0.6;
  transition: opacity 0.2s;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  opacity: 1;
}

.toast-content {
  flex-grow: 1;
}

.toast-message {
  font-size: 14px;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
}

.toast-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--gradient-main);
  transition: width 4s linear;
}

.toast.visible .toast-progress-bar {
  width: 0;
}

.toast-icon {
  margin-right: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.toast-icon.success {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.toast-icon.error {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
}

.toast-icon.info {
  background: rgba(33, 150, 243, 0.15);
  color: #2196f3;
}

@media (max-width: 767px) {
  .toast-container {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Add shake animation for toasts - faster */
@keyframes shake {
  10%, 90% {
    transform: translateX(-1px);
  }
  20%, 80% {
    transform: translateX(2px);
  }
  30%, 70% {
    transform: translateX(-2px);
  }
  40%, 60% {
    transform: translateX(1px);
  }
}
