/* ==========================================================================
   BURGER CRAFT - FAST FOOD LANDING PAGE (CSS SPECIFICITY & DRAWER VISIBILITY FIX)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Tajawal:wght@400;600;700;800;900&display=swap');

:root {
  --red-primary: #c8102e;
  --red-dark: #a60f2b;
  --red-deep: #8b0000;
  --red-light: #e63946;

  --yellow-mustard: #ffc72c;
  --yellow-dark: #f5b400;
  --yellow-hover: #e5a800;

  --bg-cream: #fffdf7;
  --bg-cream-dark: #f6f2e7;
  --bg-card: #ffffff;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --text-light: #ffffff;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-yellow: rgba(255, 199, 44, 0.4);

  /* Fonts */
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Outfit', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(200, 16, 46, 0.08);
  --shadow-hover: 0 15px 35px rgba(200, 16, 46, 0.16);

  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-cream);
  color: var(--text-main);
  font-family: var(--font-ar);
  line-height: 1.6;
}

body[dir="ltr"] {
  font-family: var(--font-en);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   NAVIGATION BAR (MUSTARD YELLOW BACKGROUND & FLEX LAYOUT)
   ========================================================================== */
.navbar {
  background-color: var(--yellow-mustard);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-badge-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--red-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--red-deep);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a1a;
  transition: var(--transition);
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--red-primary);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.icon-btn:hover {
  background: var(--bg-card);
  color: var(--red-primary);
  transform: translateY(-2px);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-red-cta {
  background-color: var(--red-primary);
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  min-height: 44px;
}

.btn-red-cta:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
}

.lang-toggle-btn {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.08);
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a1a;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

/* BULLETPROOF MOBILE HAMBURGER BUTTON STYLES */
.mobile-nav-toggle {
  display: none !important;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--red-primary);
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1050;
  flex-shrink: 0;
}

/* ==========================================================================
   MOBILE SIDE DRAWER MENU & BACKDROP OVERLAY (HIGH SPECIFICITY FIX)
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9998 !important;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--yellow-mustard);
  z-index: 9999 !important;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

body[dir="rtl"] .mobile-side-drawer,
html[dir="rtl"] .mobile-side-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.3);
}

/* HIGH SPECIFICITY ACTIVE STATE RULES */
.mobile-side-drawer.active,
body .mobile-side-drawer.active,
html[dir="rtl"] .mobile-side-drawer.active,
body[dir="rtl"] .mobile-side-drawer.active {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.drawer-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--red-deep);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  color: var(--red-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  display: block;
}

.drawer-actions-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.drawer-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background-color: var(--red-primary);
  color: var(--text-light);
  padding: 3.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-curve-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
  fill: var(--bg-cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  word-break: break-word;
}
body[dir="rtl"] .hero-content {
  align-items: flex-start;
  text-align: right;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #ffffff;
  letter-spacing: -1px;
  word-wrap: break-word;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-yellow-hero {
  background-color: var(--yellow-mustard);
  color: var(--red-deep);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
}

.btn-yellow-hero:hover {
  background-color: #ffffff;
  color: var(--red-primary);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-burger-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  animation: floatBurger 4s ease-in-out infinite alternate;
}

@keyframes floatBurger {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   CATEGORY TABS SECTION
   ========================================================================== */
.categories-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 3.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  padding: 2rem 1.25rem 2.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.category-card.card-red {
  background-color: var(--red-primary);
  color: #ffffff;
}

.category-card.card-yellow {
  background-color: var(--yellow-mustard);
  color: var(--red-deep);
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-img-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-name {
  font-size: 1.3rem;
  font-weight: 800;
}

.category-arrow-down {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid var(--red-primary);
  transition: var(--transition);
}

.category-card.card-yellow .category-arrow-down {
  border-top-color: var(--yellow-mustard);
}

/* ==========================================================================
   PRODUCT GRID SECTION
   ========================================================================== */
.products-section {
  padding: 3rem 0 5rem;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--red-primary);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-main);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-yellow);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--red-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

body[dir="rtl"] .product-tag {
  left: auto;
  right: 12px;
}

.product-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bg-cream-dark);
}

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

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red-primary);
  font-family: var(--font-en);
}

.btn-add-cart-small {
  background-color: var(--yellow-mustard);
  color: var(--red-deep);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
}

.btn-add-cart-small:hover {
  background-color: var(--red-primary);
  color: #ffffff;
}

/* ==========================================================================
   BOTTOM DIVERSE SECTION
   ========================================================================== */
.bottom-section {
  padding: 3rem 0 5rem;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.delivery-card {
  background-color: var(--bg-cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.delivery-content {
  flex: 1;
}

.delivery-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-deep);
  margin-bottom: 1.25rem;
}

.delivery-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.delivery-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow-mustard);
  color: var(--red-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-img-box {
  width: 180px;
  flex-shrink: 0;
}

.delivery-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.offer-card {
  background-color: var(--red-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.offer-badge {
  background-color: var(--yellow-mustard);
  color: var(--red-deep);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.offer-img-box {
  width: 160px;
  height: 160px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--yellow-mustard);
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.offer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.btn-yellow-offer {
  background-color: var(--yellow-mustard);
  color: var(--red-deep);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  width: 100%;
  min-height: 48px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #121212;
  color: #aaaaaa;
  padding: 3.5rem 0 2rem;
  border-top: 4px solid var(--yellow-mustard);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: var(--yellow-mustard);
}

.social-icons-row {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon-btn:hover {
  background: var(--yellow-mustard);
  color: var(--red-deep);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   CART DRAWER STYLES
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  z-index: 10000 !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}

body[dir="rtl"] .cart-drawer,
html[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

.cart-drawer.active,
body[dir="rtl"] .cart-drawer.active {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.cart-header {
  background: var(--yellow-mustard);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-body {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  background: #f8f8f8;
  border-top: 1px solid #eeeeee;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}

.cart-item-img {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-title {
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--red-primary);
  font-weight: 800;
}

/* ==========================================================================
   STRICT MOBILE RESPONSIVE BREAKPOINTS (ONLY LOGO & HAMBURGER ON TOP BAR)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content {
    align-items: center !important;
    text-align: center !important;
  }
  body[dir="rtl"] .hero-content {
    align-items: center !important;
    text-align: center !important;
  }
  .hero-headline {
    font-size: 3rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* HIDE desktop nav links & desktop icon controls from top yellow bar */
  .desktop-nav,
  .desktop-controls {
    display: none !important;
  }

  /* Explicitly display Mobile Hamburger Button on Mobile Top Bar */
  .mobile-nav-toggle {
    display: flex !important;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-section {
    padding: 2.5rem 0 4.5rem;
  }

  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr; /* Single Column for Mobile */
    max-width: 380px;
    margin: 0 auto;
  }

  .delivery-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.25rem;
  }

  .delivery-img-box {
    width: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 1.1rem;
  }
  .hero-headline {
    font-size: 1.8rem;
  }
  .btn-yellow-hero {
    width: 100%;
    justify-content: center;
  }
}
