:root {
  --bg: #f6f1e7;
  --bg-strong: #ece3d3;
  --surface: rgba(255, 251, 245, 0.84);
  --surface-solid: #ffffff;
  --surface-dark: #18332d;
  --line: rgba(24, 51, 45, 0.12);
  --line-strong: rgba(24, 51, 45, 0.18);
  --text: #1e2f2a;
  --text-soft: #66756f;
  --brand: #1f6b5b;
  --brand-strong: #174d42;
  --brand-soft: rgba(31, 107, 91, 0.1);
  --accent: #c57b49;
  --accent-soft: rgba(197, 123, 73, 0.14);
  --warm: #d88a54;
  --shadow-sm: 0 10px 24px rgba(30, 47, 42, 0.07);
  --shadow-md: 0 24px 60px rgba(30, 47, 42, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container-max: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 123, 73, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(31, 107, 91, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf8f2 0%, #f6f0e5 52%, #efe7d8 100%);
}

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

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

.container {
  max-width: var(--container-max);
}

.page-shell {
  padding-top: 102px;
}

.section-space {
  padding: 88px 0;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(236, 227, 211, 0.58));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 107, 91, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.hero-title,
.section-heading h2,
.page-hero h1,
.content-title,
.product-title,
.cta-banner h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.section-heading,
.page-hero {
  margin-bottom: 2rem;
}

.section-heading h2,
.page-hero h1 {
  margin: 1rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.section-heading p,
.page-hero p,
.hero-text,
.text-muted-custom {
  color: var(--text-soft);
  line-height: 1.75;
}

.navbar-shell {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(246, 241, 231, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 51, 45, 0.06);
}

.navbar-shell .navbar {
  padding: 1rem 0;
}

.nav-shell-card {
  padding: 0.8rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(30, 47, 42, 0.08);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(31, 107, 91, 0.24);
}

.brand-lockup strong {
  display: block;
  font-size: 1.05rem;
  font-family: "Sora", sans-serif;
}

.brand-lockup span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nav-link-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--text);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.nav-action-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-menu-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links-cluster {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 51, 45, 0.07);
}

.cart-pill,
.btn-brand,
.btn-soft,
.btn-outline-brand {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.72rem 1rem;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.cart-pill:hover,
.btn-brand:hover,
.btn-soft:hover,
.btn-outline-brand:hover {
  transform: translateY(-1px);
}

.cart-pill-count {
  min-width: 24px;
  height: 24px;
  padding: 0 0.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.76rem;
}

.language-switcher {
  position: relative;
}

.language-trigger {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.language-trigger strong {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 180px;
  padding: 0.45rem;
  display: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 51, 45, 0.08);
  box-shadow: 0 24px 44px rgba(30, 47, 42, 0.12);
  backdrop-filter: blur(16px);
}

.language-switcher.open .language-menu {
  display: grid;
  gap: 0.25rem;
}

.language-option {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
  font-weight: 600;
}

.language-option:hover,
.language-option.active {
  background: rgba(31, 107, 91, 0.08);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

.btn-brand {
  padding: 0.92rem 1.4rem;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 18px 34px rgba(31, 107, 91, 0.22);
}

.btn-brand:hover {
  color: #fff;
}

.btn-soft {
  padding: 0.92rem 1.4rem;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.btn-outline-brand {
  padding: 0.92rem 1.4rem;
  color: var(--brand);
  border: 1px solid rgba(31, 107, 91, 0.22);
  background: rgba(255, 255, 255, 0.4);
}

.hero-section {
  padding: 136px 0 90px;
}

.hero-layout {
  min-height: 620px;
}

.hero-title {
  margin: 1rem 0 1.15rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

.hero-showcase {
  display: grid;
  gap: 1rem;
}

.modern-showcase {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.74), rgba(244, 236, 222, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.hero-product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(197, 123, 73, 0.18), transparent 30%),
    linear-gradient(135deg, #18332d 0%, #244b42 100%);
  color: #fff;
}

.hero-product-copy h2 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.hero-product-copy p,
.showcase-mini-label {
  color: rgba(255, 255, 255, 0.72);
}

.hero-product-art {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-product-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

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

.feature-slab {
  height: 100%;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid var(--line);
}

.feature-slab strong {
  display: block;
  margin: 0.5rem 0;
  font-family: "Sora", sans-serif;
}

.feature-slab p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.badge-soft,
.mini-label,
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit;
  font-size: 0.79rem;
  font-weight: 700;
}

.stat-card,
.category-panel,
.content-card,
.info-card,
.filter-panel,
.product-card,
.empty-state,
.empty-inline {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.stat-card,
.category-panel,
.content-card,
.info-card,
.filter-panel {
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.stat-card-modern {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.9);
}

.stat-value {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.55rem;
  font-family: "Sora", sans-serif;
}

.stat-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.category-panel {
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-panel:hover,
.product-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 107, 91, 0.18);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.08);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-soft), rgba(17, 185, 129, 0.12));
  color: var(--brand);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.category-panel h3,
.info-card h3,
.content-title {
  margin: 1rem 0 0.65rem;
  font-size: 1.35rem;
}

.category-panel p,
.info-card p,
.content-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #18332d, #2a554a 72%);
  color: #fff;
  box-shadow: 0 30px 60px rgba(30, 47, 42, 0.18);
}

.cta-banner h2 {
  margin: 0.7rem 0 0;
  max-width: 34rem;
  line-height: 1.15;
}

.cta-banner .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 138px 0 72px;
}

.page-hero-compact {
  padding-bottom: 48px;
}

.filter-panel {
  border-radius: 28px;
}

.results-meta {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.filter-pill {
  color: var(--brand);
  background: rgba(31, 107, 91, 0.08);
  border: 1px solid rgba(31, 107, 91, 0.12);
}

.product-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-media {
  position: relative;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(236, 227, 211, 0.7), rgba(255, 255, 255, 0.28));
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(24, 51, 45, 0.84);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.product-body {
  padding: 1.25rem;
}

.product-title {
  font-size: 1.08rem;
  line-height: 1.45;
}

.product-description {
  min-height: 54px;
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.1rem;
}

.product-price,
.detail-price {
  font-family: "Sora", sans-serif;
}

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

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(197, 123, 73, 0.14);
  color: #a45f30;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
}

.product-actions .btn {
  flex: 1;
}

.product-detail-shell {
  min-height: 320px;
}

.product-detail-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.product-detail-image {
  height: 100%;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #efe6d6, #fffdfa);
}

.product-detail-image img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.detail-price {
  font-size: 2rem;
}

.detail-description {
  color: var(--text-soft);
  line-height: 1.85;
}

.detail-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.detail-points div,
.feature-list-item,
.auth-point {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(246, 239, 229, 0.82);
  border: 1px solid rgba(24, 51, 45, 0.05);
}

.detail-points div {
  color: var(--text-soft);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.quantity-control button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 107, 91, 0.08);
  color: var(--brand);
  font-weight: 700;
}

.quantity-control input {
  width: 48px;
  border: 0;
  text-align: center;
  background: transparent;
  font-weight: 700;
}

.quantity-control input:focus {
  outline: none;
}

.custom-input {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding-left: 1rem;
  padding-right: 1rem;
}

.custom-input:focus {
  border-color: rgba(31, 107, 91, 0.28);
  box-shadow: 0 0 0 4px rgba(31, 107, 91, 0.08);
}

.empty-state,
.empty-inline {
  padding: 2.2rem;
  text-align: center;
  border-radius: 26px;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(24, 51, 45, 0.08);
}

.cart-row:last-child,
.checkout-item:last-child,
.orders-table tr:last-child td {
  border-bottom: 0;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-thumb {
  width: 82px;
  height: 82px;
  padding: 0.65rem;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #efe7d9, #fffdfa);
}

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

.summary-card hr {
  margin: 1rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
  color: var(--text-soft);
}

.summary-row strong {
  color: var(--text);
}

.summary-total {
  font-size: 1.08rem;
  margin-bottom: 0;
}

.checkout-items,
.feature-list,
.auth-points {
  display: grid;
  gap: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(24, 51, 45, 0.08);
}

.auth-feature-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(197, 123, 73, 0.18), transparent 28%),
    linear-gradient(135deg, #18332d, #245246);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.auth-feature-card h1 {
  margin: 1rem 0;
  line-height: 1.08;
}

.auth-feature-card p,
.auth-point span {
  color: rgba(255, 255, 255, 0.76);
}

.auth-point strong,
.feature-list-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.feature-list-item span {
  color: var(--text-soft);
  line-height: 1.7;
}

.tab-switcher {
  display: inline-flex;
  padding: 0.35rem;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(31, 107, 91, 0.08);
}

.tab-switch {
  min-width: 110px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
}

.tab-switch.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 14px 24px rgba(31, 107, 91, 0.18);
}

.form-message {
  min-height: 24px;
  color: var(--text-soft);
}

.form-message.is-error {
  color: #cf4b30;
}

.form-message.is-success {
  color: #1f6b5b;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 1rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.status-badge {
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(31, 107, 91, 0.12);
  color: #1f6b5b;
  font-size: 0.78rem;
  font-weight: 700;
}

.skeleton-card {
  overflow: hidden;
}

.skeleton-block {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(30, 47, 42, 0.08);
}

.skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: shimmer 1.25s infinite;
}

.skeleton-media {
  height: 220px;
}

.skeleton-line-lg {
  width: 74%;
  height: 20px;
}

.skeleton-line-md {
  width: 92%;
  height: 14px;
}

.skeleton-line-sm {
  width: 48%;
  height: 14px;
}

.toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1080;
  display: grid;
  gap: 0.75rem;
}

.toast-card {
  min-width: 280px;
  max-width: 360px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 20px 38px rgba(30, 47, 42, 0.16);
  animation: slideIn 0.25s ease;
}

.toast-card.success {
  background: linear-gradient(135deg, #1f6b5b, #174d42);
}

.toast-card.error {
  background: linear-gradient(135deg, #d9485f, #b42318);
}

.footer-shell {
  margin-top: 2rem;
  background: linear-gradient(180deg, #18332d, #142823);
  color: rgba(255, 255, 255, 0.82);
}

.footer-top {
  padding: 4rem 0 2.5rem;
}

.footer-brand {
  max-width: 24rem;
}

.footer-brand p,
.footer-links a,
.footer-note,
.footer-bottom small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.35rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    padding-top: 1rem;
  }

  .nav-menu.show {
    display: block;
  }

  .nav-action-row {
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .nav-menu-row {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links-cluster {
    display: grid;
    gap: 0.35rem;
    padding: 0.6rem;
    border-radius: 22px;
  }

  .nav-link-custom {
    min-height: 44px;
  }

  .nav-action-row {
    justify-content: stretch;
  }

  .nav-action-row > * {
    width: 100%;
  }

  .language-trigger,
  .nav-account-btn,
  .cart-pill {
    width: 100%;
    justify-content: center;
  }

  .language-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-product-stage {
    grid-template-columns: 1fr;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 767.98px) {
  .page-shell {
    padding-top: 94px;
  }

  .hero-section,
  .page-hero {
    padding-top: 120px;
  }

  .section-space {
    padding: 72px 0;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .modern-showcase,
  .product-detail-card,
  .auth-feature-card,
  .cta-banner {
    border-radius: 24px;
  }

  .product-actions {
    flex-direction: column;
  }

  .toast-stack {
    left: 1rem;
    right: 1rem;
  }

  .toast-card {
    min-width: 0;
    max-width: none;
  }
}
