:root {
  --color-primary: #ffc107;
  --color-primary-dark: #f9a825;
  --color-secondary: #d32f2f;
  --color-accent: #fff8e1;
  --color-text: #222222;
  --color-muted: #777777;
  --color-bg: #fffdf5;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 22px 60px rgba(0, 0, 0, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, #fff8e1 0, #ffffff 45%, #fff8e1 100%);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.5rem;
  color: #1c1b1b;
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Containers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #fff8e1 0, #ffe082 40%, #ffc107 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.2));
  animation: loaderPop 0.9s ease-out infinite alternate;
}

.loader-bar {
  margin-top: 2rem;
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
}

.loader-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #ffffff, #ffe082, #ffffff);
  animation: loaderSlide 1s linear infinite;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.floating-whatsapp.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-whatsapp .wa-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0, #ffffff 38%, transparent 40%),
    linear-gradient(135deg, #ffffff 0, #e0f7e9 45%, #ffffff 100%);
  position: relative;
}

.floating-whatsapp .wa-icon::before,
.floating-whatsapp .wa-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid #25d366;
}

.floating-whatsapp .wa-icon::before {
  inset: 18% 25%;
  border-top: none;
  border-left: none;
  transform: rotate(-30deg);
}

.floating-whatsapp .wa-icon::after {
  inset: 32% 42%;
  border-bottom: none;
  border-right: none;
}

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(16px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  margin: 0.5rem auto;
  width: min(1120px, 100% - 2.5rem);
  border-radius: 99px;
  background: rgba(255, 248, 225, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: padding 0.3s ease, margin 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar.shrink {
  margin-top: 0.3rem;
  padding-block: 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text);
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  transform-origin: center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: transform 0.25s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-wa-btn {
  font-size: 0.85rem;
}

/* Nav Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), opacity 0.2s;
}

.btn-lg {
  padding-inline: 1.7rem;
  padding-block: 0.9rem;
  font-size: 0.96rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

.btn-gradient {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #1b1303;
  box-shadow: 0 14px 32px rgba(211, 47, 47, 0.3);
}

.btn-gradient:hover {
  box-shadow: 0 18px 40px rgba(211, 47, 47, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
}

.btn-outline:hover {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Button ripple */
.ripple::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.5), transparent 55%);
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.ripple.is-animating::before {
  opacity: 1;
  transform: scale(1.6);
}

/* Sections */
.section {
  padding-block: 4.5rem;
}

.section.alt-bg {
  background: #fffaf0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 580px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.08);
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(34, 34, 34, 0.75) 0, rgba(34, 34, 34, 0.55) 45%, rgba(34, 34, 34, 0.4) 100%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
  color: #222222;
}

.hero-text {
  max-width: 560px;
}

.hero-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #ff6b35;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.1vw + 1.6rem, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.hero-title span {
  color: #ff6b35;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #f5f5f5;
  max-width: 460px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.78rem;
}

.meta-item {
  padding-left: 0.8rem;
  border-left: 2px solid rgba(255, 107, 53, 0.9);
}

.meta-label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.1rem;
  color: #ffffff;
}

.meta-value {
  color: #e8e8e8;
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-main-image {
  width: 260px;
  height: 260px;
  border-radius: 44% 56% 52% 48%;
  background: radial-gradient(circle at top, #fff8e1 0, #ffe082 35%, #ffc107 100%);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-main-image img {
  width: 220px;
  height: auto;
  transform: translateY(6px);
}

.hero-floating-card {
  position: absolute;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  color: #5d4037;
  font-size: 0.78rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-floating-card.card-1 {
  top: 12%;
  right: -6%;
}
.hero-floating-card.card-2 {
  bottom: 8%;
  left: -4%;
}

.badge-label {
  font-weight: 600;
}

.hero-bottom-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 100px;
  background: radial-gradient(120% 80px at top, rgba(255, 253, 245, 1) 0, rgba(255, 253, 245, 1) 60%, transparent 100%);
}

/* Floating animations (CSS baseline; GSAP enhances) */
.floating {
  animation: float 5s ease-in-out infinite;
}
.floating-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

/* About preview */
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.section-text {
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 0.9rem;
}

.text-link:hover {
  opacity: 0.9;
}

.section-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-med), box-shadow var(--transition-med), background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  background: #fffef8;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.86rem;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.feature-icon.icon-fresh::after {
  border-top: none;
}
.feature-icon.icon-traditional::before {
  border-left: none;
}
.feature-icon.icon-variety::after {
  border-right: none;
}
.feature-icon.icon-premium::before {
  border-bottom: none;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 193, 7, 0.24), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px) translateZ(0);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-body {
  padding: 1.1rem 1.25rem 1.3rem;
}

.product-body h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.product-body p {
  font-size: 0.85rem;
  min-height: 2.5em;
}

/* Why choose us */
.why-choose-us {
  background: radial-gradient(circle at top, #fff8e1 0, #ffffff 40%, #ffe082 120%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.35rem;
}

.why-card {
  padding: 1.4rem 1.25rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform var(--transition-med), box-shadow var(--transition-med), background 0.25s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 0.6rem;
  background: conic-gradient(from 160deg, var(--color-primary), var(--color-secondary), var(--color-primary));
  position: relative;
}

.why-icon::before {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: inherit;
  background: #fffef7;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.why-card p {
  font-size: 0.86rem;
}

/* CTA */
.cta-section {
  padding-block: 3.5rem;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 1.6rem;
  border-radius: 1.8rem;
  background: linear-gradient(120deg, #fff8e1, #ffe082, #ffc107);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.cta-text h2 {
  margin-bottom: 0.3rem;
}

.cta-text p {
  margin-bottom: 0;
  color: #5d4037;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Page Hero (About, Products, Contact) */
.page-hero {
  padding-top: 6rem;
  padding-bottom: 2.6rem;
  background: linear-gradient(135deg, #fff3e0 0, #ffe082 40%, #ffc107 100%);
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 2.2rem;
}

.page-subtitle {
  max-width: 540px;
}

.page-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: radial-gradient(130% 80px at top, #fffdf7 0, #fffdf7 60%, transparent 100%);
}

/* About page layout */
.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.3rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.78rem;
  color: var(--color-secondary);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.gallery-item:hover img {
  transform: scale(1.09);
}

/* Products page */
.product-category .category-header {
  margin-bottom: 1.8rem;
}

.product-category .category-header h2 {
  margin-bottom: 0.4rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-details h3 {
  margin-top: 0.4rem;
}

.contact-details a {
  color: var(--color-secondary);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
  margin-bottom: 0.9rem;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #4e342e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #fffdf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.12);
  background: #ffffff;
}

.contact-form .form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

.map-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  background: #fffaf0;
}

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
  background: #1b1307;
  color: #fbe9e7;
  padding-block: 2.4rem 1.4rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
  font-size: 0.86rem;
}

.footer-brand h3 {
  color: #ffe082;
  margin-bottom: 0.2rem;
}

.footer-contact h4 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #ffe0b2;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-dev {
  text-align: right;
  grid-column: 1 / -1;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #ffcc80;
}

.footer-dev span {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
    margin-bottom: 1.2rem;
  }

  .navbar {
    border-radius: 1.2rem;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .navbar {
    gap: 0.8rem;
  }

  .nav-links {
    position: absolute;
    top: 90%;
    right: 1.7rem;
    width: min(240px, 70vw);
    flex-direction: column;
    padding: 0.85rem 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    transform-origin: top right;
    transform: scale(0.8) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-wa-btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-section {
    padding-bottom: 3.5rem;
  }

  .hero-main-image {
    width: 230px;
    height: 230px;
  }

  .section {
    padding-block: 3.3rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-dev {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 1.8rem);
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-meta {
    flex-direction: column;
  }

  .cta-inner {
    padding: 1.4rem 1.3rem;
  }

  .section-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Keyframes */
@keyframes loaderPop {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-14px) scale(1.05);
  }
}

@keyframes loaderSlide {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(160%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}