/** Shopify CDN: Minification failed

Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
Line 25:16 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* ========================================
   ABOUT US SECTION - CSS
   ======================================== */

/* CSS Variables */
.about-us-section {
  --gradient-start: {{ section.settings.gradient_start }};
  --gradient-mid: {{ section.settings.gradient_mid }};
  --gradient-end: {{ section.settings.gradient_end }};
  --accent-pink: {{ section.settings.accent_pink }};
  --accent-blue: {{ section.settings.accent_blue }};
  
  /* Fallback colors */
  --gradient-start: #36D1DC;
  --gradient-mid: #E855DE;
  --gradient-end: #B39DDB;
  --accent-pink: #CE5DF6;
  --accent-blue: #5D76FF;
}

/* Base Styles */
.about-us-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  color: #1e293b;
  background-color: #f8fafc;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Blobs */
.about-us-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(128px);
  opacity: 0.2;
  animation: blob 7s infinite;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background-color: var(--accent-pink);
}

.blob-2 {
  top: 20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background-color: var(--accent-blue);
  animation-delay: 2s;
}

.blob-3 {
  bottom: -20%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background-color: #f9a8d4;
  animation-delay: 4s;
}

@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* Main Content */
.about-us-main {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .about-us-main {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .about-us-main {
    padding: 5rem 2rem;
  }
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 6rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Section Headers */
.section-header {
  margin-bottom: 2rem;
  margin-top: 4rem;
  padding: 0 0.5rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 42rem;
  font-weight: 300;
}

/* Cards */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-out;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.1);
  transform: translateY(-4px);
}

.card-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  pointer-events: none;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(206, 93, 246, 0.05), rgba(93, 118, 255, 0.05));
  pointer-events: none;
}

.card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(206, 93, 246, 0.05), rgba(93, 118, 255, 0.05));
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 10;
  color: #475569;
  line-height: 1.625;
  font-size: 0.9375rem;
}

.card-content p {
  margin-bottom: 0.75rem;
}

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

.card-heading {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #475569;
  line-height: 1.625;
  font-size: 0.9375rem;
}

.card-text p {
  margin-bottom: 0.75rem;
}

.card-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.icon-wrapper {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background-color: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.icon-gradient {
  background: linear-gradient(to bottom right, var(--accent-pink), var(--accent-blue));
  color: white;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #1e293b;
  margin: 0;
}

.card-title-large {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 1rem;
}

.card-subtitle {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

/* Grid Layouts */
.grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card-content-lg {

}
@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-content-lg .card-text {
    font-size: 20px;
    line-height: 1.8;
  }
}

.grid-3-col-env {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3-col-env {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3-col-env {
    grid-template-columns: repeat(3, 1fr);
  }
}

.col-span-2 {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .col-span-2 {
    grid-column: span 2;
  }
}

.card-large {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .card-large {
    grid-column: span 2;
  }
}

.card-full-width {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .card-full-width {
    grid-column: span 2;
  }
}

.card-env-main {
  grid-column: span 1;
  background: linear-gradient(to right, #f8fafc, white);
}

@media (min-width: 768px) {
  .card-env-main {
    grid-column: span 2;
  }
  .card-reusable {
    grid-column: span 2;
  }
}

.card-tall {
  grid-row: span 2;
}

.value-props-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-small {
  flex: 1;
}

/* Health Card */
.health-card-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .health-card-layout {
    flex-direction: row;
  }
}

.health-card-text {
  flex: 1;
}

.health-card-stat {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .health-card-stat {
    width: 16rem;
  }
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Recycling Guide */
.recycling-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .recycling-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recycling-left,
.recycling-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recycling-column-title {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0.5rem;
}

.card-horizontal {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .card-horizontal {
    flex-direction: row;
  }
}

.card-horizontal .icon-wrapper {
  flex-shrink: 0;
}

.location-title {
  display: block;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

/* Visual Guide */
.visual-guide {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.visual-guide-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.guide-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.guide-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.guide-icon svg {
  width: 24px;
  height: 24px;
}

.guide-icon-pink {
  color: var(--accent-pink);
}

.guide-icon-blue {
  color: var(--accent-blue);
}

.guide-item-text {
  display: flex;
  flex-direction: column;
}

.guide-title {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
}

.guide-subtitle {
  font-size: 0.75rem;
  color: #64748b;
}

/* Travel Card */
.card-travel {
  background-color: rgba(239, 246, 255, 0.3);
}

.travel-intro {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.travel-list {
  font-size: 0.75rem;
  color: #64748b;
  list-style-type: disc;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.travel-list li {
  margin-bottom: 0.25rem;
}

/* Press Section */
.press-section {
  margin-top: 6rem;
}

.card-press {
  text-align: center;
  padding: 4rem 2rem;
}

.press-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.press-desc {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: #475569;
}

.press-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background-color: #0f172a;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
}

.press-button:hover {
  background-color: #334155;
  transform: scale(1.05);
}

.press-disclaimer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered visibility */
.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Selection Color */
.about-us-section ::selection {
  background: var(--accent-pink);
  color: white;
}

/* ========================================
   SECTION 4 - RECYCLING GUIDE (Extended)
   ======================================== */

/* Recycling Intro Card */
.recycling-intro-card {
  margin-bottom: 2rem;
}

.recycling-intro-card .card-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Recycling Subsections */
.recycling-subsection {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

/* Card Note (ElektroG) */
.card-note {
  margin-top: 1.5rem;
  background: rgba(93, 118, 255, 0.05);
}

.card-note em {
  color: #64748b;
  font-size: 0.875rem;
}

/* Card Warning */
.card-warning {
  margin-top: 1.5rem;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.icon-warning {
  background: linear-gradient(to bottom right, #f59e0b, #d97706);
  color: white;
}

/* Component List */
.component-list {
  list-style-type: disc;
  list-style-position: inside;
  margin-top: 1rem;
  padding: 0;
}

.component-list li {
  margin-bottom: 0.5rem;
  color: #475569;
}

/* Visual Guide Title */
.visual-guide-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  text-align: center;
}

/* Travel List Title */
.travel-list-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Recycling CTA */
.recycling-cta {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(to right, rgba(206, 93, 246, 0.1), rgba(93, 118, 255, 0.1));
  border-radius: 1rem;
  text-align: center;
}

.recycling-cta p {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  margin: 0;
}
