/* ============================================================
   ANNOUNCEMENT BANNER (replaces marquee)
   Clean, fixed banner for "Opening April 2026"
   ============================================================ */
.announcement-banner {
  background: var(--deep-olive);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  padding: 0.7rem 5%;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.announcement-text {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.announcement-text strong {
  color: var(--white);
  font-weight: 700;
}

/* Adjust nav position for announcement banner */
nav {
  top: 40px;
}

/* ============================================================
   EMAIL SIGNUP MODAL
   ============================================================ */
.email-signup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 42, 38, 0.8);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.email-signup-content {
  background: var(--white);
  max-width: 440px;
  width: 100%;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-xl);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.email-signup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-signup-close:hover {
  background: var(--deep-brown);
  color: var(--white);
}

.email-signup-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.email-signup-content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.email-signup-content > p {
  color: var(--medium-brown);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.email-signup-field {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.email-signup-field input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--taupe);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.email-signup-field input:focus {
  outline: none;
  border-color: var(--deep-olive);
  background: var(--white);
}

.email-signup-btn {
  padding: 1rem 1.5rem;
  background: var(--deep-olive);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.email-signup-btn:hover {
  background: var(--terracotta);
}

.email-signup-btn:disabled {
  background: var(--taupe);
  cursor: not-allowed;
}

.email-signup-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.email-signup-success {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.email-signup-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--deep-olive);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.email-signup-success p {
  color: var(--deep-olive);
  font-weight: 600;
  margin: 0;
}

.email-signup-secondary {
  display: inline-block;
  color: var(--medium-brown);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.email-signup-secondary:hover {
  color: var(--deep-brown);
}

/* ============================================================
   WHOLESALE PAGE STYLES
   ============================================================ */
.wholesale-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.wholesale-info {
  margin-bottom: 4rem;
}

.wholesale-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.wholesale-intro h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--deep-brown);
  margin-bottom: 1rem;
  font-weight: 500;
}

.wholesale-intro p {
  color: var(--medium-brown);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}

.wholesale-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wholesale-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(212, 197, 173, 0.4);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.wholesale-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.wholesale-feature h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wholesale-feature p {
  color: var(--medium-brown);
  font-size: 0.9rem;
  line-height: 1.7;
}

.wholesale-form-section {
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(212, 197, 173, 0.4);
  border-radius: var(--radius-md);
}

.wholesale-form-section > h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-align: center;
}

.wholesale-form-section > p {
  text-align: center;
  color: var(--medium-brown);
  margin-bottom: 2rem;
}

.wholesale-form .form-row {
  margin-bottom: 1.5rem;
}

.wholesale-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.wholesale-form label .required {
  color: var(--terracotta);
}

.wholesale-form label .optional {
  color: var(--warm-gray);
  font-weight: 400;
  font-size: 0.8rem;
}

.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--taupe);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.wholesale-form input:focus,
.wholesale-form select:focus,
.wholesale-form textarea:focus {
  outline: none;
  border-color: var(--deep-olive);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 93, 62, 0.1);
}

.wholesale-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wholesale-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239D7052' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.wholesale-form .submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--deep-olive);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-success p {
  color: var(--medium-brown);
  margin-bottom: 1.5rem;
}

.wholesale-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--muted-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wholesale-note p {
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS FOR NEW COMPONENTS
   ============================================================ */
@media (max-width: 768px) {
  .announcement-banner {
    padding: 0.6rem 3%;
  }
  
  .announcement-content {
    gap: 0.5rem;
  }
  
  .announcement-icon {
    display: none;
  }
  
  .announcement-text {
    font-size: 0.75rem;
  }
  
  nav {
    top: 36px;
  }
  
  .email-signup-content {
    padding: 2rem 1.5rem;
  }
  
  .email-signup-field {
    flex-direction: column;
  }
  
  .email-signup-btn {
    width: 100%;
  }
  
  .wholesale-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .wholesale-form-section {
    padding: 2rem 1.5rem;
  }
  
  .hero-video-section {
    height: 75vh;
    min-height: 75vh;
  }
}

@media (max-width: 480px) {
  .announcement-text {
    font-size: 0.7rem;
  }
  
  nav {
    top: 32px;
  }
}
