/* =========================
   Variables & Base Styles
   ========================= */
:root {
  --color-primary: #0d1b2a;
  --color-gold: #cba135;
  --color-bg: #F8FAFC;
  --color-slate: #333333;
  --color-white: #ffffff;
  --color-card: #fff;
  --color-footer-bg: #101828;
  --color-footer-text: #e5e7eb;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,27,42,0.08);
}

html, body {
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-slate);
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  line-height: 1.6;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: var(--radius);
  background: var(--color-gold);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  transform: translateY(-2px) scale(1.04);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}


/* =========================
   Navbar
   ========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13,27,42,0.92);
  box-shadow: 0 2px 8px rgba(13,27,42,0.06);
  transition: background var(--transition);
}
.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  min-width: 120px;
}
.navbar__logo img {
  height: 90px;
  width: auto;
  display: block;
}
.navbar__nav ul {
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar__nav .nav-link {
  color: var(--color-white);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.5em 0;
  transition: color var(--transition);
}
.navbar__nav .nav-link.active,
.navbar__nav .nav-link:hover {
  color: var(--color-gold);
}
.navbar__nav .nav-link.active::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  margin: 0.2em auto 0 auto;
  transition: width var(--transition);
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--color-navy);
  border: 2px solid var(--color-gold);
  cursor: pointer;
  z-index: 1201;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.2s, border 0.2s;
  align-items: center;
  justify-content: center;
}
.navbar__toggle:focus, .navbar__toggle:hover {
  background: var(--color-gold);
  outline: 2px solid var(--color-gold);
}
.navbar__toggle span {
  width: 28px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* =========================
   Hero Section
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) grayscale(0.2);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(92, 94, 96, 0.9) 60%, rgba(164, 151, 116, 0.2) 100%); */
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
}
.hero__content > * {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero__title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--color-offwhite);
  text-align: center;

  /* Remove absolute positioning unless necessary */
  /* position: absolute;  ←❌ REMOVE this */

  /* Better spacing */
  margin-bottom: 1.5rem;
  margin-top: -90px;        /* Move slightly up */
  padding: 0 1rem;          /* Safe padding on sides */

  /* Optional: shift slightly left/right */
  /* transform: translateX(-10px);  ← For left shift */
  /* transform: translateX(20px);   ← For right shift */
}

.hero__title .highlight {
  display: block;
  color: var(--color-gold);
  animation-delay: 0.2s;
}
.hero__subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation-delay: 0.4s;
}
.hero__cta {
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(203,161,53,0.15);
  animation-delay: 0.6s;
}

/* =========================
   Stats/Counter Section
   ========================= */
.stats {
  background: var(--color-white);
  padding: 4rem 0 3rem 0;
}
.stats__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.stat {
  flex: 1 1 180px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 0rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(13,27,42,0.12);
}
.stat__icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.stat__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.stat__label {
  font-size: 1.1rem;
  color: var(--color-slate);
}

/* =========================
   About Us Section
   ========================= */
.about {
  background: var(--color-bg);
  padding: 4rem 0 3rem 0;
}
.about__container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about__carousel {
  flex: 1 1 320px;
  max-width: 400px;
  position: relative;
}
/* Desktop (default) */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 260px;
  width: 100%;
}
.carousel__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--transition);
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel__item.active {
  opacity: 1;
  z-index: 2;
}
.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.carousel__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.carousel__btn {
  background: var(--color-gold);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.carousel__btn:hover {
  background: var(--color-primary);
  color: var(--color-gold);
  transform: scale(1.1);
}
.about__content {
  flex: 2 1 400px;
}
.about__content h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.about__content p {
  margin-bottom: 2rem;
}
.timeline {
  margin-top: 1.5rem;
}
.timeline h3 {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--color-gold);
}
.timeline__item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.timeline__item.visible {
  opacity: 1;
  transform: none;
}
.timeline__year {
  font-weight: 700;
  color: var(--color-black);
  margin-right: 0.5em;
}
.timeline__desc {
  color: var(--color-slate);
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(203,161,53,0.15);
}

/* =========================
   Services Section
   ========================= */
.services {
  background: var(--color-white);
  padding: 4rem 0 3rem 0;
}
.services__grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.service-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(13,27,42,0.12);
}
.service-card__icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.service-card h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--color-slate);
  font-size: 1rem;
}

/* =========================
   Scrap We Buy Section
   ========================= */
.scrap {
  background: #F8F9FA;
  padding: 4rem 0 3rem 0;
}
.scrap-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: none;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.scrap-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1E2A38;
  margin-bottom: 0.7rem;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: -0.5px;
}
.scrap__list {
  list-style: decimal inside;
  padding: 0 0 0 1.2rem;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.13rem;
  line-height: 2.1;
  color: #1E2A38;
  background: none;
  border: none;
  max-width: 500px;
  text-align: left;
}
.scrap-reassure {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.scrap-cta {
  display: inline-block;
  background: #D4AF37;
  color: #1E2A38;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin: 0 auto 2.2rem auto;
  box-shadow: 0 2px 12px rgba(212,175,55,0.10);
  transition: background 0.18s, color 0.18s, border 0.18s;
  text-align: center;
}
.scrap-cta:hover, .scrap-cta:focus {
  background: #bfa12e;
  color: #fff;
  border: 2px solid #D4AF37;
}
.scrap__filters {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.scrap__filter-btn {
  background: #ECECEC;
  color: #1E2A38;
  border: none;
  border-radius: 20px;
  padding: 0.5em 1.4em;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(30,42,56,0.04);
  outline: none;
}
.scrap__filter-btn.active {
  background: #D4AF37;
  color: #1E2A38;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
}
.scrap__filter-btn:hover:not(.active) {
  background: #e0e0e0;
  color: #1E2A38;
}
.scrap-item {
  background: none;
  border: none;
  color: #1E2A38;
  font-family: 'Poppins', sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  text-align: left;
  padding: 0.18rem 0;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s, max-height 0.3s;
  max-height: 100px;
  will-change: opacity, max-height;
}
.scrap-item.hide {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 700px) {
  .scrap-container {
    max-width: 98vw;
    padding: 1.2rem 0.5rem;
  }
  .scrap__list {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1rem;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  .scrap-container {
    padding: 1rem 0.2rem;
  }
  .scrap-heading {
    font-size: 1.45rem;
  }
  .scrap-reassure {
    font-size: 0.97rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .scrap-cta {
    font-size: 0.97rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
  }
  .scrap__filters {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }
  .scrap__filter-btn {
    font-size: 0.97rem;
    padding: 0.4em 1em;
  }
  .scrap__list {
    font-size: 0.97rem;
    line-height: 1.5;
    padding-left: 0.7rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

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

/* =========================
   Contact Section
   ========================= */
.contact {
  background: var(--color-white);
  padding: 4rem 0 3rem 0;
}
.contact__container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
}
.contact__form-wrap {
  flex: 1 1 340px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}
.contact__form h2 {
  margin-bottom: 1.5rem;
}
.contact__form .form-group {
  margin-bottom: 1.2rem;
}
.contact__form label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-weight: 500;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.7em 1em;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-white);
  color: var(--color-slate);
  transition: border var(--transition), box-shadow var(--transition);
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(203,161,53,0.15);
}
.contact__submit { 
  margin-top: 0.5rem;
  width: 100%;
}
.contact__info-wrap {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__info h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.contact__info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.contact__info li {
  margin-bottom: 0.7rem;
  color: var(--color-slate);
}
.contact__info a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}
.contact__info a:hover {
  color: var(--color-primary);
}
.contact__map iframe {
  border-radius: var(--radius);
  border: none;
  width: 100%;
  height: 180px;
}

/* =========================
   Footer
   ========================= */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 1.2rem 0 0.5rem 0;
  position: relative;
}
.footer__container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__col {
  flex: 1 1 160px;
  margin-bottom: 1rem;
}
.footer__col h4 {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
}
.footer__col a {
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.97rem;
}
.footer__col a:hover {
  color: var(--color-gold);
}
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
  border: none;
  transition: none;
}
.footer__social a:hover {
  background: transparent;
  transform: none;
}
.footer__social img,
.footer__social svg {
  width: 24px;
  height: 24px;
  display: block;
}
.footer__bottom {
  text-align: center;
  color: #b0b3b8;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 900px) {
  .container {
    width: 98%;
    padding: 0 1rem;
  }
  .navbar__container, .stats__container, .about__container, .services__grid, .footer__container, .contact__container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .about__carousel, .about__content, .contact__form-wrap, .contact__info-wrap {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html, body {
    padding: 0;
    margin: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .navbar__container {
    flex-direction: row;
    padding: 0 1rem;
    height: 60px;
    min-width: 0;
  }
  .navbar__logo {
    min-width: 100px;
  }
  .navbar__nav ul {
    position: fixed;
    top: 60px;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    width: 220px;
    height: calc(100vh - 60px);
    gap: 1.5em;
    padding: 2em 1em;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -2px 0 12px rgba(13,27,42,0.12);
    z-index: 1200;
    align-items: flex-start;
  }
  .navbar__nav ul.open {
    transform: translateX(0);
  }
  .navbar__toggle {
    display: flex;
    margin-left: 0.5rem;
  }
  .navbar__nav {
    position: relative;
  }
  section, .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    max-width: 100%;
  }
  .hero__content {
    text-align: center;
    padding: 0 0.5rem;
  }
  .hero__title {
    font-size: 2.4rem;
    line-height: 1.15;
  }
  .hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .hero__cta {
    font-size: 1rem;
    min-height: 44px;
    width: 100%;
    max-width: 320px;
    margin: 0.5rem auto;
    display: block;
  }
  .stats__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .stat {
    min-width: unset;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .stat__icon img {
    width: 32px;
    height: 32px;
  }
  .stat__number {
    font-size: 1.4rem;
  }
  .stat__label {
    font-size: 1rem;
  }
  .about__container, .services__grid, .footer__container, .contact__container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 100%;
  }
  .service-card {
    max-width: 100%;
    margin: 0 auto;
  }
  .contact__form-wrap, .contact__info-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .footer__col {
    margin-bottom: 1rem;
  }
  img, .carousel__item img, .scrap-item__icon img, .footer__social img {
    max-width: 100%;
    height: auto;
  }
  .carousel {
    height: 180px;
  }
}

/* Mobile: Square carousel */
@media (max-width: 480px) {
  .about__carousel,
  .carousel,
  .carousel__item,
  .carousel__item img {
    width: 100vw;
    height: 100vw;
    max-width: 340px;
    max-height: 340px;
    min-width: 100px;
    min-height: 100px;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    display: block;
  }
  .carousel__item {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: 0;
    padding: 0;
  }
  .about__carousel {
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .scrap-container {
    padding: 1rem 0.2rem;
  }
  .scrap__filters {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }
  .scrap__filter-btn {
    font-size: 0.97rem;
    padding: 0.4em 1em;
  }
  .scrap__list {
    font-size: 0.97rem;
    line-height: 1.5;
    padding-left: 0.7rem;
  }
}

@media (max-width: 600px) {
  .scrap__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.5rem;
  }
  .footer {
    padding: 0.5rem 0 0.2rem 0;
  }
  .footer__container {
    flex-direction: column;
    gap: 0.4rem;
    align-items: stretch;
    padding: 0 0.2rem;
  }
  .footer__col {
    margin-bottom: 0.3rem;
  }
  .footer__col h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  .footer__col li,
  .footer__col a {
    font-size: 0.92rem;
  }
  .footer__social {
    gap: 0.6rem;
    margin-top: 0.3rem;
  }
  .footer__social a {
    width: 24px;
    height: 24px;
  }
  .footer__social img,
  .footer__social svg {
    width: 24px;
    height: 24px;
  }
  .footer__bottom {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
} 