:root {
  --font-heading: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --color-base: #fefdfb;
  --color-surface: #ffffff;
  --color-muted: #5c6270;
  --color-text: #12141a;
  --color-ink: #0b1220;
  --color-primary: #2649d5;
  --color-primary-soft: #7a87f2;
  --color-accent: #c7a54f;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-shadow: rgba(15, 23, 42, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --space-xxs: 0.35rem;
  --space-xs: 0.65rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.2rem;
  --space-xl: 3rem;
  --space-xxl: 4.25rem;
  --header-height: 72px;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-base);
  color: var(--color-text);
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

button {
  font-family: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, 92vw);
  padding: 0 0.75rem;
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-muted);
  margin-top: 0.1rem;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav li {
  min-width: 0;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.25rem;
  color: var(--color-ink);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--color-primary);
  background: rgba(38, 73, 213, 0.08);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
}

.cart-indicator {
  position: relative;
}

.cart-indicator span {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-accent);
  color: white;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header .hamburger svg {
  width: 28px;
  height: 28px;
}

.site-header .hamburger:hover {
  transform: translateY(-1px);
  border-color: var(--color-primary);
  background: rgba(38, 73, 213, 0.08);
}

.header-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-surface);
  box-shadow: -20px 0 40px rgba(15, 23, 42, 0.2);
  transition: right 0.3s ease;
  z-index: 30;
  padding: var(--space-lg) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 15, 30, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 28;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.drawer-close svg {
  width: 24px;
  height: 24px;
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ink);
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
  color: white;
  box-shadow: 0 15px 30px rgba(38, 73, 213, 0.3);
}

.btn-secondary {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-ink);
}

.section-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.section-hero.hero-home {
  min-height: 78vh;
  max-height: 820px;
}

.hero-banner {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  padding: var(--space-xxl) var(--space-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: var(--space-xxl);
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.1));
}

.hero-deals {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xxl) var(--space-lg);
  margin-bottom: var(--space-xxl);
}

.hero-deals::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
}

.hero-deals-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xxl) var(--space-md) var(--space-lg);
  max-width: 640px;
}

.hero-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5vw, 3.8rem);
  margin: 0.7rem 0;
  color: var(--color-ink);
}

.hero-subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.section {
  padding: var(--space-xxl) 0;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.section-heading h2 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: 1.9rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.story-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 100%;
  object-fit: cover;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.value-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: left;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(38, 73, 213, 0.12);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

.timeline-item {
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.6);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: var(--space-lg);
}

.support-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: var(--color-surface);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.support-card h4 {
  margin: 0 0 0.35rem;
}

.contact-form {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: #fff;
}

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

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.75rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-summary {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cart-row {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--color-surface);
  flex-wrap: wrap;
}

.cart-thumb {
  width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-info {
  flex: 1;
  min-width: 140px;
}

.cart-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.cart-info .cart-price {
  margin: 0.4rem 0 0;
  font-weight: 600;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-remove {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--color-muted);
  cursor: pointer;
}

.empty-cart {
  text-align: center;
}

.empty-cart .btn {
  margin-top: var(--space-md);
}
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.card img {
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.category-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.category-card p {
  margin: 0;
  color: var(--color-muted);
}

.category-card img {
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.15);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.2);
}

.product-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.product-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card-body h4 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.product-card-body .price {
  font-size: 1rem;
  font-weight: 600;
}

.product-card-body .rating {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
}

.product-actions .btn-outline {
  flex: 1;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: transparent;
  color: var(--color-ink);
}

.quick-view-btn {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(15, 23, 42, 0.3);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  justify-content: center;
  margin-top: 0.5rem;
  transition: opacity 0.2s ease;
  opacity: 0;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
}

.deals-strip {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.countdown span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.deal-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.deal-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(198, 165, 79, 0.2);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.deal-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.deal-old {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.deal-new {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-ink);
}

.toast-wrapper {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 50;
}

.toast {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.2);
  font-weight: 500;
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 34, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: var(--space-lg);
}

.quick-view-modal.active {
  display: flex;
}

.quick-view-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: min(600px, 100%);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.quick-view-card img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
}

.quick-view-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.newsletter-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.newsletter-fields input {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  background: #f8f8fd;
}

.newsletter-fields input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(38, 73, 213, 0.15);
}

.shop-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.top-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-controls input,
.top-controls select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  background: #fff;
}

.filter-toggle {
  display: none;
}

.filters-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  min-width: 240px;
  transition: right 0.3s ease;
}

.filters-panel.active {
  right: 0;
}

.filter-close {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: var(--color-muted);
  cursor: pointer;
  margin-bottom: var(--space-md);
  display: none;
}

.filter-group {
  margin-top: var(--space-md);
}

.filter-group h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
}

.product-grid {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.faq-answer {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: var(--space-xxl) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-grid p {
  margin: 0;
}

.footer h4 {
  margin-top: 0;
  font-family: var(--font-heading);
}

.footer a {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: min(280px, 85vw);
    margin: 0;
    padding-top: 3rem;
    z-index: 40;
    overflow-y: auto;
  }

  .filters-panel.active {
    right: 0;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filter-close {
    display: inline-block;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    top: auto;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .site-header .hamburger {
    display: inline-flex;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name {
    white-space: normal;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-actions .account-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100vw - 1.5rem);
    border-radius: 20px;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-inline: var(--space-md);
  }

  .header-drawer {
    width: min(280px, 80vw);
  }

  .section-hero.hero-home {
    min-height: 62vh;
  }

  .footer {
    padding: var(--space-xl) var(--space-sm);
  }

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

  .footer-grid > div {
    align-items: center;
  }

  .footer-grid a {
    text-align: center;
  }
}
