/* ============================================================
   LOCAL PREMIUM ACCESS TEST
   Remove this file when real authentication is installed.
   ============================================================ */

.premiumAccessBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid #d8dfe3;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.premiumAccessIdentity {
  min-width: 0;
}

.premiumAccessLabel {
  margin-bottom: 3px;
  color: #6d7a84;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.premiumAccessValue {
  overflow: hidden;
  color: #001f2d;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.premiumAccessStatus {
  padding: 5px 9px;
  border: 1px solid #d6dde1;
  border-radius: 999px;
  color: #5d6972;
  background: #f4f6f7;
  font-size: 11px;
  font-weight: 700;
}

.premiumAccessStatus.premium {
  border-color: #001f2d;
  color: #ffffff;
  background: #001f2d;
}

.premiumAccessButton {
  padding: 8px 13px;
  border: 1px solid #001f2d;
  border-radius: 6px;
  color: #ffffff;
  background: #001f2d;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.premiumAccessButton:hover {
  opacity: 0.9;
}

.premiumAccessModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 16, 24, 0.68);
  backdrop-filter: blur(3px);
}

.premiumAccessModal {
  width: min(440px, 100%);
  padding: 28px;
  border: 1px solid #d6dde1;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  font-family: "Inter", sans-serif;
}

.premiumAccessEyebrow {
  margin-bottom: 9px;
  color: #001f2d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.premiumAccessTitle {
  margin: 0 0 10px;
  color: #001f2d;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.16;
}

.premiumAccessText {
  margin: 0 0 20px;
  color: #56636d;
  font-size: 14px;
  line-height: 1.6;
}

.premiumAccessInput {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 13px;
  border: 1px solid #cfd7dc;
  border-radius: 7px;
  outline: none;
  color: #1f2a33;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.premiumAccessInput:focus {
  border-color: #001f2d;
  box-shadow: 0 0 0 3px rgba(0, 31, 45, 0.1);
}

.premiumAccessModalActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.premiumAccessPrimary,
.premiumAccessSecondary {
  padding: 11px 16px;
  border-radius: 7px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.premiumAccessPrimary {
  border: 1px solid #001f2d;
  color: #ffffff;
  background: #001f2d;
}

.premiumAccessSecondary {
  border: 1px solid #cfd7dc;
  color: #001f2d;
  background: #ffffff;
}

.premiumAccessPlanBox {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #d8dfe3;
  border-radius: 8px;
  background: #f7f8f8;
}

.premiumAccessPlanName {
  color: #001f2d;
  font-size: 15px;
  font-weight: 800;
}

.premiumAccessPlanPrice {
  margin-top: 4px;
  color: #4f5d67;
  font-size: 13px;
}

.premiumAccessTestNote {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #e3e7e9;
  color: #7a858d;
  font-size: 11px;
  line-height: 1.5;
}

.premiumExportCard.isLocked .projectOptionBtn {
  position: relative;
}

.premiumExportCard.isLocked .projectOptionBtn::after {
  margin-left: 7px;
  content: "🔒";
  font-size: 11px;
}

@media (max-width: 700px) {
  .premiumAccessBar {
    align-items: flex-start;
    flex-direction: column;
  }

  .premiumAccessActions {
    width: 100%;
    justify-content: space-between;
  }
}