/* ============================================
   TIENDA RIKIISIMO — Custom Styles
   Palette: Emerald Green (#047857) + Cream (#FFF8F0)
   Fonts: Fredoka (headings) + Nunito Sans (body)
============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald: #047857;
  --emerald-dark: #035740;
  --emerald-light: #06906b;
  --cream: #FFF8F0;
  --cream-dark: #f5ebe0;
  --white: #ffffff;
  --text-dark: #1a2e2a;
  --text-mid: #3d5a53;
  --text-light: #6b8f86;
  --shadow-sm: 0 2px 8px rgba(4, 120, 87, 0.08);
  --shadow-md: 0 8px 30px rgba(4, 120, 87, 0.12);
  --shadow-lg: 0 20px 60px rgba(4, 120, 87, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

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

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

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

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

/* ----- BACKGROUND DECORATIVE SHAPES ----- */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  background: var(--emerald);
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  opacity: 0.06;
}

.shape-4 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: 20%;
  border-radius: 30%;
  opacity: 0.05;
  background: var(--emerald-light);
}

.shape-5 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 5%;
  border-radius: 20%;
  opacity: 0.05;
}

/* ----- NAVBAR ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--emerald);
  flex-shrink: 0;
}

.logo-icon {
  color: var(--emerald);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--emerald);
  background: rgba(4, 120, 87, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.nav-cta:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(4, 120, 87, 0.08);
}

.hamburger {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4, 120, 87, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--cream);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.mobile-link:hover {
  background: rgba(4, 120, 87, 0.08);
  color: var(--emerald);
}

.mobile-divider {
  height: 1px;
  background: rgba(4, 120, 87, 0.12);
  margin: 8px 0;
}

.mobile-phone, .mobile-email {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.35);
}

.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(4, 120, 87, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--emerald);
  border: 2px solid rgba(4, 120, 87, 0.2);
}

.btn-secondary:hover {
  border-color: var(--emerald);
  background: rgba(4, 120, 87, 0.05);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ----- SECTION COMMON ----- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(4, 120, 87, 0.08);
  border: 1px solid rgba(4, 120, 87, 0.15);
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
}

.title-accent {
  color: var(--emerald);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #047857 0%, #06906b 30%, #0a9e76 50%, #047857 70%, #035740 100%);
  padding-top: 72px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 248, 240, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
}

.geo-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid rgba(255, 248, 240, 0.15);
  top: 10%;
  left: -5%;
  animation: float 8s ease-in-out infinite;
}

.geo-square-1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 248, 240, 0.08);
  border-radius: 24px;
  top: 20%;
  right: 8%;
  transform: rotate(25deg);
  animation: float 6s ease-in-out infinite reverse;
}

.geo-triangle-1 {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(255, 248, 240, 0.07);
  bottom: 25%;
  right: 15%;
  animation: spin 12s linear infinite;
}

.geo-circle-2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.06);
  bottom: 30%;
  left: 10%;
  animation: float 7s ease-in-out infinite;
}

.geo-dots {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 5%;
  background-image: radial-gradient(circle, rgba(255,248,240,0.2) 2px, transparent 2px);
  background-size: 16px 16px;
  animation: float 9s ease-in-out infinite;
}

.geo-ring-1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 240, 0.1);
  bottom: 10%;
  right: -3%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 248, 240, 0.15);
  border: 1px solid rgba(255, 248, 240, 0.25);
  border-radius: 50px;
  color: var(--cream);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.title-accent {
  color: var(--cream);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 248, 240, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-actions .btn-secondary {
  background: rgba(255, 248, 240, 0.12);
  border-color: rgba(255, 248, 240, 0.3);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 248, 240, 0.2);
  border-color: rgba(255, 248, 240, 0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 248, 240, 0.2);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: var(--cream);
  pointer-events: none;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ----- ABOUT ----- */
.about {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 13/10;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-main:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

.accent-pattern {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--emerald) 0px,
    var(--emerald) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: var(--radius-md);
  opacity: 0.15;
}

.about-floating-card {
  position: absolute;
  bottom: 24px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  animation: float 4s ease-in-out infinite;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.08);
  border-radius: var(--radius-sm);
  color: var(--emerald);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ----- PRODUCTS ----- */
.products {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--cream-dark);
  overflow: hidden;
}

.products-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(4, 120, 87, 0.04);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.products .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.products .section-subtitle {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.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-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.products-cta {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.products-cta p {
  font-size: 1.1rem;
  color: var(--text-mid);
}

.products-cta a {
  color: var(--emerald);
  font-weight: 700;
  border-bottom: 2px solid rgba(4, 120, 87, 0.2);
  transition: var(--transition);
}

.products-cta a:hover {
  border-color: var(--emerald);
}

/* ----- CONTACT ----- */
.contact {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.08);
  border-radius: var(--radius-sm);
  color: var(--emerald);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}

.contact-value a {
  color: var(--emerald);
  transition: var(--transition);
}

.contact-value a:hover {
  color: var(--emerald-dark);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(4,120,87,0.06) 0%, rgba(4,120,87,0.12) 100%);
  border: 2px dashed rgba(4, 120, 87, 0.2);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
}

.map-placeholder svg {
  margin: 0 auto 16px;
  opacity: 0.6;
}

.map-placeholder p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-weight: 600;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.map-link:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrap {
  position: relative;
}

.form-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -30px;
  right: -30px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(4, 120, 87, 0.06) 0px,
    rgba(4, 120, 87, 0.06) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: 20px;
  transform: rotate(15deg);
  pointer-events: none;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(4, 120, 87, 0.15);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: fadeIn 0.5s ease;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 120, 87, 0.1);
  border-radius: 50%;
  color: var(--emerald);
  margin-bottom: 20px;
}

.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--emerald);
}

.form-success p {
  color: var(--text-light);
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- FOOTER ----- */
.footer {
  position: relative;
  z-index: 1;
  background: var(--emerald-dark);
  color: var(--cream);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.f-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.04);
}

.f-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.f-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -40px;
}

.f-shape-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 30%;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 48px 0;
}

.footer-brand p {
  color: rgba(255, 248, 240, 0.6);
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 248, 240, 0.6);
  font-weight: 600;
  transition: var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 240, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.4);
}

/* ----- SCROLL ANIMATIONS ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }
  
  .contact-grid {
    gap: 48px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-form-wrap {
    max-width: 520px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding-top: 72px;
  }
  
  .about,
  .products,
  .contact {
    padding: 72px 0;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .geo-circle-1 {
    width: 200px;
    height: 200px;
  }
  
  .geo-square-1 {
    width: 80px;
    height: 80px;
  }
}
