/* =======================================================
   1. DESIGN SYSTEM & VARIABLES
======================================================= */
:root {
  /* --- Brand Colors: Premium Deep Purple --- */
  --clr-primary: #70259b;
  --clr-primary-dark: #4a0f6b;
  --clr-accent: #d4a5ff;

  /* --- Backgrounds --- */
  --clr-bg-body: #fdfcff;
  --clr-bg-surface: #f8f0ff;
  --clr-bg-card: #ffffff;
  --clr-bg-dark: #120e16;

  /* --- Text --- */
  --clr-text-main: #2d1b36;
  --clr-text-muted: #64566e;
  --clr-text-light: #ffffff;

  /* --- Typography --- */
  --ff-main: 'Assistant', sans-serif;
  --ff-heading: 'Rubik', sans-serif;

  /* --- Spacing System --- */
  --header-height: 80px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* --- Shadows & Effects --- */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(112, 37, 155, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =======================================================
   2. RESET & BASE
======================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  /* Base for rem */
}

body {
  font-family: var(--ff-main);
  background-color: var(--clr-bg-body);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

ul {
  list-style: none;
}

/* =======================================================
   3. TYPOGRAPHY
======================================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 800;
  display: block;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Animation Base (Modular) */
/* Fade + Slide Up by default */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade + Slide Down (for scrolling up) */
.reveal.slide-down {
  transform: translateY(-30px);
}

.reveal.slide-down.active {
  opacity: 1;
  transform: translateY(0);
}


/* =======================================================
   4. COMPONENTS
======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  gap: 10px;
  white-space: nowrap;
  text-transform: capitalize;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #9d4edd 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(112, 37, 155, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(112, 37, 155, 0.45);
  background: linear-gradient(135deg, #5e1e82 0%, #8a3ec3 100%);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--clr-bg-surface);
  color: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
}

/* Product Card Button Specifics */
.btn-add-cart {
  width: 100%;
  margin-top: auto;
  /* Push to bottom if flex */
  background: var(--clr-text-main);
  /* Dark stylish button */
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-add-cart:hover {
  background: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(112, 37, 155, 0.25);
}

/* =======================================================
   5. HEADER
======================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

.topbar.scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-logo img {
  height: 70px;
  object-fit: contain;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 4px;
}

/* =======================================================
   6. SECTIONS (General)
======================================================= */
.hero {
  min-height: 90vh;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: radial-gradient(circle at top right, #fbf4ff, #ffffff);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 40px;
  max-width: 650px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  margin-bottom: 24px;
  color: var(--clr-bg-dark);
}

.hero p {
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: nowrap;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.25;
  z-index: -1;
  filter: blur(50px);
}

.hero img {
  max-height: 85vh;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-buttons {
    flex-wrap: nowrap;
  }

  .hero img {
    max-height: 65vh;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

.about {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--clr-bg-surface) 0%, transparent 70%);
  z-index: -1;
  opacity: 0.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.about-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(112, 37, 155, 0.03);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(112, 37, 155, 0.1);
}

.about-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #fdfbfd, #f4e7ff);
  color: var(--clr-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  box-shadow: inset 0 0 20px rgba(112, 37, 155, 0.05);
  transition: transform 0.4s ease, background 0.4s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #f4e7ff, #ebcdff);
  color: var(--clr-primary-dark);
}

.about-card h3 {
  font-size: 1.5rem;
  color: var(--clr-text-main);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  max-width: 90%;
}

/* =======================================================
   7. TIMELINE (ADVANCED VERTICAL)
======================================================= */
.timeline-section {
  padding: 120px 0;
  background: #fdfbff;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  margin: 50px auto 0;
  max-width: 1000px;
  padding: 0 20px;
}

/* Central Line */
.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: #ede0f8;
  /* Unfilled light purple */
  border-radius: 3px;
  z-index: 0;
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--clr-primary);
  background: linear-gradient(to bottom, var(--clr-primary), #9d4edd);
  height: 0%;
  /* JS will update this on scroll */
  border-radius: 3px;
  transition: height 0.05s linear;
  /* Smooth immediate response */
}

/* Timeline Item Container */
.timeline-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px;
  /* Spacing */
  z-index: 5;
}

/* Left/Right Alternating Layout (Desktop) */
/* ODD: Content on Left, Empty on Right */
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: left;
  margin-right: auto;
}

/* EVEN: Content on Right, Empty on Left */
.timeline-item:nth-child(even) {
  flex-direction: row;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
  margin-left: auto;
}

/* The Circle */
.timeline-circle {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid var(--clr-primary);
  border-radius: 50%;
  z-index: 10;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 8px #fdfbff;
  /* White fake padding */
}

/* Active Circle (scrolled past) */
.timeline-item.active .timeline-circle {
  background: var(--clr-primary);
  box-shadow: 0 0 0 8px #fdfbff, 0 0 20px rgba(112, 37, 155, 0.5);
  transform: translateX(-50%) scale(1.4);
}

/* Content Box */
.timeline-content {
  width: 45%;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  /* Nice shadow */
  border: 1px solid rgba(112, 37, 155, 0.05);
  position: relative;
}

.timeline-content h3 {
  color: var(--clr-primary);
  font-size: 1.8rem;
  margin: 15px 0 10px;
  font-weight: 800;
}

.timeline-content p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--clr-bg-surface);
  color: var(--clr-primary-dark);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
}

/* Responsive (Mobile/Tablet) */
@media (max-width: 900px) {
  .timeline-line {
    left: 30px;
    transform: none;
  }

  .timeline-item {
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 80px;
    margin-bottom: 60px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    width: 100%;
    margin: 0;
  }

  .timeline-circle {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-item.active .timeline-circle {
    transform: translateX(-50%) scale(1.4);
  }

  /* Adjust reveal for mobile */
  .reveal {
    transform: translateY(20px);
  }

  .reveal.slide-down {
    transform: translateY(-20px);
  }
}

/* =======================================================
   9. ACCESSIBILITY WIDGET
======================================================= */
.a11y-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 3000;
}

#a11y-toggle {
  width: 55px;
  height: 55px;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

#a11y-toggle:hover {
  transform: scale(1.1);
}

.a11y-menu {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 250px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.a11y-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.a11y-menu h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  color: var(--clr-text-main);
  font-weight: 700;
}

.a11y-menu ul li {
  margin-bottom: 10px;
}

/* Font size controls */
.a11y-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f0ff;
  padding: 8px;
  border-radius: 10px;
}

.a11y-controls-row span {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0 5px;
  color: var(--clr-text-main);
}

.a11y-controls-row button {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: var(--clr-primary);
  font-size: 1rem;
}

.a11y-controls-row button:active {
  transform: scale(0.95);
  background: var(--clr-bg-surface);
}

.a11y-menu>ul>li>button {
  width: 100%;
  text-align: right;
  padding: 12px;
  border-radius: 10px;
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  color: var(--clr-text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
}

.a11y-menu>ul>li>button i {
  width: 24px;
  text-align: center;
  color: var(--clr-text-muted);
}

.a11y-menu>ul>li>button:hover {
  background: #f8f0ff;
  border-color: var(--clr-accent);
}

.a11y-menu>ul>li>button.active {
  background: var(--clr-primary);
  color: white;
  border-color: var(--clr-primary);
}

.a11y-menu>ul>li>button.active i {
  color: white;
}

/* A11y Modes */
/* We will use data attributes on html tag for text scale */
html[data-text-size="1"] {
  font-size: 100%;
}

html[data-text-size="2"] {
  font-size: 110%;
}

html[data-text-size="3"] {
  font-size: 125%;
}

html[data-text-size="4"] {
  font-size: 140%;
}

html[data-text-size="5"] {
  font-size: 160%;
}

body.a11y-contrast {
  filter: contrast(140%) brightness(1.05);
  background: #fff;
  color: #000;
  --clr-primary: #400060;
  /* Darker for contrast */
  --clr-primary-dark: #200030;
  --clr-accent: #8000c0;
  --clr-bg-surface: #f0f0f0;
  --clr-text-muted: #111;
  --clr-bg-dark: #000;
}

body.a11y-contrast .timeline-content,
body.a11y-contrast .about-card,
body.a11y-contrast .product-card {
  border: 2px solid #000;
  box-shadow: none;
}

/* No Anim */
body.a11y-no-anim *,
body.a11y-no-anim *::before,
body.a11y-no-anim *::after {
  transition: none !important;
  animation: none !important;
  scroll-behavior: auto !important;
}

/* Other sections */
.products-wrapper {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #fff, #f9f5ff);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
  margin: 50px auto 0;
  max-width: var(--container-max);
}

.product-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 280px;
  width: 100%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--clr-text-main);
}

.product-price {
  font-size: 1.2rem;
  color: var(--clr-primary);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.reviews-section {
  background: #1a0026;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--clr-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Contact */
.contact-section {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-form label {
  font-weight: 600;
  color: var(--clr-text-main);
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  background: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(112, 37, 155, 0.1);
}

/* Footer */
.site-footer {
  background: #111;
  color: #aaa;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  max-width: 400px;
  background: #fff;
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--clr-bg-surface);
  padding: 10px;
  border-radius: 12px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-footer {
  padding: 25px;
  border-top: 1px solid #efefef;
  background: #fcfcfc;
}

.cart-trigger {
  position: relative;
  background: none;
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin-right: 15px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--clr-primary-dark);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.checkout-btn {
  color: #ffffff;
  font-size: 1.3rem;
  background-color: #9000d8;
  padding: 14px 18px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    height: auto;
  }

  .hero-content {
    order: 2;
    margin: 0 auto;
    padding: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    height: 400px;
    order: 1;
  }
}