/* ═══════════════════════════════════════════════
   NATURALLY PAM – Complete Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --color-text:         #5e4b3c;
  --color-text-light:   #8a7567;
  --color-primary:      #8c6e5f;
  --color-primary-dark:  #7a5e50;
  --color-accent:       #f3ff34;
  --color-warm-bg:      #fcf2ea;
  --color-footer-bg:    #ad8a78;
  --color-white:        #ffffff;
  --color-border:       #e8ddd6;
  --color-star:         #f3c623;
  --color-badge-red:    #d94f4f;

  --font-body:     'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:  'Caveat', cursive;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.5rem;
  --fs-3xl:  3rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 50%;

  --shadow-card:  0 2px 12px rgba(94,75,60,0.08);
  --shadow-hover: 0 6px 24px rgba(94,75,60,0.15);

  --header-height:       70px;
  --announcement-height: 40px;
  --max-width:           1200px;

  --transition:          0.3s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.section-heading {
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 16px;
}

.section-heading--handwritten {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--small {
  padding: 10px 24px;
  font-size: var(--fs-xs);
}

/* ─── Link Animations ─── */
.link--animated {
  position: relative;
}

.link--animated::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.link--animated:hover::after {
  width: 100%;
}


/* ═══════════════════════════════════════════════
   1. ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════ */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.announcement-bar__slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__slide {
  position: absolute;
  opacity: 0;
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.6s ease;
  white-space: nowrap;
}

.announcement-bar__slide.is-active {
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   2. HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: height var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__logo-link {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 36px;
  width: auto;
}

.header__logo-img--secondary {
  height: 24px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.header__logo-img--secondary:hover {
  opacity: 1;
}

.header__logo-text {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-light);
  border-left: 1px solid var(--color-border);
  padding-left: 16px;
  transition: color var(--transition);
}

.header__logo-text:hover {
  color: var(--color-text);
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  gap: 28px;
}

.header__nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 0;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__lang-btn {
  font-size: var(--fs-xs);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.header__lang-btn:hover {
  background: var(--color-warm-bg);
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  transition: background var(--transition);
  color: var(--color-text);
}

.header__icon:hover {
  background: var(--color-warm-bg);
}

.header__icon--cart {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


/* ═══════════════════════════════════════════════
   3. STORY ICONS
   ═══════════════════════════════════════════════ */
.story-icons {
  padding: 24px 0;
  overflow: hidden;
}

.story-icons__track {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.story-icons__track::-webkit-scrollbar {
  display: none;
}

.story-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  scroll-snap-align: center;
  text-decoration: none;
}

.story-link__circle {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--color-border);
  padding: 3px;
  transition: border-color var(--transition), transform var(--transition);
  background: var(--color-white);
}

.story-link:hover .story-link__circle {
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.story-link__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.story-link__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-align: center;
  color: var(--color-text);
  max-width: 80px;
  line-height: 1.3;
}


/* ═══════════════════════════════════════════════
   4. HERO SLIDESHOW
   ═══════════════════════════════════════════════ */
.hero-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-warm-bg);
}

.hero-slideshow__slides {
  position: relative;
  width: 100%;
}

.hero-slideshow__slide {
  display: none;
  width: 100%;
}

.hero-slideshow__slide.is-active {
  display: block;
}

.hero-slideshow__img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 240px;
  object-fit: cover;
}

.hero-slideshow__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-slideshow__dot.is-active {
  background: var(--color-white);
  transform: scale(1.3);
}


/* ═══════════════════════════════════════════════
   5. SUPPORT SECTION
   ═══════════════════════════════════════════════ */
.support-section {
  padding: 48px 0;
  text-align: center;
}

.support-section__title {
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--color-text);
}

.support-section__checks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.support-section__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   6. PRODUCTS SECTION
   ═══════════════════════════════════════════════ */
.products-section {
  padding: 48px 0 64px;
}

.products-section__subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  max-width: 540px;
  margin: 0 auto 32px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.product-tabs__btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.product-tabs__btn.is-active,
.product-tabs__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.product-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid.is-active {
  display: grid;
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--color-badge-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__image-wrap {
  position: relative;
  background: #f8f4f0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.product-card__img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__info {
  padding: 16px;
  text-align: center;
}

.product-card__type {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.product-card__name {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card__price {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-text);
}

.product-card__btn {
  width: 100%;
  padding: 14px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.product-card__btn:hover {
  background: var(--color-primary-dark);
}


/* ═══════════════════════════════════════════════
   7. ABOUT SECTION
   ═══════════════════════════════════════════════ */
.about-section {
  padding: 64px 0;
  background: var(--color-warm-bg);
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-section__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-section__text p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════
   8. COMMUNITY SECTION
   ═══════════════════════════════════════════════ */
.community-section {
  position: relative;
  padding: 64px 0;
  background: var(--color-warm-bg);
  text-align: center;
}

.community-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.community-section__subtitle {
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.community-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.community-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.community-grid__item:hover img {
  transform: scale(1.08);
}

.community-grid__username {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}


/* ═══════════════════════════════════════════════
   WAVE DIVIDERS
   ═══════════════════════════════════════════════ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider--top {
  margin-bottom: -1px;
}

.wave-divider--bottom {
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider--warm svg path {
  fill: var(--color-white);
}


/* ═══════════════════════════════════════════════
   9. FOOD WORLD SECTION
   ═══════════════════════════════════════════════ */
.foodworld-section {
  padding: 80px 0;
}

.foodworld-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.foodworld-section__content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.foodworld-section__list {
  margin-bottom: 24px;
  padding-left: 0;
}

.foodworld-section__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.foodworld-section__list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

.foodworld-section__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}


/* ═══════════════════════════════════════════════
   10. INSPIRATION SECTION
   ═══════════════════════════════════════════════ */
.inspiration-section {
  position: relative;
  background: var(--color-warm-bg);
  padding: 64px 0;
  text-align: center;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.inspiration-grid__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.inspiration-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.inspiration-grid__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.inspiration-grid__title {
  padding: 12px 8px;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text);
}


/* ═══════════════════════════════════════════════
   11. TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 0;
  text-align: center;
}

.testimonials-section__subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__quote {
  font-size: var(--fs-md);
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card__author {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  z-index: 2;
}

.testimonial-slider__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.testimonial-slider__btn--prev {
  left: 0;
}

.testimonial-slider__btn--next {
  right: 0;
}


/* ═══════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-white);
  padding: 64px 0 40px;
}

.footer__logo-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.footer__logo {
  max-width: 240px;
  margin: 0 auto;
  opacity: 0.9;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer__col-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: var(--fs-sm);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer__links a:hover {
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.3);
}

.footer__payment {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer__payment-title {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer__payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  opacity: 0.8;
}


/* ═══════════════════════════════════════════════
   13. FLOATING BADGE
   ═══════════════════════════════════════════════ */
.floating-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: var(--fs-xs);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  animation: badge-bounce 2s ease-in-out infinite;
  transition: transform var(--transition);
}

.floating-badge:hover {
  transform: scale(1.1);
}

@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE – TABLET (max 960px)
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__lang {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section__inner,
  .foodworld-section__inner {
    grid-template-columns: 1fr;
  }

  .inspiration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE – MOBILE (max 600px)
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --header-height: 60px;
    --fs-3xl: 2.2rem;
  }

  .container {
    padding: 0 16px;
  }

  .story-icons__track {
    justify-content: flex-start;
    gap: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__info {
    padding: 12px;
  }

  .product-card__btn {
    padding: 12px;
    font-size: var(--fs-xs);
  }

  .product-tabs {
    gap: 4px;
  }

  .product-tabs__btn {
    padding: 8px 16px;
    font-size: var(--fs-xs);
  }

  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .floating-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
  }

  .about-section__text .section-heading,
  .foodworld-section__content .section-heading {
    text-align: left;
  }

  .hero-slideshow__img {
    min-height: 200px;
  }
}
