body {
  background: #FDFCF8;
  color: #1B3022;
}

body:not(.ops-app) {
  background-color: #FDFCF8;
  background-image:
    radial-gradient(ellipse at 6% 0%, rgba(232, 240, 229, 0.9), transparent 42%),
    radial-gradient(ellipse at 96% 8%, rgba(220, 232, 214, 0.55), transparent 36%);
}

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

.glass-card {
  background: #F7F4EE;
  border: 1px solid #E3EAD8;
  border-radius: 1.5rem;
  box-shadow: 0 10px 28px rgba(27, 48, 34, 0.06);
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  border-radius: 9999px;
  background: #1B3022;
  color: #FDFCF8;
  padding: 0.82rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(27, 48, 34, 0.18);
  transition: transform 160ms ease, filter 160ms ease;
}

.button-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  border-radius: 9999px;
  border: 1px solid #C5D1BE;
  color: #1B3022;
  padding: 0.82rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: #FDFCF8;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button-secondary:hover {
  background: #E8F0E5;
  transform: translateY(-1px);
}

.skin-chip,
.provider-chip,
.lang-chip {
  border-radius: 9999px;
  border: 1px solid #C5D1BE;
  background: #E8F0E5;
  color: #3D5229;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
}

.lang-chip-active {
  background: #1B3022;
  color: #FDFCF8;
  border-color: #1B3022;
  box-shadow: none;
}

.social-icon-badge,
.social-icon-button,
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid #C5D1BE;
  background: #FDFCF8;
  color: #1B3022;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease;
}

.social-icon-badge:hover,
.social-icon-button:hover,
.social-icon-link:hover {
  transform: translateY(-2px);
  background: #E8F0E5;
  color: #3D5229;
}

.social-icon-button {
  width: 3.25rem;
  height: 3.25rem;
}

.social-icon-badge svg,
.social-icon-button svg,
.social-icon-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.mobile-nav-dropdown {
  position: relative;
  display: inline-flex;
}

.mobile-nav-summary {
  cursor: pointer;
  list-style: none;
}

.mobile-nav-summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  width: min(16rem, calc(50vw + 0.5rem));
  min-width: 10.5rem;
  max-width: calc(100vw - 2rem);
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0.65rem;
  padding: 0.25rem 0.35rem;
}

.mobile-nav-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 0;
  background: #E8F0E5;
  color: #1B3022;
  padding: 0.72rem 0.85rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.mobile-nav-link:hover {
  color: #3D5229;
}

.mobile-nav-chevron {
  transition: transform 160ms ease;
}

.mobile-nav-dropdown[open] .mobile-nav-chevron {
  transform: rotate(180deg);
}

.page-shell {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 1280px;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 1rem 4rem;
}

@media (min-width: 640px) {
  .page-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 768px) {
  .button-primary,
  .button-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .page-shell {
    gap: 3rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

.section-title {
  font-family: "Playfair Display", "EB Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: #1B3022;
  font-weight: 600;
}

.section-subtitle {
  color: #3D5229;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.empty-state {
  border-radius: 1.5rem;
  border: 1px solid #E3EAD8;
  background: #F7F4EE;
  padding: 2rem;
  color: #4A5C48;
  box-shadow: none;
}

.input-field,
.textarea-field,
.select-field {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #C5D1BE;
  background: #FDFCF8;
  color: #1B3022;
  padding: 0.9rem 1rem;
  outline: none;
  box-shadow: none;
}

.input-field:focus,
.textarea-field:focus,
.select-field:focus {
  border-color: #3D5229;
  box-shadow: 0 0 0 3px rgba(61, 82, 41, 0.12);
}

.hero-botanical {
  position: relative;
  overflow: hidden;
  display: grid;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 78% 46%, rgba(196, 214, 176, 0.55), transparent 42%),
    #F7F4EE;
  box-shadow: 0 12px 32px rgba(27, 48, 34, 0.06);
}

.hero-botanical-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  padding: 2.4rem 1.4rem 2.2rem;
}

.hero-botanical-art {
  position: relative;
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.2rem 1.4rem;
}

.hero-botanical-art img {
  position: relative;
  object-fit: contain;
}

.hero-product-shot {
  width: min(100%, 28rem);
  max-height: 22rem;
}

.hero-leaf-green,
.hero-leaf-dry {
  display: none;
}

.hero-botanical + .page-shell {
  margin-top: 0;
}

.feature-rail {
  display: grid;
  gap: 1.1rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.feature-rail-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  border-radius: 1.5rem;
  padding: 1.2rem 1.1rem;
  background: #F7F4EE;
  border: 1px solid #E3EAD8;
  box-shadow: none;
}

.feature-rail-item + .feature-rail-item {
  border-top: 0;
  padding-top: 1.2rem;
}

.feature-rail-item:nth-child(1),
.feature-rail-item:nth-child(2),
.feature-rail-item:nth-child(3),
.feature-rail-item:nth-child(4) {
  background: #F7F4EE;
}

.feature-icon {
  display: inline-flex;
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #1B3022;
  background: #E8F0E5;
  box-shadow: none;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-rail h3 {
  font-family: "Playfair Display", "EB Garamond", serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1B3022;
}

.feature-rail p {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #4A5C48;
}

.botanical-tile {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #1B3022;
  background: #F7F4EE;
  border: 1px solid #E3EAD8;
  box-shadow: none;
  transition: transform 180ms ease;
}

.botanical-tile:hover {
  transform: translateY(-4px);
}

.botanical-tile--sage,
.botanical-tile--peach,
.botanical-tile--chocolate,
.botanical-tile--yellow,
.botanical-tile--tan,
.botanical-tile--blue,
.botanical-tile--photo {
  background: #E8F0E5;
}

.botanical-tile--tan .botanical-icon,
.botanical-tile--peach .botanical-icon,
.botanical-tile--yellow .botanical-icon {
  color: #3d322b;
}

.botanical-icon {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #FDFCF8;
  color: #1B3022;
  box-shadow: none;
}

.botanical-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.storefront-header {
  border-bottom: 0;
  background: rgba(253, 252, 248, 0.96);
  box-shadow: 0 8px 20px rgba(27, 48, 34, 0.04);
}

.storefront-nav-left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1.5rem;
}

.storefront-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  gap: 0.15rem;
}

.storefront-logo-link {
  display: flex;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.storefront-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(13.75rem, 52vw);
  min-height: 3.4rem;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.storefront-logo-frame--footer {
  width: min(16.5rem, 70vw);
  min-height: 4.2rem;
}

.dashboard-logo-preview {
  width: 18rem;
  min-height: 6.5rem;
  border: 1px solid #E3EAD8;
  border-radius: 1rem;
  padding: 0.75rem;
  background: #FDFCF8;
}

.storefront-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 3.6rem;
  object-fit: contain;
  object-position: left center;
}

.storefront-logo-frame--footer .storefront-logo,
.dashboard-logo-preview .storefront-logo {
  max-height: 5.6rem;
}

.storefront-tagline {
  margin: 0;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.78rem;
  color: #1B3022;
}

.storefront-range-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.9rem;
  padding: 0.7rem 1rem;
  background: #E8F0E5;
  color: #1B3022;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.storefront-range-bar a:hover {
  color: #3D5229;
}

.storefront-brand-mark {
  display: none;
}

.storefront-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 8% 88%, rgba(196, 214, 176, 0.45), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(196, 214, 176, 0.38), transparent 24%),
    #F7F4EE;
  color: #1B3022;
  box-shadow: none;
}

.storefront-footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  text-align: left;
}

.storefront-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.storefront-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .storefront-footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .storefront-footer-meta {
    align-items: flex-end;
    text-align: right;
  }
}

.follow-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1B3022;
}

.follow-heading::after {
  content: "";
  width: 1.4rem;
  height: 1.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D5229' stroke-width='1.6'%3E%3Cpath d='M12 3c4 4 6 7.2 6 10.4A6 6 0 0 1 6 13.4C6 10.2 8 7 12 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.handmade-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  align-self: center;
  width: min(100%, 28rem);
  padding: 0.7rem 1.4rem;
  background: #1B3022;
  color: #FDFCF8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  clip-path: polygon(4% 0, 96% 0, 100% 50%, 96% 100%, 4% 100%, 0 50%);
}

.leaf-mark {
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDFCF8' stroke-width='1.7'%3E%3Cpath d='M12 3c4 4 6 7.2 6 10.4A6 6 0 0 1 6 13.4C6 10.2 8 7 12 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

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

.value-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}

.value-icon {
  display: inline-flex;
  width: 4.4rem;
  height: 4.4rem;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #1B3022;
  border-radius: 9999px;
  color: #1B3022;
}

.value-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.value-icon-item p {
  max-width: 8.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #1B3022;
}

.benefits-bar {
  align-self: center;
  width: min(100%, 42rem);
  padding: 0.85rem 1.6rem;
  background: #E8F0E5;
  color: #1B3022;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
}

.clay-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.5rem;
  padding: 1.4rem 1.6rem;
  background: #E8F0E5;
  box-shadow: none;
}

.cart-count-badge {
  border-radius: 9999px;
  background: #FDFCF8;
  color: #1B3022;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .storefront-logo-frame {
    width: min(11.5rem, 48vw);
    min-height: 2.8rem;
  }

  .storefront-logo {
    max-height: 2.7rem;
  }

  .storefront-tagline {
    font-size: 0.68rem;
  }
}

@media (min-width: 768px) {
  .hero-botanical {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 22rem;
  }

  .hero-botanical-copy {
    padding: 3.2rem 3rem;
  }

  .feature-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    padding: 0;
  }

  .feature-rail-item {
    padding: 1.25rem 1.1rem;
  }

  .feature-rail-item + .feature-rail-item {
    border-left: 0;
    padding-top: 1.25rem;
  }

  .value-icon-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.dashboard-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ops-app {
  background: #f4f7f5;
  color: #12261a;
}

.ops-shell {
  display: flex;
  min-height: 100vh;
}

.ops-sidebar {
  width: 272px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.65rem 1.15rem 1.35rem;
  background: #f7faf8;
  border-right: 1px solid #e8efe9;
}

.ops-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.15rem 0.55rem 0.35rem;
}

.ops-brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3ff754;
  color: #12261a;
}

.ops-brand-mark svg {
  width: 1.05rem;
  height: 1.05rem;
}

.ops-brand-name {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #12261a;
  text-transform: uppercase;
}

.ops-nav {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  flex: 1;
}

.ops-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem 1rem;
  border-radius: 9999px;
  color: #5c6b62;
  font-size: 0.94rem;
  font-weight: 500;
}

.ops-nav-link svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.ops-nav-link:hover {
  background: rgba(63, 247, 84, 0.12);
  color: #12261a;
}

.ops-nav-link.is-active {
  background: #d4f8d4;
  color: #12261a;
  font-weight: 600;
}

.ops-nav-link.hidden {
  display: none;
}

.ops-nav-badge {
  margin-left: auto;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 9999px;
  background: #e11d48;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}

.ops-pro-card {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  border-radius: 1.6rem;
  padding: 1.25rem 1.15rem 1.15rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(63, 247, 84, 0.22), transparent 38%),
    radial-gradient(circle at 8% 88%, rgba(145, 214, 160, 0.18), transparent 44%),
    #1b3d2f;
  color: #f4fff6;
}

.ops-pro-card::after {
  content: "";
  position: absolute;
  right: -1.4rem;
  bottom: -1.6rem;
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  border: 18px solid rgba(63, 247, 84, 0.08);
  pointer-events: none;
}

.ops-pro-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(244, 255, 246, 0.1);
}

.ops-pro-icon svg {
  width: 1rem;
  height: 1rem;
}

.ops-pro-title {
  margin-top: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.ops-pro-copy {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(244, 255, 246, 0.78);
}

.ops-pro-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 0.95rem;
  border-radius: 9999px;
  background: #3ff754;
  color: #12261a;
  padding: 0.48rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.ops-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ops-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.75rem;
  background: #fff;
  border-bottom: 1px solid #e8efe9;
}

.ops-page-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  color: #12261a;
  font-weight: 600;
}

.ops-search {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 9999px;
  background: #f7faf8;
  border: 1px solid #dce8e0;
  padding: 0.55rem 1rem;
  color: #5c6b62;
}

.ops-search svg {
  width: 1.05rem;
  height: 1.05rem;
}

.ops-search input {
  width: 100%;
  background: transparent;
  outline: none;
  color: #12261a;
}

.ops-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.ops-icon-btn {
  position: relative;
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #3d4d44;
}

.ops-icon-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.ops-icon-btn .ops-dot {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #e11d48;
}

.ops-user-copy p:first-child {
  font-weight: 600;
  font-size: 0.9rem;
  color: #12261a;
}

.ops-user-copy p:last-child {
  font-size: 0.72rem;
  color: #5c6b62;
  text-transform: capitalize;
}

.ops-avatar {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #d4f8d4;
  color: #12261a;
  font-size: 0.85rem;
  font-weight: 700;
}

.ops-logout {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #d7e4db;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #12261a;
  text-decoration: none;
}

.ops-menu-toggle {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #d7e4db;
}

.ops-menu-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
}

.ops-content {
  padding: 1.5rem;
}

.ops-content .page-shell {
  max-width: none;
  padding: 0;
  gap: 1.5rem;
}

.ops-app .section-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #12261a;
  font-weight: 600;
}

.ops-app .section-subtitle {
  color: #2f8a3c;
}

.ops-app .input-field:focus,
.ops-app .textarea-field:focus,
.ops-app .select-field:focus {
  border-color: #3ff754;
}

.ops-app .glass-card {
  background: #fff;
  border: 1px solid #e3ece6;
  box-shadow: 0 8px 30px rgba(18, 38, 26, 0.04);
  backdrop-filter: none;
}

.ops-app .input-field,
.ops-app .textarea-field,
.ops-app .select-field {
  background: #f7faf8;
  border: 1px solid #d7e4db;
  box-shadow: none;
  color: #12261a;
  border-radius: 1.25rem;
}

.ops-app .empty-state {
  background: #fff;
  border: 1px solid #e3ece6;
  color: #5c6b62;
  box-shadow: none;
}

.ops-app .button-primary {
  background: #3ff754;
  color: #000;
  box-shadow: none;
  letter-spacing: 0.14em;
  filter: none;
}

.ops-app .button-primary:hover {
  opacity: 0.92;
  transform: none;
}

.ops-app .button-secondary {
  background: #f4f7f5;
  border: 1px solid #d7e4db;
  color: #12261a;
  box-shadow: none;
}

.ops-app .button-secondary:hover {
  border-color: #3ff754;
  color: #12261a;
  background: #f4f7f5;
}

.ops-app .skin-chip,
.ops-app .provider-chip,
.ops-app .lang-chip {
  border: 1px solid rgba(63, 247, 84, 0.28);
  background: rgba(63, 247, 84, 0.12);
  color: #1b3d2f;
  box-shadow: none;
}

.ops-app .text-on-surface {
  color: #12261a;
}

.ops-app .text-on-surface-variant {
  color: #5c6b62;
}

.ops-sidebar-backdrop {
  display: none;
}

@media (min-width: 1024px) {
  .ops-menu-toggle {
    display: none;
  }

  .ops-search {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .ops-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    box-shadow: 8px 0 30px rgba(18, 38, 26, 0.08);
  }

  .ops-app.ops-sidebar-open .ops-sidebar {
    transform: translateX(0);
  }

  .ops-app.ops-sidebar-open .ops-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(18, 38, 26, 0.28);
  }

  .ops-user-copy {
    display: none;
  }
}

.ops-app .gallery-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8efe9;
}

.ops-app .gallery-row img {
  width: 4.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.7rem;
  background: #eef3ef;
}

.ops-app .gallery-row-meta {
  flex: 1;
  min-width: 10rem;
}

.ops-app .gallery-order {
  width: 5.5rem;
}

.vq-flash-host {
  position: fixed;
  top: 5.4rem;
  right: max(1rem, env(safe-area-inset-right));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: min(22.5rem, calc(100vw - 2rem));
  pointer-events: none;
}

.vq-flash {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #c5d1be;
  background: #f7f4ee;
  color: #1b3022;
  box-shadow: 0 16px 32px rgba(27, 48, 34, 0.16);
}

.vq-flash p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.45;
}

.vq-flash-close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.vq-flash-success {
  border-color: #9cbc7a;
  background: #e8f0e5;
}

.vq-flash-error {
  border-color: #c9897a;
  background: #f6e8e3;
}

.vq-flash-warning {
  border-color: #d2c07a;
  background: #f4efd8;
}
