/* Tongue Tonic Website Styles */

:root {
  /* Brand Colors */
  --primary: #FF1493; /* Magenta/Pink from logo */
  --secondary: #00FFFF; /* Cyan from logo */
  --dark: #0a0a0a; /* Near Black */
  --light: #f8f8f8; /* Off White */
  --gray: #808080; /* Medium Gray */
  
  /* Typography */
  --font-main: 'Poppins', sans-serif;
  --font-headings: 'Montserrat', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Container widths */
  --container-width: 1200px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--dark);
}

.button.secondary {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.button.secondary:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.button.energy-button {
  background-color: #FFD700; /* Energy Tonic yellow/gold */
  color: #000000;
  border-radius: 4px; /* Match the standard button radius */
}

.button.energy-button:hover {
  background-color: #FFC107; /* Slightly darker gold on hover */
  color: #000000;
  transform: translateY(-2px);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section */
.section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

/* Header & Navigation */
.site-header {
  background-color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  height: 80px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.main-nav a {
  color: var(--light);
  font-weight: 600;
  padding: 0.5rem;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.login-button {
  background-color: var(--primary);
  color: var(--light) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-button:hover {
  background-color: #e00080;
  transform: translateY(-2px);
}

.login-button::after {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  text-align: center;
  background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('https://source.unsplash.com/random/1600x900/?abstract') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 20, 147, 0.5), 0 0 25px rgba(255, 20, 147, 0.3);
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}

/* Brand Statement */
.brand-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.brand-statement p {
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Products Section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.product-card {
  background-color: rgba(20, 20, 20, 0.7);
  border-radius: 8px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
  height: 300px;
  width: 100%;
  object-fit: contain;
  background-color: transparent;
  padding: 1rem;
  padding-top: calc(1rem + 15px); /* Add 15px more padding at the top */
  margin-top: 15px; /* Move down by 15px */
  transition: transform 0.5s ease, filter 0.5s ease;
  mix-blend-mode: normal; /* Changed from multiply to normal for full transparency */
  filter: brightness(1.2); /* Increased brightness for better visibility */
  position: relative;
  z-index: 20; /* Increased z-index to ensure bottles are on top */
}

.product-card:hover .product-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Fix for Social Tonic image size */
.social-product .product-image {
  object-position: center;
  height: 300px;
  width: 100%;
  object-fit: contain;
}

.product-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.product-card:hover .product-content {
  transform: translateY(-5px);
}

.product-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.product-card:hover .product-title {
  text-shadow: 0 0 8px rgba(255, 20, 147, 0.3);
}

.product-description {
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary);
}

.servings-info {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--light);
  margin-left: 0.3rem;
}

.product-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* Email Capture */
.email-capture {
  background-color: rgba(255, 20, 147, 0.1);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

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

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-input {
  width: 100%;
  padding: 1rem;
  border-radius: 4px;
  border: none;
  margin-bottom: var(--spacing-sm);
}

/* Login Form */
.login-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.login-form-container {
  max-width: 450px;
  margin: 0 auto;
  background-color: rgba(20, 20, 20, 0.7);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.login-form .form-input {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.login-form .form-input:focus {
  border-color: var(--primary);
  outline: none;
}

.form-links {
  margin-top: 1.5rem;
  text-align: center;
}

.form-links a {
  color: var(--light);
  text-decoration: underline;
}

.form-links a:hover {
  color: var(--primary);
}

.separator {
  margin: 0 0.5rem;
  color: var(--gray);
}

/* Affiliate CTA */
.affiliate-cta {
  background-color: rgba(0, 255, 255, 0.1);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

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

/* Footer */
.site-footer {
  background-color: rgba(10,10,10,0.8);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-nav h3,
.footer-contact h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0;
  line-height: 1.3;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.mobile-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: var(--light);
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--dark);
    z-index: 999;
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .main-nav a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem;
  }
  
  .mobile-toggle {
    display: block;
  }
}

/* Scroll down arrow animation */
.scroll-down-container {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
  width: 100%;
}

.scroll-down-arrow {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

.scroll-down-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
  animation: scrollArrow 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translate(-10px, 10px);
  }
}

/* About page - two tonics per row */
/* Choose Your Mood - strict 2-column layout */
.about-tonics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 2rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Make sure each card stays in its cell */
.about-tonics-grid .product-preview-card {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--color-card-bg);
}

/* Energy - Yellow theme */
.about-tonics-grid .energy-card h3 {
  color: #FFD700; /* Yellow gold */
}
.about-tonics-grid .energy-button {
  background-color: #FFD700; /* Yellow gold */
  color: #000000; /* Black text for contrast */
}
.about-tonics-grid .energy-button:hover {
  background-color: #FFC107; /* Slightly darker yellow on hover */
  color: #000000; /* Keep black text on hover */
}

/* Relax - Blue theme */
.about-tonics-grid .relax-card h3 {
  color: #4CA5FF; /* Light blue */
}
.about-tonics-grid .relax-button {
  background-color: #4CA5FF; /* Light blue */
  color: #ffffff;
}
.about-tonics-grid .relax-button:hover {
  background-color: #3A94FF; /* Slightly darker blue on hover */
}

/* Euphoria - Purple theme */
.about-tonics-grid .euphoria-card h3 {
  color: #A256E5; /* Purple */
}
.about-tonics-grid .euphoria-button {
  background-color: #A256E5; /* Purple */
  color: #ffffff;
}
.about-tonics-grid .euphoria-button:hover {
  background-color: #9142D1; /* Slightly darker purple on hover */
}

/* Social - Orange theme */
.about-tonics-grid .social-card h3 {
  color: #FF7A45; /* Orange */
}
.about-tonics-grid .social-button {
  background-color: #FF7A45; /* Orange */
  color: #ffffff;
}
.about-tonics-grid .social-button:hover {
  background-color: #F06937; /* Slightly darker orange on hover */
}

/* Homepage Product Cards - Apply the same color themes */
/* Energy - Yellow theme */
.product-card.energy-product .product-title,
.product-card.energy-product .product-price {
  color: #FFD700 !important; /* Yellow gold */
}
.energy-button {
  background-color: #FFD700 !important; /* Yellow gold */
  color: #000000 !important; /* Black text for contrast */
  border-color: #FFD700 !important;
}
.energy-button:hover {
  background-color: #FFC107 !important; /* Slightly darker yellow on hover */
  color: #000000 !important; /* Keep black text on hover */
  border-color: #FFC107 !important;
}
/* Ghost button for Add to Cart */
.product-card.energy-product .add-to-cart {
  background-color: transparent !important;
  color: #FFD700 !important;
  border: 2px solid #FFD700 !important;
}
.product-card.energy-product .add-to-cart:hover {
  background-color: rgba(255, 215, 0, 0.1) !important;
  color: #FFD700 !important;
  border-color: #FFD700 !important;
}

/* Relax - Blue theme */
.product-card.relax-product .product-title,
.product-card.relax-product .product-price {
  color: #4CA5FF !important; /* Light blue */
}
.relax-button {
  background-color: #4CA5FF !important; /* Light blue */
  color: #ffffff !important;
  border-color: #4CA5FF !important;
}
.relax-button:hover {
  background-color: #3A94FF !important; /* Slightly darker blue on hover */
  border-color: #3A94FF !important;
}
/* Ghost button for Add to Cart */
.product-card.relax-product .add-to-cart {
  background-color: transparent !important;
  color: #4CA5FF !important;
  border: 2px solid #4CA5FF !important;
}
.product-card.relax-product .add-to-cart:hover {
  background-color: #4CA5FF !important;
  color: #ffffff !important;
  border-color: #4CA5FF !important;
}

/* Euphoria - Purple theme */
.product-card.euphoria-product .product-title,
.product-card.euphoria-product .product-price {
  color: #A256E5 !important; /* Purple */
}
.euphoria-button {
  background-color: #A256E5 !important; /* Purple */
  color: #ffffff !important;
  border-color: #A256E5 !important;
}
.euphoria-button:hover {
  background-color: #9142D1 !important; /* Slightly darker purple on hover */
  border-color: #9142D1 !important;
}

/* Product-specific bullet styling */
.how-to-list {
  list-style-type: none;
  padding-left: 1.5rem;
  font-size: 1.1rem;
}

.how-to-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

/* Energy (yellow) bullets */
.energy-tonic .how-to-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFD700; /* Yellow gold */
}

/* Relax (blue) bullets */
.relax-tonic .how-to-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CA5FF; /* Light blue */
}

/* Euphoria (purple) bullets */
.euphoria-tonic .how-to-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #A256E5; /* Purple */
}

/* Socialize (orange) bullets */
.socialize-tonic .how-to-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FF7A45; /* Orange */
}
/* Ghost button for Add to Cart */
.product-card.euphoria-product .add-to-cart {
  background-color: transparent !important;
  color: #A256E5 !important;
  border: 2px solid #A256E5 !important;
}
.product-card.euphoria-product .add-to-cart:hover {
  background-color: rgba(162, 86, 229, 0.1) !important;
  color: #A256E5 !important;
  border-color: #A256E5 !important;
}

/* Social - Orange theme */
.product-card.social-product .product-title,
.product-card.social-product .product-price {
  color: #FF7A45 !important; /* Orange */
}
.social-highlight {
  color: #FF9800;
  text-shadow: 0 0 8px rgba(255, 152, 0, 0.6);
}

.energy-highlight {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.relax-highlight {
  color: #4CA5FF;
  text-shadow: 0 0 8px rgba(76, 165, 255, 0.6);
}

.euphoria-highlight {
  color: #A256E5;
  text-shadow: 0 0 8px rgba(162, 86, 229, 0.6);
}

/* Additional Socialize Orange Styling */
.socialize-tonic .section-title,
.socialize-tonic .testimonial-author,
.socialize-tonic .ingredient-item h3,
.socialize-tonic .faq-question h3 {
  color: #FF9800 !important;
}

/* Fix all section title underlines on Socialize page */
.socialize-tonic .section-title::after {
  background-color: #FF9800 !important;
}

/* Fix bullet points and ingredient borders */
.socialize-tonic .how-to-list li::before,
.socialize-tonic .ingredient-item::before {
  color: #FF9800 !important;
  background-color: #FF9800 !important;
}

.socialize-tonic .video-button-inner span,
.socialize-tonic .video-content h2 {
  color: #FF9800 !important;
}

/* Fix all ingredient side borders */
.socialize-tonic .ingredient-item {
  border-left-color: #FF9800 !important;
}

.social-button {
  background-color: #FF9800 !important; /* Orange background */
  color: #000000 !important; /* Black text */
  border-color: #FF9800 !important;
}
.social-button:hover {
  background-color: #F57C00 !important; /* Slightly darker orange on hover */
}

/* Special styling for the final CTA section */
.socialize-tonic .energy-cta-section {
  background-color: #FF9800 !important; /* Orange background for the section */
}

.socialize-tonic .energy-cta-section .buy-now-button {
  background-color: #000000 !important; /* Black button */
  color: #FF9800 !important; /* Orange text */
  border-color: #000000 !important;
}

.socialize-cta-section {
  background: linear-gradient(to right, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.05));
  border-left: 4px solid #FF9800;
}
/* Ghost button for Add to Cart */
.product-card.social-product .add-to-cart {
  background-color: transparent !important;
  color: #FF7A45 !important;
  border: 2px solid #FF7A45 !important;
}
.product-card.social-product .add-to-cart:hover {
  background-color: rgba(255, 122, 69, 0.1) !important;
  color: #FF7A45 !important;
  border-color: #FF7A45 !important;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .about-tonics-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .logo {
    height: 60px;
  }
}

/* Shipping method styling */
.shipping-options-container {
  margin: 25px 0;
}

.shipping-options-container .form-label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #f0f0f0;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.shipping-option {
  position: relative;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.shipping-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.shipping-option label {
  display: block;
  padding: 16px;
  border: 1px solid #333;
  border-radius: 6px;
  background-color: rgba(25, 25, 25, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.shipping-option input[type="radio"]:checked + label {
  border-color: var(--primary-color);
  background-color: rgba(255, 204, 0, 0.05);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.shipping-option-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.shipping-option-name {
  font-weight: 500;
  font-size: 16px;
  color: #f0f0f0;
}

.shipping-option-price {
  font-weight: 600;
  color: var(--primary-color);
}

.shipping-option-price.free-price {
  color: #7FD858;
}

.shipping-option-description {
  display: block;
  font-size: 14px;
  color: #999;
  margin-top: 4px;
}

/* Order notes field */
textarea#order-notes {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #fff;
  font-family: inherit;
  resize: vertical;
  margin-top: 5px;
}

textarea#order-notes:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.25);
}

/* Shipping confirmation message */
.shipping-confirmation-message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
}

.local-pickup-message {
  background-color: rgba(255, 204, 0, 0.1);
  border-left: 4px solid #FFCC00;
  color: #FFCC00;
}

/* Ensure all buttons have consistent height and alignment */
.confirmation-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
}

.confirmation-actions .button,
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  height: 48px;
  padding: 0 24px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.2s ease;
  box-sizing: border-box;
  margin: 0;
}

.confirmation-actions .primary-button {
  background-color: #FF1493; /* Pink from logo */
  color: #ffffff;
  border: none;
}

/* Ghost button style for Return to Home */
.confirmation-actions .secondary-button {
  background-color: transparent;
  color: #a0a0a0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-actions .secondary-button:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Fix dropdown appearance */
select {
  appearance: menulist !important;
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  background-color: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #333 !important;
  padding: 10px !important;
  border-radius: 4px !important;
  width: 100% !important;
  font-family: inherit !important;
  height: auto !important;
  line-height: normal !important;
  text-align: left !important;
  cursor: pointer !important;
}