/* ========================================
   SAM JIN ROOFING SUPPLY — Design Tokens
   ======================================== */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Font families */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* ========================================
   Color Palette — Warm Industrial
   Earthy, grounded, construction-trade feel
   ======================================== */

:root, [data-theme="light"] {
  /* Surfaces */
  --color-bg:             #f5f2ed;
  --color-surface:        #faf8f5;
  --color-surface-2:      #ffffff;
  --color-surface-offset: #ece8e1;
  --color-divider:        #d9d4cc;
  --color-border:         #c9c3ba;

  /* Text */
  --color-text:           #2c2418;
  --color-text-muted:     #6b6054;
  --color-text-faint:     #a39a8e;
  --color-text-inverse:   #faf8f5;

  /* Primary — Brick Red (warm, trade-oriented) */
  --color-primary:        #b5472a;
  --color-primary-hover:  #943a22;
  --color-primary-active: #7a3120;

  /* Accent — Warm Amber */
  --color-accent:         #c8850f;
  --color-accent-hover:   #a66e0a;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 60 / 0.12);
}

[data-theme="dark"] {
  --color-bg:             #1a1815;
  --color-surface:        #211f1b;
  --color-surface-2:      #282520;
  --color-surface-offset: #1e1c18;
  --color-divider:        #302d28;
  --color-border:         #3d3a34;

  --color-text:           #d9d4cc;
  --color-text-muted:     #8a8279;
  --color-text-faint:     #5c564e;
  --color-text-inverse:   #1a1815;

  --color-primary:        #d4694e;
  --color-primary-hover:  #e07a5e;
  --color-primary-active: #c55a42;

  --color-accent:         #e0a33a;
  --color-accent-hover:   #c8900f;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1a1815;
    --color-surface:        #211f1b;
    --color-surface-2:      #282520;
    --color-surface-offset: #1e1c18;
    --color-divider:        #302d28;
    --color-border:         #3d3a34;
    --color-text:           #d9d4cc;
    --color-text-muted:     #8a8279;
    --color-text-faint:     #5c564e;
    --color-text-inverse:   #1a1815;
    --color-primary:        #d4694e;
    --color-primary-hover:  #e07a5e;
    --color-primary-active: #c55a42;
    --color-accent:         #e0a33a;
    --color-accent-hover:   #c8900f;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ========================================
   Component Styles
   ======================================== */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 100;
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: var(--space-2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .header-inner {
    padding: var(--space-4) var(--space-6);
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Navigation */
.main-nav {
  display: none;
  gap: var(--space-1);
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}
.main-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}
.main-nav a:hover {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.05);
}
.main-nav a.active {
  color: var(--color-primary);
  background: oklch(from var(--color-primary) l c h / 0.08);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: oklch(from var(--color-text) l c h / 0.06);
  color: var(--color-text);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}
.mobile-menu-toggle:hover {
  background: oklch(from var(--color-text) l c h / 0.06);
  color: var(--color-text);
}
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 40;
  background: var(--color-bg);
  padding: var(--space-20) var(--space-6) var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: oklch(from var(--color-text) l c h / 0.05);
}
.mobile-nav .nav-phone {
  margin-top: auto;
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-primary);
  font-weight: 600;
}

/* Phone CTA in header */
.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
}
@media (min-width: 1024px) {
  .header-phone {
    display: flex;
  }
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.15 0.02 50 / 0.92) 0%,
    oklch(0.15 0.02 50 / 0.6) 40%,
    oklch(0.15 0.02 50 / 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-12) var(--space-4) var(--space-10);
  width: 100%;
}
@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-16) var(--space-6) var(--space-12);
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #f5f2ed;
  margin-bottom: var(--space-4);
  max-width: 14ch;
}
.hero p {
  font-size: var(--text-base);
  color: #d9d4cc;
  max-width: 48ch;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
}
.btn-primary:active {
  background: var(--color-primary-active);
}
.btn-outline {
  background: transparent;
  color: #f5f2ed;
  border: 1px solid oklch(1 0 0 / 0.3);
}
.btn-outline:hover {
  background: oklch(1 0 0 / 0.1);
  border-color: oklch(1 0 0 / 0.5);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline-dark:hover {
  background: oklch(from var(--color-text) l c h / 0.05);
  border-color: var(--color-text-muted);
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: clamp(var(--space-10), 6vw, var(--space-20)) var(--space-4);
}
@media (min-width: 768px) {
  .section {
    padding-inline: var(--space-6);
  }
}
.section-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.section-header {
  margin-bottom: var(--space-8);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.section-header p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* Info bar */
.info-bar {
  background: var(--color-surface);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.info-bar-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
@media (min-width: 768px) {
  .info-bar-inner {
    justify-content: space-between;
    padding-inline: var(--space-6);
  }
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.info-bar-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ========================================
   Product Cards (Home)
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-5);
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-top: 4px solid var(--color-primary);
  text-decoration: none;
  color: var(--color-text);
  display: block;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: oklch(from var(--color-text) l c h / 0.12);
  border-top-color: var(--color-primary);
  transform: translateY(-2px);
}
.product-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.product-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   Products Page — Catalog
   ======================================== */
.catalog-section {
  padding: clamp(var(--space-8), 5vw, var(--space-16)) var(--space-4);
}
@media (min-width: 768px) {
  .catalog-section {
    padding-inline: var(--space-6);
  }
}
.catalog-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.category-block {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.category-block:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: flex-end;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
}
.category-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
}
.category-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-bottom: 2px;
}

.category-layout {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
.category-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.item-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid oklch(from var(--color-text) l c h / 0.05);
}
.item-row:hover {
  background: var(--color-surface-2);
}
.item-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  flex-shrink: 0;
}
.item-name {
  font-size: var(--text-sm);
  font-weight: 500;
  flex: 1;
}
.item-tag {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================================
   About Snippet (Home)
   ======================================== */
.about-snippet {
  background: var(--color-surface-offset);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.about-text p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.about-text p:last-child {
  margin-bottom: 0;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.detail-card {
  background: var(--color-surface);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  text-align: center;
}
.detail-card .value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}
.detail-card .label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-1);
  display: block;
}

/* ========================================
   Hours & Location Section
   ======================================== */
.hours-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .hours-location {
    grid-template-columns: 1fr 1fr;
  }
}
.hours-card, .location-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.hours-card h3, .location-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list .day {
  font-weight: 500;
}
.hours-list .time {
  color: var(--color-text-muted);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.location-info p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.location-info svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

/* Payment methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.payment-badge {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
  background: var(--color-surface-offset);
  padding: clamp(var(--space-10), 6vw, var(--space-16)) var(--space-4);
}
@media (min-width: 768px) {
  .contact-hero { padding-inline: var(--space-6); }
}
.contact-hero-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-3);
}
.contact-hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 48ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.contact-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  text-align: left;
}
.contact-card svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.contact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.contact-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* Map embed placeholder */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-surface-offset);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Directions section */
.directions-note {
  background: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  margin-top: var(--space-6);
}
.directions-note h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.directions-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========================================
   Products page hero
   ======================================== */
.page-hero {
  background: var(--color-surface-offset);
  padding: clamp(var(--space-10), 6vw, var(--space-16)) var(--space-4);
}
@media (min-width: 768px) {
  .page-hero { padding-inline: var(--space-6); }
}
.page-hero-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-3);
}
.page-hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--color-surface-offset);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
  padding: var(--space-10) var(--space-4) var(--space-6);
}
@media (min-width: 768px) {
  .site-footer { padding-inline: var(--space-6); }
}
.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: var(--space-3);
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.footer-col a:hover {
  color: var(--color-text);
}
.footer-bottom {
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
  padding-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-bottom a {
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--color-text-muted);
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
