/* High-Fashion Luxury Welcome Offer Modal (PTN Signature Aesthetics) */

.ptn-wom-backdrop {
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(28, 27, 24, 0.65);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999999;
}

.ptn-wom-backdrop.ptn-wom-visible {
  opacity: 1;
}

.ptn-wom-modal {
  background: #fdfbf7;
  border: 1px solid #e2dcd5;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  color: #1c1b18;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 520px;
  padding: 40px 36px 36px;
  position: relative;
  text-align: center;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.ptn-wom-backdrop.ptn-wom-visible .ptn-wom-modal {
  transform: scale(1) translateY(0);
}

/* Close Button */
.ptn-wom-close {
  align-items: center;
  background: transparent;
  border: none;
  color: #8c857b;
  cursor: pointer;
  display: flex;
  font-size: 28px;
  font-weight: 300;
  height: 36px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  width: 36px;
  z-index: 2;
}

.ptn-wom-close:hover {
  color: #1c1b18;
  transform: scale(1.1);
}

/* Header */
.ptn-wom-sparkle {
  color: #605834;
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.ptn-wom-eyebrow {
  color: #605834;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ptn-wom-heading {
  color: #1c1b18;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 10px;
}

.ptn-wom-subtitle {
  color: #6a645b;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 24px;
}

/* Offers Grid */
.ptn-wom-offers-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 24px;
}

.ptn-wom-card {
  background: #ffffff;
  border: 1px solid #e8e2d9;
  border-radius: 4px;
  padding: 16px 14px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.ptn-wom-card--highlight {
  background: #f7f3eb;
  border-color: #605834;
}

.ptn-wom-card__badge {
  color: #605834;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 4px;
}

.ptn-wom-card__title {
  color: #3b3731;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CTA Button */
.ptn-wom-actions {
  display: flex;
  justify-content: center;
}

.ptn-wom-btn {
  align-items: center;
  background: #605834;
  border: 1px solid #605834;
  border-radius: 4px;
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.16em;
  padding: 0 28px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  width: 100%;
}

.ptn-wom-btn:hover {
  background: #4a4427;
  border-color: #4a4427;
  color: #ffffff !important;
}

/* Responsive Mobile Rules */
@media (max-width: 540px) {
  .ptn-wom-modal {
    padding: 32px 20px 24px;
  }
  .ptn-wom-heading {
    font-size: 24px;
  }
  .ptn-wom-offers-grid {
    gap: 8px;
  }
  .ptn-wom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .ptn-wom-card__badge {
    margin-bottom: 0;
    font-size: 22px;
  }
}
