:root {
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --text: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --brand: #f97316;
  --brand-dark: #c2410c;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.section-block {
  padding: 100px 0;
}

.section-kicker {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.btn,
.navbar-brand {
  color: var(--dark);
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.btn-brand {
  background: var(--brand);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  border: none;
}

.btn-brand:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-brand {
  border: 1px solid var(--dark);
  color: var(--dark);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
}

.btn-outline-brand:hover {
  background: var(--dark);
  color: var(--white);
}

/* Navbar */

.main-navbar {
  padding: 14px 0;
  background: transparent;
  transition: 0.3s ease;
}

.nav-container {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: 0.3s ease;
}

.main-navbar.scrolled {
  padding: 8px 0;
}

.main-navbar.scrolled .nav-container {
  padding: 7px 12px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
}

.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 24px;
}

.navbar-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  padding: 0.05rem;
}

.main-navbar.scrolled .navbar-logo {
  height: 38px;
}

.nav-menu {
  gap: 8px;
}

.main-navbar .nav-link {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 13px !important;
  border-radius: 999px;
  transition: 0.25s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--brand);
}

/* WhatsApp Button */

.whatsapp-btn {
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;

  display: flex;
  align-items: center;
  gap: 8px;

  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
}

.whatsapp-btn i {
  font-size: 1rem;
}

/* Mobile Toggle */

.custom-toggler {
  width: 42px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--dark);

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.toggle-line {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: 0.3s ease;
}

.custom-toggler.active .toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.custom-toggler.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Mobile */

@media (max-width: 991px) {
  .nav-container {
    border-radius: 26px;
  }

  .custom-toggler {
    display: flex;
  }

  .navbar-collapse {
    margin-top: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  }

  .nav-menu {
    gap: 6px;
  }

  .main-navbar .nav-link {
    text-align: center;
  }

  .whatsapp-btn {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .nav-container {
    width: calc(100% - 24px);
  }
}

/* Hero Section */

.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(15, 23, 42, 0.72) 45%,
      rgba(15, 23, 42, 0.28) 100%
    ),
    url("../assets/images/hero2-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-kicker {
  color: #fb923c;
}

.hero-section h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 22px;
}

.hero-section p {
  color: #dbe4ef;
  max-width: 620px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn-hero-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-section {
    background:
      linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.88)),
      url("../assets/images/hero2-bg.png");
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}
/* =========================
   Product Range Slider
========================= */

.products-section {
  background: #ffffff;
  overflow: hidden;
}

.product-slider-wrap {
  position: relative;
  overflow: hidden;
}

.product-slider-wrap::before,
.product-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.product-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.product-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.product-slider {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 95px 0 35px;
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-width: none;
  user-select: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider:active {
  cursor: grabbing;
}

.product-track {
  display: flex;
  gap: 28px;
  padding: 0 80px;
}

.floating-product-card {
  position: relative;
  flex: 0 0 310px;
  padding-top: 105px;
}

.product-img-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: 245px;
  height: 180px;
  transform: translateX(-50%);
  z-index: 3;
  transition: 0.35s ease;
  pointer-events: none;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(15, 23, 42, 0.25));
  transition: 0.35s ease;
}

.product-content {
  position: relative;
  min-height: 255px;
  padding: 115px 26px 28px;
  border-radius: 32px;
  text-align: center;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.95) 45%,
    rgba(241, 245, 249, 1) 100%
  );

  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.product-content::before {
  content: "";
  position: absolute;
  top: -85px;
  left: 50%;
  width: 230px;
  height: 170px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.16),
    rgba(249, 115, 22, 0.05) 45%,
    transparent 70%
  );
  z-index: 0;
}

.product-content h4,
.product-content p {
  position: relative;
  z-index: 2;
}

.product-content h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.product-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.floating-product-card:hover .product-img-wrap {
  transform: translateX(-50%) translateY(-12px) scale(1.08);
}

.floating-product-card:hover .product-content {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 115, 22, 0.28);
}

@media (min-width: 1400px) {
  .floating-product-card {
    flex-basis: 350px;
    padding-top: 120px;
  }

  .product-img-wrap {
    width: 280px;
    height: 205px;
  }

  .product-content {
    min-height: 280px;
    padding-top: 135px;
  }
}

@media (max-width: 768px) {
  .product-slider {
    padding-top: 72px;
  }

  .product-track {
    gap: 20px;
    padding: 0 24px;
  }

  .floating-product-card {
    flex: 0 0 250px;
    padding-top: 82px;
  }

  .product-img-wrap {
    width: 185px;
    height: 135px;
  }

  .product-content {
    min-height: 230px;
    padding: 92px 20px 24px;
    border-radius: 26px;
  }

  .product-content h4 {
    font-size: 1rem;
  }

  .product-content p {
    font-size: 0.84rem;
  }

  .product-slider-wrap::before,
  .product-slider-wrap::after {
    width: 50px;
  }
}

/* =========================
   About Section
========================= */

.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.about-image-box {
  position: relative;
  min-height: 480px;
  border-radius: 34px;
  overflow: visible;
}

.about-image-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
}

.about-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04),
    rgba(15, 23, 42, 0.35)
  );
  pointer-events: none;
}

.floating-stat {
  position: absolute;
  z-index: 4;
  min-width: 170px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.floating-stat h3 {
  color: var(--brand);
  font-size: 2.1rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.floating-stat p {
  margin: 7px 0 0;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.stat-1 {
  left: -22px;
  bottom: 55px;
}

.stat-2 {
  right: -22px;
  top: 65px;
}

.about-section h2 {
  margin-bottom: 20px;
}

.about-section > .container p {
  font-size: 1rem;
}

.about-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 700;
}

.about-point i {
  color: var(--brand);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .about-image-box {
    min-height: 420px;
  }

  .about-image-box img {
    height: 420px;
  }

  .stat-1 {
    left: 20px;
    bottom: 25px;
  }

  .stat-2 {
    right: 20px;
    top: 25px;
  }
}

@media (max-width: 576px) {
  .about-image-box {
    min-height: 380px;
  }

  .about-image-box img {
    height: 380px;
  }

  .floating-stat {
    min-width: 140px;
    padding: 14px 16px;
  }

  .floating-stat h3 {
    font-size: 1.6rem;
  }

  .floating-stat p {
    font-size: 0.72rem;
  }

  .stat-1 {
    left: 12px;
    bottom: 18px;
  }

  .stat-2 {
    right: 12px;
    top: 18px;
  }
}

/* =========================
   Why Choose Us
========================= */

.why-section {
  background:
    linear-gradient(rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.94)),
    url("../assets/images/why-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.why-section h2,
.why-section h4 {
  color: var(--white);
}

.why-section p {
  color: #cbd5e1;
}

.why-section .section-kicker {
  color: #fb923c;
}

.why-btn {
  margin-top: 18px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-list-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: 0.3s ease;
}

.why-list-item:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(255, 255, 255, 0.085);
}

.why-list-item i {
  color: var(--brand);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-list-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-list-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.why-stats {
  margin-top: 70px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-stat {
  text-align: center;
}

.why-stat h3 {
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 6px;
}

.why-stat p {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .why-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .why-section {
    text-align: center;
  }

  .why-list-item {
    flex-direction: column;
    align-items: center;
  }

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

/* =========================
   Contact CTA
========================= */

.contact-section {
  background: #ffffff;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  border-radius: 36px;
  padding: 70px 60px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.contact-pattern {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(rgba(249, 115, 22, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-content p {
  color: #cbd5e1;
  max-width: 560px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.contact-whatsapp,
.contact-call {
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.contact-whatsapp:hover {
  background: #1da851;
  color: #ffffff;
}

.contact-call {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.contact-call:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-mini-info {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-mini-info div {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-mini-info i {
  color: var(--brand);
}

.contact-map {
  position: relative;
  z-index: 2;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

@media (max-width: 991px) {
  .contact-cta {
    padding: 60px 34px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-buttons,
  .contact-mini-info {
    justify-content: center;
  }

  .contact-map {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .contact-cta {
    padding: 48px 22px;
    border-radius: 28px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-whatsapp,
  .contact-call {
    justify-content: center;
    width: 100%;
  }

  .contact-map {
    height: 280px;
    border-radius: 22px;
  }
}

/* =========================
   Footer
========================= */

.footer-section {
  background: #0f172a;
  padding: 80px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 46px;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  color: #cbd5e1;
  max-width: 360px;
  font-size: 0.92rem;
}

.footer-section h5 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: var(--brand);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: var(--brand);
  transform: translateY(-4px);
}

.footer-contact p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.footer-contact i {
  color: var(--brand);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.82rem;
  margin: 0;
}

.footer-credit {
  color: var(--brand);
  font-size: 0.82rem;
  transition: 0.25s ease;
}

a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-section {
    text-align: center;
  }

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

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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

  .hero-section {
    text-align: center;
  }

  .hero-actions,
  .contact-actions {
    justify-content: center;
  }
}

/* =========================
   Gallery Section
========================= */

.gallery-section {
  background: #f8fafc;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.gallery-filter {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 0.86rem;
  transition: 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 22px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.45s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.hide {
  display: none;
}

@media (max-width: 576px) {
  .gallery-grid {
    columns: 1;
  }

  .gallery-filter {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
}

/* Gallery Lightbox */
.gallery-item {
  cursor: pointer;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 100000;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--brand);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================
   Page Loader
========================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  height: 58px;
  width: auto;
  margin-bottom: 24px;
  animation: logoPulse 1.6s ease-in-out infinite;
}

.loader-line {
  width: 180px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 18px;
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  animation: loaderMove 1.2s ease-in-out infinite;
}

.loader-content p {
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

@keyframes loaderMove {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(230%);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
