:root {
  --bg: #f9f4f2;
  --surface: #ffffff;
  --surface-alt: #f3e4e1;
  --primary: #a06a6a;
  --accent: #c9a227;
  --text: #382b2b;
  --muted: #7f6764;
  --border: rgba(160, 106, 106, 0.18);
  --shadow: 0 24px 60px rgba(71, 44, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(230, 207, 203, 0.8), transparent 28%),
    linear-gradient(180deg, #fffdfc 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 12%, rgba(201, 162, 39, 0.08), transparent 18%),
    radial-gradient(circle at 12% 78%, rgba(160, 106, 106, 0.08), transparent 20%);
  z-index: -1;
}

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

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

.site-header,
.site-footer,
.page-shell,
.hero,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  min-height: 112px;
  column-gap: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
  backdrop-filter: blur(14px);
  border-radius: 0 0 26px 26px;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.78), transparent);
}

.brand,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  align-self: center;
  padding: 4px 0;
}

.brand-logo-image {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(4px);
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 0.84rem;
  color: rgba(127, 103, 100, 0.9);
  align-items: center;
  letter-spacing: 0.03em;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.main-nav a:hover {
  color: var(--primary);
  opacity: 0.92;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: rgba(201, 162, 39, 0.95);
  transition: width 0.22s ease, left 0.22s ease;
}

.main-nav a:hover::after {
  left: 0;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 32px 0 72px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.hero-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(160, 106, 106, 0.16);
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
}

.hero-floating-card {
  position: absolute;
  left: -24px;
  bottom: 26px;
  max-width: 280px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-floating-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.92;
  margin: 12px 0 16px;
}

.hero-copy p,
.testimonial-card p,
.summary-card,
label,
input,
select,
textarea,
button {
  font-size: 0.98rem;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  font-size: 0.76rem;
}

.hero-image img,
.product-card img,
.gallery img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-actions,
.filter-bar,
.inline-field {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.filter-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: 0.25s ease;
  background: transparent;
  color: var(--text);
  font-weight: 500;
}

.filter-button {
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.button.primary,
.filter-button.active {
  background: linear-gradient(135deg, var(--primary), #bb8b8b);
  color: #fff;
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
}

.button:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.button:active,
.filter-button:active {
  transform: translateY(0);
}

.section {
  padding: 32px 0 72px;
}

.section.compact {
  padding-top: 18px;
}

.section-heading {
  margin-bottom: 28px;
  position: relative;
}

.section-heading h1,
.section-heading h2 {
  max-width: 12ch;
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.9), transparent);
}

.catalog-toolbar {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.compact-toolbar {
  gap: 18px;
}

.catalog-caption {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.sort-select {
  min-width: 170px;
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-grid-tight {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

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

.product-card,
.summary-card,
.testimonial-card,
.admin-card,
.feedback-box,
.metric-card,
.cart-item,
.option-row,
.admin-table,
.pix-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.product-card {
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(71, 44, 44, 0.16);
  border-color: rgba(160, 106, 106, 0.28);
}

.product-card img {
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.product-card-content {
  padding: 20px 20px 22px;
}

.product-card-link {
  display: block;
  color: inherit;
}

.installment-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.mobile-buy-now {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  padding: 11px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  color: #8a6b10;
  font-size: 0.78rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-warning {
  background: rgba(160, 106, 106, 0.14);
  color: var(--primary);
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
}

.product-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.product-card-compact .product-card-content {
  padding: 14px 14px 16px;
}

.product-card-compact h3 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.product-card-compact .price-row {
  margin: 6px 0 8px;
}

.product-card-compact .price-row strong {
  font-size: 1rem;
}

.product-card-compact .old-price {
  font-size: 0.8rem;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 14px 0 18px;
}

.price-row strong {
  font-size: 1.16rem;
}

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

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

.testimonial-card,
.summary-card,
.admin-card,
.feedback-box,
.metric-card,
.pix-card {
  padding: 24px;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  margin-top: 12px;
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer strong {
  color: var(--primary);
  letter-spacing: 0.08em;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--primary);
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(56, 43, 43, 0.74));
  color: #fff;
}

.collection-overlay h3 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: 0.05em;
}

.trust-grid-home {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f3e4e1);
  border: 1px solid rgba(160, 106, 106, 0.22);
  box-shadow: 0 18px 42px rgba(71, 44, 44, 0.18);
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(71, 44, 44, 0.22);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(56, 43, 43, 0.28);
  backdrop-filter: blur(8px);
}

.modal-card {
  width: min(560px, 100%);
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(71, 44, 44, 0.2);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.product-gallery-shell {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
}

.product-thumbs {
  display: grid;
  gap: 12px;
}

.thumb-button {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumb-button.active {
  border-color: rgba(160, 106, 106, 0.45);
  transform: translateY(-2px);
}

.thumb-button img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery-main {
  position: sticky;
  top: 132px;
}

.main-product-image {
  width: 100%;
  min-height: 720px;
  object-fit: cover;
}

.selectors {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.selector-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.size-guide-trigger {
  border: 0;
  background: transparent;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  cursor: pointer;
}

.chip-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  min-width: 56px;
  text-align: center;
}

.chip.active {
  background: var(--surface-alt);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(160, 106, 106, 0.14);
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.cart-items,
.checkout-form,
.admin-panels {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.cart-item img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
}

.summary-line,
.order-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.checkout-form,
.admin-login,
.admin-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 24px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label,
fieldset {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  color: var(--text);
}

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

.option-row,
.metric-card {
  padding: 16px 18px;
}

.payment-section {
  display: grid;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.feedback-box.success {
  border-color: rgba(54, 124, 76, 0.35);
  color: #28573a;
}

.feedback-box.error {
  border-color: rgba(161, 54, 54, 0.28);
  color: #892e2e;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

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

.management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.section-minihead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-minihead h3 {
  margin: 0;
}

.export-link {
  white-space: nowrap;
}

.stack-form {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.reports-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

#customers-table span {
  color: var(--muted);
  font-size: 0.82rem;
}

.upload-field {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px dashed rgba(160, 106, 106, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.upload-field input[type="file"] {
  padding: 0;
  border: 0;
  background: transparent;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.image-preview-grid img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.admin-table-wrap {
  margin-top: 28px;
}

.admin-table {
  overflow-x: auto;
}

.admin-table table {
  min-width: 760px;
}

#customers-table input,
#customers-table textarea,
#customers-table select {
  min-width: 140px;
}

#customers-table textarea {
  min-height: 72px;
}

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

th,
td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pix-card img {
  width: min(240px, 100%);
  margin: 18px auto;
}

.floating-product-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 28px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(71, 44, 44, 0.18);
  backdrop-filter: blur(18px);
  z-index: 40;
}

.floating-product-copy,
.floating-product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.floating-product-copy img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
}

.floating-product-copy div {
  display: grid;
  gap: 3px;
}

.floating-product-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.floating-product-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-installment-note {
  margin: -2px 0 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.trust-card,
.measure-guide {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trust-card {
  padding: 18px;
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.trust-card p,
.measure-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.measure-guide {
  padding: 22px;
  margin: 26px 0 0;
}

.measure-guide-header {
  margin-bottom: 16px;
}

.measure-guide-header h3 {
  margin: 0 0 6px;
}

.measure-guide-table {
  overflow-x: auto;
}

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

.measure-guide th,
.measure-guide td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(160, 106, 106, 0.12);
}

.measure-guide th {
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero,
.section,
.site-footer {
  animation: fadeRise 0.55s ease both;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .admin-panels,
  .management-grid,
  .collection-grid,
  .product-grid,
  .testimonials,
  .metrics-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    column-gap: 20px;
    border-radius: 0 0 20px 20px;
  }

  .hero-floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .reports-summary {
    grid-template-columns: 1fr;
  }

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

  .floating-product-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-product-actions {
    width: 100%;
  }

  .floating-product-actions .button {
    flex: 1;
    justify-content: center;
  }

  .product-gallery-shell {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-main {
    position: static;
  }

  .main-product-image {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .brand-logo-image {
    width: 140px;
    transform: translateY(0);
  }

  .site-header,
  .section,
  .page-shell {
    width: min(100%, calc(100% - 20px));
  }

  .admin-card,
  .checkout-form,
  .admin-login {
    padding: 18px;
    border-radius: 20px;
  }

  .modal-card {
    padding: 18px;
    border-radius: 20px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .metric-card {
    padding: 14px;
  }

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

  .stack-form {
    gap: 10px;
  }

  .admin-table {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .admin-table table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table table {
    min-width: 0;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    margin-bottom: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .admin-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(160, 106, 106, 0.08);
    text-align: left;
  }

  .admin-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .admin-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .admin-table td .button,
  .admin-table td select,
  .admin-table td input,
  .admin-table td textarea {
    width: 100%;
  }

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

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

  .hero-copy h1,
  .section-heading h1,
  .section-heading h2 {
    font-size: 2.4rem;
  }

  .catalog-grid-tight {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mobile-buy-now {
    display: inline-flex;
  }
}
