@import url("https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --pg-primary: #1f4f8a;
  --pg-primary-dark: #163b67;
  --pg-accent: #1a1a1a;
  --pg-text: #1f2937;
  --pg-muted: #667085;
  --pg-surface: #ffffff;
  --pg-surface-soft: #f5f8fc;
  --pg-border: #e4eaf2;
  --romain-headline: "Tinos", sans-serif;
}

/* ── scrollbar: transparent track so the page background shows through ── */
html {
  scrollbar-color: #aaaaaa transparent;
  scrollbar-width: thin;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #777777;
}

body {
  color: var(--pg-text);
  font-family: var(--romain-headline);
  background: radial-gradient(circle at 20% 0%, #f8fbff 0%, #ffffff 42%);
  -webkit-font-smoothing: antialiased;
}

/* ── Mobile: comfortable horizontal gutters (Bootstrap 3 default is 15px) ── */
@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container .row,
  .container-fluid .row {
    margin-left: -20px;
    margin-right: -20px;
  }

  .container .row > [class*="col-"],
  .container-fluid .row > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

body.pg-modern {
  font-family: var(--romain-headline) !important;
}

.pg-modern .container {
  max-width: 1140px;
}

.pg-modern .container:first-of-type {
  margin-top: 0;
  border-bottom: 1px solid #e5e9f0;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.pg-modern .container + .container {
  margin-top: 12px;
}

.pg-products-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
  row-gap: 28px;
}

.pg-products-grid > [class*="col-"] {
  float: none;
  width: 33.3333%;
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 0;
}

.pg-products-grid > [class*="col-12"] {
  width: 100% !important;
}

hr {
  border-top: 1px solid var(--pg-border);
  margin: 34px 0;
}

.pg-modern h1,
.pg-modern h2,
.pg-modern h3,
.pg-modern h4 {
  font-family: var(--romain-headline);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.pg-modern .pg-contact-strip {
  margin: 10px;
  border: 2px solid #000;
  text-align: center;
  padding: 16px 18px;
}

.pg-modern .pg-contact-strip-inner {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.35px;
  font-weight: normal;
  font-style: italic;
  color: #1f2937;
}

@media (min-width: 768px) {
  .pg-modern .pg-contact-strip-inner {
    font-size: 20px;
  }
}

.pg-modern .pg-contact-strip-inner a {
  font-weight: 600;
}

.pg-modern p {
  line-height: 1.6;
}

.pg-cart-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10040;
  border: none;
  border-radius: 999px;
  background: #0c1929;
  color: #ffffff;
  font-family: var(--romain-headline);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  box-shadow: 0 8px 28px rgba(12, 25, 41, 0.38);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pg-cart-fab:hover {
  background: #ffffff;
  color: #0c1929;
  box-shadow: 0 12px 32px rgba(12, 25, 41, 0.2);
  transform: translateY(-2px);
}

.pg-cart-fab.pg-cart-fab-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.pg-cart-fab .badge {
  background: #ffffff;
  color: #0c1929;
  margin-left: 0;
  min-width: 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.pg-cart-fab:hover .badge {
  background: #0c1929;
  color: #ffffff;
}

.pg-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 28, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 10030;
  display: none;
}

.pg-cart-overlay.open {
  display: block;
}

.pg-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #ffffff;
  z-index: 10031;
  box-shadow: -20px 0 52px rgba(12, 25, 41, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.33, 1, 0.68, 1);
  display: flex;
  flex-direction: column;
  font-family: var(--romain-headline);
}

.pg-cart-drawer.open {
  transform: translateX(0);
}

.pg-cart-header {
  position: relative;
  padding: 18px 20px 16px;
  border-bottom: 1px solid #e5e0d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  flex-shrink: 0;
}

/* dark top accent line */
.pg-cart-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #111111 0%, #444444 50%, #111111 100%);
}

.pg-cart-header h4 {
  margin: 0;
  font-weight: 600;
  color: #0c1929;
  letter-spacing: 0.16em;
  font-size: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-cart-header h4::before {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--pg-accent);
  flex-shrink: 0;
}

.pg-cart-items {
  padding: 12px 20px;
  overflow: auto;
  flex: 1;
  background: #faf9f7;
  scrollbar-width: thin;
  scrollbar-color: #d4c9b8 transparent;
}

.pg-cart-item {
  border: 0;
  border-radius: 0;
  padding: 12px 0;
  margin-bottom: 0;
  background: transparent;
  border-bottom: 1px solid #ede9e2;
}

.pg-cart-item:last-child {
  border-bottom: none;
}

.pg-cart-item-row {
  display: flex;
  gap: 12px;
}

.pg-cart-thumb {
  width: 72px;
  height: 72px;
  background: #f0ece5;
  border: 1px solid #e5e0d8;
  border-radius: 1px;
  flex: 0 0 auto;
}

.pg-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-cart-main {
  flex: 1;
  min-width: 0;
}

.pg-cart-item-title {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 13px;
  color: #111827;
  line-height: 1.3;
}

.pg-cart-footer {
  border-top: 1px solid #e5e0d8;
  padding: 16px 20px;
  background: #ffffff;
  flex-shrink: 0;
}

.pg-cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.pg-cart-total-line strong {
  color: #b0a898;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.pg-cart-total-line span {
  font-weight: 700;
  color: #0c1929;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.pg-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-checkout-form input,
.pg-checkout-form textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pg-checkout-form input:focus,
.pg-checkout-form textarea:focus {
  border-color: #93afd6;
  box-shadow: 0 0 0 3px rgba(22, 63, 114, 0.14);
  outline: 0;
}

.pg-qty-input {
  width: 48px;
  height: 28px;
  margin: 0;
  background: #ffffff;
  border: 1px solid #d9d4cc;
  border-radius: 2px;
  color: #111827;
  font-size: 13px;
  font-family: var(--romain-headline);
  font-weight: 500;
  text-align: center;
  padding: 2px 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pg-qty-input:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.12);
}

.pg-item-subtotal {
  color: #374151;
  margin-top: 4px;
  text-align: right;
  font-size: 13px;
}

.pg-cart-item .pg-row small {
  color: #b0a898;
  font-size: 12px;
  font-weight: 500;
  min-width: 28px;
}

.pg-remove-btn {
  background: transparent;
  border-color: transparent;
  color: #c2bdb4;
  padding: 2px 4px;
  font-size: 11px;
  text-decoration: none;
  border-radius: 2px;
}

.pg-remove-btn:hover,
.pg-remove-btn:focus {
  color: #374151;
  text-decoration: none;
  background: transparent;
  border-color: transparent;
}

.pg-add-cart-btn {
  margin-top: 0;
  margin-right: 0;
  border: 1px solid #cfd6e1;
  color: #1f2a3a;
  background: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px !important;
  line-height: 1.1;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  white-space: nowrap;
  overflow: hidden;
}

.pg-add-cart-btn .pg-add-text {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  overflow: hidden;
  transition: max-width 0.22s ease, opacity 0.22s ease, margin-left 0.22s ease;
}

.pg-product-card:hover .pg-add-cart-btn .pg-add-text {
  max-width: 140px;
  opacity: 1;
  margin-left: 7px;
}

.pg-add-cart-btn:hover {
  background: #1f2a3a;
  color: #fff;
  border-color: #1f2a3a;
}

.pg-order-link {
  margin-top: 4px;
  border-radius: 8px;
}

.pg-order-link.btn.btn-primary {
  background: #224b7b;
  border-color: #224b7b;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 10px !important;
  line-height: 1.1;
  text-transform: uppercase;
  border-radius: 999px;
}

.pg-order-link.btn.btn-primary:hover {
  background: var(--pg-primary-dark);
  border-color: var(--pg-primary-dark);
}

.pg-product-card {
  border: 1px solid #eef1f5;
  border-radius: 0;
  padding: 0;
  margin: 0;
  max-width: 100%;
  box-shadow: none;
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}

.pg-product-card .pg-add-cart-btn,
.pg-product-card .pg-product-actions {
  cursor: pointer;
}

.pg-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #111111 0%, #333333 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
  z-index: 2;
}

.pg-product-card:hover {
  border-color: #d9dee8;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.09);
  transform: translateY(-3px);
}

.pg-product-card:hover::before {
  transform: scaleX(1);
}

.pg-product-code {
  display: block;
  background: transparent;
  color: #111827;
  border-radius: 0;
  padding: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 4px 10px 2px;
  font-family: var(--romain-headline);
  line-height: 1;
}

.pg-price {
  color: #111827;
  font-weight: 600;
  margin: 4px 10px 4px;
  font-size: 22px;
  font-family: var(--romain-headline);
}

.pg-product-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 4px 10px 30px;
  justify-content: flex-end;
}

.pg-product-card p {
  margin: 0 10px 2px;
  font-size: 14px;
  color: #374151;
  text-align: left !important;
  line-height: 1.45;
}

.pg-product-card p b {
  color: #1f2f46;
}

.pg-desc-logo {
  display: none !important;
}

.pg-order-link {
  display: none !important;
}

.pg-product-card p[style*="letter-spacing"] {
  letter-spacing: 0.2px !important;
  font-size: 16px !important;
  margin: 0 10px 3px !important;
  line-height: 1.1;
}

.pg-product-card p[style*="letter-spacing"] img {
  display: none !important;
}

.pg-product-card:hover .pg-product-code,
.pg-product-card:hover .pg-price {
  color: #0b1b31;
}

.pg-gallery {
  background: #ffffff;
  border-bottom: 1px solid #eceff4;
}

/* Square frame before JS replaces the hero image with the gallery */
.pg-product-card > img.pg-product-hero {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f5f7fb;
}

.pg-gallery-media {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.pg-gallery-track {
  width: 100%;
}

.pg-gallery-slide {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #f5f7fb;
}

.pg-gallery-slide.active {
  display: block;
}

/* No .img-responsive here — Bootstrap's height:auto breaks fill + object-fit inside the square */
.pg-gallery-slide img.pg-gallery-slide-img,
.pg-gallery-slide img.img-responsive {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain;
  object-position: center;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.pg-product-card:hover .pg-gallery-slide.active img.pg-gallery-slide-img,
.pg-product-card:hover .pg-gallery-slide.active img.img-responsive {
  transform: scale(1.02);
  filter: saturate(1.03);
}

.pg-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #d6d9df;
  opacity: 0.8;
  font-size: 26px;
  line-height: 1;
  width: 30px;
  height: 40px;
  text-align: center;
  z-index: 2;
}

.pg-gallery-nav.prev {
  left: 8px;
}

.pg-gallery-nav.next {
  right: 8px;
}

.pg-gallery-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pg-gallery-thumb {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #f1f5f9;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

.pg-gallery-thumb img.pg-gallery-thumb-img,
.pg-gallery-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0;
  vertical-align: middle;
}

.pg-gallery-thumb:hover,
.pg-gallery-thumb:focus {
  opacity: 1;
  outline: none;
}

.pg-gallery-thumb.active {
  opacity: 1;
  border-color: #111111;
}

.pg-gallery.is-single .pg-gallery-nav,
.pg-gallery.is-single .pg-gallery-thumbs {
  display: none;
}

body.pg-lightbox-open {
  overflow: hidden;
}

/* ─── Product Lightbox ─────────────────────────────────── */

.pg-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: rgba(8, 14, 28, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pg-product-lightbox.open {
  opacity: 1;
}

.pg-product-lightbox.open .pg-product-lightbox-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pg-product-lightbox-dialog {
  position: relative;
  background: #fff;
  border-radius: 2px;
  max-width: min(980px, 100%);
  max-height: min(90vh, 860px);
  width: 100%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38), 0 4px 16px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: grid;
  grid-template-areas:
    "stage head"
    "stage desc"
    "stage price"
    "thumbs actions";
  grid-template-columns: 52% 48%;
  grid-template-rows: auto auto 1fr auto;
  transform: translateY(18px) scale(0.975);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.33, 1.1, 0.68, 1), opacity 0.28s ease;
}

/* thin dark top accent */
.pg-product-lightbox-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #111111 0%, #444444 50%, #111111 100%);
  z-index: 6;
}

/* ── close button ─── */
.pg-product-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 7;
  width: 30px;
  height: 30px;
  border: 1px solid #dde4ee;
  border-radius: 50%;
  background: #fff;
  color: #6b7280;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.pg-product-lightbox-close:hover {
  background: #0f1f38;
  color: #fff;
  border-color: #0f1f38;
  transform: rotate(90deg);
}

/* ── image stage (left col, rows 1-3) ─── */
.pg-product-lightbox-stage {
  grid-area: stage;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 44px;
  background: #f7f5f2;
  border-right: 1px solid #edeae5;
  min-height: 340px;
}

.pg-product-lightbox-main {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #f7f5f2;
  overflow: hidden;
}

.pg-product-lightbox-main img.pg-product-lightbox-main-img,
.pg-product-lightbox-main img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  object-position: center;
  margin: 0;
  transition: opacity 0.2s ease;
}

.pg-product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
  font-size: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.13);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.pg-product-lightbox-nav:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.pg-product-lightbox-nav.prev {
  left: 10px;
}

.pg-product-lightbox-nav.next {
  right: 10px;
}

.pg-product-lightbox.is-single .pg-product-lightbox-nav {
  display: none;
}

/* ── thumbnails (left col, row 4) ─── */
.pg-product-lightbox-thumbs {
  grid-area: thumbs;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid #edeae5;
  border-right: 1px solid #edeae5;
  background: #f7f5f2;
  -webkit-overflow-scrolling: touch;
  align-items: center;
  justify-content: center;
  scrollbar-width: thin;
  scrollbar-color: #d4c9b8 transparent;
}

.pg-product-lightbox-thumb {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 2px;
  border: 1.5px solid transparent;
  border-radius: 1px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  box-sizing: border-box;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.pg-product-lightbox-thumb:hover {
  opacity: 0.85;
}

.pg-product-lightbox-thumb img.pg-product-lightbox-thumb-img,
.pg-product-lightbox-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.pg-product-lightbox-thumb.active {
  opacity: 1;
  border-color: var(--pg-accent);
}

.pg-product-lightbox.is-single .pg-product-lightbox-thumbs {
  display: none;
}

/* ── right column: head ─── */
.pg-product-lightbox-head {
  grid-area: head;
  padding: 32px 52px 14px 32px;
  border-bottom: 1px solid #f0ece6;
}

.pg-product-lightbox-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0c1929;
  font-family: var(--romain-headline);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ── right column: desc ─── */
.pg-product-lightbox-desc {
  grid-area: desc;
  padding: 16px 32px 16px;
  font-family: var(--romain-headline);
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  text-align: left;
  overflow-y: auto;
  border-bottom: 1px solid #f0ece6;
  scrollbar-width: thin;
  scrollbar-color: #d4c9b8 transparent;
}

.pg-product-lightbox-desc p {
  margin: 0 0 8px 0;
}

.pg-product-lightbox-desc p:last-child {
  margin-bottom: 0;
}

.pg-product-lightbox-desc h1 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #111827;
  font-family: var(--romain-headline);
}

.pg-product-lightbox-desc p[style*="letter-spacing"] {
  font-size: 15px !important;
  letter-spacing: 0.2px !important;
  margin-bottom: 8px !important;
}

/* ── right column: price ─── */
.pg-product-lightbox-pricebar {
  grid-area: price;
  padding: 14px 32px 16px;
  background: #fff;
  border-bottom: 1px solid #f0ece6;
}

.pg-product-lightbox-price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0c1929;
  font-family: var(--romain-headline);
  letter-spacing: 0.02em;
}

/* ── right column: actions ─── */
.pg-product-lightbox-actions {
  grid-area: actions;
  padding: 18px 32px 24px;
  background: #fff;
}

.pg-product-lightbox-add,
.pg-product-lightbox-add.btn,
.pg-product-lightbox-add.btn-primary {
  display: block;
  width: 100%;
  background: #0c1929 !important;
  border: 1px solid #0c1929 !important;
  border-radius: 1px !important;
  color: #fff !important;
  font-family: var(--romain-headline);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 24px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: none !important;
  text-shadow: none;
}

.pg-product-lightbox-add:hover,
.pg-product-lightbox-add:focus,
.pg-product-lightbox-add.btn:hover,
.pg-product-lightbox-add.btn:focus {
  background: #ffffff !important;
  border-color: #111111 !important;
  color: #111111 !important;
  outline: none;
  box-shadow: none !important;
}

/* ── mobile: single column sheet ─── */
@media (max-width: 660px) {
  .pg-product-lightbox-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #0c1929;
    color: #ffffff;
    border-color: #0c1929;
    font-size: 18px;
  }

  /* bottom-sheet entry */
  .pg-product-lightbox {
    padding: 0;
    align-items: flex-end;
  }

  .pg-product-lightbox-dialog {
    border-radius: 16px 16px 0 0;
    max-height: 75vh;
    grid-template-areas:
      "stage"
      "head"
      "desc"
      "price"
      "thumbs"
      "actions";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(24px) scale(1);
    max-width: 100%;
    /* safe-area padding at bottom */
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* image area: reasonable min-height on phone */
  .pg-product-lightbox-stage {
    border-right: none;
    border-bottom: 1px solid #edeae5;
    padding: 16px 28px;
    min-height: 220px;
  }

  /* drag handle hint */
  .pg-product-lightbox-dialog::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: #d4c9b8;
  }

  /* lightbox nav: 44px touch targets */
  .pg-product-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .pg-product-lightbox-thumbs {
    border-right: none;
    justify-content: flex-start;
  }

  .pg-product-lightbox-head {
    padding: 24px 48px 10px 20px;
  }

  .pg-product-lightbox-desc,
  .pg-product-lightbox-pricebar,
  .pg-product-lightbox-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* close button: easier to reach on bottom sheet */
  .pg-product-lightbox-close {
    top: 16px;
    right: 16px;
  }
}

.pg-empty-cart {
  background: #f8fafc;
  border: 1px dashed #d8e0ec;
  padding: 12px;
  border-radius: 10px;
  color: #6b7280;
}

.pg-toast {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 9999;
  background: #1f6a2e;
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.pg-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.pg-close-btn {
  border-radius: 50%;
  background: transparent;
  border: 1px solid #e5e0d8;
  color: #6b7280;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.pg-close-btn:hover,
.pg-close-btn:focus {
  background: #0c1929;
  color: #fff;
  border-color: #0c1929;
  transform: rotate(90deg);
  outline: none;
}

.pg-checkout-submit {
  display: block !important;
  width: 100% !important;
  border-radius: 1px !important;
  font-weight: 600;
  font-family: var(--romain-headline);
  background: #0c1929;
  color: #ffffff;
  border: 1px solid #0c1929;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  padding: 13px 14px !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pg-checkout-submit:hover,
.pg-checkout-submit:focus {
  background: #ffffff;
  border-color: #111111;
  color: #111111;
  outline: none;
}

.pg-view-bag {
  display: block !important;
  width: 100% !important;
  border-radius: 1px !important;
  font-weight: 600;
  font-family: var(--romain-headline);
  background: transparent;
  color: #0c1929;
  border: 1px solid #c8c0b4;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  padding: 13px 14px !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pg-view-bag:hover,
.pg-view-bag:focus {
  background: #f0ece5;
  border-color: #0c1929;
  color: #0c1929;
  outline: none;
}

.pg-clear-link {
  margin-top: 8px;
  color: #c2bdb4;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pg-clear-link:hover {
  color: #374151;
  text-decoration: none;
}

/* ── About section ── */
.pg-about-section {
  padding: 56px 0 48px;
  border-top: 1px solid var(--pg-border);
}

.pg-about-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pg-about-inner {
  text-align: center;
}

.pg-about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pg-primary);
  border-bottom: 1px solid var(--pg-primary);
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.pg-about-section h2 {
  font-family: var(--romain-headline);
  font-size: 1.65rem;
  font-weight: 600;
  color: #0c1929;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  line-height: 1.35;
}

.pg-about-section p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #2d3748;
  margin-bottom: 16px;
  text-align: left;
}

.pg-about-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pg-about-section {
    padding: 40px 0 32px;
  }
  .pg-about-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .pg-about-section p {
    font-size: 16px;
  }
}

/* ── Press release text section ── */
.pg-pressrelease-section {
  padding: 56px 0 48px;
  border-top: 1px solid var(--pg-border);
}

.pg-pressrelease-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pg-pressrelease-inner {
  text-align: center;
}

.pg-pressrelease-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pg-primary);
  border-bottom: 1px solid var(--pg-primary);
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.pg-pressrelease-section h2 {
  font-family: var(--romain-headline);
  font-size: 1.65rem;
  font-weight: 700;
  color: #0c1929;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  line-height: 1.4;
}

.pg-pressrelease-section h3 {
  font-family: var(--romain-headline);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pg-muted);
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}

.pg-pressrelease-section p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #2d3748;
  margin-bottom: 16px;
  text-align: left;
}

.pg-pressrelease-section p:last-child {
  margin-bottom: 0;
}

.pg-pressrelease-section ol {
  margin: 0 0 16px 24px;
  padding: 0;
  text-align: left;
}

.pg-pressrelease-section ol li {
  font-size: 15.5px;
  line-height: 1.85;
  color: #2d3748;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .pg-pressrelease-section {
    padding: 40px 0 32px;
  }
  .pg-pressrelease-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .pg-pressrelease-section p,
  .pg-pressrelease-section ol li {
    font-size: 16px;
  }
}

.pg-pressrelease-divider {
  border: none;
  border-top: 1px solid var(--pg-border);
  margin: 32px 0;
}

@media (max-width: 768px) {
  .pg-pressrelease-section {
    padding: 40px 0 32px;
  }
  .pg-press-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  .pg-pressrelease-section p,
  .pg-pressrelease-section ol li {
    font-size: 14.5px;
  }
}

/* ── Press section ── */
.pg-press-section {
  padding: 56px 0 48px;
  border-top: 1px solid var(--pg-border);
}

.pg-press-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pg-press-heading .pg-press-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pg-primary);
  border-bottom: 1px solid var(--pg-primary);
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.pg-press-heading h2 {
  font-family: var(--romain-headline);
  font-size: 1.65rem;
  font-weight: 600;
  color: #0c1929;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.pg-press-heading p {
  font-size: 13.5px;
  color: var(--pg-muted);
  margin: 0;
}

.pg-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pg-press-card {
  border: 1px solid var(--pg-border);
  border-top: 2px solid var(--pg-primary);
  padding: 20px 22px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: box-shadow 0.18s ease, border-top-color 0.18s ease, transform 0.18s ease;
}

.pg-press-card:hover {
  box-shadow: 0 6px 22px rgba(21, 44, 77, 0.1);
  border-top-color: #163b67;
  transform: translateY(-2px);
  text-decoration: none;
}

.pg-press-pub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pg-primary);
}

.pg-press-title {
  font-size: 20px;
  line-height: 1.6;
  color: #1a202c;
  font-family: var(--romain-headline);
  flex: 1;
}

.pg-press-link-icon {
  font-size: 11px;
  color: var(--pg-muted);
  align-self: flex-end;
}

.pg-press-card:hover .pg-press-link-icon {
  color: var(--pg-primary);
}

.pg-press-newsletter {
  margin-top: 24px;
  border: 1px solid var(--pg-border);
  border-left: 3px solid var(--pg-primary);
  padding: 18px 24px;
  background: #f5f8fc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pg-press-newsletter-text {
  font-size: 13.5px;
  color: #1a202c;
  line-height: 1.6;
}

.pg-press-newsletter-text strong {
  color: #0c1929;
}

.pg-press-newsletter-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pg-primary);
  text-decoration: none;
  border: 1px solid var(--pg-primary);
  padding: 8px 16px;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.pg-press-newsletter-link:hover {
  background: var(--pg-primary);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pg-press-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pg-press-section {
    padding: 40px 0 32px;
  }
}

@media (max-width: 480px) {
  .pg-press-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Announcement card ── */
.pg-announcement {
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-top: 3px solid var(--pg-primary);
  border-radius: 0 0 10px 10px;
  padding: 36px 40px !important;
  box-shadow: 0 6px 28px rgba(21, 44, 77, 0.07);
  position: relative;
}

.pg-announcement-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pg-primary);
  background: #eef4fb;
  border: 1px solid #c6d8ef;
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.pg-announcement p {
  font-size: 15px;
  line-height: 1.8;
  color: #2d3748;
  margin-bottom: 14px;
}

.pg-announcement p:last-child {
  margin-bottom: 0;
}

.pg-announcement .pg-announcement-sign {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e4eaf2;
  font-style: italic;
  color: var(--pg-muted);
  font-size: 14px;
}

.pg-announcement a {
  color: var(--pg-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pg-announcement a:hover {
  color: var(--pg-primary-dark);
}

@media (max-width: 768px) {
  .pg-announcement {
    padding: 24px 20px !important;
  }
}

.pg-modern .col-sm-12.col-md-6[style*="background-color:#eee"] {
  background: linear-gradient(180deg, #f9fbfe 0%, #f4f8fd 100%) !important;
  border: 1px solid var(--pg-border);
  border-radius: 14px;
  padding: 16px !important;
  box-shadow: 0 6px 18px rgba(21, 44, 77, 0.06);
}

.pg-modern .container-fluid[style*="background-color:#000"] {
  background: linear-gradient(125deg, #0d1e36 0%, #142f55 100%) !important;
  margin-top: 40px;
}

.pg-modern .container-fluid[style*="background-color:#000"] h3,
.pg-modern .container-fluid[style*="background-color:#000"] h5 {
  letter-spacing: 0.4px;
}

.pg-modern a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.pg-modern .btn {
  border-radius: 10px;
}

.pg-inspiration-intro,
.pg-inspiration-intro h3,
.pg-inspiration-intro p {
  font-family: var(--romain-headline);
}

.pg-inspiration-section {
  margin-top: 6px;
  font-family: var(--romain-headline);
}

.pg-inspiration-row {
  display: flex;
  align-items: stretch;
}

.pg-inspiration-text {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 28px;
  font-family: var(--romain-headline);
}

.pg-inspiration-text h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: var(--romain-headline);
}

.pg-inspiration-text p {
  margin-bottom: 10px;
  font-family: var(--romain-headline);
}

.pg-inspiration-media {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-inspiration-image {
  margin-top: 0 !important;
  border-radius: 8px;
  border: 1px solid #e7ecf4;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
}

.pg-lang-switch {
  position: relative;
  display: inline-block;
  min-width: 168px;
  text-align: left;
  float: right;
}

.pg-lang-switch-floating {
  position: relative;
  top: auto;
  right: auto;
  margin: 0 !important;
  z-index: auto;
}

.pg-lang-switch label {
  display: none;
}

.pg-lang-trigger {
  width: 100%;
  border: 0;
  border-left: 1px solid #d7dce5;
  border-right: 1px solid #d7dce5;
  border-bottom: 1px solid #d7dce5;
  border-radius: 0;
  padding: 8px 10px;
  min-height: 40px;
  background: rgba(255, 255, 255, 0.96);
  color: #344054;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: none;
  cursor: pointer;
}

.pg-lang-trigger:hover {
  background: #ffffff;
}

.pg-lang-trigger:focus {
  outline: 0;
  box-shadow: none;
}

.pg-lang-current {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}

.pg-lang-flag {
  font-size: 14px;
  line-height: 1;
}

.pg-lang-chevron {
  color: #98a2b3;
  transition: transform 0.2s ease;
}

.pg-lang-switch.open .pg-lang-chevron {
  transform: rotate(180deg);
}

.pg-lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 0;
  border-left: 1px solid #d7dce5;
  border-right: 1px solid #d7dce5;
  border-bottom: 1px solid #d7dce5;
  border-radius: 0;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.12);
  overflow: hidden;
  display: none;
  z-index: 30;
}

.pg-lang-switch.open .pg-lang-menu {
  display: block;
}

.pg-lang-item {
  width: 100%;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 14px;
  color: #344054;
  cursor: pointer;
  border-bottom: 1px solid #f1f3f7;
}

.pg-lang-item:last-child {
  border-bottom: 0;
}

.pg-lang-item:hover {
  background: #f9fbff;
}

.pg-lang-item.active {
  background: #f4f7fc;
  font-weight: 700;
}

.pg-lang-check {
  color: #98a2b3;
}


@media (max-width: 1100px) and (min-width: 769px) {
  .pg-products-grid > [class*="col-"] {
    width: 50%;
  }

  .pg-products-grid {
    row-gap: 22px;
  }

  .pg-modern .container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  /* ── header: lang on top right, logo below (centered, bigger) ── */
  .pg-modern .container:first-of-type .row:first-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* hide the empty left spacer col */
  .pg-modern .container:first-of-type .row:first-child > div:first-child {
    display: none;
  }

  /* lang switch: row 1, right-aligned, compact */
  .pg-modern .container:first-of-type .row:first-child > div:last-child {
    order: 1;
    width: 100% !important;
    text-align: right;
    padding: 10px 0 6px;
    float: none;
  }

  /* logo col: row 2, centered, override the inline 20px padding */
  .pg-modern .container:first-of-type .row:first-child > div:nth-child(2) {
    order: 2;
    width: 100% !important;
    padding: 2px 0 16px !important;
    text-align: center;
    float: none;
  }

  /* logo image: bigger — override inline max-width:90% */
  .pg-modern .container:first-of-type .row:first-child > div:nth-child(2) img {
    max-width: 78% !important;
    width: 78% !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .pg-lang-switch {
    margin-top: 0;
    float: none;
  }

  .pg-lang-switch-floating {
    min-width: 140px;
  }

  /* ── product grid ── */
  .pg-products-grid > [class*="col-"] {
    width: 50%;
  }

  .pg-products-grid {
    row-gap: 12px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 100px;
  }

  .pg-product-card {
    padding: 0;
    margin-bottom: 0;
    max-width: 100%;
  }

  .pg-product-card > img.pg-product-hero,
  .pg-product-card .pg-gallery-stage {
    aspect-ratio: 3 / 4;
  }

  .pg-product-card p {
    font-size: 12px !important;
  }

  /* fix: was 34px — far too large on mobile */
  .pg-product-card p[style*="letter-spacing"] {
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
  }

  /* ── add-to-cart button: icon only on 2-col mobile cards ── */
  .pg-add-cart-btn .pg-add-text {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
  }

  /* ── gallery nav: 44px touch targets ── */
  .pg-gallery-nav {
    width: 38px;
    height: 44px;
    font-size: 20px;
  }

  /* ── lightbox ── */
  .pg-product-lightbox-main {
    max-width: min(92vw, 480px);
  }

  /* ── section headings ── */
  .pg-modern h1[style*="font-size:300%"] {
    font-size: 185% !important;
  }

  /* ── inspiration section ── */
  .pg-inspiration-row {
    display: block;
  }

  .pg-inspiration-text {
    order: 2;
    padding-right: 0;
    margin-top: 14px;
  }

  .pg-inspiration-media {
    order: 1;
  }

  /* ── FAB: safe-area-aware position ── */
  .pg-cart-fab {
    right: max(12px, env(safe-area-inset-right, 12px));
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 10px));
  }

  /* ── toast: above FAB ── */
  .pg-toast {
    right: 12px;
    left: 12px;
    bottom: max(72px, calc(env(safe-area-inset-bottom, 0px) + 66px));
  }

  /* ── cart drawer: full width, safe-area footer ── */
  .pg-cart-drawer {
    max-width: 100%;
  }

  .pg-cart-footer {
    padding-bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 10px));
  }
}


@media (max-width: 992px) {
  .pg-modern .container {
    width: auto;
  }

  .pg-modern .container-fluid[style*="background-color:#000"] .col-xs-12,
  .pg-modern .container-fluid[style*="background-color:#000"] .col-sm-6,
  .pg-modern .container-fluid[style*="background-color:#000"] .col-md-4 {
    margin-bottom: 12px;
  }
}

/* ── Site header: lang on top, logo below on mobile ── */
@media (max-width: 768px) {
  .pg-site-header .row {
    display: flex;
    flex-direction: column;
  }
  .pg-site-header .pg-checkout-spacer {
    display: none;
  }
  .pg-site-header .col-md-3:last-child {
    order: -1;
    text-align: right;
    padding: 10px 15px 0;
  }
  .pg-site-header .col-md-6 {
    padding-top: 4px !important;
  }
}

/* ── Announcement popup (shared) ── */
.pg-ann-overlay {
  position: fixed;
  inset: 0;
  z-index: 10080;
  background: rgba(4, 10, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pg-ann-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.pg-ann-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 2px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.pg-ann-overlay.open .pg-ann-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── dark header ── */
.pg-ann-header {
  background: #0c1929;
  padding: 32px 36px 28px;
  flex-shrink: 0;
  position: relative;
}

.pg-ann-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  padding: 3px 9px;
  margin-bottom: 14px;
}

.pg-ann-title {
  font-family: var(--romain-headline);
  font-size: 1.45rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0;
}

/* ── close btn (in dark header) ── */
.pg-ann-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.pg-ann-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

/* ── body ── */
.pg-ann-body {
  padding: 28px 36px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pg-ann-body p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #2d3748;
  margin-bottom: 12px;
}

.pg-ann-body p:last-child {
  margin-bottom: 0;
}

.pg-ann-body a {
  color: var(--pg-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pg-ann-body a:hover {
  color: var(--pg-primary-dark);
}

.pg-ann-sign {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e4eaf2;
  font-style: italic;
  color: var(--pg-muted);
  font-size: 13.5px;
}

/* ── footer ── */
.pg-ann-footer {
  padding: 4px 36px 28px;
  flex-shrink: 0;
}

.pg-ann-dismiss {
  display: block;
  width: 100%;
  background: #0c1929;
  border: 1px solid #0c1929;
  border-radius: 1px;
  color: #ffffff;
  font-family: var(--romain-headline);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pg-ann-dismiss:hover,
.pg-ann-dismiss:focus {
  background: #ffffff;
  border-color: #0c1929;
  color: #0c1929;
  outline: none;
}

@media (max-width: 540px) {
  .pg-ann-header {
    padding: 28px 22px 24px;
  }
  .pg-ann-title {
    font-size: 1.2rem;
  }
  .pg-ann-body {
    padding: 22px 22px 16px;
  }
  .pg-ann-footer {
    padding: 4px 22px 24px;
  }
}
