:root {
  --nordic-blue: #004AAD;
  --nordic-blue-dark: #003a8c;
  --nordic-blue-pale: #eef4ff;
  --nordic-blue-border: rgba(0, 74, 173, 0.2);
  --nordic-black: #111111;
  --nordic-text: #1a1a1a;
  --nordic-text-secondary: #555555;
  --nordic-text-muted: #888888;
  --nordic-white: #ffffff;
  --nordic-off-white: #f7f7f7;
  --nordic-gray-light: #e8e8e8;
  --nordic-gray-mid: #bbbbbb;
  --nordic-success: #2d7a5c;
  --nordic-success-bg: #e8f5ef;
  --nordic-font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --nordic-font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --nordic-radius: 14px;
  --nordic-radius-sm: 8px;
  --nordic-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --nordic-shadow-card: 0 2px 20px rgba(0, 0, 0, 0.08);
  --nordic-transition: 0.22s cubic-bezier(.4, 0, .2, 1);
}

/* Hide standard WooCommerce My Account navigation */
.woocommerce-MyAccount-navigation,
.wd-my-account-sidebar,
.woodmart-my-account-sidebar {
  display: none !important;
}

.woocommerce-my-account-wrapper,
.woodmart-my-account-content,
.woocommerce-MyAccount-content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0 !important;
  border: none !important;
}

/* Adjust woodmart specific layout if needed */
.my-account-with-sidebar .woocommerce-MyAccount-content {
  width: 100% !important;
}

/* ── MAIN LAYOUT ── */
.woocommerce-view-order .main-page-wrapper {
  background: #f7f7f7;
}

.nordic-dashboard-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 80px;
  background: var(--nordic-off-white);
  font-family: var(--nordic-font-body);
  color: var(--nordic-text);
}

/* ── GREETING ── */
.nordic-greeting {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nordic-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nordic-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--nordic-radius-sm);
  background: var(--nordic-blue-pale);
  transition: var(--nordic-transition);
}

.nordic-logout-btn svg {
  color: var(--nordic-blue);
}

.nordic-logout-btn:hover {
  background: var(--nordic-blue);
  color: var(--nordic-white);
}

.nordic-logout-btn:hover svg {
  color: var(--nordic-white);
}

.nordic-greeting-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nordic-text-muted);
  margin-bottom: 8px;
}

.nordic-greeting h1 {
  font-family: var(--nordic-font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--nordic-black);
  line-height: 1.15;
  margin: 0;
}

.nordic-greeting h1 span {
  color: var(--nordic-black);
  font-weight: 300;
}

.nordic-greeting-sub {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--nordic-text-secondary);
}

/* ── ORDER SELECTOR DROPDOWN ── */
.nordic-order-selector {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 14px 20px;
  background: var(--nordic-white);
  border: 1px solid var(--nordic-gray-light);
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow);
  transition: border-color var(--nordic-transition), box-shadow var(--nordic-transition);
}

.nordic-order-selector:hover,
.nordic-order-selector:focus-within {
  border-color: var(--nordic-blue-border);
  box-shadow: 0 2px 16px rgba(0, 74, 173, 0.08);
}

.nordic-order-selector-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nordic-blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.nordic-order-selector-label svg {
  color: var(--nordic-blue);
}

.nordic-order-selector-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}

.nordic-order-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--nordic-gray-light);
  border-radius: var(--nordic-radius-sm);
  padding: 10px 40px 10px 14px;
  font-family: var(--nordic-font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--nordic-black);
  background: var(--nordic-off-white);
  cursor: pointer;
  transition: all var(--nordic-transition);
  outline: none;
}

.nordic-order-select:hover {
  border-color: var(--nordic-blue-border);
  background: var(--nordic-white);
}

.nordic-order-select:focus {
  border-color: var(--nordic-blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
  background: var(--nordic-white);
}

.nordic-order-select-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--nordic-text-muted);
  transition: color var(--nordic-transition);
}

.nordic-order-selector:focus-within .nordic-order-select-arrow {
  color: var(--nordic-blue);
}

.nordic-order-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nordic-blue-pale);
  color: var(--nordic-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  border: 1px solid var(--nordic-blue-border);
}

/* ── SECTION LABEL ── */
.nordic-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nordic-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nordic-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--nordic-gray-light);
}

/* ── ORDER HERO ── */
.nordic-order-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

/* ── LEFT CARD ── */
.nordic-order-product-card {
  background: var(--nordic-white);
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow-card);
  border: 1px solid var(--nordic-gray-light);
  overflow: hidden;
}

.nordic-product-image-area {
  background: #fff;
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 255px;
}

.nordic-hat-svg-wrap {
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  animation: floatHat 4s ease-in-out infinite;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  height: 150px;
  max-height: 240px;
}

.nordic-hat-image {
  max-width: 240px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.nordic-hat-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

button.nordic-btn-primary.nordic-toggle-details-btn.cstm-od {
  background: #004aad;
  border: 1.5px solid var(--nordic-gray-light);
  border-radius: var(--nordic-radius-sm);
}

.nordic-hat-text-overlay {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: #004aad;
  backdrop-filter: blur(2px);
  color: white;
  font-weight: 700;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

@keyframes floatHat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.nordic-badge-custom {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #004aad;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nordic-order-product-info {
  padding: 24px 28px 28px;
}

.nordic-order-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--nordic-gray-light);
}

.nordic-order-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nordic-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nordic-text-muted);
}

.nordic-meta-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nordic-black);
}

.nordic-order-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.nordic-delivery-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nordic-success-bg);
  color: var(--nordic-success);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.nordic-status-dot {
  width: 7px;
  height: 7px;
  background: var(--nordic-success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.nordic-order-actions {
  display: flex;
  gap: 10px;
}

.nordic-btn-primary {
  font-size: 13px;
  font-weight: 600;
  color: var(--nordic-white) !important;
  background: var(--nordic-blue);
  border: none;
  border-radius: var(--nordic-radius-sm);
  padding: 10px 18px;
  cursor: pointer;
  transition: all var(--nordic-transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  text-decoration: none;
}

.nordic-btn-primary:hover {
  background: var(--nordic-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 74, 173, 0.25);
}


.nordic-btn-secondary {
  font-size: 13px;
  font-weight: 600;
  color: var(--nordic-black) !important;
  background: var(--nordic-white);
  border: 1.5px solid var(--nordic-gray-light);
  border-radius: var(--nordic-radius-sm);
  padding: 10px 18px;
  cursor: pointer;
  transition: all var(--nordic-transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  text-decoration: none;
}

.nordic-btn-secondary:hover {
  border-color: #aaa;
  background: var(--nordic-off-white);
}

/* ── RIGHT CARD ── */
.nordic-order-info-card {
  background: var(--nordic-white);
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow-card);
  border: 1px solid var(--nordic-gray-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nordic-order-lines {
  padding: 24px 28px 0;
}

.nordic-order-lines-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nordic-text-muted);
  margin-bottom: 12px;
}

.nordic-order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--nordic-gray-light);
}

.nordic-order-line:last-child {
  border-bottom: none;
}

.nordic-order-line-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.nordic-order-line-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--nordic-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nordic-order-line-icon svg {
  width: 15px;
  height: 15px;
  stroke: #666;
}

.nordic-order-line.accessory .nordic-order-line-icon {
  background: var(--nordic-blue-pale);
}

.nordic-order-line.accessory .nordic-order-line-icon svg {
  stroke: var(--nordic-blue);
}

.nordic-order-line-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nordic-black);
}

.nordic-order-line-desc {
  font-size: 11.5px;
  color: var(--nordic-text-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.woocommerce-my-account-wrapper .woocommerce-MyAccount-content {
  max-width: 100% !important;
}

.nordic-order-line-price {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nordic-black);
  white-space: nowrap;
  flex-shrink: 0;
}

.nordic-order-summary {
  margin: 0 28px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--nordic-gray-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nordic-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--nordic-text-secondary);
}

.nordic-summary-row.total {
  font-size: 15px;
  font-weight: 700;
  color: var(--nordic-black);
  padding-top: 10px;
  border-top: 1px solid var(--nordic-gray-light);
  margin-top: 4px;
}

.nordic-summary-row.adjustment {
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--nordic-radius-sm);
  margin: 2px 0;
  font-size: 13px;
}

.nordic-summary-row.adjustment.increase {
  background: var(--nordic-success-bg);
  color: var(--nordic-success);
  border: 1px solid rgba(45, 122, 92, 0.15);
}

.nordic-summary-row.adjustment.decrease {
  background: #fde8e7;
  color: #c22d25;
  border: 1px solid rgba(194, 45, 37, 0.15);
}

.nordic-adjustment-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nordic-adj-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  line-height: 1.2;
}

.nordic-summary-row.adjustment.increase .nordic-adj-badge {
  background: rgba(45, 122, 92, 0.15);
  color: var(--nordic-success);
}

.nordic-summary-row.adjustment.decrease .nordic-adj-badge {
  background: rgba(194, 45, 37, 0.15);
  color: #c22d25;
}

.nordic-adj-desc {
  font-weight: 500;
}

.nordic-adjustment-value {
  font-weight: 600;
  font-family: inherit;
}

.nordic-summary-vat {
  font-size: 11px;
  color: var(--nordic-text-muted);
  text-align: right;
}

.nordic-info-rows {
  border-top: 1px solid var(--nordic-gray-light);
  background: var(--nordic-off-white);
  padding: 0 28px;
  display: flex;
  flex-direction: column;
}

.nordic-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--nordic-gray-light);
}

.nordic-info-row:last-child {
  border-bottom: none;
}

.nordic-info-row-icon {
  width: 32px;
  height: 32px;
  background: var(--nordic-white);
  border-radius: 7px;
  border: 1px solid var(--nordic-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nordic-info-row-icon svg {
  width: 14px;
  height: 14px;
  stroke: #555;
}

.nordic-info-row-content {
  flex: 1;
}

.nordic-info-row-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--nordic-text-muted);
  margin-bottom: 2px;
}

.nordic-info-row-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--nordic-black);
}

.nordic-info-row-sub {
  font-size: 11.5px;
  color: var(--nordic-text-secondary);
  margin-top: 1px;
}

/* ── PROGRESS BAR ── */
.nordic-progress-section {
  margin-bottom: 32px;
}

.nordic-progress-card {
  background: var(--nordic-white);
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow-card);
  border: 1px solid var(--nordic-gray-light);
  padding: 32px 36px;
}

.nordic-progress-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 8px;
}

.nordic-progress-track {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--nordic-gray-light);
  z-index: 5;
}

.nordic-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--nordic-blue);
  width: 0%;
  border-radius: 2px;
  z-index: 10;
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.nordic-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 20;
}

.nordic-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--nordic-gray-light);
  background: var(--nordic-white);
  color: var(--nordic-text-muted);
  transition: all 0.4s ease;
}

.nordic-step.done .nordic-step-circle {
  background: var(--nordic-blue);
  border-color: var(--nordic-blue);
  color: var(--nordic-white);
}

.nordic-step.active .nordic-step-circle {
  background: var(--nordic-white);
  border-color: var(--nordic-blue);
  color: var(--nordic-blue);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

.nordic-step-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--nordic-text-muted);
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
}

.nordic-step.done .nordic-step-label,
.nordic-step.active .nordic-step-label {
  color: var(--nordic-black);
  font-weight: 600;
}

.nordic-step-date {
  font-size: 10.5px;
  color: var(--nordic-text-muted);
  font-weight: 500;
}

/* ── LOWER GRID ── */
.nordic-lower-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-bottom: 32px;
}

.nordic-customer-card {
  background: var(--nordic-white);
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow-card);
  border: 1px solid var(--nordic-gray-light);
  padding: 28px;
}

.nordic-customer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--nordic-gray-light);
}

.nordic-customer-avatar {
  width: 52px;
  height: 52px;
  background: var(--nordic-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nordic-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--nordic-white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nordic-customer-name {
  font-family: var(--nordic-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--nordic-black);
}

.nordic-customer-role {
  font-size: 12px;
  color: var(--nordic-text-muted);
  margin-top: 2px;
}

.nordic-school-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nordic-blue-pale);
  border: 1px solid var(--nordic-blue-border);
  border-radius: var(--nordic-radius-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
  width: 100%;
}

.nordic-school-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--nordic-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nordic-school-badge-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--nordic-white);
}

.nordic-school-info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nordic-blue);
}

.nordic-school-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--nordic-black);
}

.nordic-customer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nordic-customer-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nordic-field-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--nordic-text-muted);
}

.nordic-field-value {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--nordic-black);
}

.nordic-field-value.address {
  line-height: 1.5;
}

.nordic-customer-field.full {
  grid-column: 1 / -1;
}

.nordic-contact-card {
  background: #1a1a1a;
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--nordic-white);
}

.nordic-contact-card h3 {
  font-family: var(--nordic-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--nordic-white);
  letter-spacing: -0.01em;
  margin: 0;
}

.nordic-contact-card h3 span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.nordic-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nordic-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.nordic-hour-row .day {
  color: rgba(255, 255, 255, 0.5);
}

.nordic-contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.nordic-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nordic-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--nordic-transition);
}

.nordic-contact-link:hover {
  color: #7fb3f5;
}

.nordic-contact-link-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nordic-contact-link-icon svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.7);
}

.nordic-btn-chat {
  width: 100%;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nordic-white) !important;
  background: var(--nordic-blue) !important;
  border: none;
  border-radius: var(--nordic-radius-sm);
  padding: 13px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--nordic-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.nordic-btn-chat:hover {
  background: var(--nordic-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.3);
}

/* ── FAQ ── */
.nordic-faq-section {
  margin-bottom: 32px;
}

.nordic-faq-card {
  background: var(--nordic-white);
  border-radius: var(--nordic-radius);
  box-shadow: var(--nordic-shadow-card);
  border: 1px solid var(--nordic-gray-light);
  overflow: hidden;
}

.nordic-faq-item {
  border-bottom: 1px solid var(--nordic-gray-light);
}

.nordic-faq-item:last-child {
  border-bottom: none;
}

.nordic-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  transition: background var(--nordic-transition);
  user-select: none;
}

.nordic-faq-q:hover {
  background: var(--nordic-off-white);
}

.nordic-faq-q-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--nordic-black);
}

.nordic-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nordic-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--nordic-transition);
}

.nordic-faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--nordic-black);
  transition: transform var(--nordic-transition);
}

.nordic-faq-item.open .nordic-faq-icon {
  background: var(--nordic-blue);
}

.nordic-faq-item.open .nordic-faq-icon svg {
  stroke: var(--nordic-white);
  transform: rotate(45deg);
}

.nordic-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1);
}

.nordic-faq-item.open .nordic-faq-a {
  max-height: 200px;
}

.nordic-faq-a-inner {
  padding: 0 28px 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--nordic-text-secondary);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nordic-greeting {
  animation: fadeUp 0.5s ease both;
}

.nordic-order-hero {
  animation: fadeUp 0.5s 0.1s ease both;
}

.nordic-progress-section {
  animation: fadeUp 0.5s 0.2s ease both;
}

.nordic-lower-grid {
  animation: fadeUp 0.5s 0.3s ease both;
}

.nordic-faq-section {
  animation: fadeUp 0.5s 0.35s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 1270px) {
  .woocommerce-my-account-wrapper {
    margin-inline: 0px !important;
  }
}

@media (max-width: 900px) {
  .nordic-order-hero {
    grid-template-columns: 1fr;
  }

  .nordic-lower-grid {
    grid-template-columns: 1fr;
  }

  .nordic-customer-details {
    grid-template-columns: 1fr;
  }

  .nordic-greeting h1 {
    font-size: 28px;
  }

  .nordic-order-status-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .nordic-dashboard-wrapper {
    padding: 24px 16px 60px;
  }

  .nordic-progress-card,
  .nordic-order-product-card,
  .nordic-order-info-card,
  .nordic-customer-card,
  .nordic-contact-card,
  .nordic-faq-card {
    padding: 20px 16px;
  }

  .nordic-order-product-info,
  .nordic-order-lines,
  .nordic-info-rows {
    padding: 16px;
  }

  .nordic-progress-steps-wrapper {
    overflow-x: auto;
    padding-bottom: 8px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nordic-progress-steps {
    min-width: 460px;
  }

  .nordic-step-label {
    font-size: 10px;
  }

  .nordic-order-actions {
    flex-direction: column;
    width: 100%;
  }

  .nordic-btn-primary,
  .nordic-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .nordic-order-selector {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
  }

  .nordic-order-select {
    font-size: 12.5px;
    padding: 10px 36px 10px 12px;
  }

  .nordic-order-meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nordic-order-meta-item {
    min-width: 0;
  }

  .nordic-meta-value {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

/* Standard WooCommerce Product Image Styles */
.nordic-product-image-wrap {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nordic-custom-product-image {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: var(--nordic-radius-sm);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.nordic-custom-product-image:hover {
  transform: scale(1.03);
}

body.woocommerce-account header.whb-header {
  background: #000;
  min-height: 70px;
}

body.woocommerce-account .page-title {
  display: none;
}

body.woocommerce-account .woocommerce-my-account-wrapper {
  padding-top: 50px !important;
}