.pgs-store{max-width:1200px;margin:0 auto;padding:20px}.pgs-store-hero{padding:40px;border-radius:18px;background:#123826;color:white;margin-bottom:28px}.pgs-store-hero span{font-weight:800;letter-spacing:.08em;color:#ff7a00}.pgs-store-hero h1{font-size:48px;margin:8px 0}.pgs-store-hero p{max-width:760px;font-size:18px}.pgs-products{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}.pgs-product{border:1px solid #ddd;border-radius:16px;padding:20px;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.05)}.pgs-product-cat{font-size:12px;text-transform:uppercase;font-weight:800;color:#138b3d}.pgs-product h3{margin:8px 0}.pgs-price{font-size:24px;font-weight:800;margin:14px 0}.pgs-availability{font-size:13px;margin-bottom:12px}.pgs-product select,.pgs-product input,.pgs-form-grid input,.pgs-checkout textarea{width:100%;padding:10px;border:1px solid #ccc;border-radius:8px}.pgs-buy{display:flex;gap:8px;margin-top:10px}.pgs-buy input{width:70px}.pgs-buy button,.pgs-submit{border:0;border-radius:9px;background:#ff7a00;color:#fff;font-weight:800;padding:11px 18px}.pgs-checkout{margin-top:34px;padding:24px;border-radius:16px;background:#f7f7f7}.pgs-form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:18px 0}.pgs-form-grid label,.pgs-checkout>form>label{display:block;font-weight:700}.pgs-privacy{margin:16px 0;font-weight:400!important}.pgs-privacy input{width:auto}.pgs-submit{background:#138b3d;font-size:16px}@media(max-width:700px){.pgs-form-grid{grid-template-columns:1fr}.pgs-store-hero h1{font-size:36px}}


.pgs-product-image{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:14px;margin-bottom:14px;background:#f2f2f2}


/* PGS Store 0.3.0 - profilo PGS / guest */
.pgs-customer-box,
.pgs-athlete-box,
.pgs-notice {
  margin: 18px 0;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.88);
}

.pgs-customer-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  background: #eef7ef;
  color: #0b6b2b;
}

.pgs-customer-box h3 {
  margin: 0 0 14px;
}

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

.pgs-customer-grid > div {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.035);
}

.pgs-customer-grid span {
  display: block;
  font-size: .78rem;
  opacity: .68;
  margin-bottom: 3px;
}

.pgs-customer-grid strong {
  overflow-wrap: anywhere;
}

.pgs-profile-note {
  margin: 12px 0 0;
  font-size: .9rem;
  opacity: .72;
}

.pgs-athlete-box select {
  width: 100%;
  margin-top: 8px;
}

.pgs-notice {
  border-left: 4px solid #0b6b2b;
}

.pgs-notes {
  display: block;
  margin-top: 16px;
}

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


/* PGS Store 0.4.0 - checkout a step */
.pgs-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin: 0 0 22px;
}
.pgs-steps > div {
  min-height: 58px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  background: #fff;
}
.pgs-steps > div span {
  font-weight: 700;
}
.pgs-steps > div.active {
  background: #0f3f2d;
  color: #fff;
  border-color: #0f3f2d;
}
.pgs-steps > div.done {
  background: #eef7ef;
  color: #0b6b2b;
  border-color: #bcd9c4;
}
.pgs-add-form select {
  width: 100%;
  margin: 10px 0;
}
.pgs-floating-cart {
  position: sticky;
  bottom: 12px;
  z-index: 20;
  margin: 22px 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.pgs-floating-cart span {
  display: block;
  font-size: .9rem;
  opacity: .72;
}
.pgs-step-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
}
.pgs-step-card h1 {
  margin-top: 0;
}
.pgs-cart-list {
  display: grid;
  gap: 14px;
}
.pgs-cart-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) 120px 120px;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.pgs-cart-product {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pgs-cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}
.pgs-cart-product span {
  display: block;
  font-size: .9rem;
  opacity: .7;
}
.pgs-cart-row input {
  width: 90px;
}
.pgs-cart-price {
  text-align: right;
  font-weight: 800;
}
.pgs-cart-total,
.pgs-review-total {
  margin-top: 18px;
  font-size: 1.2rem;
  text-align: right;
}
.pgs-step-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pgs-primary,
.pgs-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.pgs-primary {
  background: #0b8f3e;
  color: #fff;
}
.pgs-secondary {
  background: #eef1f3;
  color: #1d252c;
}
.pgs-review-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.pgs-review-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.pgs-no-payment {
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff6db;
  border: 1px solid #f1d98d;
}
.pgs-no-payment strong {
  display: block;
  margin-bottom: 5px;
}
.pgs-success {
  text-align: center;
  max-width: 760px;
  margin: 40px auto;
}
.pgs-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b8f3e;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}
.pgs-order-code {
  display: inline-block;
  margin: 8px 0 18px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #eef1f3;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .03em;
}

@media (max-width: 767.98px) {
  .pgs-steps {
    grid-template-columns: repeat(2,1fr);
  }
  .pgs-cart-row {
    grid-template-columns: 1fr;
  }
  .pgs-cart-price {
    text-align: left;
  }
  .pgs-review-grid {
    grid-template-columns: 1fr;
  }
  .pgs-floating-cart {
    flex-direction: column;
    align-items: stretch;
  }
  .pgs-step-actions > * {
    flex: 1 1 100%;
  }
}


/* PGS Store 0.4.1 - allineamento card prodotti */
.pgs-products {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.pgs-product {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pgs-product h3 {
  margin: 10px 0 8px;
  line-height: 1.18;
  min-height: 2.36em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pgs-product p {
  margin: 0 0 10px;
  line-height: 1.45;
  min-height: 4.35em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.pgs-price {
  margin: 8px 0 14px;
}

.pgs-add-form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pgs-add-form select,
.pgs-add-form input,
.pgs-buy button {
  min-height: 52px;
}

.pgs-availability {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.pgs-buy {
  margin-top: 0;
  align-items: stretch;
}

.pgs-buy input {
  width: 72px;
  flex: 0 0 72px;
}

.pgs-buy button {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767.98px) {
  .pgs-product h3 {
    min-height: auto;
  }

  .pgs-product p {
    min-height: auto;
  }
}


/* PGS Store 0.4.2 - rifinitura vetrina e spazio per menu fisso del template */
.pgs-store {
  padding-bottom: 110px;
}

.pgs-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pgs-product {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-color: rgba(15, 63, 45, .14);
  box-shadow: 0 8px 24px rgba(15, 63, 45, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pgs-product:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 63, 45, .28);
  box-shadow: 0 14px 34px rgba(15, 63, 45, .12);
}

.pgs-product-image {
  height: 260px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
}

.pgs-product-cat {
  margin-top: 2px;
  color: #0b8f3e;
  letter-spacing: .025em;
}

.pgs-product h3 {
  font-size: 1.45rem;
  color: #161616;
}

.pgs-price {
  color: #111;
  font-size: 1.45rem;
}

.pgs-add-form select,
.pgs-add-form input {
  background: #fff;
  border: 1px solid #d6dbd8;
}

.pgs-add-form select:focus,
.pgs-add-form input:focus {
  border-color: #0b8f3e;
  box-shadow: 0 0 0 3px rgba(11,143,62,.12);
  outline: 0;
}

.pgs-buy button {
  background: #ff7a00;
  border: 1px solid #ff7a00;
  min-width: 0;
  white-space: normal;
  line-height: 1.15;
}

.pgs-buy button:hover,
.pgs-buy button:focus {
  background: #e86e00;
  border-color: #e86e00;
}

/* Il carrello sticky rimane sopra eventuali menu/barre fisse del template. */
.pgs-floating-cart {
  bottom: 88px;
}

/* Evita che l'ultimo contenuto venga coperto da barre fisse del template Helix. */
.pgs-step-card,
.pgs-success {
  margin-bottom: 90px;
}

@media (max-width: 1199.98px) {
  .pgs-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .pgs-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pgs-product-image {
    height: 230px;
  }
}

@media (max-width: 575.98px) {
  .pgs-store {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 120px;
  }
  .pgs-products {
    grid-template-columns: 1fr;
  }
  .pgs-product {
    padding: 16px;
  }
  .pgs-product-image {
    height: 280px;
  }
  .pgs-buy {
    display: grid;
    grid-template-columns: 72px minmax(0,1fr);
  }
  .pgs-floating-cart {
    bottom: 82px;
  }
}


/* PGS Store 0.5.0 - area ordini cliente / guest */
.pgs-store-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}
.pgs-store-tools a {
  text-decoration: none;
  font-weight: 800;
  color: #0b6b2b;
}
.pgs-store-tools-shop {
  margin-bottom: 14px;
}
.pgs-section-lead {
  margin-top: -8px;
  opacity: .72;
}
.pgs-orders-list {
  display: grid;
  gap: 16px;
}
.pgs-order-card {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 15px;
  padding: 18px;
  background: #fff;
}
.pgs-order-main,
.pgs-order-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.pgs-order-label {
  display: block;
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .62;
}
.pgs-order-number {
  display: block;
  margin: 3px 0;
  font-size: 1.08rem;
}
.pgs-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .84rem;
}
.pgs-status-waiting { background:#fff6db; color:#795d00; }
.pgs-status-action { background:#e6f6eb; color:#087233; }
.pgs-status-success { background:#dff4e6; color:#05692e; }
.pgs-status-info { background:#e7f1ff; color:#175caa; }
.pgs-status-danger { background:#fde8e8; color:#a22626; }
.pgs-order-summary {
  display: grid;
  grid-template-columns: 2fr 1.2fr .7fr;
  gap: 14px;
  margin: 16px 0;
}
.pgs-order-summary > div {
  padding: 12px;
  border-radius: 10px;
  background: #f7f8f8;
}
.pgs-order-summary span {
  display: block;
  font-size: .76rem;
  opacity: .64;
  margin-bottom: 4px;
}
.pgs-order-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.pgs-order-detail-head h1 {
  margin: 2px 0 3px;
}
.pgs-order-detail-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.pgs-payment-box {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:24px 0;
  padding:18px;
  border-radius:14px;
  background:#eaf7ee;
  border:1px solid #acd7b9;
}
.pgs-payment-box span {
  display:block;
  margin-top:4px;
}
.pgs-timeline {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.pgs-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding-bottom: 18px;
}
.pgs-timeline-item:not(:last-child)::before {
  content:"";
  position:absolute;
  left:6px;
  top:15px;
  bottom:0;
  width:2px;
  background:#d5e5da;
}
.pgs-timeline-dot {
  width:14px;
  height:14px;
  border-radius:50%;
  margin-top:3px;
  background:#0b8f3e;
  z-index:1;
}
.pgs-timeline-item small {
  display:block;
  margin-top:3px;
  opacity:.62;
}
.pgs-timeline-item p {
  margin:5px 0 0;
}
.pgs-lookup-card {
  max-width: 760px;
  margin: 0 auto;
}
.pgs-empty-state {
  display:grid;
  gap:16px;
  justify-items:start;
  padding:20px 0;
}
.pgs-success-actions {
  justify-content:center;
}

@media (max-width: 767.98px) {
  .pgs-store-tools {
    justify-content: space-between;
  }
  .pgs-order-main,
  .pgs-order-detail-head,
  .pgs-payment-box {
    flex-direction: column;
  }
  .pgs-order-summary,
  .pgs-order-detail-grid {
    grid-template-columns: 1fr;
  }
  .pgs-order-actions > * {
    flex: 1 1 100%;
  }
}


/* PGS Store 0.5.1 - Privacy e Termini */
.pgs-legal {
  max-width: 980px;
  margin: 0 auto;
}
.pgs-legal h1 {
  margin-bottom: 4px;
}
.pgs-legal h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}
.pgs-legal p,
.pgs-legal li {
  line-height: 1.65;
}
.pgs-legal ul {
  padding-left: 22px;
}
.pgs-legal-updated {
  margin-top: 0;
  opacity: .62;
}
.pgs-legal a,
.pgs-legal-consents a,
.pgs-legal-links a {
  color: #0b6b2b;
  font-weight: 700;
}
.pgs-legal-consents {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.pgs-legal-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 26px 0 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: .9rem;
}


/* PGS Store 0.6.0 - dashboard ordini professionale */
.pgs-dashboard-hero,
.pgs-order-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f4b31 0%, #0b6b2b 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(10, 61, 35, .18);
}
.pgs-dashboard-hero h1,
.pgs-order-hero h1 {
  margin: 6px 0 8px;
  color: #fff;
}
.pgs-dashboard-hero p,
.pgs-order-hero p {
  margin: 0;
  opacity: .92;
}
.pgs-hero-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: #ffd47e;
}
.pgs-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pgs-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.pgs-kpi-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.pgs-kpi-card span {
  display: block;
  font-size: .84rem;
  opacity: .65;
  margin-bottom: 8px;
}
.pgs-kpi-card strong {
  font-size: 2rem;
  line-height: 1;
}
.pgs-payment-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid #cfd8ff;
  background: linear-gradient(180deg, #f5f8ff 0%, #eef3ff 100%);
}
.pgs-payment-alert strong {
  display: block;
  margin-bottom: 4px;
  color: #24469a;
}
.pgs-payment-alert span {
  opacity: .78;
}
.pgs-payment-alert-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pgs-orders-filters {
  margin: 0;
}
.pgs-orders-filters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.pgs-orders-filters-grid label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}
.pgs-orders-filters-grid input,
.pgs-orders-filters-grid select {
  min-height: 46px;
}
.pgs-orders-filter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pgs-orders-section {
  margin-top: 20px;
}
.pgs-order-card-pro {
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.pgs-order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.pgs-order-summary-pro {
  grid-template-columns: 2fr 1.3fr .8fr;
}
.pgs-order-hero-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.pgs-order-total-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
.pgs-progress-card {
  margin-bottom: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.pgs-progress-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}
.pgs-progress-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding-top: 4px;
}
.pgs-progress-step::before {
  content: "";
  position: absolute;
  top: 11px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: #d6ddd8;
}
.pgs-progress-step:last-child::before {
  display: none;
}
.pgs-progress-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d6ddd8;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #d6ddd8;
  z-index: 1;
}
.pgs-progress-step strong {
  font-size: .83rem;
  line-height: 1.25;
}
.pgs-progress-step.done .pgs-progress-dot,
.pgs-progress-step.active .pgs-progress-dot {
  background: #0b8f3e;
  box-shadow: 0 0 0 2px #0b8f3e;
}
.pgs-progress-step.done::before {
  background: #0b8f3e;
}
.pgs-progress-step.active strong {
  color: #0b6b2b;
}
.pgs-timeline-pro {
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .pgs-kpis {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .pgs-orders-filters-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .pgs-progress-steps {
    grid-template-columns: repeat(3, minmax(0,1fr));
    row-gap: 20px;
  }
  .pgs-progress-step::before {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .pgs-dashboard-hero,
  .pgs-order-hero,
  .pgs-payment-alert,
  .pgs-order-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .pgs-order-hero-side {
    align-items: flex-start;
  }
  .pgs-kpis,
  .pgs-orders-filters-grid,
  .pgs-progress-steps {
    grid-template-columns: 1fr;
  }
  .pgs-order-summary-pro {
    grid-template-columns: 1fr;
  }
}


/* PGS Store 0.6.1 - area cliente visibile nella vetrina */
.pgs-customer-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid #d8e5dc;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbf9 0%, #f1f8f3 100%);
  box-shadow: 0 8px 22px rgba(12, 85, 45, .06);
}

.pgs-customer-toolbar > div:first-child {
  display: grid;
  gap: 3px;
}

.pgs-customer-toolbar-kicker {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: #0b6b2b;
}

.pgs-customer-toolbar strong {
  font-size: 1.08rem;
  color: #163d28;
}

.pgs-customer-toolbar small {
  opacity: .72;
}

.pgs-customer-alert {
  color: #b46700;
  font-weight: 800;
}

.pgs-customer-toolbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pgs-customer-toolbar-guest {
  background: #fffaf0;
  border-color: #f0d9a8;
}

@media (max-width: 767.98px) {
  .pgs-customer-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .pgs-customer-toolbar-actions > * {
    width: 100%;
  }
}
