/* Modern Welcome Page Enhancement */
:root {
  /* Enhanced Color Palette */
  --welcome-primary: #000;
  --welcome-accent: #ff6b6b;
  --welcome-secondary: #4ecdc4;
  --welcome-tertiary: #45b7d1;
  --welcome-quaternary: #feca57;
  --welcome-success: #10b981;
  --welcome-light: #f8f9fa;
  --welcome-dark: #0a0a0a;
  
  /* Gradients */
  --welcome-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --welcome-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --welcome-gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --welcome-gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  
  /* Shadows */
  --welcome-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --welcome-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --welcome-shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
  --welcome-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
  --welcome-shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --welcome-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --welcome-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --welcome-transition-slower: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Page Wrapper */
.welcome-page-wrapper {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--welcome-dark);
}

/* Enhanced Hero Section */
.hero-section {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--welcome-dark);
}

/* Hero Columns - No Hover Animations */
.hero-column {
  position: relative;
  flex: 1 1 50%;
  width: 50%;
  min-height: 100vh;
  background-color: var(--welcome-dark);
  overflow: hidden;
}

/* Video Wrapper - No Hover Effects */
.hero-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

/* Overlay - No Hover Changes */
.hero-column-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--welcome-gradient-overlay);
  z-index: 2;
}

/* Hero Content - No Hover Animations */
.hero-content-container {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  width: 100%;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

/* Hero Title - No Hover Effects */
.hero-title {
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 30px;
  font-family: 'Poppins', 'Roboto', sans-serif;
  line-height: 1.1;
  color: #fff;
}

/* Enhanced Hero Button */
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 50px;
  position: relative;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  overflow: hidden;
  transition: var(--welcome-transition);
  transform: translateY(0);
  margin: 0 auto;
  text-align: center;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  letter-spacing: 3px;
}

.hero-button:hover::before {
  left: 0;
}

.hero-button::after {
  content: '→';
  font-size: 20px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* RTL: Flip arrow for Arabic */
[dir="rtl"] .hero-button::after {
  content: '←';
  margin-left: 0;
  margin-right: 10px;
}

.hero-button:hover::after {
  transform: translateX(5px);
}

[dir="rtl"] .hero-button:hover::after {
  transform: translateX(-5px);
}

/* Central Logo - No Background */
.hero-central-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

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

.hero-central-logo a {
  font-size: 72px;
  letter-spacing: -3px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  display: flex;
  gap: 5px;
  transition: var(--welcome-transition);
}


/* Enhanced Logo Letters with Animations */
.logo-text-shared span {
  display: inline-block;
  transition: all 0.3s ease;
  animation: letterFloat 3s ease-in-out infinite;
}

.logo-text-shared span:nth-child(1) { animation-delay: 0s; }
.logo-text-shared span:nth-child(2) { animation-delay: 0.1s; }
.logo-text-shared span:nth-child(3) { animation-delay: 0.2s; }
.logo-text-shared span:nth-child(4) { animation-delay: 0.3s; }
.logo-text-shared span:nth-child(5) { animation-delay: 0.4s; }
.logo-text-shared span:nth-child(6) { animation-delay: 0.5s; }
.logo-text-shared span:nth-child(7) { animation-delay: 0.6s; }

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

.hero-central-logo:hover span {
  animation-play-state: paused;
}

.hero-central-logo:hover span:nth-child(odd) {
  transform: translateY(-10px) rotate(-5deg);
}

.hero-central-logo:hover span:nth-child(even) {
  transform: translateY(10px) rotate(5deg);
}

/* Enhanced Logo Colors with Glow */
.logo-h { 
  color: #ff6b6b;
  filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}
.logo-y { 
  color: #4ecdc4;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.5));
}
.logo-d { 
  color: #45b7d1;
  filter: drop-shadow(0 0 10px rgba(69, 183, 209, 0.5));
}
.logo-r { 
  color: #96ceb4;
  filter: drop-shadow(0 0 10px rgba(150, 206, 180, 0.5));
}
.logo-a { 
  color: #feca57;
  filter: drop-shadow(0 0 10px rgba(254, 202, 87, 0.5));
}
.logo-t { 
  color: #ff9ff3;
  filter: drop-shadow(0 0 10px rgba(255, 159, 243, 0.5));
}
.logo-e { 
  color: #48dbfb;
  filter: drop-shadow(0 0 10px rgba(72, 219, 251, 0.5));
}

/* Enhanced Coming Soon Section */
.coming-soon-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  background: var(--welcome-gradient-dark);
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 40%);
  animation: rotate 20s linear infinite;
}

.coming-soon-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 40%);
  animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.coming-soon-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.coming-soon-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 80px 60px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--welcome-shadow-2xl);
  transform: translateY(0);
  transition: var(--welcome-transition-slow);
}

.coming-soon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.coming-soon-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1.2;
  background: linear-gradient(45deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.coming-soon-message {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 300;
}

.coming-soon-logo {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -5px;
  margin-top: 50px;
  display: inline-flex;
  gap: 10px;
}

.coming-soon-logo span {
  animation: bounce 2s ease-in-out infinite;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1000 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 2s both;
}

@media screen and (max-width: 768px) {
  .scroll-indicator {
    bottom: 15px !important;
    font-size: 12px !important;
  }
  
  .hero-section {
    position: relative !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-indicator::after {
  content: '';
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  display: block;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* Page Load Animations */
.hero-column {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.hero-column:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-column:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-button {
    padding: 18px 40px;
    font-size: 16px;
  }
  
  .hero-central-logo a {
    font-size: 60px;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
  }
  
  .hero-column {
    width: 100%;
    min-height: 60vh;
  }
  
  .hero-column:hover {
    flex: 1;
  }
  
  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
    text-align: center !important;
  }
  
  .hero-button {
    display: inline-block !important;
    margin: 0 auto !important;
  }
  
  .hero-content {
    text-align: center !important;
    display: block !important;
  }
  
  .hero-content-container {
    bottom: 60px;
    padding: 0 20px;
  }
  
  .hero-button {
    padding: 16px 35px;
    font-size: 14px;
  }
  
  .hero-central-logo {
    padding: 30px;
  }
  
  .hero-central-logo a {
    font-size: 48px;
  }
  
  .coming-soon-box {
    padding: 60px 40px;
  }
  
  .coming-soon-title {
    font-size: 42px;
  }
  
  .coming-soon-message {
    font-size: 20px;
  }
  
  .coming-soon-logo {
    font-size: 72px;
  }
}

@media screen and (max-width: 480px) {
  .hero-column {
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .hero-button {
    padding: 14px 30px;
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .hero-central-logo {
    padding: 25px;
  }
  
  .hero-central-logo a {
    font-size: 36px;
    letter-spacing: -2px;
  }
  
  .coming-soon-box {
    padding: 40px 20px;
  }
  
  .coming-soon-title {
    font-size: 32px;
  }
  
  .coming-soon-message {
    font-size: 18px;
  }
  
  .coming-soon-logo {
    font-size: 56px;
    letter-spacing: -3px;
  }
}

/* RTL Support */
[dir="rtl"] .hero-button::after {
  content: '←';
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .hero-button:hover::after {
  transform: translateX(-5px);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Debug styling for empty state */
.featured-products-section .text-center {
  padding: 40px 20px;
}

.featured-products-section .text-muted {
  color: #6c757d;
  font-size: 18px;
  margin-bottom: 10px;
}

.featured-products-section .text-info {
  color: #17a2b8;
  font-size: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--welcome-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 20px;
  color: #666;
  width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}

/* Featured Products Section */
.featured-products-section {
  padding: 80px 0;
  background: #f8f9fa;
  min-height: 600px;
  display: block;
  position: relative;
  z-index: 1;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.featured-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--welcome-shadow-xl);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 125%; /* 4:5 aspect ratio */
  background: #f5f5f5;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--welcome-transition);
}

.featured-product-card:hover .product-overlay {
  opacity: 1;
}

.product-quick-view {
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--welcome-transition);
}

.product-quick-view:hover {
  background: white;
  color: var(--welcome-dark);
}

.product-info {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

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

.modern-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--welcome-dark);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--welcome-transition);
  box-shadow: var(--welcome-shadow-lg);
}

.modern-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--welcome-shadow-xl);
  background: #1a1a1a;
}

.modern-button i {
  transition: transform 0.3s ease;
}

.modern-button:hover i {
  transform: translateX(5px);
}

/* Brand Story Section */
.brand-story-section {
  padding: 120px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.brand-story-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

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

.story-text {
  padding-right: 40px;
}

.story-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--welcome-dark);
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.story-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--welcome-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
}

.story-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--welcome-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.story-link:hover::after {
  transform: scaleX(1);
}

.story-link:hover i {
  transform: translateX(5px);
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--welcome-shadow-xl);
}

.story-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* Newsletter Section */
.newsletter-section {
  padding: 120px 0;
  background: var(--welcome-gradient-primary);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

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

.newsletter-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.newsletter-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 50px;
}

.form-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 100px;
  padding: 8px;
  box-shadow: var(--welcome-shadow-xl);
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 25px;
  font-size: 16px;
  background: transparent;
}

.newsletter-button {
  background: var(--welcome-dark);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--welcome-transition);
}

.newsletter-button:hover {
  background: #1a1a1a;
  transform: translateX(-5px);
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
}

.newsletter-feature i {
  font-size: 20px;
  color: var(--welcome-quaternary);
}

/* Animation Classes */
[data-animation="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animation="fade-up"].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Updates */
@media screen and (max-width: 1024px) {
  .story-content {
    gap: 60px;
  }
  
  .story-text {
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
  
  .featured-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-text {
    padding-right: 0;
    text-align: center;
  }
  
  .story-title {
    font-size: 36px;
  }
  
  .story-img {
    height: 400px;
  }
  
  .newsletter-title {
    font-size: 36px;
  }
  
  .newsletter-features {
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  
  .featured-products-section,
  .brand-story-section,
  .newsletter-section {
    padding: 80px 0;
  }
  
  .form-group {
    flex-direction: column;
    padding: 0;
    border-radius: 20px;
  }
  
  .newsletter-input {
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #eee;
  }
  
  .newsletter-button {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
  
  .newsletter-feature {
    font-size: 14px;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}