:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf8f4;
  --card: #ffffff;
  --text: #231611;
  --muted: #6f5c50;
  --brown: #6f3f22;
  --brown-dark: #2b150d;
  --border: #eadfd5;
  --image-bg: #f1e8df;
  --shadow: 0 22px 60px rgba(43, 21, 13, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, #fffaf4 0, transparent 34%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  color: var(--text);
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: var(--brown-dark);
}

.top a {
  color: #fff;
  text-decoration: none;
  margin-right: 16px;
  font-weight: 700;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px;
}

.hero {
  max-width: 760px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -1.2px;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 24px;
}

button,
.button {
  display: inline-block;
  border: 0;
  background: var(--brown);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(111, 63, 34, 0.18);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.card,
.order {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 245px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, #fffaf5 0, #f1e6db 72%);
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid #eaded3;
}

.product-media .img {
  width: 100%;
  height: 100%;
}

.img {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d8c2a6, #7b4a2b);
}

.product-image {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
}

.product-body {
  flex: 1;
}

.product-body h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.product-body p {
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}

.product-buy {
  margin-top: 24px;
}

.product-buy strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.product-buy form {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
}

.product-buy input {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid #d6c4b4;
  border-radius: 12px;
}

.product-buy button {
  width: 100%;
  margin: 0;
  padding: 13px 14px;
  border-radius: 12px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #d0c1b4;
  border-radius: 10px;
}

.form label {
  display: block;
  margin-bottom: 16px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.footer {
  color: var(--muted);
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

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

/* Premium compact tuning */
.container {
  padding-top: 34px;
}

.hero {
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  max-width: 840px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.grid {
  gap: 24px;
}

.product-card {
  min-height: 455px;
  padding: 20px;
}

.product-media {
  height: 215px;
  margin-bottom: 18px;
}

.product-image {
  height: 230px;
}

.product-body h2 {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.product-body p {
  font-size: 16px;
  line-height: 1.28;
}

.product-buy {
  margin-top: 20px;
}

.product-buy form {
  grid-template-columns: 72px 1fr;
}

.product-buy button {
  font-size: 14px;
}

.trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 28px;
  color: var(--muted);
  font-weight: 700;
}

.trust-strip span {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  padding: 9px 13px;
  border-radius: 999px;
}

.product-media {
  text-decoration: none;
}

.product-body h2 a {
  color: var(--text);
  text-decoration: none;
}

.product-body h2 a:hover {
  text-decoration: underline;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.product-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top,
    #faf5ef 0%,
    #eee1d4 100%);
  border: 1px solid var(--border);
}

.product-detail-media img {
  max-width: 86%;
  max-height: 420px;
  object-fit: contain;
}

.product-detail-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.product-detail-content .lead {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.35;
}

.product-detail-price {
  font-size: 28px;
  font-weight: 900;
  margin: 28px 0 14px;
}

.product-detail-buy {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  max-width: 420px;
}

.product-detail-buy input {
  margin: 0;
}

.product-detail-buy button {
  width: 100%;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

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

  .product-detail-buy {
    grid-template-columns: 1fr;
  }
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-badges,
.product-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-badges {
  margin-bottom: 18px;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  background: #f5eee7;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.product-trust {
  margin: 26px 0 22px;
}

.product-trust div {
  flex: 1 1 145px;
  background: #fbf7f2;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.product-trust strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.product-trust span {
  color: var(--muted);
  font-size: 14px;
}

.product-payment-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.hero-immersive {
  position: relative;
  max-width: none;
  min-height: 460px;
  display: flex;
  align-items: center;
  border-radius: 32px;
  padding: 54px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-immersive .hero-copy {
  max-width: 620px;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
}

.hero-logo {
  position: absolute;
  top: 48px;
  left: 54px;
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
}

.hero-immersive h1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.hero-immersive p {
  color: rgba(255,255,255,.82);
  margin-bottom: 54px;
}

.hero-immersive .button {
  background: #f4eee8;
  color: var(--brown-dark);
  margin-top: auto;
}

@media (max-width: 900px) {
  .hero-immersive {
    min-height: 420px;
    padding: 28px;
    background-position: center;
  }
}

.breadcrumb {
  margin: 0 0 22px;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 999px;
}

.breadcrumb a:hover {
  background: #fff;
  color: var(--text);
  text-decoration: none;
}

/* Premium topbar */
.top {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(43, 21, 13, 0.08);
  backdrop-filter: blur(12px);
}

.top .brand {
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-nav a {
  color: var(--muted);
  margin-right: 0;
  padding: 9px 12px;
  border-radius: 999px;
}

.top-nav a:hover {
  background: #fff;
  color: var(--text);
}

.top-nav .cart-link {
  background: var(--brown-dark);
  color: #fff;
  padding: 10px 16px;
}

.top-nav .cart-link:hover {
  background: var(--brown);
  color: #fff;
}

@media (max-width: 720px) {
  .top {
    margin: 12px 12px 0;
    padding: 12px 14px;
  }

  .top .brand {
    font-size: 14px;
  }

  .top-nav a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

.brand-image {
  display: flex;
  align-items: center;
}

.brand-image img {
  display: block;
  height: auto;
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 720px) {
  .brand-image img {
    max-height: 34px;
  }
}
/* Storefront footer */
.site-footer {
  margin-top: 28px;
  padding: 0 0 34px;
}

.site-footer-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(43, 21, 13, 0.07);
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 76px;
  object-fit: contain;
}

.site-footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5px;
}

.site-footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

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

.site-footer-highlight {
  background: #fbf7f2;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
}

.site-footer-highlight span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .45px;
  margin-bottom: 4px;
}

.site-footer-highlight strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 18px;
}

.site-footer-contact,
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer-contact a,
.site-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.site-footer-contact span {
  color: var(--muted);
}

.site-footer-contact a:hover,
.site-footer-links a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .site-footer-top {
    grid-template-columns: 1fr;
  }

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

  .site-footer-bottom {
    flex-direction: column;
  }
}


.product-description {
  white-space: pre-line;
  line-height: 1.45;
  color: var(--text);
  font-size: 16px;
  margin: 18px 0 0;
}

.product-description p {
  margin: 0 0 12px;
}

.product-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4eee8;
  color: var(--brown-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.related-products {
  margin-top: 34px;
}

.related-products h2 {
  font-size: 28px;
  margin: 0 0 18px;
}

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

.related-product-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(43, 21, 13, 0.06);
}

.related-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  border-radius: 18px;
  background: #f6eee6;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.related-product-media img {
  max-width: 92%;
  max-height: 135px;
  object-fit: contain;
}

.related-product-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.related-product-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.related-product-card p {
  color: var(--muted);
  line-height: 1.35;
  margin: 0 0 12px;
}

.related-product-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.related-product-button {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Related products button alignment */
.related-product-card {
  display: flex;
  flex-direction: column;
}

.related-product-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-product-card .related-product-button,
.related-product-card .product-status-badge {
  margin-top: auto;
  align-self: flex-start;
}

.admin-order-card {
  margin-bottom: 18px;
}

.admin-order-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.admin-order-header h2 {
  margin: 0 0 6px;
}

.admin-order-header p {
  margin: 0;
  color: var(--muted);
}

.admin-order-header strong {
  font-size: 22px;
  white-space: nowrap;
}

.admin-order-customer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-order-customer h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.admin-order-customer p {
  margin: 0 0 5px;
  color: var(--muted);
}

.admin-order-items {
  width: 100%;
  border-collapse: collapse;
}

.admin-order-items th,
.admin-order-items td {
  text-align: left;
  padding: 10px 8px;
  border-top: 1px solid var(--border);
}

.admin-order-items th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .35px;
}

@media (max-width: 800px) {
  .admin-order-header {
    flex-direction: column;
  }

  .admin-order-customer {
    grid-template-columns: 1fr;
  }

  .admin-order-items {
    font-size: 14px;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: start;
}

.checkout-form h2 {
  margin: 24px 0 14px;
}

.checkout-form h2:first-child {
  margin-top: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.checkbox-label input {
  width: auto;
  margin: 0;
}

.checkout-summary {
  position: sticky;
  top: 24px;
}

.checkout-summary h2 {
  margin-top: 0;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.checkout-summary-row span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  font-size: 22px;
}

.checkout-info {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.checkout-info p {
  margin: 0 0 10px;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

/* =======================================================
   CART
   ======================================================= */

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 14px;
}

.cart-product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: #f6eee6;
  border: 1px solid var(--border);
  overflow: hidden;
}

.cart-product-thumb img {
  max-width: 92px;
  max-height: 92px;
  object-fit: contain;
}

.cart-product-info strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.cart-product-info span,
.cart-row span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 15px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty form,
.cart-remove-form {
  margin: 0;
}

.cart-qty button,
.cart-row form button {
  padding: 9px 12px;
  border-radius: 12px;
  box-shadow: none;
}

.cart-line-total {
  min-width: 94px;
  text-align: right;
  font-size: 20px;
  font-weight: 900;
}

.cart-discount,
.cart-total {
  margin-top: 18px;
  padding: 22px;
}

.cart-discount h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 6px;
}

.cart-discount-help {
  color: var(--muted);
  margin: 0 0 14px;
}

.cart-discount-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cart-discount-form input {
  margin: 0;
}

.cart-discount-ok {
  color: #2f6f3e;
  font-weight: 900;
}

.cart-discount-error {
  color: #9b2f2f;
  font-weight: 900;
}

.cart-total .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-continue {
  margin-top: 16px;
}

.cart-continue a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.cart-continue a:hover {
  text-decoration: underline;
}

.checkout-summary-discount {
  color: #2f6f3e;
}

.admin-order-discount {
  background: #fbf7f2;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 16px;
}

@media (max-width: 760px) {
  .cart-row {
    grid-template-columns: 90px 1fr;
  }

  .cart-product-thumb {
    width: 82px;
    height: 82px;
  }

  .cart-product-thumb img {
    max-width: 68px;
    max-height: 68px;
  }

  .cart-qty,
  .cart-line-total,
  .cart-remove-form {
    grid-column: 2;
  }

  .cart-line-total {
    text-align: left;
  }

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


.invoice-nip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.invoice-nip-row input {
  margin: 0;
}

.invoice-nip-row button {
  white-space: nowrap;
}

.gus-fetch-status {
  margin: -6px 0 10px;
  color: #2f6f3e;
  font-weight: 800;
}

.gus-fetch-status.error {
  color: #9b2f2f;
}

@media (max-width: 760px) {
  .invoice-nip-row {
    grid-template-columns: 1fr;
  }
}

.invoice-fields {
  display: none;
  margin-top: 14px;
}

.invoice-fields.is-visible {
  display: block;
}

.admin-margin-box {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  margin: 18px 0;
}

.admin-margin-box h2 {
  margin-top: 0;
}

.admin-margin-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.admin-margin-results p {
  background: #fbf7f2;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin: 0;
}

.admin-margin-results strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.admin-margin-note {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .admin-margin-results {
    grid-template-columns: 1fr;
  }
}

.delivery-options {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.delivery-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.delivery-option input {
  width: auto;
  margin: 0;
}

.delivery-option small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.delivery-free-note {
  color: var(--muted);
  font-weight: 800;
}

.parcel-point-box {
  display: none;
  margin: 14px 0 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.parcel-point-box.is-visible {
  display: block;
}

.parcel-point-box h3 {
  margin-top: 0;
}

.parcel-point-selected {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

#inpost-geowidget {
  display: block;
  min-height: 460px;
}

/* InPost Geowidget layout fix */
.parcel-point-box {
  overflow: visible;
}

.parcel-point-box.is-visible {
  display: block;
}

#inpost-geowidget {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 650px;
  min-height: 650px;
  overflow: visible;
}

@media (max-width: 900px) {
  #inpost-geowidget {
    height: 620px;
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  #inpost-geowidget {
    height: 560px;
    min-height: 560px;
  }
}

.parcel-point-error {
  display: none;
  background: #fff2f2;
  border: 1px solid #e3b8b8;
  border-radius: 12px;
  color: #9b2f2f;
  font-weight: 900;
  padding: 10px 12px;
  margin: 0 0 12px;
}

.parcel-point-error.is-visible {
  display: block;
}

.thanks-page {
  display: grid;
  gap: 20px;
}

.thanks-card h1 {
  margin-top: 0;
}

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

.thanks-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.thanks-summary-row:first-of-type {
  padding-top: 0;
}

.thanks-total {
  font-size: 22px;
  font-weight: 900;
}

.thanks-discount {
  color: #2f6f3e;
}

.payment-box {
  background: #fbf7f2;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
}

.payment-box h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .thanks-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   ADMIN DASHBOARD
   ======================================================= */

.admin-dashboard {
  display: grid;
  gap: 28px;
}

.admin-dashboard-header {
  max-width: 820px;
}

.admin-eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.admin-dashboard-header h1 {
  margin: 0 0 10px;
}

.admin-dashboard-header p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.admin-dashboard-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
}

.admin-dashboard-card-wide {
  min-height: 260px;
}

.admin-dashboard-card-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-dashboard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: #f4eee8;
  border: 1px solid var(--border);
  color: var(--brown);
  font-size: 30px;
  font-weight: 900;
}

.admin-dashboard-card h2 {
  margin: 2px 0 10px;
}

.admin-dashboard-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.admin-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.admin-dashboard-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-dashboard-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(111, 63, 34, .42);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  color: var(--brown);
  text-decoration: none;
  font-weight: 900;
  box-shadow: none;
}

.admin-dashboard-button:hover {
  background: #fff;
  color: var(--brown-dark);
}

.admin-dashboard-button-primary {
  width: 100%;
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  box-shadow: 0 10px 22px rgba(111, 63, 34, 0.16);
}

.admin-dashboard-button-primary:hover {
  background: var(--brown-dark);
  color: #fff;
}

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

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

@media (max-width: 720px) {
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-card {
    min-height: auto;
    padding: 22px;
  }

  .admin-dashboard-card-head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .admin-dashboard-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    font-size: 24px;
  }

  .admin-dashboard-actions,
  .admin-dashboard-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.hero-copy p {
  white-space: pre-line;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page h2 {
  margin-top: 28px;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-content {
  white-space: pre-line;
}

/* =======================================================
   CONTACT / WHATSAPP / WHOLESALE BAR
   ======================================================= */

.wholesale-bar {
  display: block;
  max-width: 1180px;
  margin: 14px auto -4px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brown-dark);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(43, 21, 13, .12);
}

.wholesale-bar:hover {
  background: var(--brown);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .24);
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
}

.whatsapp-float-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .wholesale-bar {
    margin: 10px 12px -2px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.25;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-icon {
    width: 32px;
    height: 32px;
  }
}

/* =======================================================
   MOBILE STOREFRONT OVERFLOW FIX
   ======================================================= */

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 28px 14px;
    overflow-x: hidden;
  }

  .wholesale-bar,
  .top,
  .hero-immersive,
  .grid,
  .product-card,
  .site-footer,
  .site-footer-panel {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .wholesale-bar {
    display: block;
    margin: 10px 14px 12px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .top {
    margin: 0 14px 24px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand-image {
    min-width: 0;
  }

  .brand-image img {
    max-width: 145px;
    max-height: 30px;
  }

  .top-nav {
    min-width: 0;
    gap: 6px;
  }

  .top-nav a {
    font-size: 14px;
    padding: 7px 9px;
    white-space: nowrap;
  }

  .top-nav .cart-link {
    padding: 8px 12px;
  }

  .hero-immersive {
    min-height: 520px;
    margin: 0;
    padding: 26px 22px;
    border-radius: 24px;
    background-position: center right;
  }

  .hero-immersive .hero-copy {
    max-width: 100%;
    min-height: 440px;
    padding-top: 120px;
  }

  .hero-logo {
    top: 34px;
    left: 22px;
    max-width: 150px;
  }

  .hero-immersive h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.7px;
  }

  .hero-immersive p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  .hero-immersive .button {
    margin-top: 18px;
  }

  .product-card {
    padding: 18px;
  }

  .product-image {
    height: 220px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 82px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-icon {
    width: 30px;
    height: 30px;
  }
}

.admin-order-header-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.admin-danger-button {
  background: #9b2f2f;
  color: #fff;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: none;
}

.admin-danger-button:hover {
  background: #7f2424;
}

@media (max-width: 800px) {
  .admin-order-header-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.admin-order-status-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-order-status-form select {
  min-width: 130px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
}

.admin-order-status-form button {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: none;
}

.order-status-badge {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: #f4eee8;
  color: var(--brown-dark);
}

.order-status-paid {
  background: #e7f6ea;
  color: #2f6f3e;
}

.order-status-sent {
  background: #e8f0fb;
  color: #24528f;
}

.order-status-cancelled {
  background: #fff2f2;
  color: #9b2f2f;
}

@media (max-width: 800px) {
  .admin-order-header-actions {
    flex-wrap: wrap;
  }

  .admin-order-status-form {
    width: 100%;
  }

  .admin-order-status-form select {
    flex: 1;
  }
}

.site-footer-links-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.site-footer-powered {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  opacity: .78;
}

.site-footer-powered a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
}

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

@media (max-width: 900px) {
  .site-footer-links-wrap {
    align-items: flex-start;
  }
}


.pagespoon-powered {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  opacity: .8;
  line-height: 1.6;
}

.pagespoon-powered a {
  color: inherit;
  text-decoration: none;
}

.pagespoon-powered a:hover {
  color: var(--text);
}

.pagespoon-powered span {
  margin: 0 8px;
}


.admin-orders-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.admin-orders-title h1 {
  margin-bottom: 6px;
}

.admin-orders-title p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.admin-order-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.admin-order-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(43, 21, 13, .06);
}

.admin-order-filter span {
  font-weight: 900;
}

.admin-order-filter strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4eee8;
  color: var(--brown-dark);
  font-size: 14px;
}

.admin-order-filter:hover,
.admin-order-filter.is-active {
  background: var(--brown-dark);
  color: #fff;
}

.admin-order-filter:hover strong,
.admin-order-filter.is-active strong {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.admin-order-active-filter {
  margin: -8px 0 22px;
  color: var(--muted);
}

.admin-order-active-filter a {
  margin-left: 10px;
  color: var(--brown);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .admin-order-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .admin-order-filters {
    grid-template-columns: 1fr;
  }

  .admin-order-filter {
    min-height: 52px;
  }
}
