/* ============================================
   Potomac Works Ecommerce - Cash App Inspired
   Infinite Vertical Scroll Design
   ============================================ */

/* Color Palette - Complementary to Potomac Works Logo */
:root {
  --pw-navy: #0a1628;
  --pw-navy-light: #0f1d36;
  --pw-twilight: #1a2d5c;
  --pw-blue: #2d4a7a;
  --pw-blue-light: #3d5f9e;
  --pw-sunset: #e8956a;
  --pw-sunset-light: #f0a878;
  --pw-peach: #f5c4a1;
  --pw-white: #ffffff;
  --pw-offwhite: #f5f5f7;
  --pw-grey: #86868b;
  --pw-dark-text: #1d1d1f;
  --pw-light-text: rgba(255, 255, 255, 0.85);
}

/* Reset for ecommerce page */
.ec-page {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--pw-white);
  color: var(--pw-dark-text);
  overflow-x: hidden;
}

.ec-page * {
  box-sizing: border-box;
}

/* ============================================
   Full-Viewport Scroll Sections (Cash App Style)
   ============================================ */
.ec-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ec-hero {
  background: linear-gradient(165deg, var(--pw-navy) 0%, var(--pw-twilight) 55%, var(--pw-blue) 100%);
  color: var(--pw-white);
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.ec-hero-logo {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 8px 32px rgba(232, 149, 106, 0.35));
  animation: ec-float 6s ease-in-out infinite;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

@keyframes ec-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.ec-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.ec-hero-title span {
  background: linear-gradient(135deg, var(--pw-sunset) 0%, var(--pw-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ec-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--pw-light-text);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.5;
  font-weight: 400;
}

.ec-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--pw-sunset);
  color: var(--pw-white);
  text-decoration: none;
  border-radius: 980px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(232, 149, 106, 0.4);
}

.ec-hero-cta:hover {
  background: var(--pw-sunset-light);
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(232, 149, 106, 0.5);
}

.ec-hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.ec-hero-cta:hover svg {
  transform: translateX(4px);
}

.ec-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: ec-bounce 2s ease-in-out infinite;
}

@keyframes ec-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   FEATURED CATEGORIES SECTION
   ============================================ */
.ec-categories {
  background: var(--pw-white);
  color: var(--pw-dark-text);
}

.ec-section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pw-sunset);
  margin-bottom: 1rem;
}

.ec-section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
}

.ec-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--pw-grey);
  text-align: center;
  max-width: 550px;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.ec-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

.ec-category-card {
  background: var(--pw-offwhite);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--pw-dark-text);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}

.ec-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
  border-color: rgba(232, 149, 106, 0.3);
}

.ec-category-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.ec-category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ec-category-card p {
  font-size: 1rem;
  color: var(--pw-grey);
  line-height: 1.5;
}

.ec-category-card .ec-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  color: var(--pw-sunset);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.ec-category-card:hover .ec-card-arrow {
  gap: 0.75rem;
}

/* ============================================
   LASER ENGRAVING SHOWCASE (Dark Section)
   ============================================ */
.ec-laser {
  background: linear-gradient(175deg, var(--pw-navy) 0%, var(--pw-navy-light) 100%);
  color: var(--pw-white);
}

.ec-laser .ec-section-label {
  color: var(--pw-sunset);
}

.ec-laser .ec-section-title {
  color: var(--pw-white);
}

.ec-laser .ec-section-subtitle {
  color: var(--pw-light-text);
}

.ec-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
}

.ec-product-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.ec-product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 149, 106, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ec-product-image {
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.ec-product-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ec-product-card .ec-product-desc {
  font-size: 0.9rem;
  color: var(--pw-light-text);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.ec-product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ec-product-price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pw-sunset);
}

.ec-product-price .ec-add-btn {
  padding: 0.5rem 1.25rem;
  background: var(--pw-sunset);
  color: var(--pw-white);
  border: none;
  border-radius: 980px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ec-product-price .ec-add-btn:hover {
  background: var(--pw-sunset-light);
  transform: scale(1.05);
}

/* Light variant for white background sections */
.ec-section-white .ec-product-card {
  background: var(--pw-offwhite);
  border: 1px solid #e5e5e7;
  color: var(--pw-dark-text);
}

.ec-section-white .ec-product-card:hover {
  background: var(--pw-white);
  border-color: var(--pw-sunset);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
}

.ec-section-white .ec-product-image {
  background: #eaeaec;
}

.ec-section-white .ec-product-card .ec-product-desc {
  color: var(--pw-grey);
}

/* ============================================
   3D PRINTING SECTION (White)
   ============================================ */
.ec-printing {
  background: var(--pw-white);
  color: var(--pw-dark-text);
}

/* ============================================
   GIFTS SECTION (Gradient)
   ============================================ */
.ec-gifts {
  background: linear-gradient(165deg, var(--pw-twilight) 0%, var(--pw-blue) 60%, #3d6494 100%);
  color: var(--pw-white);
}

.ec-gifts .ec-section-label {
  color: var(--pw-peach);
}

.ec-gifts .ec-section-title {
  color: var(--pw-white);
}

.ec-gifts .ec-section-subtitle {
  color: var(--pw-light-text);
}

.ec-gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
}

.ec-gift-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  text-decoration: none;
  color: var(--pw-white);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(12px);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  cursor: pointer;
}

.ec-gift-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(240, 168, 120, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.ec-gift-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.ec-gift-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ec-gift-card p {
  font-size: 0.95rem;
  color: var(--pw-light-text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.ec-gift-card .ec-from-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pw-peach);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.ec-how-it-works {
  background: var(--pw-offwhite);
  color: var(--pw-dark-text);
}

.ec-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
  position: relative;
}

.ec-steps::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--pw-sunset), var(--pw-peach), var(--pw-sunset));
  opacity: 0.3;
  z-index: 0;
}

.ec-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ec-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pw-sunset) 0%, var(--pw-sunset-light) 100%);
  color: var(--pw-white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(232, 149, 106, 0.3);
}

.ec-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.ec-step p {
  font-size: 0.95rem;
  color: var(--pw-grey);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS / TRUST SECTION
   ============================================ */
.ec-trust {
  background: var(--pw-white);
  color: var(--pw-dark-text);
}

.ec-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

.ec-testimonial {
  background: var(--pw-offwhite);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.ec-testimonial-stars {
  color: var(--pw-sunset);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.ec-testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--pw-dark-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.ec-testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pw-grey);
}

/* ============================================
   CTA / NEWSLETTER SECTION
   ============================================ */
.ec-cta {
  background: linear-gradient(165deg, var(--pw-navy) 0%, var(--pw-twilight) 100%);
  color: var(--pw-white);
  text-align: center;
  min-height: 80vh;
}

.ec-cta .ec-section-title {
  color: var(--pw-white);
}

.ec-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.ec-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--pw-sunset);
  color: var(--pw-white);
  text-decoration: none;
  border-radius: 980px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(232, 149, 106, 0.4);
}

.ec-cta-primary:hover {
  background: var(--pw-sunset-light);
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(232, 149, 106, 0.5);
}

.ec-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--pw-white);
  text-decoration: none;
  border-radius: 980px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.ec-cta-secondary:hover {
  border-color: var(--pw-white);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.ec-contact-info {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}

.ec-contact-item {
  text-align: center;
}

.ec-contact-item .ec-contact-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ec-contact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pw-sunset);
  margin-bottom: 0.25rem;
}

.ec-contact-item p {
  color: var(--pw-light-text);
  font-size: 1rem;
}

.ec-contact-item a {
  color: var(--pw-white);
  text-decoration: none;
  font-weight: 600;
}

.ec-contact-item a:hover {
  color: var(--pw-sunset);
}

/* ============================================
   FEATURE BADGES (floating on sections)
   ============================================ */
.ec-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.ec-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--pw-light-text);
}

.ec-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--pw-sunset);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.ec-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ec-fade-up.ec-visible {
  opacity: 1;
  transform: translateY(0);
}

.ec-stagger-1 { transition-delay: 0.1s; }
.ec-stagger-2 { transition-delay: 0.2s; }
.ec-stagger-3 { transition-delay: 0.3s; }
.ec-stagger-4 { transition-delay: 0.4s; }
.ec-stagger-5 { transition-delay: 0.5s; }
.ec-stagger-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .ec-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ec-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .ec-steps::before {
    display: none;
  }

  .ec-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ec-section {
    padding: 5rem 1.5rem;
    min-height: auto;
  }

  .ec-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: 100vh;
  }

  .ec-hero-logo {
    width: 150px;
    height: 150px;
  }

  .ec-section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .ec-categories-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ec-category-card {
    padding: 2rem 1.5rem;
  }

  .ec-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ec-gift-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ec-gift-card {
    padding: 1.5rem;
  }

  .ec-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ec-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ec-contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ec-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .ec-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .ec-hero-title {
    font-size: 2.5rem;
  }

  .ec-hero-subtitle {
    font-size: 1rem;
  }

  .ec-product-card {
    padding: 1.25rem;
  }

  .ec-product-image {
    height: 160px;
  }
}

/* ============================================
   SMOOTH SCROLL SNAP (Optional)
   ============================================ */
@media (min-width: 769px) {
  .ec-page {
    scroll-behavior: smooth;
  }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
.ec-page::-webkit-scrollbar {
  width: 8px;
}

.ec-page::-webkit-scrollbar-track {
  background: var(--pw-navy);
}

.ec-page::-webkit-scrollbar-thumb {
  background: var(--pw-sunset);
  border-radius: 4px;
}

.ec-page::-webkit-scrollbar-thumb:hover {
  background: var(--pw-sunset-light);
}

/* ============================================
   OVERRIDE GLOBAL STYLES FOR EC PAGE
   ============================================ */

/* Override old body gradient background */
body.ec-page {
  background: #0d3870 !important;
  color: var(--pw-dark-text) !important;
}

.ec-page .hero,
.ec-page .parallax-bg {
  display: none !important;
}

/* Hide the header's parallax logo overlay on the ecommerce page */
.ec-page .parallax-logo {
  display: none !important;
}

/* Ensure header still works properly */
.ec-page .section-header h2::before,
.ec-page .section-header h2::after {
  display: none;
}

/* Fix any old section-header text-shadow on white bg */
.ec-page .ec-section .ec-section-title {
  text-shadow: none;
}

/* ============================================
   HEADER OVERRIDES - MODERN ECOMMERCE DESIGN
   ============================================ */

/* Main header bar - dark translucent glass */
.ec-page .site-header,
.ec-page .site-header.scrolled {
  background: rgba(10, 22, 40, 0.92) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Header container - tighter padding */
.ec-page .header-container {
  padding: 0.6rem 2rem !important;
}

/* Logo image - use the icon with rounded corners */
.ec-page .logo img {
  height: 48px !important;
  width: 48px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.ec-page .site-header.scrolled .logo img {
  height: 42px !important;
  width: 42px !important;
}

/* Logo fallback - navy/sunset */
.ec-page .header-logo-fallback {
  background: linear-gradient(135deg, var(--pw-twilight) 0%, var(--pw-blue) 100%) !important;
  border-radius: 12px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
  height: 42px !important;
  min-width: 100px !important;
  padding: 0 0.75rem !important;
}

/* Tagline - subtle, light text */
.ec-page .logo-tagline {
  border-left-color: rgba(255, 255, 255, 0.1) !important;
}

.ec-page .tagline-text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.75rem !important;
  letter-spacing: 1.5px !important;
  font-weight: 500 !important;
}

/* Navigation links - clean white text, no emojis */
.ec-page .main-nav {
  gap: 0.25rem !important;
}

.ec-page .main-nav a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500 !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: 980px !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
  background: transparent !important;
}

.ec-page .main-nav a:hover {
  color: var(--pw-white) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.ec-page .main-nav a.active {
  color: var(--pw-white) !important;
  background: rgba(232, 149, 106, 0.15) !important;
}

/* Hide nav underline effect */
.ec-page .main-nav a::after {
  display: none !important;
}

/* Nav icons - smaller, dimmed */
.ec-page .nav-icon {
  font-size: 0.9rem !important;
  opacity: 0.7 !important;
}

.ec-page .main-nav a:hover .nav-icon {
  opacity: 1 !important;
}

/* Nav labels */
.ec-page .nav-label {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

/* Phone link - modern pill with sunset accent */
.ec-page .phone-link {
  background: rgba(232, 149, 106, 0.12) !important;
  border: 1px solid rgba(232, 149, 106, 0.25) !important;
  border-radius: 980px !important;
  padding: 0.4rem 1rem !important;
}

.ec-page .phone-link:hover {
  background: rgba(232, 149, 106, 0.2) !important;
  border-color: var(--pw-sunset) !important;
  box-shadow: 0 4px 12px rgba(232, 149, 106, 0.2) !important;
}

.ec-page .phone-number {
  color: var(--pw-sunset) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

/* Sign-in button - sunset orange CTA */
.ec-page .sign-in-button {
  background: linear-gradient(135deg, var(--pw-sunset) 0%, var(--pw-sunset-light) 100%) !important;
  color: var(--pw-white) !important;
  border: none !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 980px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 12px rgba(232, 149, 106, 0.3) !important;
  letter-spacing: 0.02em !important;
}

.ec-page .sign-in-button:hover {
  box-shadow: 0 6px 20px rgba(232, 149, 106, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* Profile button/initials - use sunset colors */
.ec-page .profile-image {
  border-color: var(--pw-sunset) !important;
}

.ec-page .profile-initials {
  background: linear-gradient(135deg, var(--pw-sunset), var(--pw-sunset-light)) !important;
  border-color: rgba(232, 149, 106, 0.3) !important;
}

/* Dropdown menu - dark themed */
.ec-page .dropdown-menu {
  background: var(--pw-navy-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.ec-page .dropdown-header {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.ec-page .user-name {
  color: var(--pw-white) !important;
}

.ec-page .user-email {
  color: rgba(255, 255, 255, 0.5) !important;
}

.ec-page .dropdown-menu a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.ec-page .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--pw-white) !important;
}

.ec-page .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* ============================================
   FOOTER OVERRIDES FOR ECOMMERCE COLOR SCHEME
   ============================================ */
.ec-page footer {
  background: linear-gradient(165deg, var(--pw-navy) 0%, var(--pw-twilight) 100%) !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer stars - use sunset orange instead of patriot red */
.ec-page .footer-stars {
  color: var(--pw-sunset) !important;
}

/* Footer text */
.ec-page .footer-content p {
  color: var(--pw-white) !important;
}

/* Trust signals */
.ec-page .payment-info,
.ec-page .insurance-info,
.ec-page .llc-info {
  color: var(--pw-light-text) !important;
}

/* Social media section */
.ec-page .social-media {
  border-top-color: rgba(232, 149, 106, 0.2) !important;
}

.ec-page .social-media h4 {
  color: var(--pw-white) !important;
}

/* Social link buttons - use navy/sunset color scheme */
.ec-page .social-link {
  background: rgba(232, 149, 106, 0.1) !important;
  border: 1px solid rgba(232, 149, 106, 0.25) !important;
  color: var(--pw-white) !important;
}

.ec-page .social-link:hover {
  background: rgba(232, 149, 106, 0.25) !important;
  border-color: var(--pw-sunset) !important;
  box-shadow: 0 8px 25px rgba(232, 149, 106, 0.2),
              0 0 0 1px rgba(232, 149, 106, 0.4) !important;
}

.ec-page .social-link:focus {
  outline-color: var(--pw-sunset) !important;
}

/* Social SVG icons */
.ec-page .social-link:hover .social-svg {
  color: var(--pw-sunset) !important;
  stroke: var(--pw-sunset) !important;
}

/* Footer links section */
.ec-page .footer-links {
  border-top-color: rgba(232, 149, 106, 0.2) !important;
}

.ec-page .footer-link {
  color: var(--pw-light-text) !important;
}

.ec-page .footer-link:hover {
  color: var(--pw-sunset) !important;
  opacity: 1 !important;
}
