/* ArcTime Product Page — ArcCRM base + ArcTime mocks */
@import url("/assets/css/arc-crm-product.css");

/* Keep ArcCRM scope. Only override / extend. */
.crm-product .product-frame-head {
  padding: 0;
  margin: 0;
  overflow: hidden;
  line-height: 0;
  background: #12344d;
}

.crm-product .product-frame-head > svg {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

/* Alternate surfaces (ArcTime) */
.crm-product .timeoff-section,
.crm-product .trusted-section,
.crm-product .geo-section {
  background: var(--crm-surface);
}

.crm-product .risk-section,
.crm-product .payroll-section,
.crm-product .allocation-section,
.crm-product .industry-section {
  background: #fff;
}

/* Match ArcCRM canvas-band implementation */
.crm-product .crm-network-band > .network-bg {
  z-index: 0;
  opacity: 1;
}

.crm-product .crm-network-band > *:not(.network-bg) {
  z-index: 1;
}

.crm-product .crm-network-band .timeoff-section,
.crm-product .crm-network-band .risk-section,
.crm-product .crm-network-band .trusted-section,
.crm-product .crm-network-band .payroll-section,
.crm-product .crm-network-band .geo-section,
.crm-product .crm-network-band .allocation-section {
  background: transparent;
}

/* ArcCRM applies extra vertical rhythm to in-band sections.
   ArcTime needs the same since its section classnames differ. */
.crm-product .crm-network-band .timeoff-section,
.crm-product .crm-network-band .risk-section,
.crm-product .crm-network-band .trusted-section,
.crm-product .crm-network-band .payroll-section,
.crm-product .crm-network-band .geo-section,
.crm-product .crm-network-band .allocation-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Keep Industries + final CTA outside the canvas band */
.crm-product .industry-section {
  background-color: var(--crm-surface);
  background-image: url("/assets/img/arc-crm-industries-bg-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Shared inner padding for ArcTime frames */
.crm-product .at-frame-body {
  padding: 22px;
}

/* =========================
   Hero visual (ArcTime)
   ========================= */
.crm-product .at-hv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--crm-border);
  background: #fff;
}

.crm-product .at-hv-toolbar-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e0d59;
}

.crm-product .at-hv-toolbar-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--crm-text-light);
  white-space: nowrap;
}

.crm-product .at-hv-block {
  padding: 16px;
}

.crm-product .at-hv-block + .at-hv-block {
  border-top: 1px solid var(--crm-border);
}

.crm-product .at-hv-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e0d59;
  opacity: 0.75;
  margin-bottom: 10px;
}

.crm-product .at-week-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.crm-product .at-day-cell {
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  padding: 10px 8px;
  background: #fff;
}

.crm-product .at-day-cell.low {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
}

.crm-product .at-day-cell.med {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.35);
}

.crm-product .at-day-cell.high {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.28);
}

.crm-product .at-day-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crm-text-light);
  margin-bottom: 4px;
}

.crm-product .at-day-num {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 4px;
}

.crm-product .at-day-out {
  font-size: 10px;
  font-weight: 700;
  color: var(--crm-text-light);
}

.crm-product .at-timesheet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--crm-border);
  border-radius: 10px;
  background: #fff;
}

.crm-product .at-timesheet-row + .at-timesheet-row {
  margin-top: 8px;
}

.crm-product .at-ts-name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.crm-product .at-ts-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(2, 141, 193, 0.12);
  border: 1px solid rgba(2, 141, 193, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #0e0d59;
  flex-shrink: 0;
}

.crm-product .at-ts-info-name {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.crm-product .at-ts-info-meta {
  margin-top: 2px;
  font-size: 11px;
  color: var(--crm-text-light);
}

.crm-product .at-ts-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.crm-product .at-ts-score.low {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #166534;
}

.crm-product .at-ts-score.med {
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.38);
  color: #92400e;
}

.crm-product .at-ts-score.high {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #991b1b;
}

/* =========================
   Time off calendar mock
   ========================= */
.crm-product .at-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.crm-product .at-cal-month {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
}

.crm-product .at-cal-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.crm-product .at-cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--crm-text-light);
  white-space: nowrap;
}

.crm-product .at-cal-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.crm-product .at-cal-legend-dot.low {
  background: #22c55e;
}

.crm-product .at-cal-legend-dot.med {
  background: #f59e0b;
}

.crm-product .at-cal-legend-dot.high {
  background: #fb7185;
}

.crm-product .at-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

.crm-product .at-cal-weekday {
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crm-text-light);
}

.crm-product .at-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.crm-product .at-cal-day {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--crm-border);
  background: var(--crm-surface-alt);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
}

.crm-product .at-cal-day.low {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
}

.crm-product .at-cal-day.med {
  background: rgba(251, 191, 36, 0.16);
  border-color: rgba(251, 191, 36, 0.33);
}

.crm-product .at-cal-day.high {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
}

.crm-product .at-cal-day-out {
  font-size: 10px;
  font-weight: 900;
  color: var(--crm-text-light);
  opacity: 0.85;
}

.crm-product .at-cal-rule-alert {
  margin-top: 14px;
  padding: 14px 14px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.crm-product .at-rule-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f59e0b;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.crm-product .at-rule-text {
  font-size: 12.5px;
  color: #0f172a;
  line-height: 1.45;
}

.crm-product .at-rule-text strong {
  font-weight: 900;
}

/* Predict / Prevent / Approve strip */
.crm-product .at-pp-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  width: 100%;
  grid-column: 1 / -1;
  align-items: stretch;
}

.crm-product .at-pp-card {
  background: #fff;
  border: 1px solid rgba(226, 221, 213, 0.95);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 28px rgba(13, 31, 66, 0.08);
  height: 100%;
}

.crm-product .at-pp-num {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(167, 129, 44, 0.95);
  margin-bottom: 10px;
}

.crm-product .at-pp-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #0f172a;
}

.crm-product .at-pp-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crm-product .at-pp-bullets li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-bottom: 1px dashed var(--crm-border);
  font-size: 13.5px;
  color: var(--crm-text-light);
  line-height: 1.5;
}

.crm-product .at-pp-bullets li:last-child {
  border-bottom: none;
}

.crm-product .at-pp-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(195, 155, 45, 0.95);
}

/* =========================
   Risk scoring timesheet
   ========================= */
.crm-product .at-ts-detail-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--crm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
}

.crm-product .at-ts-detail-emp {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.crm-product .at-ts-detail-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  color: #fbbc04;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.crm-product .at-ts-detail-name {
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.crm-product .at-ts-detail-meta {
  margin-top: 3px;
  font-size: 12px;
  color: var(--crm-text-light);
}

.crm-product .at-risk-score-badge {
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.09);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  text-align: center;
  flex-shrink: 0;
}

.crm-product .at-risk-score-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b91c1c;
}

.crm-product .at-risk-score-value {
  font-size: 22px;
  font-weight: 900;
  color: #b91c1c;
  line-height: 1;
  margin-top: 4px;
}

.crm-product .at-ts-detail-body {
  padding: 18px 22px;
  background: #fff;
}

.crm-product .at-ts-exceptions-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crm-text-light);
  margin-bottom: 12px;
}

.crm-product .at-ts-exc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--crm-surface-alt);
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--crm-border);
}

.crm-product .at-ts-exc-row:last-child {
  margin-bottom: 0;
}

.crm-product .at-ts-exc-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.crm-product .at-ts-exc-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.crm-product .at-ts-exc-icon.danger {
  background: #ef4444;
}

.crm-product .at-ts-exc-icon.warn {
  background: #f59e0b;
}

.crm-product .at-ts-exc-text {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-product .at-ts-exc-points {
  font-size: 12px;
  font-weight: 900;
  color: var(--crm-text-light);
  white-space: nowrap;
}

.crm-product .at-ts-detail-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--crm-border);
  background: var(--crm-surface-alt);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.crm-product .at-btn-mock {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--crm-border);
  background: #fff;
  color: var(--crm-text-light);
  user-select: none;
}

.crm-product .at-btn-mock.primary {
  background: #0e0d59;
  border-color: #0e0d59;
  color: #fff;
}

/* =========================
   Trusted attendance cards
   ========================= */
.crm-product .at-capture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.crm-product .at-capture-card {
  border: 1px solid var(--crm-border);
  border-radius: 14px;
  background: #fff;
  padding: 18px 16px;
  position: relative;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .at-capture-verified {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: #16a34a;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.crm-product .at-capture-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--crm-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.crm-product .at-capture-card h4 {
  font-size: 14.5px;
  font-weight: 900;
  margin: 0 0 6px;
  color: #0f172a;
}

.crm-product .at-capture-card p {
  font-size: 12.5px;
  margin: 0;
  color: var(--crm-text-light);
  line-height: 1.45;
}

/* =========================
   Payroll handoff flow
   ========================= */
.crm-product .at-step-flow {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-wrap: nowrap;
}

.crm-product .at-step-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--crm-border);
  border-radius: 16px;
  padding: 18px 16px;
}

.crm-product .at-step-arrow {
  flex: 0 0 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crm-text-light);
  font-size: 18px;
  font-weight: 900;
  padding: 0;
}

@media (max-width: 900px) {
  .crm-product .at-step-flow {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .crm-product .at-step-card {
    flex: 0 0 auto;
    width: min(420px, 100%);
  }

  .crm-product .at-step-arrow {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    padding: 4px 0;
    transform: rotate(90deg);
  }
}

.crm-product .at-step-card.active {
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.18);
}

.crm-product .at-step-card.locked {
  background: #fff;
  border-color: rgba(226, 221, 213, 0.95);
  color: #0f172a;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.crm-product .at-step-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crm-accent-dark);
  margin-bottom: 8px;
}

.crm-product .at-step-card.locked .at-step-num {
  color: rgba(167, 129, 44, 0.95);
}

.crm-product .at-step-title {
  font-size: 14.5px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.crm-product .at-step-card.locked .at-step-title {
  color: #0f172a;
}

.crm-product .at-step-rows {
  display: grid;
  gap: 8px;
}

.crm-product .at-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--crm-text-light);
}

.crm-product .at-step-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: 12px;
}

.crm-product .at-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crm-text-light);
  font-size: 18px;
  font-weight: 900;
  padding: 0 4px;
}

.crm-product .at-lock-icon {
  font-size: 22px;
  margin: 6px 0;
}

.crm-product .at-locked-sub {
  font-size: 12px;
  color: var(--crm-text-light);
}

/* =========================
   Geo map mock
   ========================= */
.crm-product .at-map-container {
  position: relative;
  height: 340px;
  background: #fff;
}

.crm-product .at-map-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(2, 141, 193, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 141, 193, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.crm-product .at-map-road {
  position: absolute;
  height: 6px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
}

.crm-product .at-map-road.road-1 {
  width: 78%;
  top: 28%;
  left: 10%;
  transform: rotate(-6deg);
}

.crm-product .at-map-road.road-2 {
  width: 66%;
  top: 52%;
  left: 16%;
  transform: rotate(9deg);
}

.crm-product .at-map-road.road-3 {
  width: 54%;
  top: 72%;
  left: 24%;
  transform: rotate(-2deg);
}

.crm-product .at-geofence-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 2px dashed rgba(2, 141, 193, 0.4);
  background: rgba(2, 141, 193, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.crm-product .at-geofence-circle.gf-1 {
  top: 14%;
  left: 14%;
}

.crm-product .at-geofence-circle.gf-2 {
  top: 40%;
  left: 44%;
}

.crm-product .at-geofence-circle.gf-3 {
  top: 58%;
  left: 70%;
  width: 110px;
  height: 110px;
}

.crm-product .at-gf-label {
  font-size: 11px;
  font-weight: 900;
  color: #0e0d59;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(2, 141, 193, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.crm-product .at-map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.crm-product .at-map-pin.warn {
  background: #fb7185;
}

.crm-product .at-map-pin.pin-1 {
  top: 28%;
  left: 22%;
}

.crm-product .at-map-pin.pin-2 {
  top: 56%;
  left: 52%;
}

.crm-product .at-map-pin.pin-3 {
  top: 68%;
  left: 76%;
}

.crm-product .at-map-pin.pin-flagged {
  top: 48%;
  left: 62%;
}

.crm-product .at-geo-status-panel {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 210px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--crm-border);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: var(--crm-shadow-card);
}

.crm-product .at-geo-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  background: var(--crm-surface-alt);
}

.crm-product .at-geo-stat-row + .at-geo-stat-row {
  margin-top: 8px;
}

.crm-product .at-geo-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

.crm-product .at-geo-stat-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.crm-product .at-geo-stat-value {
  font-size: 12px;
  font-weight: 900;
  color: var(--crm-text-light);
}

/* =========================
   Allocation / pay calc
   ========================= */
.crm-product .at-paycalc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  border-bottom: 1px solid var(--crm-border);
}

.crm-product .at-paycalc-emp {
  display: flex;
  align-items: center;
  gap: 12px;
}

.crm-product .at-paycalc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(2, 141, 193, 0.12);
  border: 1px solid rgba(2, 141, 193, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0e0d59;
}

.crm-product .at-paycalc-name {
  font-size: 14.5px;
  font-weight: 900;
  color: #0f172a;
}

.crm-product .at-paycalc-meta {
  font-size: 12px;
  color: var(--crm-text-light);
  margin-top: 2px;
}

.crm-product .at-paycalc-summary {
  text-align: right;
}

.crm-product .at-paycalc-hours {
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.crm-product .at-paycalc-tiers {
  font-size: 12px;
  color: var(--crm-text-light);
  margin-top: 2px;
}

.crm-product .at-paycalc-body {
  padding: 14px 18px 18px;
  display: grid;
  gap: 10px;
}

.crm-product .at-paycalc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--crm-border);
  border-radius: 12px;
  background: var(--crm-surface-alt);
}

.crm-product .at-paycalc-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.crm-product .at-paycalc-tier-bar {
  width: 8px;
  height: 34px;
  border-radius: 999px;
  flex-shrink: 0;
}

.crm-product .at-paycalc-tier-bar.tier-reg {
  background: rgba(2, 141, 193, 0.95);
}

.crm-product .at-paycalc-tier-bar.tier-ot {
  background: rgba(251, 191, 36, 0.95);
}

.crm-product .at-paycalc-tier-bar.tier-night {
  background: rgba(124, 123, 255, 0.95);
}

.crm-product .at-paycalc-tier-bar.tier-holiday {
  background: rgba(251, 113, 133, 0.95);
}

.crm-product .at-paycalc-tier-name {
  font-size: 13px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.crm-product .at-paycalc-tier-meta {
  font-size: 12px;
  color: var(--crm-text-light);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crm-product .at-paycalc-amount {
  font-size: 13px;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
}

.crm-product .at-paycalc-footer {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--crm-border);
  background: #fff;
}

.crm-product .at-paycalc-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.crm-product .at-paycalc-total-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crm-text-light);
}

.crm-product .at-paycalc-total-value {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
}

.crm-product .at-paycalc-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  font-size: 12.5px;
  font-weight: 700;
  color: #166534;
}

.crm-product .at-paycalc-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* Industries emojis */
.crm-product .at-industry-emoji {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .crm-product .at-pp-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .crm-product .at-week-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .crm-product .at-cal-weekdays,
  .crm-product .at-cal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .crm-product .at-capture-grid {
    grid-template-columns: 1fr;
  }
  .crm-product .at-map-container {
    height: 300px;
  }
}

