: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;
  font-size: 16px;
}

.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);
}

.checkout-payment-info {
  margin: 18px 0 20px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
}

.checkout-payment-info p {
  margin: 0;
}

.checkout-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.checkout-payment-logos img {
  height: 36px;
  width: auto;
  display: block;
}

.checkout-payment-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

@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-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.thanks-order-number {
  font-size: clamp(72px, 18vw, 160px);
  line-height: .95;
  font-weight: 1000;
  color: var(--green);
  margin: 10px 0 18px;
}

.thanks-eta {
  font-size: 22px;
  margin: 0 0 18px;
}

.thanks-payment {
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 22px;
}

.thanks-payment-paid {
  background: #eefaf3;
  border: 1px solid rgba(0, 170, 93, .28);
}

.thanks-payment-pending {
  background: #fff8e8;
  border: 1px solid rgba(180, 120, 0, .25);
}

.thanks-payment strong {
  font-size: 22px;
}

.thanks-payment p {
  margin: 6px 0 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;
  }
}

/* PickSpoon admin layout v1 */
:root {
  --ps-yellow: #ffc107;
  --ps-black: #111111;
  --ps-black-soft: #1f1f1f;
  --ps-bg: #f5f5f5;
  --ps-success: #22c55e;
  --ps-warning: #f59e0b;
  --ps-danger: #ef4444;
}

.ps-admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: 720px;
  background: var(--ps-bg);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

.ps-admin-sidebar {
  background: linear-gradient(180deg, var(--ps-black), var(--ps-black-soft));
  color: #fff;
  padding: 28px 18px;
}

.ps-admin-brand {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.ps-admin-brand strong {
  font-size: 24px;
}

.ps-admin-brand span {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.ps-admin-nav {
  display: grid;
  gap: 8px;
}

.ps-admin-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 700;
}

.ps-admin-nav a.is-active,
.ps-admin-nav a:hover {
  background: var(--ps-yellow);
  color: #111;
}

.ps-admin-main {
  padding: 34px;
}

.ps-admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.ps-admin-eyebrow {
  margin: 0 0 4px;
  color: #777;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.ps-admin-topbar h1 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -1px;
}

.ps-admin-button {
  background: var(--ps-yellow);
  color: #111;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 900;
}

.ps-order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 12px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.ps-order-tab {
  color: #111;
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.ps-order-tab strong {
  margin-left: 8px;
  background: #eee;
  padding: 3px 8px;
  border-radius: 999px;
}

.ps-order-tab.is-active {
  background: var(--ps-yellow);
}

.ps-active-filter {
  background: #fff8df;
  border: 1px solid #ffe08a;
  padding: 12px 14px;
  border-radius: 14px;
}

.ps-orders-list {
  display: grid;
  gap: 12px;
}

.ps-order-row {
  display: grid;
  grid-template-columns: 120px 1.4fr 1fr 120px 220px;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.ps-order-time strong,
.ps-order-total strong {
  display: block;
  font-size: 20px;
}

.ps-order-time span,
.ps-order-customer span,
.ps-order-meta {
  display: block;
  color: #666;
  font-size: 13px;
}

.ps-order-headline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.ps-order-items {
  display: grid;
  gap: 4px;
}

.ps-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.ps-status-new {
  background: #fee2e2;
  color: #b91c1c;
}

.ps-status-in_progress,
.ps-status-in-progress,
.ps-status-w_trakcie {
  background: #ffedd5;
  color: #c2410c;
}

.ps-status-ready,
.ps-status-gotowe {
  background: #dcfce7;
  color: #15803d;
}

.ps-status-collected,
.ps-status-odebrane {
  background: #e5e7eb;
  color: #374151;
}

.ps-order-actions {
  display: grid;
  gap: 8px;
}

.ps-order-actions form {
  display: flex;
  gap: 8px;
}

.ps-order-actions select {
  min-width: 0;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
}

.ps-order-actions button,
.ps-danger-button {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

.ps-order-actions button {
  background: var(--ps-yellow);
  color: #111;
}

.ps-danger-button {
  background: #fee2e2 !important;
  color: #b91c1c !important;
}

.ps-empty-state {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 28px;
  color: #666;
}

@media (max-width: 980px) {
  .ps-admin-shell {
    grid-template-columns: 1fr;
  }

  .ps-admin-sidebar {
    border-radius: 0;
  }

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

  .ps-admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* PickSpoon public frontend v1 */
:root {
  --ps-navy: #001125;
  --ps-navy-soft: #071b35;
  --ps-green: #00aa5d;
  --ps-green-dark: #008f4f;
  --ps-bg-light: #f5f7f8;
  --ps-card: #ffffff;
  --ps-text: #001125;
  --ps-muted: #64748b;
  --ps-border: #dbe5ea;
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 170, 93, .12) 0, transparent 30%),
    linear-gradient(180deg, #ffffff, var(--ps-bg-light));
  color: var(--ps-text);
}

.top {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--ps-border);
  box-shadow: 0 10px 30px rgba(0, 17, 37, .08);
}

.top a {
  color: var(--ps-navy);
}

.top-nav a {
  color: var(--ps-navy);
}

.cart-link {
  background: var(--ps-green);
  color: #ffffff !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  border-radius: 32px;
  padding: 64px 42px;
  background: linear-gradient(135deg, var(--ps-navy), var(--ps-navy-soft));
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 17, 37, .18);
}

.hero h1 {
  color: #ffffff;
}

.hero p {
  color: rgba(255, 255, 255, .82);
}

.hero .button,
.button,
button {
  background: var(--ps-green);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 170, 93, .24);
}

.hero .button:hover,
.button:hover,
button:hover {
  background: var(--ps-green-dark);
}

.card,
.order {
  border: 1px solid var(--ps-border);
  box-shadow: 0 18px 50px rgba(0, 17, 37, .08);
}

.product-card {
  border-radius: 28px;
}

.product-media {
  background:
    radial-gradient(circle at center, rgba(0, 170, 93, .12) 0, #f3f7f8 68%);
  border: 1px solid var(--ps-border);
}

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

.product-body p {
  color: var(--ps-muted);
}

.product-buy strong {
  color: var(--ps-navy);
  font-size: 22px;
}

.site-footer-panel {
  background: var(--ps-navy);
  color: #ffffff;
  border-radius: 28px;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, .78);
}

.site-footer strong {
  color: #ffffff;
}

.pagespoon-powered {
  color: var(--ps-muted);
}

/* PickSpoon public frontend tuning v2 */
.hero {
  max-width: none;
  width: 100%;
  margin-bottom: 34px;
  min-height: 330px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.top-nav .cart-link,
.cart-link {
  background: #00aa5d !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 170, 93, .22);
}

.product-media {
  background:
    radial-gradient(circle at center, rgba(0, 170, 93, .14) 0, rgba(0, 17, 37, .045) 64%, #f6faf8 100%) !important;
}

.product-media .img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(0, 170, 93, .22), transparent 34%),
    linear-gradient(135deg, #eef7f2, #f8fbfa) !important;
  position: relative;
}

.product-media .img::after {
  content: "PickSpoon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 17, 37, .38);
  font-weight: 900;
  letter-spacing: -.03em;
}

.site-footer {
  padding-top: 30px;
}

.site-footer-panel {
  padding: 28px 32px !important;
  min-height: auto;
}

.site-footer-top {
  gap: 22px;
  padding-bottom: 20px;
}

.site-footer-bottom {
  padding-top: 20px;
}

.pagespoon-powered {
  margin-top: 18px;
  padding-bottom: 20px;
}

@media (min-width: 901px) {
  .hero {
    min-height: 370px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 42px 26px;
  }
}

/* PickSpoon footer highlight contrast fix */
.site-footer-highlight {
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
}

.site-footer-highlight span {
  color: rgba(255, 255, 255, .70) !important;
}

.site-footer-highlight strong {
  color: #ffffff !important;
}

.site-footer-bottom {
  border-top-color: rgba(255, 255, 255, .22) !important;
}

/* PickSpoon admin dashboard v2 */
.ps-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.ps-dashboard-hero {
  background: linear-gradient(135deg, #001125, #071b35);
  color: #ffffff;
  border-radius: 32px;
  padding: 46px 42px;
  box-shadow: 0 28px 80px rgba(0, 17, 37, .18);
  margin-bottom: 28px;
}

.ps-dashboard-eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 170, 93, .14);
  color: #8ff0c2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.ps-dashboard-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -1.4px;
}

.ps-dashboard-hero p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 20px;
}

.ps-dashboard-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ps-dashboard-main-button,
.ps-dashboard-secondary-button,
.ps-dashboard-card-button,
.ps-dashboard-card-actions a,
.ps-dashboard-settings-grid a {
  text-decoration: none;
  font-weight: 900;
  border-radius: 14px;
}

.ps-dashboard-main-button {
  background: #00aa5d;
  color: #ffffff;
  padding: 14px 20px;
  box-shadow: 0 12px 28px rgba(0, 170, 93, .24);
}

.ps-dashboard-secondary-button {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.22);
  padding: 13px 19px;
}

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

.ps-dashboard-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  background: #ffffff;
  border: 1px solid #dbe5ea;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 17, 37, .08);
}

.ps-dashboard-card-primary {
  background: #001125;
  color: #ffffff;
}

.ps-dashboard-card-wide {
  grid-column: span 1;
}

.ps-dashboard-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 170, 93, .12);
  color: #00aa5d;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.ps-dashboard-card-primary .ps-dashboard-icon {
  background: rgba(255,255,255,.10);
  color: #00aa5d;
}

.ps-dashboard-card h2 {
  margin: 0 0 10px;
  color: #001125;
  font-size: 28px;
  letter-spacing: -.7px;
}

.ps-dashboard-card-primary h2 {
  color: #ffffff;
}

.ps-dashboard-card p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.35;
}

.ps-dashboard-card-primary p {
  color: rgba(255,255,255,.74);
}

.ps-dashboard-card-button {
  display: block;
  text-align: center;
  background: #00aa5d;
  color: #ffffff;
  padding: 14px 18px;
  margin-top: 24px;
}

.ps-dashboard-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ps-dashboard-card-actions a,
.ps-dashboard-settings-grid a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #001125;
  border: 1px solid #dbe5ea;
  padding: 12px 14px;
  background: #ffffff;
}

.ps-dashboard-card-actions a:hover,
.ps-dashboard-settings-grid a:hover {
  border-color: #00aa5d;
  color: #00aa5d;
}

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

/* ===== Dashboard Overview ===== */

.ps-dashboard-overview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.ps-dashboard-stats {
  display: flex;
  background: #ffffff;
  border: 1px solid #dbe5ea;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,17,37,.06);
}

.ps-dashboard-stat-card {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid #eef3f6;
  border-radius: 0;
  box-shadow: none;
}

.ps-dashboard-stat-card:last-child {
  border-right: 0;
}

.ps-dashboard-stat-card span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ps-dashboard-stat-card strong {
  display: block;
  margin-top: 4px;
  color: #001125;
  font-size: 20px;
  font-weight: 900;
}

.ps-dashboard-last-orders {
  background: #ffffff;
  border: 1px solid #dbe5ea;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,17,37,.08);
}

.ps-dashboard-last-orders h2 {
  margin: 0 0 22px;
  color: #001125;
  font-size: 28px;
}

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

.ps-dashboard-orders-table th {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 2px solid #eef3f6;
  color: #64748b;
  font-size: 14px;
  text-transform: uppercase;
}

.ps-dashboard-orders-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #eef3f6;
  color: #001125;
}

.ps-dashboard-orders-table tr:last-child td {
  border-bottom: none;
}

@media (max-width:980px){

  .ps-dashboard-stats{
    grid-template-columns:1fr;
  }

  .ps-dashboard-kitchen{
    grid-template-columns:repeat(2,1fr);
  }

}

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

  .ps-dashboard-hero {
    padding: 36px 26px;
  }

  .ps-dashboard-card {
    min-height: auto;
  }
}

/* PickSpoon Kitchen MVP */
.ps-kitchen-body {
  margin: 0;
  min-height: 100vh;
  background: #001125;
  color: #ffffff;
}

.ps-kitchen {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px;
}

.ps-kitchen-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 0 20px;
}

.ps-kitchen-header p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.62);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.ps-kitchen-header h1 {
  margin: 0;
  font-size: clamp(24px, 5vw, 42px);
  letter-spacing: -1px;
}

.ps-kitchen-sound {
  width: auto;
  min-width: 88px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
  box-shadow: none;
}

.ps-kitchen-sound.active {
  background: #00aa5d;
  color: #ffffff;
}

.ps-kitchen-sound:not(.active) {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
}

.ps-kitchen-sync {
  min-height: 38px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 800;
}

.ps-kitchen-sync time {
  margin-left: auto;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.ps-kitchen-sync-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}

.ps-kitchen-sync-ok {
  color: #4ade80;
}

.ps-kitchen-sync-warning {
  color: #facc15;
}

.ps-kitchen-sync-error {
  color: #f87171;
  border-color: rgba(248,113,113,.42);
  background: rgba(127,29,29,.32);
}

.ps-kitchen-summary {
  margin-bottom: 16px;
}

.ps-stock-ok {
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(74,222,128,.35);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(22,101,52,.78);
}

.ps-stock-icon {
  flex: 0 0 auto;
  font-size: 25px;
}

.ps-stock-ok > span:nth-child(2),
.ps-stock-alert-head > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ps-stock-ok strong,
.ps-stock-alert-head strong {
  font-size: 17px;
  line-height: 1.2;
}

.ps-stock-ok small,
.ps-stock-alert-head small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}

.ps-stock-state {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74,222,128,.18);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
}

.ps-stock-alert {
  padding: 16px 18px;
  border: 2px solid rgba(248,113,113,.62);
  border-radius: 18px;
  background: rgba(127,29,29,.72);
}

.ps-stock-alert-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ps-stock-alert-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ps-stock-alert-group {
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
}

.ps-stock-alert h4 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ps-stock-alert ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-stock-alert li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}

.ps-stock-alert li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ps-stock-alert li strong {
  flex: 0 0 auto;
  font-size: 12px;
}

.ps-stock-alert-missing li strong {
  color: #fecaca;
}

.ps-stock-alert-low li strong {
  color: #fde68a;
}

.ps-kitchen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.ps-kitchen-stat-tile {
  width: 100%;
  min-width: 0;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: #ffffff;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ps-kitchen-stat-tile:active {
  transform: scale(.98);
}

.ps-kitchen-stat-tile span {
  min-width: 0;
  color: rgba(255,255,255,.68);
  font-weight: 850;
  font-size: 13px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.ps-kitchen-stat-tile strong {
  width: 48px;
  min-width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ps-kitchen-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ps-kitchen-lane {
  scroll-margin-top: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  padding: 14px;
  min-height: 420px;
}

.ps-kitchen-lane h2 {
  margin: 4px 4px 14px;
  font-size: 22px;
  color: #ffffff;
}

.ps-kitchen-card {
  background: #ffffff;
  color: #001125;
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.ps-kitchen-card-new {
  border: 3px solid #00aa5d;
}

.ps-kitchen-card-paid {
  border: 3px solid #f59e0b;
}

.ps-kitchen-card-sent {
  border: 3px solid #38bdf8;
}

.ps-kitchen-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ps-kitchen-card-head strong {
  font-size: 22px;
}

.ps-kitchen-order-number {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  background: #001125;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ps-kitchen-order-time {
  display: grid;
  gap: 3px;
  margin-top: 9px;
  font-variant-numeric: tabular-nums;
}

.ps-kitchen-order-created,
.ps-kitchen-order-pickup {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.ps-kitchen-order-wait {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 900;
}

.ps-kitchen-card-head .ps-kitchen-eta-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.ps-kitchen-payment {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  margin: -6px 0 14px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .03em;
}

.ps-kitchen-payment-paid {
  background: #dcfce7;
  color: #166534;
}

.ps-kitchen-payment-due {
  background: #ffedd5;
  color: #9a3412;
}

.ps-kitchen-items {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.ps-kitchen-items div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 12px;
  font-size: 18px;
  font-weight: 800;
}

.ps-kitchen-items strong {
  color: #00aa5d;
}

.ps-kitchen-customer {
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
  margin-bottom: 16px;
}

.ps-kitchen-customer strong,
.ps-kitchen-customer span {
  display: block;
}

.ps-kitchen-customer span {
  color: #475569;
  margin-top: 3px;
}

.ps-kitchen-customer p {
  margin: 10px 0 0;
  background: #fff7ed;
  border-radius: 14px;
  padding: 10px;
  color: #9a3412;
  font-weight: 800;
}

.ps-kitchen-eta-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.ps-kitchen-eta-actions form {
  margin: 0;
}

.ps-kitchen-eta-actions button {
  width: 100%;
  min-height: 42px;
  background: #e2e8f0;
  color: #001125;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: none;
}

.ps-kitchen-actions form {
  margin: 0;
}

.ps-kitchen-actions button {
  width: 100%;
  min-height: 58px;
  background: #00aa5d;
  color: #ffffff;
  border: 0;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: none;
}


.ps-kitchen-card-new .ps-kitchen-actions button {
  background: #f59e0b;
  color: #001125;
}

.ps-kitchen-card-paid .ps-kitchen-actions button {
  background: #f59e0b;
  color: #001125;
}

.ps-kitchen-card-sent .ps-kitchen-actions button {
  background: #38bdf8;
  color: #001125;
}



/* =========================================================
   Kitchen UX v1
   ========================================================= */

.ps-kitchen-card-new {
  background: #fff9db;
  animation: psKitchenPulse 1.6s infinite;
  transition: background-color .25s ease;
}

@keyframes psKitchenPulse {
  0%,100% {
    transform: scale(1);
    background: #fff9db;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }

  50% {
    transform: scale(1.02);
    background: #fff3b0;
    box-shadow:
      0 18px 40px rgba(0,0,0,.18),
      0 0 18px rgba(220,38,38,.45);
  }
}




.ps-kitchen-eta-status {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
}

.wait-green {
  color: #16a34a;
}

.wait-yellow {
  color: #ca8a04;
}

.wait-red {
  color: #dc2626;
}

.ps-kitchen-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -2px 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
}

.ps-kitchen-back-top {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 100;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00aa5d;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease;
}

.ps-kitchen-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ps-kitchen-empty {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 900px) {
  .ps-kitchen {
    padding: 12px;
  }

  .ps-kitchen-header {
    align-items: stretch;
    flex-direction: column;
  }

  .ps-kitchen-sound {
    width: auto;
    align-self: flex-start;
  }

  .ps-stock-alert-groups {
    grid-template-columns: 1fr;
  }

  .ps-kitchen-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .ps-kitchen-stat-tile {
    min-height: 72px;
    padding: 10px;
    gap: 6px;
  }

  .ps-kitchen-stat-tile span {
    font-size: 12px;
  }

  .ps-kitchen-stat-tile strong {
    width: 46px;
    min-width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 24px;
  }

  .ps-kitchen-lanes {
    grid-template-columns: 1fr;
  }

  .ps-kitchen-lane {
    min-height: auto;
  }
}



/* PickSpoon product quantity controls */
.product-qty-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
}

.product-qty-controls form {
  display: block;
}

.product-qty-controls button {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.product-qty-controls button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.product-qty-controls span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 170, 93, .09);
  color: var(--ps-navy);
  font-size: 20px;
  font-weight: 900;
}

@media (max-width: 720px) {
  .product-qty-controls {
    grid-template-columns: 52px 1fr 52px;
  }

  .product-qty-controls button,
  .product-qty-controls span {
    height: 52px;
  }
}


/* PickSpoon sticky order bar */
.sticky-order-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 28px;
  background: #00aa5d;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 170, 93, .32);
}

.sticky-order-bar span,
.sticky-order-bar strong,
.sticky-order-bar em {
  color: #ffffff;
}

.sticky-order-bar span {
  font-weight: 900;
}

.sticky-order-bar strong {
  font-size: 18px;
}

.sticky-order-bar em {
  font-style: normal;
  font-weight: 900;
  background: rgba(255, 255, 255, .18);
  padding: 8px 14px;
  border-radius: 999px;
}


.sticky-order-bar-hidden {
  display: none;
}


.sticky-order-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sticky-order-info small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-order-info small b {
  color: #ffffff;
  font-weight: 900;
}

.sticky-order-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


body:has(.sticky-order-bar) {
  padding-bottom: 86px;
}

@media (max-width: 720px) {
  .sticky-order-bar {
    bottom: 12px;
    width: calc(100% - 20px);
    padding: 14px 15px;
    border-radius: 24px;
  }

  .sticky-order-info small {
    font-size: 12px;
  }

  .sticky-order-action {
    gap: 8px;
  }

  .sticky-order-bar strong {
    font-size: 16px;
  }
}


.product-qty-controls {
  max-width: 132px;
  display: grid;
  grid-template-columns: 38px 44px 38px;
  align-items: center;
  justify-content: start;
  gap: 6px;
}

.product-qty-controls form {
  margin: 0;
}

.product-qty-controls button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  padding: 0;
}

.product-qty-controls span {
  min-width: 44px;
  text-align: center;
  font-weight: 800;
}

.product-qty-minus-hidden {
  visibility: hidden;
}


/* PickSpoon ordering UX final overrides */
.product-qty-controls {
  max-width: 154px;
  grid-template-columns: 34px 40px 34px;
  gap: 6px;
}

.product-qty-controls button,
.product-qty-controls span {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 18px;
}

.product-qty-controls span {
  font-size: 17px;
}

.product-qty-plus-add {
  width: 112px !important;
  min-width: 112px !important;
  padding: 0 14px !important;
  font-size: 15px !important;
  border-radius: 999px !important;
}

.product-qty-controls:has(.product-qty-plus-add) {
  grid-template-columns: 0 0 112px;
  gap: 0;
}

.product-qty-controls:has(.product-qty-plus-add) [data-product-qty] {
  display: none;
}

.sticky-order-bar {
  width: min(520px, calc(100% - 28px));
  padding: 12px 16px;
  border-radius: 999px;
}

.sticky-order-info {
  gap: 2px;
}

.sticky-order-info span {
  font-size: 15px;
}

.sticky-order-info small {
  font-size: 12px;
}

.sticky-order-action strong {
  font-size: 16px;
}

.sticky-order-action em {
  padding: 7px 12px;
  font-size: 14px;
}

.product-card {
  padding-bottom: 18px;
}

.product-card h3 {
  margin-bottom: 8px;
}

.product-card p {
  margin-bottom: 16px;
}



.checkout-legal-accept input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  cursor: pointer;
}

.admin-shop-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 14px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
}

.admin-shop-badge strong {
  font-size: 14px;
}

.admin-shop-badge span {
  color: #d1d5db;
}

.toast-container {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;

  pointer-events: none;
}

.toast {
  min-width: 280px;
  max-width: 420px;

  padding: 14px 16px;

  border-radius: 14px;
  border-left: 4px solid #00aa5d;

  background: #001125;
  color: #ffffff;

  font-size: 14px;
  line-height: 1.4;

  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  opacity: 0;
  transform: translateY(12px);

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.toast-show {
  opacity: 1;
  transform: translateY(0);
}

.toast-warning {
  border-left-color: #f59e0b;
}

.toast-success {
  border-left-color: #00aa5d;
}

@media (max-width: 768px) {
  .toast-container {
    left: 14px;
    right: 14px;
    bottom: 90px;
  }

  .toast {
    min-width: auto;
    max-width: none;
  }
}


.product-subtitle{
    margin-top:4px;
    font-size:.92rem;
    line-height:1.35;
    color:#6b7280;
}

/* PickSpoon -> TwojPosilek cross-promo */
.ps-crosspromo {
  max-width: 1180px;
  margin: 22px auto 30px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f8fafc;
  border: 1px solid #dbe5ea;
  border-radius: 22px;
}

.ps-crosspromo-copy {
  min-width: 0;
}

.ps-crosspromo-logo {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 48px;
  margin-bottom: 10px;
}

.ps-crosspromo-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #00aa5d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ps-crosspromo h2 {
  margin: 0 0 5px;
  color: #001125;
  font-size: 21px;
  line-height: 1.2;
}

.ps-crosspromo p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.ps-crosspromo-button {
  flex: 0 0 auto;
  padding: 12px 17px;
  background: #001125;
  color: #ffffff;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.ps-crosspromo-button:hover {
  background: #00aa5d;
  color: #ffffff;
}

@media (max-width: 700px) {
  .ps-crosspromo {
    margin: 16px 16px 24px;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .ps-crosspromo-button {
    text-align: center;
  }
}
