/* Lifestyle Gallery Section */
.lifestyle-gallery-section {
  background: white;
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

.lifestyle-gallery-section .container {
  max-width: 100%;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.lifestyle-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-xl);
  align-items: center;
}

.lifestyle-text-content h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark-brown);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.lifestyle-text-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(28, 27, 26, 0.85);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.lifestyle-image-content {
  position: relative;
  overflow: hidden;
}

.lifestyle-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s ease;
}

.lifestyle-image-content:hover .lifestyle-image {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .lifestyle-gallery-section .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
  
  .lifestyle-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }
  
  .lifestyle-text-content {
    text-align: center;
  }
  
  .lifestyle-text-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .lifestyle-gallery-section {
    padding: var(--section-padding-y-tablet) 0;
  }
  
  .lifestyle-gallery-section .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
  
  .lifestyle-text-content h2 {
    font-size: 2rem;
  }
  
  .lifestyle-text-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .lifestyle-gallery-section {
    padding: var(--section-padding-y-mobile) 0;
  }
  
  .lifestyle-gallery-section .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .lifestyle-content-wrapper {
    gap: var(--gap-md);
  }
  
  .lifestyle-text-content h2 {
    font-size: 1.8rem;
  }
  
  .lifestyle-text-content p {
    font-size: 1rem;
  }
  
  .app-store-badge img {
    height: 44px;
    max-width: 150px;
  }
}

/* Story Solution Section - Rebuilt */
.story-solution {
  background: white;
  width: 100%;
  margin: 0 0 var(--space-lg) 0;
  position: relative;
  z-index: 1;
}

.story-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: var(--gap-lg);
  align-items: center;
  margin: 0 var(--space-lg);
  width: calc(100% - calc(var(--space-lg) * 2));
}

.story-solution-text {
  padding-right: var(--space-xl);
}

.solution-lead-in {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--forest-green);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.story-solution-text h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-3xs);
  letter-spacing: -0.03em;
}

.story-solution-text h2 em {
  color: var(--forest-green);
  font-style: normal;
  font-weight: 400;
  font-family: 'Sacramento', cursive;
  font-size: 1.8em;
  line-height: 1;
}

.solution-body {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(59, 42, 31, 0.8);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.solution-body:last-of-type {
  margin-bottom: 0;
}

.story-solution-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 750px;
}

.solution-image-desktop,
.solution-image-mobile {
  height: 750px;
  width: auto;
  display: block;
  border-radius: 20px;
  transition: transform 1.5s ease;
  max-width: none;
}

/* Desktop: show cross image, hide mobile */
.solution-image-desktop {
  display: block;
  margin-left: auto;
}

.solution-image-mobile {
  display: none;
}

.story-solution-image:hover .solution-image-desktop,
.story-solution-image:hover .solution-image-mobile {
  transform: scale(1.02);
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .story-solution-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
    margin: 0 var(--space-sm);
    width: calc(100% - calc(var(--space-sm) * 2));
  }
  
  .story-solution-text {
    order: 1;
    text-align: center;
    padding: 0 var(--space-lg);
  }
  
  .story-solution-image {
    order: 2;
    justify-content: center;
    height: 600px;
  }
  
  .story-solution-text h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
  
  .story-solution-text h2 em {
    font-size: 1.45em;
  }
  
  .solution-lead-in {
    font-size: 1.375rem;
  }
  
  .solution-body {
    font-size: 1.2rem;
  }
  
  .solution-image-desktop,
  .solution-image-mobile {
    height: 600px;
  }
  
  /* Tablet: swap to mobile image (centered, full frame) */
  .solution-image-desktop {
    display: none;
  }
  
  .solution-image-mobile {
    display: block;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .story-solution {
    margin: 0 0 var(--space-md) 0;
  }
  
  .story-solution-grid {
    gap: var(--gap-md);
  }
  
  .story-solution-text {
    padding: 0 var(--space-sm);
  }
  
  .story-solution-text h2 {
    font-size: 2.5rem;
    line-height: 1.25;
  }
  
  .story-solution-text h2 em {
    font-size: 1.4em;
  }
  
  .solution-lead-in {
    font-size: 1.25rem;
  }
  
  .solution-body {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .story-solution-image {
    height: auto;
    min-height: 400px;
  }
  
  .solution-image-desktop,
  .solution-image-mobile {
    height: 100%;
    max-height: 500px;
    width: 100%;
    object-fit: contain;
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  .story-solution-grid {
    margin: 0 var(--space-2xs);
    width: calc(100% - calc(var(--space-2xs) * 2));
  }
  
  .story-solution-text h2 {
    font-size: 2rem;
  }
  
  .solution-lead-in {
    font-size: 1rem;
  }
  
  .solution-body {
    font-size: 1rem;
    line-height: 1.65;
  }
  
  .story-solution-image {
    min-height: 350px;
  }
  
  .solution-image-desktop,
  .solution-image-mobile {
    max-height: 400px;
  }
}

/* Story Section - Generic (keep for other story sections if any) */
.story-section {
  background: var(--cream);
  padding: var(--section-padding-y-tablet) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  clear: both;
  order: 0;
}

/* Story Section 1: Camera Roll Problem - Compact */
.story-section.story-problem {
  background: white;
  padding: var(--section-padding-y-tablet) 0;
  position: relative;
  z-index: 1;
  clear: both;
}

/* Best Moments Lead-in Text (in story section) */
.best-moments-lead-in {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.best-moments-lead-in em {
  color: var(--forest-green);
  font-style: normal;
  font-weight: 400;
}

/* Best Moments Section - Image dimensions: 2512 x 525px (≈4.8:1 aspect ratio) */
.best-moments-section {
  padding: 2rem 0 4rem 0;
}

.best-moments-section .container {
  max-width: 1400px;
  padding: 0 2rem;
}

.best-moments-heading {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.best-moments-heading em {
  color: var(--forest-green);
  font-style: normal;
  font-weight: 400;
  font-family: 'Sacramento', cursive;
  font-size: 1.68em;
}

.best-moments-banner {
  width: 100%;
  height: 280px; /* Fallback height based on typical container width */
  min-height: 280px;
  aspect-ratio: 4.8 / 1; /* Maintains the image's natural aspect ratio */
  display: block;
  background-image: url('../images/best-moments.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 4px solid var(--light-green);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.best-moments-banner:hover {
  transform: translateY(-4px);
}

.best-moments-cta {
  text-align: center;
  margin: var(--space-xl) 0;
}

.best-moments-section .trust-pills-container {
  margin-top: 0;
  margin-bottom: var(--space-xl);
}

.best-moments-section .section-title-centered {
  margin-bottom: var(--space-xl);
}

.best-moments-section .best-moments-banner {
  margin-top: 0;
  margin-bottom: var(--space-xl);
}

.trust-pills-with-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.trust-pill-cta {
  background: var(--forest-green);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  flex-grow: 1;
  max-width: 200px;
}

.trust-pill-cta span {
  color: white !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

.trust-pill-cta:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.3);
}

.trust-pill-cta svg {
  color: white;
  width: 28px;
  height: 28px;
}

/* Responsive Best Moments */
@media (max-width: 1024px) {
  .best-moments-section {
    padding: 1.5rem 0 3rem 0;
  }
  
  .best-moments-lead-in {
    font-size: 1.375rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
  }
  
  .best-moments-banner {
    height: 220px;
    min-height: 220px;
    border-radius: 20px;
    border-width: 3px;
  }
  
  .best-moments-cta {
    margin: var(--space-lg) 0;
  }
  
  .best-moments-section .section-title-centered {
    margin-bottom: var(--space-lg);
  }
  
  .best-moments-section .best-moments-banner {
    margin-top: 0;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .best-moments-section {
    padding: 1rem 0 2.5rem 0;
  }
  
  .best-moments-section .container {
    padding: 0 1.5rem;
  }
  
  .best-moments-lead-in {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.375rem;
  }
  
  .best-moments-banner {
    background-image: url('../images/best-moments-mobile.png'); /* Switch to mobile image */
    aspect-ratio: 3.43 / 1; /* Mobile image aspect ratio: 1803/525 */
    height: 180px;
    min-height: 180px;
    border-radius: 16px;
    border-width: 3px;
  }
  
  .best-moments-cta {
    margin: var(--space-md) 0;
  }
  
  .best-moments-section .section-title-centered {
    margin-bottom: var(--space-md);
    font-size: 2rem;
  }
  
  .best-moments-section .trust-pills-container {
    margin-top: 0;
    margin-bottom: var(--space-md);
  }
  
  .best-moments-section .best-moments-banner {
    margin-top: 0;
    margin-bottom: var(--space-md);
  }
  
  .trust-pills-with-cta {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: var(--space-xs);
  }
  
  .trust-pill-cta {
    grid-column: 1 / -1;
    max-width: 100%;
    min-height: 80px;
  }
  
  .trust-pill-cta span {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 480px) {
  .best-moments-section {
    padding: 0.5rem 0 2rem 0;
  }
  
  .best-moments-section .container {
    padding: 0 1rem;
  }
  
  .best-moments-lead-in {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0.35rem;
  }
  
  .best-moments-banner {
    background-image: url('../images/best-moments-mobile.png'); /* Mobile image */
    aspect-ratio: 3.43 / 1; /* Mobile image aspect ratio: 1803/525 */
    height: 140px;
    min-height: 140px;
    border-radius: 12px;
    border-width: 2px;
  }
  
  .best-moments-cta {
    margin: var(--space-md) 0;
  }
  
  .best-moments-section .section-title-centered {
    margin-bottom: var(--space-md);
    font-size: 1.75rem;
  }
  
  .best-moments-section .trust-pills-container {
    margin-top: 0;
    margin-bottom: var(--space-md);
  }
  
  .best-moments-section .best-moments-banner {
    margin-top: 0;
    margin-bottom: var(--space-md);
  }
  
  .trust-pill-cta {
    padding: var(--space-md) var(--space-sm);
  }
  
  .trust-pill-cta span {
    font-size: 1rem !important;
  }
  
  .trust-pill-cta svg {
    width: 24px;
    height: 24px;
  }
}

/* Common Section Styles */
.section-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}

.section-intro h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(59, 42, 31, 0.8);
}

.whats-included {
  font-size: 0.95rem;
  color: rgba(59, 42, 31, 0.7);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}

/* Standardized section spacing */
section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Features section */
.features {
  background-color: white;
  z-index: 1;
}

.features::before {
  display: none;
}

.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.feature-item.active {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 4px 0;
  color: var(--dark-brown);
}

.feature-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(59, 42, 31, 0.8);
  margin: 0;
}

.features-carousel {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.carousel-content {
  position: relative;
  transition: opacity 0.2s ease;
}

.carousel-item {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Standardized feature content wrapper */
.feature-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-content-wrapper.appear {
  opacity: 1;
  transform: translateY(0);
}

.feature-content-wrapper.reverse {
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
}

.feature-content-wrapper.reverse .feature-visual {
  grid-column: 1;
}

.feature-content-wrapper.reverse .feature-text {
  grid-column: 2;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(28, 27, 26, 0.85);
  margin-bottom: 1rem;
}

.feature-visual {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-content-wrapper:hover .feature-visual {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s ease;
}

.feature-content-wrapper:hover .feature-visual img {
  transform: scale(1.03);
}

/* How it works - Apple-style steps */
.how-it-works {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(250, 249, 247, 0.8) 100%);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(44, 74, 60, 0.03) 0%, rgba(44, 74, 60, 0) 70%);
  z-index: 1;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 2;
}

.step:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
  font-size: 3rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 1.5rem;
  line-height: 1;
  opacity: 0.8;
}

.step h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(28, 27, 26, 0.85);
  font-weight: 400;
}

/* App Store Badges */
.app-store-badges {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.app-store-text {
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Ensure consistent badge sizing */
.badges-container .app-store-badge {
  flex-shrink: 0;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.app-store-badge img {
  height: 50px;
  width: auto;
  max-width: 170px;
  border-radius: 8px;
  display: block;
}

/* Tech Specs section */
.tech-specs {
  background: white;
}

.specs-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.specs-group {
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.specs-group h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--dark-brown);
  text-align: center;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list li {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.specs-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.specs-list strong {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.specs-detail {
  font-size: 1.1rem;
  color: rgba(28, 27, 26, 0.85);
  line-height: 1.4;
}

.specs-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
  background: white;
  aspect-ratio: 1/1;
}

/* FAQ Section Styles */
.faq-section {
  background-color: white;
  padding: var(--space-3xl) 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.faq-item {
  margin-bottom: var(--space-lg);
  border-radius: 16px;
  background: white;
  border: 2px solid var(--light-green);
  box-shadow: 0 4px 0 0 rgba(44, 74, 60, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 74, 60, 0.1);
}

.faq-question {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--light-green);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-green);
  letter-spacing: -0.01em;
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest-green);
  transition: transform 0.3s ease;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
}

.faq-answer p {
  margin: 0;
  padding: var(--space-lg) 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.faq-answer a {
  color: var(--forest-green);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--dark-green);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background: var(--medium-green);
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: var(--space-2xl) 0;
  }
  
  .faq-container {
    padding: 0 var(--space-md);
  }
  
  .faq-item {
    margin-bottom: var(--space-md);
    border-radius: 12px;
  }
  
  .faq-question {
    padding: var(--space-md);
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding: 0 var(--space-md);
  }
  
  .faq-answer p {
    padding: var(--space-md) 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 var(--space-sm);
  }
  
  .faq-question {
    padding: var(--space-sm) var(--space-md);
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    min-width: 24px;
  }
}

/* Section Background Pattern */
.hero-message {
  background-color: var(--cream);
  position: relative;
}

.hero-message::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(250, 249, 247, 0) 0%, rgba(250, 249, 247, 0.8) 100%);
  z-index: 1;
}

.features {
  background-color: white;
}

.gallery-section {
  background-color: var(--cream);
}

.setup-section {
  background-color: white;
}

.how-it-works {
  background-color: var(--cream);
}

.tech-specs {
  background-color: white;
}

.faq-section {
  background-color: white;
}

/* Section transitions - standardized heights */
.features::after,
.gallery-section::after,
.setup-section::after,
.how-it-works::after,
.tech-specs::after,
.hero-message::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.features::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--cream) 100%);
  z-index: 2;
}

.gallery-section::after {
  background: linear-gradient(to bottom, rgba(250, 249, 247, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.setup-section::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--cream) 100%);
}

.how-it-works::after {
  background: linear-gradient(to bottom, rgba(250, 249, 247, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.tech-specs::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--cream) 100%);
}

.hero-message::after {
  background: linear-gradient(to bottom, rgba(250, 249, 247, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Standardized spacing for highlights and CTAs */
.preorder-highlight {
  background-color: rgba(44, 74, 60, 0.05);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 74, 60, 0.08);
  border: 1px solid rgba(44, 74, 60, 0.1);
}

.preorder-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.preorder-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: radial-gradient(circle at 50% 80%, rgba(44, 74, 60, 0.04) 0%, rgba(44, 74, 60, 0) 80%);
  z-index: 0;
}

.preorder-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.preorder-content h2 {
  margin-bottom: 1.2rem;
  color: var(--dark-brown);
}

.preorder-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: rgba(28, 27, 26, 0.85);
}

.preorder-highlight-button {
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.2);
}

.preorder-highlight-button:hover {
  background: #1a3a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 74, 60, 0.3);
}

/* Preorder CTA in specs section */
.preorder-cta {
  margin-top: 2.5rem;
  background: rgba(44, 74, 60, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(44, 74, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.preorder-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 0;
}

.availability {
  font-size: 0.95rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.preorder-button {
  display: inline-block;
  background: var(--forest-green);
  color: white;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.2);
  position: relative;
  z-index: 1;
}

.preorder-button:hover {
  background: #1a3a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 74, 60, 0.3);
}

/* Final CTA Section - with standardized spacing */
.final-cta {
  padding: 6rem 0;
  background-color: var(--forest-green);
  position: relative;
  color: var(--dark-green);
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  line-height: 1.2;
}

.final-cta p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.final-cta-button {
  background: white;
  color: var(--forest-green);
  border: none;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.final-cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments with standardized spacing */
@media (max-width: 1024px) {
  section {
    padding: 0rem 0;
  }

  .feature-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .feature-content-wrapper.reverse .feature-visual,
  .feature-content-wrapper.reverse .feature-text,
  .feature-text,
  .feature-visual {
    grid-column: 1;
  }
  
  .feature-text {
    order: 1;
  }
  
  .feature-visual {
    order: 2;
  }
  
  .feature-content-wrapper.reverse .feature-text {
    order: 1;
  }
  
  .feature-content-wrapper.reverse .feature-visual {
    order: 2;
  }
  
  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step {
    padding: 1.5rem;
  }
  
  .section-intro {
    margin-bottom: 3rem;
  }
  
  .features-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .specs-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .specs-image {
    order: -1;
  }
  
  .hero-message-wrapper {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  
  .hero-message-content {
    max-width: 100% !important;
    text-align: center;
    margin: 0 auto;
    order: 1 !important;
  }
  
  .hero-image-container {
    order: 2 !important;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  
  .preorder-highlight {
    margin-bottom: 4rem;
  }
  
  .final-cta {
    padding: 5rem 0;
  }
  
  .final-cta h2 {
    font-size: 2.6rem;
  }
  
  .final-cta p {
    font-size: 1.2rem;
  }

  .features section,
  .setup-section section,
  .gallery-section section,
  .hero-message section {
    padding: 5rem 0;
  }
  
  /* This ensures all sections with hero-message-wrapper display properly in a single column */
  .features .hero-message-wrapper,
  .setup-section .hero-message-wrapper,
  .gallery-section .hero-message-wrapper,
  .hero-message .hero-message-wrapper {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  
  /* This ensures proper ordering of content and image on mobile */
  .hero-message-wrapper .hero-message-content {
    max-width: 100% !important;
    text-align: center;
    margin: 0 auto;
    order: 1 !important;
  }
  
  .hero-message-wrapper .hero-image {
    order: 2 !important;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  
  /* Special case for gallery section - keep text first, image second */
  .gallery-section .hero-message-wrapper .hero-message-content {
    order: 1 !important;
  }
  
  .gallery-section .hero-message-wrapper .hero-image {
    order: 2 !important;
  }
}

@media (max-width: 768px) {
  section {
    padding: 0rem 0;
  }

  .feature-text h3 {
    font-size: 1.8rem;
  }
  
  .feature-text p {
    font-size: 1rem;
  }
  
  .step-number {
    font-size: 2.5rem;
  }
  
  .step h3 {
    font-size: 1.3rem;
  }
  
  .hero-message-content {
    padding: 0 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .section-intro {
    margin-bottom: 2.5rem;
  }
  
  .specs-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .specs-group {
    padding: 1.8rem;
  }
  
  .specs-image {
    max-height: 400px;
    aspect-ratio: auto;
  }
  
  .faq-question {
    padding: 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 1.25rem 0;
    font-size: 0.95rem;
  }
  
  .preorder-highlight {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  
  .features::after,
  .gallery-section::after,
  .setup-section::after,
  .how-it-works::after,
  .tech-specs::after,
  .hero-message::after {
    height: 60px;
  }
  
  .final-cta {
    padding: 4rem 0;
  }
  
  .final-cta h2 {
    font-size: 2.2rem;
  }
  
  .final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .final-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .preorder-hero-content {
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .preorder-hero-content .preorder-bg-text {
    font-size: 28vw;
  }
  
  .hero-message-wrapper {
    margin: 0 0 3rem 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 00rem 0;
  }
  
  .products-container-full {
    padding: 0 1.5rem;
  }
  
  .unified-product-selector {
    padding: 0;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }
  
  .product-selector-image {
    min-height: 300px;
    padding: 0;
    order: 1;
  }
  
  .product-selector-config {
    gap: 2rem;
    order: 2;
    padding: 0;
  }
  
  .product-selector-config h3 {
    font-size: 1.5rem;
  }
  
  .product-selector-description {
    font-size: 0.95rem;
  }
  
  .products-section .section-intro {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
  }
  
  .products-section .section-intro h2 {
    font-size: 2rem;
  }
  
  .product-quantity-section {
    padding-bottom: 1.5rem;
  }
  
  .product-config-label {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .product-quantity-option {
    padding: 0.75rem 0.5rem 0.75rem;
    gap: 0.25rem;
  }
  
  .product-quantity-option .qty-number {
    font-size: 1.1rem;
  }
  
  .product-quantity-option .qty-label {
    font-size: 0.7rem;
  }
  
  .product-quantity-option .qty-price {
    font-size: 0.75rem;
  }
  
  .product-frame-section {
    padding-bottom: 1.5rem;
  }
  
  .product-frame-options {
    grid-template-columns: 1fr 1fr;
  }
  
  .main-frame-option {
    font-size: 0.85rem;
    padding: 0.875rem 0.875rem;
  }
  
  .main-frame-option .frame-swatch {
    width: 20px;
    height: 20px;
  }
  
  .main-price {
    font-size: 2rem;
  }
  
  .main-add-to-cart-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .products-container-full {
    padding: 0 1rem;
  }

  .feature-visual {
    max-height: 300px;
  }
  
  .section-intro {
    margin-bottom: 2rem;
  }
  
  .preorder-highlight {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .features::after,
  .gallery-section::after,
  .setup-section::after,
  .how-it-works::after,
  .tech-specs::after,
  .hero-message::after {
    height: 40px;
  }
  
  .final-cta {
    padding: 3rem 0;
  }
  
  .final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .final-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .final-cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .preorder-hero-content {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .preorder-hero-content .preorder-bg-text {
    font-size: 36vw;
  }
  
  .hero-message-wrapper {
    margin: 0 0 2rem 0;
  }
}

/* Standard content wrapper for sections */
.hero-message-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin: 0 0 4rem 0;
}

.hero-message-content {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

.hero-message-content h3 {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
  letter-spacing: -0.02em;
}

.hero-message-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(28, 27, 26, 0.85);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-message-content p:last-child {
  margin-bottom: 0;
}

.hero-image-container {
  display: flex;
  flex-direction: column;
}

/* Ensure proper order on mobile: image → caption → dots */
.hero-image-container .hero-image {
  order: 1;
}

.hero-image-container .image-controls {
  order: 2;
}

.hero-image-container .image-controls .image-captions {
  order: 1;
}

.hero-image-container .image-controls .image-dots {
  order: 2;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  height: 450px;
  max-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin-bottom: 2rem;
}

.image-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.image-captions {
  position: relative;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image-caption {
  font-size: .85rem !important;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  text-align: center;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 100%;
  width: 100%;
  padding: 0 1rem;
}

/* Add more breathing room on mobile */
@media (max-width: 768px) {
  .hero-image-caption {
    font-size: 0.9rem !important;
    line-height: 1.5;
    padding: 0 1.5rem;
  }
  
  .image-captions {
    min-height: 3rem; /* Increased from 2.5rem */
    margin: 1rem 0; /* Add top and bottom margin */
  }
}

.hero-image-caption.active {
  opacity: 1;
}

.hero-image-container .image-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: static !important;
  transform: none !important;
  backdrop-filter: blur(10px);
}

.hero-image-container .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none !important;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  position: static !important;
}

.hero-image-container .dot:hover {
  background: rgba(44, 74, 60, 0.7) !important;
  transform: scale(1.15) !important;
}

.hero-image-container .dot.active {
  background: var(--forest-green) !important;
  transform: scale(1.25) !important;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-image {
    max-height: 400px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-image {
    max-height: 300px;
  }
}

/* Pre-order Hero Section with Script Background - Now Integrated */
.preorder-bg-text {
  position: absolute;
  font-family: 'Sacramento', cursive;
  font-size: 28vw;
  line-height: 1;
  color: rgba(59, 42, 31, 0.03);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.preorder-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 4rem auto 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  overflow: hidden;
}

.preorder-hero-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.preorder-hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(28, 27, 26, 0.85);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.preorder-hero-button {
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(44, 74, 60, 0.2);
  position: relative;
  z-index: 2;
}

.preorder-hero-button:hover {
  background: #1a3a2a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(44, 74, 60, 0.25);
}

@media (max-width: 768px) {
  .preorder-hero-section {
    padding: 5rem 0;
  }
  
  .preorder-bg-text {
    font-size: 36vw;
  }
  
  .preorder-hero-content {
    padding: 2rem;
  }
  
  .preorder-hero-content h2 {
    font-size: 2rem;
  }
  
  .preorder-hero-content p {
    font-size: 1.1rem;
  }
  
  .preorder-hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .preorder-hero-section {
    padding: 4rem 0;
  }
  
  .preorder-bg-text {
    font-size: 48vw;
  }
  
  .preorder-hero-content {
    padding: 1.5rem;
  }
  
  .preorder-hero-content h2 {
    font-size: 1.8rem;
  }
  
  .preorder-hero-content p {
    font-size: 1rem;
  }
  
  .preorder-hero-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
}

.preorder-hero-content .preorder-bg-text {
  font-size: 20vw;
}

.preorder-content-inner {
  position: relative;
  z-index: 3;
}

.hero-message::after {
  content: '';
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  height: 20%;
  background: radial-gradient(ellipse at center, rgba(59, 42, 31, 0.02) 0%, rgba(59, 42, 31, 0) 70%);
  z-index: 0;
}

/* --- New Pre-order Modal Styles --- */

/* Modal styles moved to css/modals.css for better organization */
.modal-overlay {
  z-index: 9000; /* Standardized in modals.css */
}

.modal {
  z-index: 9100; /* Standardized in modals.css */
  max-width: 900px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  overflow: visible; /* Allow content scroll */
  max-height: 90vh; /* Limit height */
}

.modal.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.2rem; /* Slightly smaller */
  color: #888; /* Darker grey */
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
  z-index: 10; /* Ensure it's above content */
}

.modal-close-btn:hover {
  color: #333;
}

.modal-content {
  display: flex;
  flex-direction: column;
  padding: 0; /* Padding handled by containers */
}

.modal-image-container {
  flex-basis: 50%;
  background-color: #f0f0f0; /* Placeholder */
}

.modal-image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-text-container {
  flex-basis: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-text-container h2 {
  font-size: 1.8rem;
  color: var(--forest-green);
  margin-top: 0;
  margin-bottom: 1rem;
}

.modal-text-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
}

.modal-frame-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.modal-frame-option {
  padding: 0.6rem 1.2rem;
  padding-left: 2.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.modal-frame-option:not(.modal-size-option)::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-frame-option:hover {
  background-color: #eee;
  border-color: #bbb;
}

.modal-frame-option.active {
  border-color: var(--forest-green);
  background-color: var(--cream);
  color: var(--forest-green);
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Add specific frame background indicators */
.modal-frame-option.frame-light::before {
  background-image: url('../images/white-oak.jpg');
}
.modal-frame-option.frame-medium::before {
  background-image: url('../images/cherry.jpg');
}
.modal-frame-option.frame-dark::before {
  background-image: url('../images/walnut.jpg');
}
.modal-frame-option.frame-none::before {
  background-color: #eee;
  background-image: linear-gradient(to top right, transparent calc(50% - 1px), #999 calc(50% - 1px), #999 calc(50% + 1px), transparent calc(50% + 1px));
  border-color: #bbb;
}

.modal-preorder-btn {
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.4);
  align-self: flex-start;
  margin-top: auto;
}

.modal-preorder-btn:hover {
  background: #1a3a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 74, 60, 0.3);
}

.modal-disclaimer {
  font-size: 0.8rem !important;
  color: #888 !important;
  margin-top: 0.75rem;
  margin-bottom: 0 !important;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
  .modal {
    /* Make the modal itself a flex container */
    display: flex;
    flex-direction: column;
    width: 95% !important; /* Ensure proper width on mobile */
    left: 50% !important; /* Center horizontally */
    top: 50% !important; /* Center vertically */
    transform: translate(-50%, -50%) !important; /* Proper centering */
  }
  .modal-content {
    flex-direction: column;
    /* Allow content to determine height, enable scrolling */
    overflow: hidden; /* Hide overflow on main content area */
    /* Add min-height for flex safety */
    min-height: 0;
    /* Let content determine height within the modal's flex context */
  }
  .modal-image-container {
    display: none; /* Hide image entirely on mobile */
    /* Let image size dictate height, remove fixed height */
    flex-shrink: 0; /* Prevent shrinking */
    /* Add a max-height to prevent image overwhelming text */
    max-height: 25vh; 
    /* Ensure image covers the area nicely */
    overflow: hidden;
  }
  .modal-text-container {
    padding: 2rem 1.5rem;
    overflow-y: auto; /* Enable vertical scrolling for text */
    flex-grow: 1; /* Allow text container to fill remaining space */
    /* Optional: Add max-height if needed, but flex-grow might suffice */
    /* max-height: calc(90vh - 200px); /* Example: Adjust 200px based on image */
    /* Add min-height for flex/overflow safety */
    min-height: 0;
  }
  .modal-text-container h2 {
    font-size: 1.5rem;
  }
  .modal-frame-options {
    gap: 0.75rem;
  }
  .modal-frame-option {
    padding: 0.5rem 0.8rem;
    padding-left: 1.8rem;
    font-size: 0.8rem;
  }
  .modal-frame-option:not(.modal-size-option)::before {
    left: 0.4rem;
    width: 14px;
    height: 14px;
  }
  .modal-preorder-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
  /* Add space above 'Use My Own Frame' button on mobile */
  .modal-frame-option.frame-none {
    margin-top: 1rem;
  }
}

/* New Cart-Style Modal */
.modal-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  text-align: center;
}

.purchase-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.purchase-option {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.purchase-option:hover {
  border-color: var(--forest-green);
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.1);
}

.purchase-option.recommended {
  border-color: var(--forest-green);
  background: rgba(44, 74, 60, 0.02);
}

.purchase-option.selected {
  border-color: var(--forest-green);
  background: rgba(44, 74, 60, 0.05);
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.15);
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--forest-green);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.option-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin: 0 0 0.5rem 0;
}

.option-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.gallery-options {
  margin-bottom: 1.5rem;
}

.gallery-choice {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-choice:hover,
.gallery-choice.active {
  border-color: var(--forest-green);
  background: rgba(44, 74, 60, 0.05);
}

.choice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.quantity {
  font-weight: 600;
  color: var(--dark-brown);
}

.savings {
  background: #e8f5e8;
  color: #2d5a2d;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.choice-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  opacity: 0.8;
}

.sale-price {
  font-weight: 600;
  color: var(--forest-green);
  font-size: 1.1rem;
}

/* Ensure gallery choice pricing is visible */
.gallery-choice .choice-pricing .original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  opacity: 0.8;
  display: inline;
}

.gallery-choice .choice-pricing .sale-price {
  font-weight: 600;
  color: var(--forest-green);
  font-size: 1.1rem;
  display: inline;
}

.frame-label {
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark-brown);
}

.single-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-top: 1rem;
}

.shared-frame-selection {
  margin-bottom: 1.5rem;
  text-align: center;
}

.shared-frame-selection .frame-label {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.shared-frame-selection .modal-frame-options {
  justify-content: center;
}

.cart-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cart-summary .modal-preorder-btn {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0;
}

.cart-total {
  margin-bottom: 0.5rem;
}

.total-label {
  font-size: 1.1rem;
  color: var(--dark-brown);
}

.total-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-green);
}

.shipping-info {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.modal-terms-summary {
  font-size: 0.85rem;
  color: #666;
  margin: 0.5rem 0 0 0;
  text-align: center;
  line-height: 1.4;
}

.modal-terms-summary a {
  color: var(--forest-green);
  text-decoration: underline;
}

/* Products Section */
.products-section {
  background: var(--cream);
  padding: 8rem 0;
}

.products-section .section-intro {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.products-section .section-intro h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.products-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.products-section .whats-included {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}

/* Full-width container for unified product selector */
.products-container-full {
  width: 100%;
  max-width: 1400px;
  padding: 0 3rem;
  margin: 0 auto;
}

/* Unified Product Selector - Light & Airy with Proper Containment */
.unified-product-selector {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  width: 100%;
  margin: 0 0 4rem 0;
  background: transparent;
  padding: 0;
  align-items: start;
}

.product-selector-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  width: 100%;
  min-height: 550px;
  padding: 0;
}

.product-selector-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-selector-image:hover img {
  transform: scale(1.03);
}

.product-selector-config {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  width: 100%;
  min-width: 0;
}

.product-selector-config h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.product-selector-description {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Quantity Selection */
.product-quantity-section {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  min-width: 0;
}

.product-config-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.01em;
  flex-wrap: wrap;
}

.help-choose-frames-btn {
  background: none;
  border: none;
  color: var(--forest-green);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.help-choose-frames-btn:hover {
  color: #1e3529;
}

.product-quantity-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}

.product-quantity-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.5rem 0.5rem 1.25rem;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}

.product-quantity-option:hover {
  border-color: var(--forest-green);
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(44, 74, 60, 0.08);
}

.product-quantity-option.active {
  border-color: var(--forest-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(44, 74, 60, 0.08);
}

.product-quantity-option .qty-number {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark-brown);
  line-height: 1;
  letter-spacing: -0.01em;
}

.product-quantity-option .qty-label {
  font-weight: 400;
  color: var(--dark-brown);
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.3;
}

.product-quantity-option .qty-price {
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.product-quantity-option .qty-price small {
  text-decoration: line-through;
  color: #999;
  font-size: 0.75rem;
  display: block;
}

.product-quantity-option .qty-savings {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--forest-green);
  color: white;
  font-size: 0.625rem;
  padding: 3px 7px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-quantity-option .most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  font-size: 0.625rem;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(255, 107, 107, 0.35);
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.03); }
}

/* Frame Selection */
.product-frame-section {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  min-width: 0;
}

.product-frame-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}

.main-frame-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: var(--dark-brown);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}

.main-frame-option:hover {
  border-color: var(--forest-green);
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(44, 74, 60, 0.08);
}

.main-frame-option.active {
  border-color: var(--forest-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(44, 74, 60, 0.08);
}

.main-frame-option .frame-swatch {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.main-frame-option .frame-light { 
  background: url('../images/wood-grains-white-oak.png') center/cover;
}
.main-frame-option .frame-medium { 
  background: url('../images/wood-grains-cherry.png') center/cover;
}
.main-frame-option .frame-dark { 
  background: url('../images/wood-grains-walnut.png') center/cover;
}
.main-frame-option .frame-maple { 
  background: url('../images/wood-grains-maple.png') center/cover;
}

/* Pricing and CTA */
.product-pricing-cta {
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.main-price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1;
  letter-spacing: -0.02em;
}

.main-original-price {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}

.main-add-to-cart-btn {
  width: 100%;
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1.125rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
}

.main-add-to-cart-btn:hover {
  background: #1e3529;
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.2);
}

.main-add-to-cart-btn:active {
  transform: scale(0.98);
}

.affirm-message {
  text-align: center;
  margin-top: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Old product grid styles (keeping for backward compatibility) */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
  border: 2px solid var(--forest-green);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.image-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-img.active {
  opacity: 1;
}

.image-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.dot.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.product-badge.recommended {
  background: var(--forest-green);
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.product-description {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.product-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 1.5rem;
}

.frame-selection {
  margin-bottom: 1.5rem;
}

.frame-label {
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark-brown);
  font-size: 0.9rem;
}

.frame-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center; /* Center the frame options */
}

.frame-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.frame-option:hover,
.frame-option.active {
  border-color: var(--forest-green);
  background: rgba(44, 74, 60, 0.05);
}

.frame-swatch {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
  display: inline-block;
  pointer-events: none; /* Allow clicks to pass through to the button */
}

.frame-light {
  background-image: url('../images/wood-grains-white-oak.png');
  background-size: cover;
}

.frame-medium {
  background-image: url('../images/wood-grains-cherry.png');
  background-size: cover;
}

.frame-dark {
  background-image: url('../images/wood-grains-walnut.png');
  background-size: cover;
}

.frame-maple {
  background-image: url('../images/wood-grains-maple.png');
  background-size: cover;
}

/* Specific styles for frame swatches in product cards */
.frame-swatch.frame-light {
  background-image: url('../images/wood-grains-white-oak.png');
  background-size: cover;
}

.frame-swatch.frame-medium {
  background-image: url('../images/wood-grains-cherry.png');
  background-size: cover;
}

.frame-swatch.frame-dark {
  background-image: url('../images/wood-grains-walnut.png');
  background-size: cover;
}

.frame-swatch.frame-maple {
  background-image: url('../images/wood-grains-maple.png');
  background-size: cover;
}

.gallery-options {
  margin-bottom: 1.5rem;
}

.add-to-bag-btn {
  width: 100%;
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-bag-btn:hover {
  background: #1a3a2a;
  transform: translateY(-2px);
}

.trust-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding: 0;
  background: transparent;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.trust-icon {
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shopping Bag Styles */
.bag-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.bag-toggle:hover {
  transform: translateY(-50%) scale(1.1);
}

.bag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bag-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.shopping-bag-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9150; /* Below shopping bag (9200) but above regular modals */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.shopping-bag-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.shopping-bag {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: white;
  z-index: 9200; /* Standardized z-index */
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.shopping-bag.active {
  right: 0;
}

.bag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.bag-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--dark-brown);
}

.close-bag {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

.bag-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.empty-bag {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.empty-icon {
  margin-bottom: 1rem;
  color: #ccc;
  display: flex;
  justify-content: center;
}

.scroll-to-products-btn {
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.scroll-to-products-btn:hover {
  background: #1a3a2a;
}

.empty-subtitle {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.bag-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.bag-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.item-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.item-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.3;
}

.item-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-green);
  text-align: right;
}

.price-with-savings {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.original-price-small {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.sale-price-large {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-green);
}

.bag-footer {
  border-top: 1px solid #eee;
  padding: 1.25rem;
}

.bag-total {
  margin-bottom: 1rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}

.total-row.final {
  font-weight: 600;
  font-size: 1.1rem;
  border-top: 1px solid #eee;
  padding-top: 0.5rem;
  margin-top: 0.75rem;
}

.checkout-btn {
  width: 100%;
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.875rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.checkout-note {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .unified-product-selector {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .product-selector-image {
    min-height: 500px;
    order: 1;
  }
}

@media (max-width: 1024px) {
  .products-container-full {
    padding: 0 2rem;
  }
  
  .unified-product-selector {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .product-selector-image {
    min-height: 400px;
    order: 1;
  }
  
  .product-selector-config {
    order: 2;
    padding: 0;
  }
  
  .product-selector-config h3 {
    font-size: 1.75rem;
  }
  
  .products-section .section-intro {
    padding: 0 1.5rem;
  }
  
  .product-quantity-options {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-signals {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  /* Fix frame options on mobile */
  .frame-options {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .frame-option {
    flex: 0 0 auto; /* Don't grow or shrink */
    min-width: fit-content; /* Ensure full visibility */
  }
}

@media (max-width: 768px) {
  .product-quantity-option {
    padding: 0.875rem 0.5rem 0.875rem;
    gap: 0.3rem;
  }
  
  .product-quantity-option .qty-number {
    font-size: 1.25rem;
  }
  
  .product-quantity-option .qty-label {
    font-size: 0.75rem;
  }
  
  .product-quantity-option .qty-price {
    font-size: 0.8rem;
  }
  
  .shopping-bag {
    width: 100%;
    right: -100%;
  }
  
  .bag-toggle {
    right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .bag-icon {
    font-size: 1.2rem;
  }
  
  /* Mobile-specific spacing optimizations */
  .bag-footer {
    padding: 1rem;
  }
  
  .bag-total {
    margin-bottom: 0.875rem;
  }
  
  .checkout-btn {
    padding: 0.8rem;
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}

/* Full-Page Checkout Overlay */
.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9300; /* Highest priority - checkout flow */
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.checkout-overlay[style*="display: flex"] {
  pointer-events: auto;
  backdrop-filter: blur(5px);
}

.checkout-modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.checkout-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--dark-brown);
}

.close-checkout {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

.close-checkout:hover {
  color: #333;
}

.checkout-content {
  padding: 0;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

#checkout-container {
  min-height: 400px;
}

/* Legacy modal styles for backward compatibility */
@media (max-width: 768px) {
  .purchase-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .modal {
    width: 95%;
    max-height: 95vh;
  }
  
  .modal-text-container {
    padding: 1.5rem;
  }
  
  .checkout-modal {
    width: 95%;
    max-height: 95vh;
  }
}

/* Mobile App Section */
.mobile-app-section {
  background: rgba(44, 74, 60, 0.8);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.mobile-app-section::before {
  display: none;
}

.app-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.app-text-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-text-content h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.app-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.app-features {
  margin-bottom: 3rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.app-feature-icon {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-feature-icon svg {
  color: rgba(255, 255, 255, 0.9);
}

.app-feature h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin: 0 0 0.5rem 0;
}

.app-feature p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.app-download-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.app-badge {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.app-badge img {
  height: auto;
  max-width: 100%;
}

/* Real Phone Mockups */
.app-phones-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-mockup {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* iOS Phone - Fill right side */
.ios-phone {
  transform: none;
  z-index: 0;
}

/* Android Phone - Hidden for now */
.android-phone {
  display: none;
}

.phone-mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 20px; /* Rounded corners to match other images */
}

/* Force mobile phone sizing with highest specificity */
.mobile-app-section .app-phones-container .phone-mockup {
  position: static !important;
  width: 85% !important;
  max-width: 400px !important;
  height: 100% !important;
  top: auto !important;
  right: auto !important;
  margin: 0 auto !important;
}

.mobile-app-section .app-phones-container .phone-mockup-image {
  object-fit: contain !important;
  width: 100% !important;
  height: 100% !important;
  object-position: center !important;
  border-radius: 20px !important; /* Rounded corners for mobile */
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 32px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 3;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

/* App UI Mockups */
.app-ui-mockup {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Status Bar */
.status-bar {
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(20px);
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  margin-top: 16px; /* Account for notch */
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.status-bar.android {
  height: 32px;
  margin-top: 8px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.95);
}

.status-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #1d1d1f;
}

/* App Header */
.app-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.app-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.app-header.android {
  height: 64px;
  background: #ffffff;
  color: #1d1d1f;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.app-header.android h3 {
  color: #1d1d1f;
  font-size: 20px;
  font-weight: 500;
}

.settings-icon, .back-arrow, .menu-dots {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
}

.settings-icon:hover, .back-arrow:hover, .menu-dots:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Frame List (iOS) */
.frame-list {
  padding: 24px;
}

.frame-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.frame-item.active {
  background: #ffffff;
  border: 1px solid #1a4d3a;
  box-shadow: 0 2px 8px rgba(26, 77, 58, 0.12);
}

.frame-thumbnail {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.current-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  position: relative;
}

.current-photo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 16px;
  background: rgba(107, 114, 128, 0.4);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z' /%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z' /%3E%3C/svg%3E") no-repeat center;
}

.current-photo.bedroom {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.frame-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.frame-location {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.frame-info {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.battery-level {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.frame-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.frame-status.online {
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Album List (Android) */
.album-list {
  padding: 24px;
}

.album-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
}

.album-item.selected {
  background: #ffffff;
  border: 1px solid #1a4d3a;
  box-shadow: 0 2px 8px rgba(26, 77, 58, 0.12);
}

.album-thumbnail {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

.album-preview {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  position: relative;
}

.album-preview::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 16px;
  background: rgba(107, 114, 128, 0.4);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10' /%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10' /%3E%3C/svg%3E") no-repeat center;
}

.album-preview.family {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.album-preview.travel {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.photo-count {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.album-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.album-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.album-detail {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.selection-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a4d3a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .app-section-content {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .app-section-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
    min-height: 400px;
  }
  
  .app-text-content {
    z-index: 2;
    padding: 0 1rem;
  }
  
  .app-text-content h2 {
    font-size: 2.2rem;
  }
  
  .mobile-app-section .app-phones-container {
    position: relative !important;
    width: 100% !important;
    height: 500px !important; /* Increased height */
    margin-top: 1rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important; /* Remove any padding */
  }
  
  .mobile-app-section .app-phones-container .phone-mockup {
    position: static !important;
    width: 100% !important; /* Full width - fill entire green space */
    max-width: none !important; /* No max-width restrictions */
    height: 100% !important;
    z-index: 1;
    margin: 0 !important; /* No margins */
    top: auto !important;
    right: auto !important;
    left: auto !important;
  }
  
  .mobile-app-section .app-phones-container .phone-mockup-image {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important; /* Remove any max-width constraints */
    object-position: center !important;
    border-radius: 20px !important; /* Rounded corners for mobile */
  }
  
  .app-download-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .app-section-content {
    min-height: 350px;
    gap: 1.5rem;
  }
  
  .mobile-app-section .app-phones-container {
    height: 450px !important; /* Increased height for small mobile */
    width: 100% !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .mobile-app-section .app-phones-container .phone-mockup {
    width: 100% !important; /* Full width on small screens too */
    max-width: none !important; /* No restrictions */
    height: 100% !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 0 !important; /* No margins */
  }
  
  .mobile-app-section .app-phones-container .phone-mockup-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    max-width: none !important;
    border-radius: 20px !important; /* Rounded corners for small mobile */
  }
  
  .app-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .app-feature-icon {
    align-self: center;
  }
}

/* ====================================
   SOCIAL FEED SECTION
   ==================================== */

.social-feed-section {
  background: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.social-feed-section .container {
  max-width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

.social-feed-section h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.social-feed-wrapper {
  margin-top: 3rem;
  position: relative;
}

.social-cta {
  text-align: center;
  margin-top: 3rem;
}

.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--forest-green);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.2);
}

.social-follow-btn:hover {
  background: #1a3a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 74, 60, 0.3);
}

.social-follow-btn svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .social-feed-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  .social-feed-section {
    padding: 4rem 0;
  }
  
  .social-feed-wrapper {
    margin-top: 2rem;
  }
  
  .social-cta {
    margin-top: 2rem;
  }
  
  .social-follow-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .social-feed-section {
    padding: 3rem 0;
  }
  
  .social-feed-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .social-follow-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */

.testimonials-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--cream) 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: var(--space-2xl) auto;
  max-width: calc(100vw - var(--space-2xl));
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  z-index: 1;
  clear: both;
  order: 1;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(168, 196, 178, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.testimonials-section .section-intro {
  padding: 0 var(--space-xl);
}

.testimonials-section .section-intro h2 {
  color: var(--forest-green);
}

.testimonials-section .section-subtitle {
  color: var(--dark-brown);
  opacity: 0.8;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-lg);
  margin-top: var(--gap-xl);
  padding: 0 var(--space-xl);
}

/* Responsive padding adjustments */
@media (max-width: 1024px) {
  .testimonials-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .testimonials-section .section-intro {
    padding: 0 var(--space-lg);
  }
  
  .testimonials-wrapper {
    padding: 0 var(--space-lg);
  }
}

.testimonial-item {
  background: transparent;
  padding: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.customer-info {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  font-weight: 600;
  font-size: 1.2rem;
  font-family: var(--font-main);
}

/* Hide placeholder when image loads successfully */
.avatar-image:not([src=""]):not([src*="undefined"]) + .avatar-placeholder {
  display: none;
}

.customer-details {
  flex: 1;
}

.customer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-green);
  margin: 0 0 var(--space-3xs) 0;
  font-family: var(--font-main);
}

.star-rating {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

/* iOS-style Speech Bubble */
.testimonial-bubble {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: var(--space-sm) var(--space-md);
  margin-left: var(--space-lg);
  box-shadow: 0 4px 20px rgba(44, 74, 60, 0.1);
  border: 1px solid rgba(168, 196, 178, 0.2);
}

.testimonial-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent white transparent transparent;
}

.testimonial-bubble p {
  color: var(--dark-brown);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  font-family: var(--font-main);
}

/* Hover Effects */
.testimonial-item:hover .testimonial-bubble {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 74, 60, 0.15);
  background: white;
  transition: all 0.3s ease;
  border-color: var(--medium-green);
}

.testimonial-item:hover .testimonial-bubble::before {
  border-color: transparent white transparent transparent;
}

/* Read More Indicator */
.read-more {
  font-size: 0.8rem;
  color: rgba(59, 42, 31, 0.6);
  font-style: italic;
  margin-top: var(--space-2xs);
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover .read-more {
  opacity: 1;
}

/* Testimonial Modal Styles - Base styles moved to modals.css */
.testimonial-modal-overlay {
  z-index: 9000; /* Standardized - matches other overlays */
}

.testimonial-modal {
  z-index: 9100; /* Standardized - matches other modals */
}

.testimonial-modal-close {
  z-index: 10; /* Relative z-index within modal */
}

.testimonial-modal-content {
  padding: 2rem;
}

.testimonial-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.modal-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-avatar-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest-green), var(--medium-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: var(--font-main);
}

/* Hide modal placeholder when image loads successfully */
.modal-avatar-image:not([src=""]):not([src*="undefined"]) + .modal-avatar-placeholder {
  display: none;
}

.modal-customer-info {
  flex: 1;
}

.modal-customer-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-main);
}

.modal-star-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-modal-body {
  line-height: 1.6;
}

.testimonial-modal-body p {
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin: 0;
  font-family: var(--font-main);
}

/* Clickable testimonial items */
.testimonial-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--section-padding-y-mobile) 0;
    max-width: calc(100vw - var(--space-lg));
    border-radius: 16px;
  }
  
  .testimonials-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .testimonials-section .section-intro {
    padding: 0 var(--space-sm);
  }
  
  .testimonials-section .section-intro h2 {
    font-size: 1.75rem;
  }
  
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
    margin-top: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .testimonial-bubble {
    margin-left: 0;
    margin-top: var(--space-xs);
    padding: var(--space-sm);
  }
  
  .testimonial-bubble p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .testimonial-bubble::before {
    left: 20px;
    top: -8px;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent white transparent;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 3rem 0;
    max-width: calc(100vw - 1rem);
    border-radius: 12px;
    margin: 3rem auto;
  }
  
  .testimonials-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .testimonials-section .section-intro {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .testimonials-section .section-title-centered {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .testimonials-wrapper {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .customer-info {
    gap: 0.5rem;
  }
  
  .customer-avatar {
    width: 45px;
    height: 45px;
  }
  
  .avatar-placeholder {
    font-size: 1.1rem;
  }
  
  .customer-name {
    font-size: 1rem;
  }
  
  .testimonial-bubble {
    padding: var(--space-xs) var(--space-sm);
    border-radius: 18px;
  }
  
  .testimonial-bubble p {
    font-size: 0.9rem;
  }
  
  .testimonial-bubble::before {
    left: 15px;
  }
  
  /* Modal responsive styles */
  .testimonial-modal {
    width: 95%;
    max-height: 90vh;
  }
  
  .testimonial-modal-content {
    padding: var(--space-md);
  }
  
  .testimonial-modal-header {
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
  }
  
  .modal-customer-avatar {
    width: 50px;
    height: 50px;
  }
  
  .modal-avatar-placeholder {
    font-size: 1.2rem;
  }
  
  .modal-customer-name {
    font-size: 1.1rem;
  }
  
  .testimonial-modal-body p {
    font-size: 1rem;
  }
}

/* Specs & Comparison Section */
.specs-section {
  background: var(--cream);
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

.specs-section .container {
  max-width: 1400px;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.specs-section .section-intro {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.specs-section .section-intro h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark-brown);
  margin-bottom: var(--space-2xs);
  letter-spacing: -0.02em;
}

.specs-section .section-subtitle {
  font-size: 1.2rem;
  color: rgba(59, 42, 31, 0.7);
  font-weight: 400;
}

/* Specs Magic Section - What You Don't See */
.specs-magic-section {
  margin-bottom: 6rem;
}

.specs-magic-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.specs-magic-title em {
  color: var(--forest-green);
  font-style: normal;
  font-weight: 400;
  font-family: 'Sacramento', cursive;
  font-size: 1.4em;
  vertical-align: baseline;
  line-height: 0;
}

.specs-magic-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.specs-magic-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.specs-magic-video {
  width: 100%;
}

.specs-magic-video .video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44, 74, 60, 0.15);
}

.specs-magic-video .eink-demo-video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.specs-magic-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.specs-magic-video .play-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
  text-align: center;
}

.specs-magic-video .play-prompt svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.specs-magic-video .play-prompt span {
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.specs-magic-video .video-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(168, 196, 178, 0.95), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.specs-magic-video .video-container:hover .video-caption-overlay {
  opacity: 1;
}

.specs-magic-video .video-caption {
  color: var(--forest-green);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  text-shadow: none;
  font-weight: 500;
}

.specs-magic-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specs-magic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 74, 60, 0.12);
}

.specs-magic-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 60, 0.08);
  border-radius: 50%;
}

.specs-magic-icon svg {
  stroke: var(--forest-green);
}

.specs-magic-item h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
}

.specs-magic-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(59, 42, 31, 0.75);
  margin: 0;
}

/* Specs Section Title */
.specs-section-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.specs-section-title em {
  color: var(--forest-green);
  font-style: normal;
  font-weight: 400;
  font-family: 'Sacramento', cursive;
  font-size: 1.68em;
  vertical-align: baseline;
  line-height: 0;
}

/* Specs Highlights Section */
.specs-highlights-section {
  margin-top: 0;
}

.specs-highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.specs-highlights-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.specs-highlight-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 74, 60, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specs-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 74, 60, 0.12);
}

.specs-highlight-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 74, 60, 0.08);
  border-radius: 12px;
}

.specs-highlight-icon svg {
  stroke: var(--forest-green);
}

.specs-highlight-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.specs-highlight-card p {
  font-size: 1rem;
  color: rgba(59, 42, 31, 0.7);
  margin: 0;
  line-height: 1.5;
}

.specs-highlights-video {
  width: 100%;
}

.specs-highlights-video .video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44, 74, 60, 0.15);
}

.specs-highlights-video .eink-demo-video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.specs-highlights-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.specs-highlights-video .play-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
  text-align: center;
}

.specs-highlights-video .play-prompt svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.specs-highlights-video .play-prompt span {
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.specs-highlights-video .video-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(168, 196, 178, 0.95), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.specs-highlights-video .video-container:hover .video-caption-overlay {
  opacity: 1;
}

.specs-highlights-video .video-caption {
  color: var(--forest-green);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  text-shadow: none;
  font-weight: 500;
}

/* Tech Specifications Section */
.specs-tech-section {
  background: white;
  padding: 3rem 4rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(44, 74, 60, 0.08);
  margin-top: 5rem;
}

.specs-tech-section h4 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 3rem;
  text-align: center;
}

.specs-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.specs-tech-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(44, 74, 60, 0.08);
}

.specs-tech-item:nth-last-child(-n+3) {
  border-bottom: none;
  padding-bottom: 0;
}

.specs-tech-item:nth-last-child(1) {
  grid-column: 1 / -1;
  text-align: center;
  border-bottom: none;
  padding-top: 2rem;
  border-top: 2px solid rgba(44, 74, 60, 0.1);
}

.specs-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.specs-value {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dark-brown);
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .specs-comparison-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .specs-section {
    padding: 4rem 0;
  }
  
  .specs-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .specs-magic-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .specs-magic-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .specs-magic-video .video-container {
    max-width: 500px;
  }
  
  .specs-highlights-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .specs-highlights-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specs-highlights-video .video-container {
    max-width: 500px;
  }
  
  .specs-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .specs-section {
    padding: 3rem 0;
  }
  
  .specs-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .specs-section .section-intro h2 {
    font-size: 2.25rem;
  }
  
  .specs-section .section-subtitle {
    font-size: 1.05rem;
  }
  
  .specs-magic-section {
    margin-bottom: 4rem;
  }
  
  .specs-magic-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .specs-magic-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .specs-magic-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .specs-magic-video .video-container {
    max-width: 100%;
  }
  
  .specs-magic-item {
    padding: 1.5rem;
  }
  
  .specs-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .specs-highlights-section {
    margin-top: 0;
  }
  
  .specs-highlights-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .specs-highlights-cards {
    grid-template-columns: 1fr;
  }
  
  .specs-highlights-video .video-container {
    max-width: 100%;
  }
  
  .specs-tech-section {
    margin-top: 3rem;
  }
  
  .specs-tech-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .specs-tech-item {
    padding-bottom: 1.5rem;
  }
  
  .specs-tech-item:nth-last-child(1) {
    padding-top: 1.5rem;
  }
  
  .specs-magic-icon {
    width: 70px;
    height: 70px;
  }
  
  .specs-magic-item h4 {
    font-size: 1.25rem;
  }
  
  .specs-magic-item p {
    font-size: 1rem;
  }
  
  .specs-comparison-section {
    padding: 3rem 2rem;
    border-radius: 20px;
  }
  
  .specs-comparison-title {
    font-size: 2rem;
  }
  
  .specs-comparison-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .specs-comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  
  .specs-feature-card {
    padding: 1.5rem;
  }
  
  .specs-feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .specs-tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .specs-section {
    padding: 2.5rem 0;
  }
  
  .specs-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .specs-section .section-intro {
    margin-bottom: 3rem;
  }
  
  .specs-section .section-intro h2 {
    font-size: 1.85rem;
  }
  
  .specs-section .section-subtitle {
    font-size: 0.95rem;
  }
  
  .specs-magic-title {
    font-size: 1.75rem;
  }
  
  .specs-magic-item {
    padding: 1.25rem;
  }
  
  .specs-magic-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .specs-magic-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .specs-magic-item h4 {
    font-size: 1.15rem;
  }
  
  .specs-magic-item p {
    font-size: 0.95rem;
  }
  
  .specs-section-title {
    font-size: 1.75rem;
  }
  
  .specs-highlights-section {
    margin-top: 2rem;
  }
  
  .specs-highlight-card {
    padding: 1.5rem 1.25rem;
  }
  
  .specs-highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .specs-highlight-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .specs-highlight-card h4 {
    font-size: 1.1rem;
  }
  
  .specs-highlight-card p {
    font-size: 0.95rem;
  }
  
  .specs-tech-section {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  .specs-tech-section h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .specs-tech-grid {
    gap: 2rem 1.5rem;
  }
  
  .specs-tech-details h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .specs-tech-grid {
    gap: 1.25rem;
  }
  
  .specs-label {
    font-size: 0.8rem;
  }
  
  .specs-value {
    font-size: 0.95rem;
  }
}

/* Chat Button Styles */
.open-chat-btn {
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.open-chat-btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 74, 60, 0.3);
}

.open-chat-btn:active {
  transform: translateY(0);
} 