/* ===== VARIABLER ===== */
:root {
  --sage: #8A9278;
  --sage-dark: #6B7A5A;
  --sage-light: #b0bc9e;
  --sage-glass: rgba(138, 146, 120, 0.13);
  --sage-glass-border: rgba(138, 146, 120, 0.25);
  --beige: #F5F0E8;
  --beige-dark: #EDE7DB;
  --beige-darker: #E0D9CE;
  --cream: #FAFAF7;
  --text-dark: #2C2C28;
  --text-mid: #5A5A52;
  --text-light: #8A8A80;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --radius: 2px;
  --radius-md: 6px;
  --shadow-sm: 0 2px 12px rgba(44, 44, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 44, 40, 0.10);
  --shadow-lg: 0 20px 60px rgba(44, 44, 40, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--beige);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--beige);
  border-bottom: 1px solid var(--beige-darker);
  transition: box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
}
.nav-left a:hover, .nav-right a:hover { color: var(--sage-dark); }
.logo-link { display: flex; justify-content: center; }
.logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.header-icons { display: flex; align-items: center; gap: 0.5rem; }
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--sage-glass); color: var(--sage-dark); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--sage-dark);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  border: 1.5px solid var(--sage-dark);
}
.btn-primary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 44, 40, 0.3) 0%,
    rgba(44, 44, 40, 0.55) 40%,
    rgba(44, 44, 40, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 2rem;
  animation: heroFade 1.2s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--sage-light); }
.hero-sub {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  animation: bounce 2.5s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: white; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== KATEGORI BANNER ===== */
.category-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 480px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 52% 48% 58% 42% / 42% 58% 52% 48%;
  transition: border-radius 0.5s ease;
}
.cat-card:nth-child(2) { border-radius: 42% 58% 48% 52% / 58% 42% 52% 48%; }
.cat-card:nth-child(3) { border-radius: 58% 42% 52% 48% / 48% 52% 42% 58%; }
.cat-card:hover { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
.cat-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cat-img-wrap img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,40,0.65) 0%, transparent 55%);
  transition: opacity var(--transition);
}
.cat-card:hover::after { opacity: 0.85; }
.cat-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: gap var(--transition);
}
.cat-card:hover .cat-label { gap: 0.75rem; }
.cat-card--center { }

/* ===== SEKTIONER GEMENSAMT ===== */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.section-desc {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ===== PRODUKTSEKTIONER ===== */
.products-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.products-section--alt {
  background: var(--cream);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.products-section--alt .section-header,
.products-section--alt .product-grid,
.products-section--alt .section-cta {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ===== PRODUKT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  position: relative;
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-6px); }
.product-info { padding: 1.25rem 0.5rem 1.25rem; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  transition: border-radius 0.5s ease, transform 0.6s ease;
}
.product-card:nth-child(4n+2) .product-img-wrap { border-radius: 42% 58% 48% 52% / 52% 48% 58% 42%; }
.product-card:nth-child(4n+3) .product-img-wrap { border-radius: 52% 48% 58% 42% / 42% 58% 52% 48%; }
.product-card:nth-child(4n+4) .product-img-wrap { border-radius: 48% 52% 42% 58% / 58% 42% 48% 52%; }
.product-card:hover .product-img-wrap { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
.product-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-card--tall .product-img-wrap { aspect-ratio: 2/3; }
.product-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}
.wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--text-mid);
  transition: all var(--transition);
}
.wishlist-btn:hover { background: white; color: #c0392b; }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--sage-dark);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
}
.product-badge--sale { background: #8B6B61; }
.product-info {
  padding: 1.25rem 1rem 1.25rem;
}
.product-brand {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.product-price {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
}

/* ===== MODE TIPS ===== */
.modetips {
  padding: 6rem 2rem;
  background: var(--beige-dark);
}
.modetips .section-header { max-width: 560px; margin: 0 auto 3.5rem; }
.tips-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.tip-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tip-card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}
.tip-card--featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.tip-card--featured .tip-img-wrap { flex: 1; min-height: 320px; }
.tip-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 55% 45% 52% 48% / 48% 52% 45% 55%;
  transition: border-radius 0.5s ease;
}
.tips-grid .tip-card:nth-child(2) .tip-img-wrap { border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%; }
.tips-grid .tip-card:nth-child(3) .tip-img-wrap { border-radius: 48% 52% 55% 45% / 45% 55% 52% 48%; }
.tip-card:hover .tip-img-wrap { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
.tip-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tip-card:hover .tip-img-wrap img { transform: scale(1.05); }
.tip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,40,0.3) 0%, transparent 60%);
}
.tip-content {
  padding: 1.5rem;
}
.tip-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(138, 146, 120, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.tip-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.tip-card--featured .tip-content h3 { font-size: 1.4rem; }
.tip-content p {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1rem;
}
.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: gap var(--transition), color var(--transition);
}
.tip-link:hover { gap: 0.6rem; color: var(--text-dark); }

/* ===== OM OSS BANNER ===== */
.about-banner {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-content { max-width: 480px; }
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.about-content p {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-content .section-eyebrow { text-align: left; margin-bottom: 0.75rem; }
.about-img-collage {
  position: relative;
  height: 500px;
}
.collage-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 55% 45% 52% 48% / 48% 52% 45% 55%;
  box-shadow: var(--shadow-md);
}
.collage-small {
  position: absolute;
  width: 45%;
  height: 45%;
  object-fit: cover;
  border-radius: 48% 52% 58% 42% / 42% 58% 52% 48%;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--beige);
}
.collage-small--1 {
  bottom: 5%;
  left: 5%;
}
.collage-small--2 {
  top: 15%;
  right: 0;
  height: 50%;
  width: 38%;
  border-radius: 52% 48% 45% 55% / 55% 45% 58% 42%;
}

/* ===== INSTAGRAM ===== */
.instagram-section {
  padding: 5rem 2rem;
  background: var(--cream);
}
.instagram-section .section-header { max-width: 560px; margin: 0 auto 3rem; }
.insta-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  transition: border-radius 0.5s ease, transform 0.5s ease;
}
.insta-item:nth-child(4n+2) { border-radius: 42% 58% 48% 52% / 52% 48% 58% 42%; }
.insta-item:nth-child(4n+3) { border-radius: 52% 48% 42% 58% / 58% 42% 48% 52%; }
.insta-item:nth-child(4n+4) { border-radius: 48% 52% 58% 42% / 42% 58% 52% 48%; }
.insta-item:hover { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
.insta-item img { transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(107, 122, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-hover { opacity: 1; }

/* ===== NYHETSBREV ===== */
.newsletter {
  padding: 6rem 2rem;
  background: var(--beige-darker);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.newsletter p {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 0.75rem;
  box-shadow: var(--shadow-sm);
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  border: 1.5px solid var(--sage-glass-border);
  border-right: none;
  background: var(--white);
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--sage); }
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  white-space: nowrap;
}
.newsletter-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.8);
}
.footer-brand p {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover {
  background: var(--sage);
  color: white;
}
.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.payment-icons { display: flex; gap: 0.75rem; }
.payment-icons span {
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-banner { gap: 3rem; }
}

@media (max-width: 1024px) {
  .hero-img {
    transform: scale(1) !important;
    object-position: center 0% !important;
  }
  .hero:hover .hero-img { transform: scale(1) !important; }

  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-right a:not(.icon-btn) { display: none; }
  .hero-title { font-size: 2.8rem; }
  .category-banner { grid-template-columns: 1fr; height: auto; }
  .cat-card { height: 240px; }
  .product-grid, .product-grid--3 { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card--featured { grid-row: auto; }
  .about-banner { grid-template-columns: 1fr; }
  .about-img-collage { height: 360px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--sage-glass-border); border-bottom: none; border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form .btn { border-radius: 0 0 var(--radius) var(--radius); justify-content: center; }
}
