/* ═══════════════════════════════════════════════════
   MANGIARE ROSTICCERIA — Premium Bakery Theme
   ═══════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --color-black: #1a1a1a;
  --color-charcoal: #222222;
  --color-dark: #2a2218;
  --color-dark-warm: #31261a;
  --color-brown: #8b5e3c;
  --color-caramel: #c8956c;
  --color-gold: #d4a574;
  --color-beige: #e8d5b7;
  --color-cream: #f5f0eb;
  --color-offwhite: #faf7f2;
  --color-white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 45px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background: var(--color-offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-brown);
  color: var(--color-white);
  border: 2px solid var(--color-brown);
}

.btn-primary:hover {
  background: var(--color-caramel);
  border-color: var(--color-caramel);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 94, 60, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-beige);
  border: 2px solid var(--color-beige);
}

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

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-caramel);
  display: block;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
}

.navbar-menu {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-beige);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-caramel);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-beige);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  width: 100%;
}

.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-dark);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(42, 34, 24, 0.6) 50%,
    rgba(26, 26, 26, 0.8) 100%
  );
  z-index: 1;
}

/* Decorative wheat elements */
.hero-decor {
  position: absolute;
  color: rgba(200, 149, 108, 0.12);
  z-index: 1;
  pointer-events: none;
}

.hero-decor-1 {
  top: 15%;
  left: 8%;
  font-size: 3rem;
  transform: rotate(-30deg);
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 20%;
  right: 10%;
  font-size: 2.5rem;
  transform: rotate(20deg);
  animation: floatSlow 6s ease-in-out infinite 2s;
}

.hero-decor-3 {
  top: 60%;
  left: 5%;
  font-size: 2rem;
  transform: rotate(45deg);
  animation: floatSlow 6s ease-in-out infinite 4s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, -30deg)); }
  50% { transform: translateY(-12px) rotate(var(--rotate, -30deg)); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 60px 60px 120px;
  max-width: 620px;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-caramel);
  display: block;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-beige);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   TOP PRODUCTS
   ═══════════════════════════════════════════════════ */
.top-products {
  padding: 40px 0;
  background: var(--color-offwhite);
}

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

.top-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.top-card-img {
  height: 260px;
  background-color: var(--color-dark-warm);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.top-card-img::before {
  content: '\f7ec';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(200, 149, 108, 0.12);
}

.top-card:hover .top-card-img {
  background-size: 110%;
}

.top-card-info {
  padding: 24px;
}

.top-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.top-card-info p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════
   EXPLORE MORE
   ═══════════════════════════════════════════════════ */
.explore-section {
  padding: 40px 0;
  background: var(--color-white);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  position: relative;
  flex-wrap: wrap;
}

.tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #999;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  position: relative;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-caramel);
  transition: width var(--transition);
}

.tab:hover {
  color: var(--color-dark);
}

.tab.active {
  color: var(--color-dark);
  background: rgba(200, 149, 108, 0.1);
}

.tab.active::after {
  width: 60%;
}

/* Vegan tab */
.tab-vegan {
  color: #2e7d32;
}

.tab-vegan:hover {
  color: #1b5e20;
}

.tab-vegan.active {
  color: #1b5e20;
  background: rgba(46, 125, 50, 0.1);
}

.tab-vegan::after {
  background: #2e7d32;
}

.explore-overlay-vegan {
  background: linear-gradient(to top, rgba(27, 94, 32, 0.85) 0%, transparent 60%);
}

.explore-overlay-vegan h4 {
  color: #c8e6c9;
}

.explore-overlay-vegan h4 i {
  color: #81c784;
  margin-right: 4px;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 8px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.explore-item {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.explore-item.hidden {
  display: none;
}

.explore-img {
  height: 300px;
  background-color: var(--color-dark-warm);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-md);
}

.explore-img::before {
  content: '\f7ec';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: rgba(200, 149, 108, 0.12);
  z-index: 0;
}

.explore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.explore-img:hover .explore-overlay {
  opacity: 1;
}

.explore-img:hover {
  background-size: 115%;
}

.explore-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.carousel-arrow:hover {
  background: var(--color-caramel);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: -8px;
}

.carousel-next {
  right: -8px;
}


/* ═══════════════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════════════ */
.about-section {
  position: relative;
  padding: 50px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(42, 34, 24, 0.82) 100%
  );
}

.about-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-content .section-script {
  color: var(--color-caramel);
  font-size: 1.8rem;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.about-divider {
  width: 60px;
  height: 3px;
  background: var(--color-caramel);
  margin: 16px auto 28px;
  border-radius: 2px;
}

.about-content p {
  font-size: 1rem;
  color: var(--color-beige);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-content p:last-of-type {
  margin-bottom: 32px;
}


/* ═══════════════════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════════════════ */
.contact-section {
  padding: 40px 0;
  background: var(--color-offwhite);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200, 149, 108, 0.12);
  color: var(--color-caramel);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

.contact-card p a {
  color: #777;
  transition: color var(--transition);
}

.contact-card p a:hover {
  color: var(--color-caramel);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  display: block;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--color-black);
  padding: 40px 0 0;
  color: var(--color-beige);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-beige);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-caramel);
  border-color: var(--color-caramel);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-caramel);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--color-caramel);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #999;
  transition: all var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.7rem;
  color: var(--color-caramel);
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  color: var(--color-caramel);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-map {
  margin-top: 20px;
}

.footer-map iframe {
  filter: grayscale(0.3) brightness(0.85);
  transition: filter var(--transition);
}

.footer-map iframe:hover {
  filter: grayscale(0) brightness(1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: #666;
}

.footer-bottom .fa-heart {
  color: var(--color-caramel);
  font-size: 0.75rem;
}


/* ═══════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.whatsapp-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.back-to-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-caramel);
  transform: translateY(-3px);
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

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

  .top-grid .top-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .explore-item {
    flex: 0 0 calc(50% - 12px);
  }

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

  .contact-map {
    min-height: 280px;
  }

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

/* ── Mobile ── */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  }

  .navbar-menu.open {
    right: 0;
  }

  .navbar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero-content {
    padding: 80px 24px 40px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-script {
    font-size: 1.3rem;
  }

  .top-products,
  .explore-section,
  .contact-section {
    padding: 40px 0;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .top-grid .top-card:last-child {
    max-width: none;
  }

  .top-card-img {
    height: 220px;
  }

  .explore-item {
    flex: 0 0 80%;
  }

  .explore-img {
    height: 240px;
  }

  .explore-overlay {
    opacity: 1;
  }

  .carousel-prev {
    left: 4px;
  }

  .carousel-next {
    right: 4px;
  }

  .about-section {
    padding: 50px 0;
  }

  .about-bg {
    background-attachment: scroll;
  }

  .about-content h2 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .floating-btns {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
  }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
  .hero-content {
    padding: 80px 16px 30px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    text-align: center;
  }

  .category-tabs {
    gap: 4px;
  }

  .tab {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}
