/* ============================================================
   MODA — Fashion Ecommerce
   A JRaft Creative portfolio piece
   ============================================================ */

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

:root {
  --white: #ffffff;
  --off-white: #f5f3ef;
  --charcoal: #1a1a1a;
  --warm-gray: #8a8578;
  --terracotta: #c4704b;
  --terracotta-hover: #b5613e;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, Helvetica Neue, sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.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; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.4s var(--ease-smooth);
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--charcoal);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-icon {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 400;
}

.nav-icon:hover {
  color: var(--warm-gray);
}

.nav-icon .icon-symbol {
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}

.cart-count {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1050;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--charcoal);
}

.mobile-menu a:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(40px, 6vw, 80px) 0;
}

.hero-content {
  padding-right: clamp(0px, 3vw, 40px);
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 28px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 420px;
}

.link-underline {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-out-expo);
  transform-origin: left;
}

.link-underline:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.hero-image {
  width: 100%;
  height: clamp(500px, 70vh, 760px);
  background: linear-gradient(155deg, #d4c5b5 0%, #b8a898 30%, #a39383 60%, #8d7e6e 100%);
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 70%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-image::after {
  content: 'SS26';
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-padding {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-tag {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-title-centered {
  text-align: center;
}

/* ============================================================
   PRODUCT GRID — Featured Collection
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.product-card {
  position: relative;
  cursor: pointer;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #e8e2da;
}

.product-image-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease-out-expo);
}

.product-card:hover .product-image-inner {
  transform: scale(1.04);
}

/* Individual product gradients */
.product-grad-1 {
  background: linear-gradient(165deg, #d6cdc3 0%, #c4b8ab 40%, #b0a392 70%, #9d9080 100%);
}

.product-grad-2 {
  background: linear-gradient(170deg, #e0d5c8 0%, #cfc2b3 35%, #bfb0a0 65%, #a89888 100%);
}

.product-grad-3 {
  background: linear-gradient(160deg, #cec8c0 0%, #bab3a8 40%, #a9a090 70%, #97907e 100%);
}

.product-grad-4 {
  background: linear-gradient(175deg, #d8cec0 0%, #c8bba8 45%, #b5a690 65%, #a39278 100%);
}

.product-grad-5 {
  background: linear-gradient(155deg, #c8c0b5 0%, #b8ada0 38%, #a89a88 68%, #988870 100%);
}

.product-grad-6 {
  background: linear-gradient(168deg, #ddd6cb 0%, #ccc3b5 42%, #bbb0a0 70%, #a8998a 100%);
}

.product-grad-7 {
  background: linear-gradient(162deg, #d2c8ba 0%, #c0b4a5 36%, #ada090 66%, #9a8c78 100%);
}

.product-grad-8 {
  background: linear-gradient(172deg, #dbd4c8 0%, #c8bfb0 40%, #b5a998 68%, #a09282 100%);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  border: none;
}

.btn-add-cart:hover {
  background: var(--terracotta);
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
}

.product-price {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--warm-gray);
  white-space: nowrap;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}

/* ============================================================
   EDITORIAL BANNER
   ============================================================ */
.editorial-banner {
  background: var(--off-white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 600px;
}

.editorial-image {
  background: linear-gradient(140deg, #c4b5a2 0%, #ae9c88 30%, #9a8a75 55%, #867862 80%, #726850 100%);
  min-height: 500px;
  position: relative;
}

.editorial-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(245,243,239,0.15) 100%);
}

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px);
}

.editorial-content .section-tag {
  margin-bottom: 20px;
}

.editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.editorial-text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out-expo);
}

.category-card:hover .category-bg {
  transform: scale(1.06);
}

.category-bg-women {
  background: linear-gradient(170deg, #5a504a 0%, #4a4038 30%, #3d3530 55%, #2e2622 80%, #1f1a16 100%);
}

.category-bg-men {
  background: linear-gradient(165deg, #504a45 0%, #423c38 28%, #36302c 55%, #2a2420 78%, #1e1a17 100%);
}

.category-bg-accessories {
  background: linear-gradient(175deg, #5e554e 0%, #4e4540 32%, #403832 60%, #322b26 82%, #241f1b 100%);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.25);
  transition: background 0.5s var(--ease-smooth);
}

.category-card:hover .category-overlay {
  background: rgba(26, 26, 26, 0.15);
}

.category-label {
  position: relative;
  z-index: 2;
  text-align: center;
}

.category-name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.category-cta {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.category-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ============================================================
   BEST SELLERS
   ============================================================ */
.bestsellers {
  background: var(--off-white);
}

.bestseller-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* ============================================================
   BRAND STORY / QUOTE
   ============================================================ */
.brand-story {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 60px);
}

.brand-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 36px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.brand-quote::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto 36px;
}

.brand-text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.journal-card {
  cursor: pointer;
}

.journal-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.journal-image-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease-out-expo);
}

.journal-card:hover .journal-image-inner {
  transform: scale(1.04);
}

.journal-grad-1 {
  background: linear-gradient(145deg, #c0b5a8 0%, #a89a88 50%, #908070 100%);
}

.journal-grad-2 {
  background: linear-gradient(150deg, #b8b0a5 0%, #a09588 48%, #887868 100%);
}

.journal-grad-3 {
  background: linear-gradient(140deg, #ccc3b5 0%, #b5a898 52%, #9d8e78 100%);
}

.journal-date {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 10px;
}

.journal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 16px;
}

.journal-link {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.journal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-out-expo);
  transform-origin: left;
}

.journal-card:hover .journal-link::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--off-white);
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.newsletter-text {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 0.875rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-right: none;
  color: var(--charcoal);
  transition: border-color 0.3s;
}

.newsletter-input::placeholder {
  color: var(--warm-gray);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.newsletter-input:focus {
  border-color: var(--charcoal);
}

.newsletter-btn {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  font-family: var(--font-body);
  border: 1px solid var(--charcoal);
}

.newsletter-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding-top: clamp(60px, 8vw, 100px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(60px, 8vw, 80px);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.footer-payments {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

.footer-payments span {
  padding: 0 8px;
}

.footer-payments span:first-child {
  padding-left: 0;
}

.footer-agency {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
}

.footer-agency a {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s;
}

.footer-agency a:hover {
  color: var(--terracotta);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .editorial-image {
    min-height: 400px;
  }

  .categories-grid {
    gap: 12px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-right .nav-icon:not(.cart-nav) {
    display: none;
  }

  .cart-nav .icon-label {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-content {
    padding-right: 0;
    text-align: left;
  }

  .hero-image {
    height: 420px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card {
    aspect-ratio: 16 / 9;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: none;
  }

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

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

  .bestseller-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    height: 64px;
  }

  .hero {
    padding-top: 64px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-name {
    font-size: 0.8125rem;
  }

  .product-price {
    font-size: 0.8125rem;
  }

  .btn-add-cart {
    font-size: 0.625rem;
    padding: 12px 16px;
  }

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