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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.4;
}

/* Waitlist Announcement Bar */
.waitlist-announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000000;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 1001;
  border-bottom: 1px solid #cccccc;
}

.announcement-link {
  color: #000000;
  text-decoration: underline;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.announcement-link:hover {
  color: #333333;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  z-index: 1000;
  padding: 0 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 60px;
}

.nav-header {
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 140px;
  filter: invert(1);
}

.logo a {
  display: flex;
  align-items: center;
  color: #000000;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.7;
}

.logo span {
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #000000;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1001;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 30px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 25px;
    align-items: center;
    z-index: 999;
  }
  
  .hamburger-menu {
    display: flex;
  }
}

.nav-links.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: none;
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  text-align: center;
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-links a:hover {
  color: #666666;
  background: #f8f8f8;
}



.cta-button {
  background: #000000;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: none;
  border: 2px solid #000000;
}

.cta-button:hover {
  background: #ffffff;
  color: #000000;
  transform: none;
  box-shadow: none;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  background: #000000;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

/* Page Sections - Consistent Top Spacing */
body {
  padding-top: 125px;
}

.series,
.signatures,
.membership,
.glossary,
.shop,
.about,
.treatments {
  padding-top: 40px;
  margin-top: 0;
}

/* Override any inline styles */
section[style*="margin-top"] {
  margin-top: 0 !important;
  padding-top: 40px !important;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Intro Block */
.intro-block {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.intro-content {
  max-width: 700px;
  margin: 0 auto;
}

.intro-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.intro-tagline {
  font-size: 18px !important;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.intro-description {
  font-size: 18px !important;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.intro-features {
  font-size: 18px !important;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 500;
}

.intro-closing {
  font-size: 18px !important;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

/* Ensure all intro content paragraphs are the same size */
.intro-content p {
  font-size: 18px !important;
  line-height: 1.6;
  color: #333 !important;
  font-weight: 500;
}

/* Featured Section */
.featured-section {
  background: #000000;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.featured-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.featured-description {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
  font-weight: 500;
}

.featured-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.app-button {
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  position: relative;
}

.app-button.primary {
  background: #ffffff;
  color: #000000;
  flex-direction: column;
  gap: 4px;
}

.app-button.primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.app-button.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.app-button.tertiary {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.app-button.tertiary:hover {
  text-decoration-color: #ffffff;
}

.button-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
}

.ritual-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.menu-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.menu-item.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-item:hover {
  opacity: 1;
  transform: translateX(5px);
}

.menu-label {
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
}

.menu-desc {
  font-size: 13px;
  color: #cccccc;
  font-weight: 500;
}

/* Glossary CTA */
.glossary-cta {
  background: #f9f7f5;
  padding: 60px 20px;
  text-align: center;
}

.glossary-content {
  max-width: 500px;
  margin: 0 auto;
}

.glossary-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.glossary-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.glossary-link {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.glossary-link:hover {
  opacity: 0.7;
}

/* Footer Updates */
.footer-subtitle {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #cccccc !important;
  margin-bottom: 25px !important;
  letter-spacing: 1px !important;
  text-transform: none !important;
}

.footer-nav {
  margin: 25px 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #888888;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #cccccc;
}

/* Hero Content Section */
.hero-content-section {
  background: linear-gradient(135deg, #000000 0%, #1a0e0a 50%, #000000 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-modern {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 14, 10, 0.95) 100%);
  padding: 80px 60px;
  border-radius: 30px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title-modern {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 48px);
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.current-special {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.current-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.special-badge {
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  color: #000000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.special-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.special-description {
  font-size: 16px;
  color: #cccccc;
  font-weight: 500;
  letter-spacing: 1px;
}

.rotating-offers {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offer-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.offer-item.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.offer-item:hover {
  opacity: 1;
  transform: translateX(5px);
}

.offer-label {
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offer-desc {
  font-size: 13px;
  color: #cccccc;
  font-weight: 500;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #000000;
  text-transform: uppercase;
}

.rotating-taglines {
  margin-bottom: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagline {
  font-size: 18px;
  font-weight: 700;
  color: #3d2914;
  letter-spacing: 2px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease;
  text-transform: uppercase;
}

.tagline.active {
  opacity: 1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons-modern {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.button-modern {
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.button-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.button-modern:hover::before {
  left: 100%;
}

.primary-modern {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000000;
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.primary-modern:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.secondary-modern {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.secondary-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.button {
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.button.primary {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
}

.button.primary:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.button.secondary {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.button.secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Section Styles */
section {
  padding: 80px 20px;
  background: #1a0e0a;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 52px;
  letter-spacing: 6px;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.1;
}

.packages-benefits .section-header h2,
.glossary .section-header h2 {
  color: #ffffff;
}

/* Skinfolk Signatures */
.signatures {
  background: #ffffff;
  padding: 80px 20px;
}

.section-tagline {
  font-size: 28px;
  color: #000000;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: 25px;
  font-style: normal;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 25px;
  background-image: linear-gradient(#f9f7f5, #f9f7f5), linear-gradient(135deg, #3d2914 0%, #000000 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
}

.series .section-tagline,
.glossary .section-tagline {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: initial !important;
}

.signatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}

.signature-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.signature-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.signature-item.chloe-package {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.signature-item.chloe-package .signature-info {
  background: #ffffff;
}

.signature-item.chloe-package .signature-info h3 {
  color: #000000;
}

.signature-item.chloe-package .signature-info p {
  color: #333333;
}

.signature-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.signature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform: scale(0.8);
}

.signature-item:hover .signature-image img,
.signature-item:hover .signature-video {
  transform: scale(1.1);
}

.signature-info {
  padding: 40px;
  text-align: center;
  background: #ffffff;
}

.signature-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #000000;
  text-transform: uppercase;
}

.signature-info p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.treatment-details {
  background: #f8f5f1;
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  border-left: 4px solid #8b654b;
}

.treatment-details p {
  font-size: 13px;
  margin-bottom: 10px;
  color: #3d2914;
  font-weight: 600;
}

.treatment-details p:last-child {
  margin-bottom: 0;
}

.signature-button {
  background: #ffffff;
  color: #000000;
  padding: 14px 30px;
  border: 2px solid #000000;
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signature-button:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.package-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.waitlist-cta-small {
  color: #666666;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease;
}

.waitlist-cta-small:hover {
  color: #000000;
  text-decoration: underline;
}

.learn-more-btn {
  background: transparent !important;
  color: #000000 !important;
  border: 1px solid #666666 !important;
}

.learn-more-btn:hover {
  background: #f0f0f0 !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
}

/* Success Notification */
.success-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  text-align: center;
  animation: slideIn 0.3s ease;
}

.success-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.success-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #cccccc;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}



/* Waitlist Hero */
.waitlist-hero {
  background: #000000;
  padding: 60px 20px;
}

.waitlist-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.waitlist-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.waitlist-hero-text {
  color: #ffffff;
}

.waitlist-hero-text h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
}

.waitlist-hero-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #cccccc;
  font-weight: 500;
}

/* Waitlist Benefits */
.waitlist-benefits {
  background: #1a0e0a;
  padding: 80px 20px;
}

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

.benefit-card-waitlist {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card-waitlist:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.benefit-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.benefit-card-waitlist:hover .benefit-image img {
  transform: scale(1.1);
}

.benefit-content {
  padding: 30px;
  text-align: center;
}

.benefit-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #000000;
  text-transform: uppercase;
}

.benefit-content p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  font-weight: 500;
}

/* Waitlist Form Section */
.waitlist-form-section {
  background: #000000;
  padding: 80px 20px;
}

.waitlist-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.waitlist-form-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.waitlist-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.membership-waitlist-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.membership-waitlist-form input,
.membership-waitlist-form select,
.membership-waitlist-form textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  transition: border-color 0.3s ease;
  background: #ffffff;
}

.membership-waitlist-form input:focus,
.membership-waitlist-form select:focus,
.membership-waitlist-form textarea:focus {
  outline: none;
  border-color: #000000;
}

.membership-waitlist-form select,
.membership-waitlist-form textarea {
  width: 100%;
  margin-bottom: 20px;
}

.waitlist-submit-button {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 18px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.waitlist-submit-button:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Waitlist Gallery */
.waitlist-gallery {
  background: #1a0e0a;
  padding: 80px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item.large {
  grid-row: 1 / 3;
}

.gallery-item.medium {
  grid-column: 2 / 4;
}

.gallery-item.small {
  /* Default positioning */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design for Waitlist */
@media (max-width: 768px) {
  .waitlist-hero-content,
  .waitlist-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waitlist-hero-text h1 {
    font-size: 36px;
  }

  .membership-waitlist-form .form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    padding: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    height: auto;
  }

  .gallery-item.large,
  .gallery-item.medium {
    grid-column: 1;
    grid-row: auto;
  }
}

.series-info {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
}

.series-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #000000;
  text-transform: uppercase;
}

.series-info p {
  font-size: 14px;
  color: #3d2914;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.series-button {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.series-button:hover {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Treatment Grid */
.treatments {
  background: #1a0e0a;
}

/* Treatments CTA Section */
.treatments-cta {
  background: #1a0e0a;
  padding: 80px 20px;
  text-align: center;
}

.treatments-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.treatments-cta-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 30px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.treatment-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.treatment-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.treatment-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.treatment-item.body-treatment .treatment-image {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-item.body-treatment .treatment-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform: scale(0.8);
}

.treatment-item:hover .treatment-video {
  transform: scale(0.9);
}

.treatment-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform: scale(0.8);
}

.treatment-item:hover .treatment-video:not(.treatment-item.body-treatment .treatment-video) {
  transform: scale(0.9);
}

.treatment-item.face-treatment .treatment-image {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-item.skin-treatment .treatment-image {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-item:hover .treatment-image {
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

.treatment-info {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
}

.treatment-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.treatment-info p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  font-weight: 500;
}

/* Best Sellers */
.best-sellers {
  background: #ffffff;
}

.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.product-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform: scale(0.75);
}

.product-card:hover .product-video {
  transform: scale(0.85);
}

.glass-skin-card .product-video {
  transform: scale(0.6);
}

.glass-skin-card:hover .product-video {
  transform: scale(0.7);
}

.product-info {
  padding: 40px;
  text-align: center;
  background: #ffffff;
}

.product-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.product-info p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.add-to-basket {
  background: #ffffff;
  color: #000000;
  padding: 16px 40px;
  border: 2px solid #000000;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.add-to-basket:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.waitlist-btn {
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #000000 !important;
}

.waitlist-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Merch Section */
.merch {
  background: #1a0e0a;
  padding: 80px 20px;
}

.merch .section-header h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.merch-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.merch-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.merch-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.merch-item:hover .merch-image img {
  transform: scale(1.1);
}

.merch-info {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
}

.merch-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.merch-info p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.shop-now-button {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shop-now-button:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Shop Section */
.shop {
  background: #1a0e0a;
  padding: 80px 20px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.shop-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.shop-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-item:hover .shop-image img {
  transform: scale(1.1);
}

.shop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-item:hover .shop-video {
  transform: scale(1.1);
}

.shop-info {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
}

.shop-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.shop-info p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.shop-price {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #000000;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.shop-button {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shop-button:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Loyalty Banner */
.wellness-ritual {
  background: #f9f7f5;
  padding: 80px 20px;
  text-align: center;
}

.wellness-image {
  max-width: 800px;
  margin: 40px auto 0;
}

.wellness-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Loyalty Section */
.loyalty-banner {
  background: #f9f7f5;
  padding: 80px 20px;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.loyalty-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.loyalty-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.loyalty-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.loyalty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.loyalty-card:hover .loyalty-image img {
  transform: scale(1.1);
}

.loyalty-info {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
}

.loyalty-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.loyalty-info p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.loyalty-button {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.loyalty-button:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Membership Table Section */
.membership-table-section {
  background: #f8f5f1;
  padding: 40px 20px;
}

.table-header {
  text-align: center;
  margin-bottom: 40px;
}

.table-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 3px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.table-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666666;
  font-weight: 500;
  margin: 0;
}

.membership-table {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.table-row:hover {
  background: #f8f5f1;
}

.table-row.featured-row {
  background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
  border: 2px solid #3d2914;
  border-bottom: 2px solid #3d2914;
}

.table-row.featured-row:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
}

.table-cell {
  padding: 20px 15px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
}

.table-cell.header {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: center;
  text-align: center;
}

.table-cell.membership-name {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.editors-pick {
  background: #3d2914;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 10px;
  text-transform: uppercase;
}

.table-cell.category {
  font-weight: 600;
  font-size: 12px;
  color: #3d2914;
  text-transform: uppercase;
  letter-spacing: 1px;
  justify-content: center;
}

.table-cell.price {
  font-weight: 800;
  font-size: 20px;
  color: #3d2914;
  justify-content: center;
}

.table-cell.included {
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
}

.table-cell.action {
  justify-content: center;
}

.table-join-btn {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.table-join-btn:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-2px);
}

.table-join-btn.featured {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  box-shadow: 0 5px 15px rgba(61, 41, 20, 0.3);
}

.table-join-btn.featured:hover {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  box-shadow: 0 8px 25px rgba(61, 41, 20, 0.4);
}



.membership-note {
  text-align: center;
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.membership-note p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333333;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.membership-note strong {
  color: #3d2914;
  font-weight: 700;
}

/* Membership Intro Section */
.membership-intro-section {
  background: #000000;
  padding: 160px 20px 60px 20px;
  text-align: center;
  color: #ffffff;
}

.membership-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.membership-main-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 5px;
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1.1;
}

.membership-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  font-style: italic;
}

.membership-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
  font-weight: 500;
}

.membership-call-to-action {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.membership-availability {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #f8f5f1;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.membership-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(135deg, #f8f5f1 0%, #cccccc 100%);
  margin: 40px auto 0 auto;
  border-radius: 2px;
}

/* Quick Compare Section */
.quick-compare-section {
  background: #1a0e0a;
  padding: 80px 20px;
}

.quick-compare-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 3px;
}

.why-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.why-benefit-card {
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 15px;
  color: #f8f5f1;
}

.why-benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
}

.why-benefit-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #cccccc;
  font-weight: 400;
  margin: 0;
}

.membership-manifesto-bottom {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.membership-manifesto-bottom p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f8f5f1;
  font-style: italic;
  line-height: 1.6;
}

/* Social Section */
.membership-social-section {
  background: #f8f5f1;
  padding: 80px 20px;
}

.social-header {
  text-align: center;
  margin-bottom: 50px;
}

.social-header h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  color: #000000;
  margin-bottom: 20px;
}

.hashtag {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #3d2914;
  letter-spacing: 1px;
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.social-image {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-image:hover {
  transform: scale(1.05);
}

.social-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Enhanced Waitlist Section */
.membership-waitlist {
  background: #000000;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.waitlist-content {
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.waitlist-content p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  font-weight: 400;
}

.waitlist-button {
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f1 100%);
  color: #000000;
  padding: 20px 50px;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.waitlist-button:hover {
  background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.waitlist-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px !important;
  color: #888888 !important;
  font-style: italic;
  font-weight: 400 !important;
}

/* Responsive Design for Enhanced Membership */
@media (max-width: 1024px) {
  .membership-table {
    margin: 0 10px;
  }

  .table-header-row,
  .table-row {
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
  }

  .table-cell {
    padding: 15px 10px;
    font-size: 14px;
  }

  .table-cell.header {
    font-size: 12px;
  }

  .table-cell.membership-name {
    font-size: 14px;
  }

  .table-cell.price {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .membership-main-title {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .membership-tagline {
    font-size: 20px;
  }

  .membership-description {
    font-size: 16px;
  }

  .compare-table {
    margin: 0 10px;
  }

  .compare-header,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-header {
    display: none;
  }

  .compare-row {
    display: block;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 15px;
    background: #ffffff;
  }

  .compare-cell {
    display: block;
    padding: 5px 0;
    text-align: left;
    justify-content: flex-start;
  }

  .compare-row .compare-cell:first-child {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
  }

  .compare-row .compare-cell:nth-child(2)::before {
    content: "Monthly Cost: ";
    font-weight: 600;
    color: #666666;
  }

  .compare-row .compare-cell:nth-child(3)::before {
    content: "Includes: ";
    font-weight: 600;
    color: #666666;
  }

  .compare-row .compare-cell:nth-child(4)::before {
    content: "Savings: ";
    font-weight: 600;
    color: #666666;
  }

  .table-header h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .membership-table {
    margin: 0;
    border-radius: 10px;
  }

  .table-header-row,
  .table-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .table-header-row {
    display: none;
  }

  .table-row {
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    background: #ffffff;
  }

  .table-row.featured-row {
    border: 2px solid #3d2914;
  }

  .table-cell {
    display: block;
    padding: 5px 0;
    text-align: left;
  }

  .table-cell.membership-name {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
  }

  .table-cell.category::before {
    content: "Category: ";
    font-weight: 800;
    color: #000000;
  }

  .table-cell.price::before {
    content: "Monthly Price: ";
    font-weight: 800;
    color: #000000;
  }

  .table-cell.included::before {
    content: "Includes: ";
    font-weight: 800;
    color: #000000;
  }

  .table-cell.action {
    margin-top: 15px;
    text-align: center;
  }

  .table-join-btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }

  .why-benefits-grid {
    grid-template-columns: 1fr;
  }

  .social-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-watermark {
    font-size: 40px;
    top: 15px;
    right: 20px;
  }

  .founders-pick-banner {
    font-size: 9px;
    padding: 4px 12px;
  }
}

/* Glossary */
.glossary {
  background: #1a0e0a;
  padding: 180px 40px 120px 40px;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.glossary-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glossary-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glossary-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.glossary-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  margin-bottom: 25px;
  font-weight: 500;
}

.treatment-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-tag {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricelist-button {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000000;
  padding: 16px 40px;
  border: 2px solid #000000;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricelist-button:hover {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Pricelist Modal */
.pricelist-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: 2% auto;
  width: 90%;
  max-width: 800px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #000000;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.pricelist-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn,
.print-btn {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-btn:hover,
.print-btn:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.print-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000000;
  border: 2px solid #000000;
}

.print-btn:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  color: #000000;
}

/* Series */
.series {
  background: #1a0e0a;
}

.series .section-header h2 {
  color: #ffffff;
}

.series-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.series-item {
  background: #ffffff;
  padding: 50px 35px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



.series-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.series-item h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.series-item.chloe-package h3 {
  color: #ffffff;
}

.series-item p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  font-weight: 500;
}

.series-item.chloe-package p {

/* Series Description */
.series-description {
  background: #ffffff;
  padding: 60px 20px;
}

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

.series-description-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #3d2914;
  font-weight: 500;
}

/* Series Benefits */
.series-benefits {
  background: #f8f5f1;
  padding: 80px 20px;
}

/* Packages Benefits */
.packages-benefits {
  background: #8b654b;
  padding: 60px 20px;
}

.compact-benefits {
  max-width: 800px;
  margin: 0 auto;
}

.benefit-summary {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-summary h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.benefit-summary p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 500;
  opacity: 0.9;
}

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

.benefit-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.benefit-card h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  font-weight: 500;
}

  color: #cccccc;
}

/* About Section */
.about {
  background: #f8f5f1;
  padding: 80px 20px;
  min-height: 50vh;
}

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

.about-content h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 40px;
  color: #000000;
  text-transform: uppercase;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #3d2914 !important;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Clinic Section */
.clinic {
  background: #1a0e0a;
  padding: 80px 20px;
}

.clinic-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.clinic-info {
  color: #ffffff;
}

.clinic-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
}

.clinic-info p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #cccccc;
  font-weight: 500;
}

.clinic-collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.collage-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.collage-item:hover {
  transform: scale(1.05);
}

.collage-item.large {
  grid-row: 1 / 3;
}

.collage-item.medium {
  grid-column: 2;
}

.collage-item.small {
  grid-column: 2;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About */
.about {
  background: #000000;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 5px;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
}

.about p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: #cccccc;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #1a0e0a 0%, #000000 100%);
  padding: 80px 20px;
  border-top: 1px solid #333333;
}

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

.newsletter-info h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.newsletter-info p {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 500;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #666666;
}

.newsletter-button {
  background:```python
 linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 18px 35px;
  border: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  min-width: 140px;
}

.newsletter-button:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
}

.newsletter-privacy {
  font-size: 12px;
  color: #888888;
  font-weight: 400;
  margin: 0;
}

/* Contact Section */
.contact {
  background: #000000;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-card {
  background: linear-gradient(135deg, #1a0e0a 0%, #2a1e1a 100%);
  padding: 40px;
  border-radius: 20px;
  color: #ffffff;
  border: 1px solid #333333;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: #555555;
}

.contact-card.full-width {
  grid-column: 1 / -1;
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.contact-card h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
}

.contact-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #444444;
  border-radius: 10px;
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888888;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: #1a0e0a;
  color: #ffffff;
}

.file-upload {
  position: relative;
  margin: 10px 0;
}

.file-upload input[type="file"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.file-upload label {
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed #666666;
  border-radius: 10px;
  padding: 20px;
  display: block;
  text-align: center;
  color: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.file-upload label:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.contact-button,
.contact-form button[type="submit"] {
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  color: #000000;
  padding: 16px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.contact-button:hover,
.contact-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #cccccc 0%, #ffffff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #333333;
}

.info-section {
  text-align: center;
}

.info-section h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.info-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #1a0e0a;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-content p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #cccccc !important;
  margin-bottom: 30px !important;
  letter-spacing: 2px !important;
  text-transform: none !important;
}

.footer-copy {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #888888 !important;
  letter-spacing: 1px !important;
  text-transform: none !important;
}

/* Waitlist Form Styles */
.flodesk-waitlist-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.interest-checkboxes {
  margin: 25px 0;
}

.interest-checkboxes h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.checkbox-label:hover {
  color: #000000;
}

/* Product Waitlist Pages */
.product-waitlist-hero {
  background: #000000;
  padding: 80px 20px;
}

.product-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero-image {
  position: relative;
}

.product-hero-image img,
.product-hero-image video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-hero-text {
  color: #ffffff;
}

.coming-soon-badge {
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  color: #000000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.product-hero-text h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 25px;
  text-transform: uppercase;
  line-height: 1.1;
}

.product-hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
  font-weight: 500;
}

.launch-date {
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
}

.single-product-waitlist {
  background: #f8f5f1;
  padding: 80px 20px;
}

.centered-form {
  max-width: 600px;
  margin: 0 auto;
}

.product-waitlist-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-waitlist-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.product-waitlist-form input,
.product-waitlist-form textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
  background: #ffffff;
  width: 100%;
  margin-bottom: 20px;
}

.product-waitlist-form input:focus,
.product-waitlist-form textarea:focus {
  outline: none;
  border-color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    top: 35px;
  }

  .nav-container {
    height: 50px;
  }

  .nav-links {
    top: 85px;
    padding: 20px;
    gap: 20px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px 0;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  body {
    padding-top: 125px;
  }

  .hero {
    margin-top: 80px;
  }

  .waitlist-announcement {
    padding: 8px 15px;
    font-size: 12px;
  }
}

  .intro-block {
    padding: 40px 15px;
  }

  .intro-title {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .intro-tagline,
  .intro-description {
    font-size: 16px;
  }

  .intro-features,
  .intro-closing {
    font-size: 14px;
  }

  .featured-section {
    padding: 60px 15px;
  }

  .featured-title {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .featured-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .app-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .ritual-menu {
    max-width: 100%;
  }

  .menu-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .menu-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .menu-desc {
    font-size: 13px;
    color: #cccccc;
    font-weight: 500;
  }

  .glossary-cta {
    padding: 40px 15px;
  }

  .glossary-icon {
    font-size: 36px;
  }

  .glossary-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
  }

  .glossary-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
    transition: all 0.3s ease;
  }

  .glossary-link:hover {
    opacity: 0.7;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    order: 2;
    margin: 15px 0;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-button {
    order: 3;
  }

  .waitlist-announcement {
    padding: 8px 15px;
    font-size: 12px;
  }

  .navbar {
    top: 35px;
  }

  body {
    padding-top: 105px;
  }

  .hero {
    margin-top: 120px;
    padding: 60px 15px;
  }

  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-hero-text h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .product-waitlist-form {
    padding: 30px;
  }

  .product-waitlist-form .form-row {
    grid-template-columns: 1fr;
  }

  .flodesk-waitlist-form {
    padding: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 50px 15px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;    }

  .series-list {
    grid-template-columns: 1fr;
  }

  .best-sellers-grid {
    grid-template-columns: 1fr;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .merch-info h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .banner-slide h3 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .clinic-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .clinic-info h3 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .clinic-collage {
    height: 400px;
    grid-template-columns: 1fr 1fr;
  }

  .membership-intro h3 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .membership-questions {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .membership-question {
    padding: 30px 20px;
  }

  .membership-question h4 {
    font-size: 18px;
  }

  .membership-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .benefit-card h4 {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .membership-options {
    padding: 30px 20px;
    margin: 0 15px 40px 15px;
  }

  .membership-option h4 {
    font-size: 20px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px 25px;
  }

  .contact-card h3 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .contact-icon {
    font-size: 36px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter-input-group input {
    border-radius: 15px 15px 0 0;
  }

  .newsletter-button {
    border-radius: 0 0 15px 15px;
    padding: 16px 25px;
  }

  .newsletter-info h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    padding: 40px 30px;
    margin: 0 15px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .tagline {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

/* Updated CSS styles for the shop section */
.shop-info p {
  font-size: 16px;
  color: #3d2914;
  line-height: 1.6;
  margin-bottom: 0px; /* Reduced margin */
  font-weight: 500;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-button {
    background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shop-button:hover {
    background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Community Actions Section */
.community-actions {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  padding: 60px 20px;
  text-align: center;
}

.community-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Instagram Feed Section */
.instagram-feed {
  background: #f9f7f5;
  padding: 80px 20px;
  text-align: center;
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.instagram-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-handle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0px;
  color: #000000;
  margin: 0;
  text-transform: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

.instagram-handle:hover {
  color: #E4405F;
  text-decoration: none;
}

.instagram-container {
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-placeholder {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instagram-placeholder p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 20px;
  font-weight: 500;
}

.instagram-link {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instagram-link:hover {
  background: linear-gradient(135deg, #3d2914 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Instagram Header */
@media (max-width: 768px) {
  .instagram-header {
    gap: 10px;
  }
  
  .instagram-handle {
    font-size: 22px;
    letter-spacing: 1px;
  }
  
  .instagram-logo svg {
    width: 30px;
    height: 30px;
  }
}

/* Contact Details Section */
.contact-details {
  background: #1a0e0a;
  padding: 80px 20px;
  color: #ffffff;
}

.contact-details-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  text-align: center;
}

.contact-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  font-weight: 500;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #cccccc;
}

/* Contact Details Specific Styling */
.contact-details .whatsapp-contact h3,
.contact-details .email-contact h3 {
  margin: 0 0 -35px 0 !important; /* Ultimate aggressive overlap */
  padding: 0 !important;
  line-height: 0.6 !important; /* Extremely tight line height */
  display: block !important;
}

.contact-details .whatsapp-contact p,
.contact-details .email-contact p {
  margin: -30px 0 0 0 !important; /* Ultimate negative margin */
  padding: 0 !important; /* Force remove all padding */
  font-size: 18px !important; /* Slightly larger text */
  font-weight: 600 !important; /* Make text more prominent */
  line-height: 0.7 !important; /* Very tight line height */
  display: block !important;
}

/* Sculptra Page Styles */
.sculptra-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 50%, #f0ebe5 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(139, 101, 75, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(61, 41, 20, 0.03) 0%, transparent 50%);
}

.hero-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: linear-gradient(135deg, #8b654b 0%, #3d2914 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(139, 101, 75, 0.2);
}

.sculptra-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 0.9;
  color: #000000;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.sculptra-hero-title .subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 3px;
  color: #8b654b;
  text-transform: uppercase;
  margin-top: 10px;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-description h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin: 25px 0 15px 0;
  letter-spacing: 0.5px;
  display: block !important;
  clear: both;
}

.hero-description h3:first-child {
  margin-top: 0;
}

.hero-description ul {
  margin: 15px 0 25px 20px;
  padding: 0;
  list-style-type: disc;
}

.hero-description li {
  margin-bottom: 8px;
  color: #3d2914;
  font-weight: 400;
  display: list-item;
}

.hero-description p {
  margin: 15px 0;
  color: #3d2914;
  font-weight: 400;
  display: block;
  clear: both;
}

/* Ensure the description container is visible */
.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  margin-bottom: 40px;
  font-weight: 400;
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 24px;
  color: #000000;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #8b654b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-cta {
  background: linear-gradient(135deg, #000000 0%, #3d2914 100%);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.secondary-cta {
  background: transparent;
  color: #3d2914;
  padding: 18px 40px;
  border: 2px solid #3d2914;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.secondary-cta:hover {
  background: #3d2914;
  color: #ffffff;
  transform: translateY(-3px);
}

.learn-more-cta {
  background: transparent;
  color: #8b654b;
  padding: 18px 40px;
  border: 2px solid #8b654b;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.learn-more-cta:hover {
  background: #8b654b;
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  height: 600px;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 101, 75, 0.1) 0%, rgba(61, 41, 20, 0.05) 100%);
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.element-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.element-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-image-container {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 101, 75, 0.1) 0%, transparent 50%);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.science-section {
  padding: 120px 0;
  background: #ffffff;
}

.science-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 48px);
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #8b654b;
  font-weight: 400;
  line-height: 1.6;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.science-card {
  background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 101, 75, 0.1);
  position: relative;
  overflow: hidden;
}

.science-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 101, 75, 0.05), transparent);
  transition: left 0.5s ease;
}

.science-card:hover::before {
  left: 100%;
}

.science-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 30px;
  display: block;
}

.science-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.science-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  font-weight: 400;
}

.transformation-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0ebe5 0%, #f8f5f1 100%);
}

.transformation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.transformation-text h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  margin-bottom: 30px;
}

.transformation-text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #3d2914;
  margin-bottom: 50px;
  font-weight: 400;
}

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

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.timeline-marker {
  background: linear-gradient(135deg, #8b654b 0%, #3d2914 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
}

.timeline-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8b654b;
  margin: 0;
  font-weight: 500;
}

.transformation-visual {
  position: relative;
}

.transformation-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.treatment-areas {
  padding: 120px 0;
  background: #ffffff;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.area-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 101, 75, 0.1);
}

.area-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.area-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.area-card:hover .area-image img {
  transform: scale(1.1);
}

.area-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin: 30px 30px 15px;
  letter-spacing: 1px;
}

.area-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  margin: 0 30px 30px;
  font-weight: 400;
}

.consultation-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f5f1 0%, #f0ebe5 100%);
}

.consultation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consultation-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 42px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.consultation-text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #3d2914;
  margin-bottom: 40px;
  font-weight: 400;
}

.consultation-benefits {
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-icon {
  background: linear-gradient(135deg, #8b654b 0%, #3d2914 100%);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-item span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #3d2914;
  font-weight: 500;
}

.consultation-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.consultation-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(139, 101, 75, 0.1);
}

.doctor-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.consultation-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin-bottom: 8px;
}

.consultation-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8b654b;
  margin-bottom: 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consultation-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  margin: 0;
  font-weight: 400;
}

.faq-section {
  padding: 120px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.faq-item {
  background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(139, 101, 75, 0.1);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d2914;
  margin: 0;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-visual {
    height: 400px;
  }

  .sculptra-hero-title {
    font-size: 48px;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .transformation-content,
  .consultation-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-actions,
  .consultation-actions {
    justify-content: center;
  }

  .section-title {
    font-size: 36px;
  }

  .consultation-text h2 {
    font-size: 32px;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .instagram-placeholder {
    padding: 40px 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-item h3 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .contact-details .whatsapp-contact h3,
  .contact-details .email-contact h3 {
    margin: 0 0 -40px 0 !important; /* Ultimate aggressive on mobile */
    padding: 0 !important;
    line-height: 0.5 !important;
  }
  
  .contact-details .whatsapp-contact p,
  .contact-details .email-contact p {
    margin: -35px 0 0 0 !important; /* Ultimate negative margin on mobile */
    padding: 0 !important;
    line-height: 0.6 !important;
  }
}
</style>
</head>
<body>
  <div class="waitlist-announcement">
    Stay tuned! Our new products are launching soon. <a href="#" class="announcement-link">Join the Waitlist</a>
  </div>

  <nav class="navbar">
    <div class="nav-container">
      <a href="/" class="logo">
        <img src="https://i.imgur.com/ad5wKK8.png" alt="Skinfolk Logo">
      </a>
      <div class="nav-links">
        <a href="/series">Series</a>
        <a href="/signatures">Signatures</a>
        <a href="/treatments">Treatments</a>
        <a href="/shop">Shop</a>
        <a href="/membership">Membership</a>
        <a href="/glossary">Glossary</a>
        <a href="/about">About</a>
      </div>
      <a href="/waitlist" class="cta-button">Join Waitlist</a>
    </div>
  </nav>

  <section class="shop">
    <div class="section-header">
      <h2>Explore Our Products</h2>
      <p>Discover our curated selection of skincare essentials.</p>
    </div>
    <div class="shop-grid">
      <div class="shop-item">
        <div class="shop-image">
          <img src="https://i.imgur.com/JRnI7Bk.png" alt="Glass Skin Activating Serum">
        </div>
        <div class="shop-info">
          <h3>Glass Skin Activating Serum</h3>
          <button class="shop-button">Tell Me When it Drops</button>
        </div>
      </div>
      <div class="shop-item">
        <div class="shop-image">
          <img src="https://i.imgur.com/JRnI7Bk.png" alt="Product 2">
        </div>
        <div class="shop-info">
          <h3>Product 2 Title</h3>
          <button class="shop-button">Tell Me When it Drops</button>
        </div>
      </div>
      <div class="shop-item">
        <div class="shop-image">
          <img src="https://i.imgur.com/JRnI7Bk.png" alt="Product 3">
        </div>
        <div class="shop-info">
          <h3>Product 3 Title</h3>
           <button class="shop-button">Tell Me When it Drops</button>
        </div>
      </div>
        <div class="shop-item">
        <div class="shop-image">
          <img src="https://i.imgur.com/JRnI7Bk.png" alt="Product 4">
        </div>
        <div class="shop-info">
          <h3>Product 4 Title</h3>
           <button class="shop-button">Tell Me When it Drops</button>
        </div>
      </div>
    </div>
  </section>
</body>
</html>