/* ============================================================
   Pizza Glory — Main Stylesheet
   Palette: #C0392B (deep red), #F0A500 (warm gold),
            #E8C9A8 (cream), #1a1008 (deep charcoal),
            #2d1a0a (dark warm), #f5ede0 (light cream bg)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --red:       #C0392B;
  --red-dark:  #962d22;
  --gold:      #F0A500;
  --gold-dark: #c8870a;
  --cream:     #E8C9A8;
  --cream-light: #f5ede0;
  --charcoal:  #1a1008;
  --dark-warm: #2d1a0a;
  --brown:     #3d2610;
  --text:      #3d2610;
  --text-muted: #7a5c3e;
  --white:     #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(26, 16, 8, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 16, 8, 0.22);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: rgba(232, 201, 168, 0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-ghost:hover {
  background: var(--red);
  color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--dark-warm);
  box-shadow: 0 6px 24px rgba(26, 16, 8, 0.3);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.85rem;
  border-color: var(--red);
}

.btn-nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 16, 8, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.logo-text strong {
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.main-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(26, 16, 8, 0.98);
  padding: 24px;
  border-top: 1px solid rgba(232, 201, 168, 0.1);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mobile-nav a {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 16, 8, 0.85) 0%,
    rgba(45, 26, 10, 0.70) 50%,
    rgba(26, 16, 8, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.slice-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  color: rgba(232, 201, 168, 0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--cream);
  opacity: 0.6;
  width: 36px;
  height: 36px;
  animation: bounce 2.2s ease infinite;
  transition: opacity var(--transition);
}

.scroll-down:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
  position: relative;
  background: var(--cream-light);
  text-align: center;
  height: 60px;
  overflow: visible;
}

.section-divider svg {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
}

.divider-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-light);
  border: 2px solid rgba(192, 57, 43, 0.2);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin-top: 12px;
  box-shadow: var(--shadow);
}

.divider-icon svg {
  position: static;
  width: 40px;
  height: 40px;
}

.section-divider-simple {
  text-align: center;
  padding: 32px 0;
}

.divider-line svg {
  width: 200px;
  height: 20px;
}

/* ---- WHY 8 SLICES ---- */
.why-section {
  background: var(--cream-light);
  padding: 80px 0 100px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.why-lead {
  font-size: 1.15rem;
  color: var(--text) !important;
  font-weight: 500;
  font-family: var(--font-heading);
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ---- GALLERY ---- */
.gallery-section {
  background: var(--charcoal);
  padding: 100px 0 120px;
}

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

.gallery-section .eyebrow {
  color: var(--gold);
}

.gallery-section .section-sub {
  color: rgba(232, 201, 168, 0.7);
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pizza-card {
  background: var(--dark-warm);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(240, 165, 0, 0.12);
}

.pizza-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pizza-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(240, 165, 0, 0.3);
}

.pizza-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.pizza-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pizza-card:hover .pizza-card-img img {
  transform: scale(1.06);
}

.pizza-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(26,16,8,0.75) 0%, transparent 55%);
  gap: 6px;
}

.slice-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.featured-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.pizza-card-body {
  padding: 20px 20px 24px;
}

.pizza-card-body h3 {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.pizza-card-body p {
  color: rgba(232, 201, 168, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pizza-card .btn-ghost {
  color: var(--gold);
  border-color: rgba(240, 165, 0, 0.4);
  font-size: 0.8rem;
  padding: 7px 16px;
}

.pizza-card .btn-ghost:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* 3rd card spans 1 col but is visually featured; layout 3 cols */
/* row 1: 3 cards, row 2: 2 cards centered */
.pizza-grid .pizza-card:nth-child(4) { grid-column: 1; }
.pizza-grid .pizza-card:nth-child(5) { grid-column: 2; }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  background: var(--cream-light);
  padding: 100px 0 80px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-deco {
  position: absolute;
  width: 320px;
  height: 480px;
}

.cta-deco--left {
  left: -80px;
  top: -40px;
}

.cta-deco--right {
  right: -80px;
  bottom: -40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(192, 57, 43, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cta-card--accent {
  background: var(--gold);
  border-color: transparent;
}

.cta-card--accent h3,
.cta-card--accent p {
  color: var(--charcoal);
}

.cta-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.cta-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-card--accent p {
  color: rgba(26, 16, 8, 0.72) !important;
}

.hours-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(192, 57, 43, 0.1);
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
}

.hours-sep {
  height: 40px;
  width: 20px;
  flex-shrink: 0;
}

.hours-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hours-time {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(232, 201, 168, 0.12);
}

.footer-brand .logo-text {
  color: var(--cream);
}

.footer-tagline {
  color: rgba(232, 201, 168, 0.6);
  font-size: 0.88rem;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 201, 168, 0.2);
  color: rgba(232, 201, 168, 0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240, 165, 0, 0.1);
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col address p {
  color: rgba(232, 201, 168, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col address a {
  color: rgba(232, 201, 168, 0.65);
  transition: color var(--transition);
}

.footer-col address a:hover {
  color: var(--gold);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(232, 201, 168, 0.65);
}

.hours-list li span:last-child {
  font-weight: 600;
  color: var(--cream);
}

.footer-newsletter p {
  color: rgba(232, 201, 168, 0.65);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 201, 168, 0.2);
  background: rgba(255,255,255,0.07);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(232, 201, 168, 0.35); }

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--gold);
  min-height: 1.2em;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(232, 201, 168, 0.4);
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.footer-bottom nav a {
  font-size: 0.82rem;
  color: rgba(232, 201, 168, 0.4);
  transition: color var(--transition);
}

.footer-bottom nav a:hover {
  color: var(--cream);
}

/* ---- Stagger delays for grid children ---- */
.pizza-grid .pizza-card:nth-child(1) { transition-delay: 0.05s; }
.pizza-grid .pizza-card:nth-child(2) { transition-delay: 0.12s; }
.pizza-grid .pizza-card:nth-child(3) { transition-delay: 0.19s; }
.pizza-grid .pizza-card:nth-child(4) { transition-delay: 0.26s; }
.pizza-grid .pizza-card:nth-child(5) { transition-delay: 0.33s; }

.why-stats .stat-card:nth-child(1) { transition-delay: 0.1s; }
.why-stats .stat-card:nth-child(2) { transition-delay: 0.18s; }
.why-stats .stat-card:nth-child(3) { transition-delay: 0.26s; }
.why-stats .stat-card:nth-child(4) { transition-delay: 0.34s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pizza-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pizza-grid .pizza-card:nth-child(4),
  .pizza-grid .pizza-card:nth-child(5) {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pizza-grid {
    grid-template-columns: 1fr;
  }

  .pizza-grid .pizza-card:nth-child(4),
  .pizza-grid .pizza-card:nth-child(5) {
    grid-column: auto;
  }

  .pizza-card-img {
    aspect-ratio: 4/3;
  }

  .cta-cards {
    grid-template-columns: 1fr;
  }

  .hours-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .hours-sep { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section-header {
    margin-bottom: 40px;
  }

  h2 { font-size: 1.6rem; }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }
}
