/* ═══════════ BUILDER PORTAL CSS ═══════════ */
:root {
  --franklin-green: #2C3E2F;
  --slab-blue: #CDE3F2;
  --forest-brown: #4F423A;
  --pebble-grey: #DEDBCE;
  --ivory-white: #F7F7F7;
  --bg: #f4f1ec;
  --bg-secondary: #e8e4dc;
  --panel: #ffffff;
  --panel-hover: #faf9f6;
  --text: #2a231e;
  --text-muted: #6b6358;
  --text-secondary: #8b8477;
  --border: rgba(79, 66, 58, 0.14);
  --border-hover: rgba(79, 66, 58, 0.28);
  --shadow: 0 2px 12px rgba(79, 66, 58, 0.06);
  --shadow-lg: 0 8px 32px rgba(79, 66, 58, 0.10);
  --accent: #2C3E2F;
  --accent-light: #3a7d44;
  --gold: #b8860b;
  --gold-light: #f5e6c4;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark theme with Franklin palette */
    --bg: var(--forest-brown);
    --bg-secondary: #3a352f;
    --panel: #5c554c;
    --panel-hover: #6a645c;
    --text: var(--ivory-white);
    --text-muted: #e0dbd0;
    --text-secondary: #c8c3b8;
    --border: rgba(247, 247, 247, 0.18);
    --border-hover: rgba(247, 247, 247, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
    --accent: var(--franklin-green);
    --accent-light: #3a7d44;
    --gold: #d4a574;
    --gold-light: #4a3d30;
  }

  /* Ensure price highlight pops in dark mode */
  .p-price-builder {
    color: #e55;
  }

  .rc-link {
    color: var(--slab-blue);
  }

  .rc-link:hover {
    color: #a8c8e8;
  }

  .header-tag {
    color: var(--slab-blue);
  }

  .rc-icon-text {
    color: var(--slab-blue);
    border-color: rgba(205, 227, 242, 0.3);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ═══════════ PIN GATE ═══════════ */
.pin-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(44, 62, 47, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(205, 227, 242, 0.08) 0%, transparent 50%);
}

.pin-gate-inner {
  text-align: center;
  max-width: 380px;
  padding: 2.5rem;
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes shake {

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

  20%,
  60% {
    transform: translateX(-8px);
  }

  40%,
  80% {
    transform: translateX(8px);
  }
}

.pin-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.9;
}

.pin-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pin-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pin-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pin-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pin-input-wrap input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  font-size: 1.25rem;
  font-family: inherit;
  text-align: center;
  letter-spacing: 0.2em;
  outline: none;
  transition: var(--transition);
}

.pin-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 62, 47, 0.1);
}

.pin-btn {
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.pin-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.pin-error {
  color: #c44;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  animation: shake 0.4s ease;
}

.pin-back {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.pin-back:hover {
  color: var(--text);
}

.pin-gate.exiting {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* ═══════════ PORTAL LAYOUT ═══════════ */
.portal {
  animation: fadeInUp 0.5s ease 0.2s both;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--text);
}

.header-logo {
  height: 36px;
  width: auto;
}

.header-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.header-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-ghost {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.btn-ghost-sm {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost-sm:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-accent {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.portal-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* ═══════════ HERO ═══════════ */
.hero-section {
  background: var(--accent);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(205, 227, 242, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: var(--slab-blue);
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.88;
  max-width: 440px;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.stat-icon-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  min-width: 32px;
  text-align: center;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* ═══════════ DISCOUNT TIERS ═══════════ */
.discount-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tier-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.tier-card:hover {
  box-shadow: var(--shadow-lg);
}

.tier-card.active {
  border-color: var(--accent);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.tier-name {
  font-weight: 600;
  font-size: 1rem;
}

.tier-badge {
  background: var(--accent);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tier-badge-gold {
  background: var(--gold);
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════ CATALOG ═══════════ */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.catalog-controls {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ctl-input,
.ctl-select {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.ctl-input:focus,
.ctl-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 62, 47, 0.08);
}

.ctl-input {
  min-width: 200px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

/* Product Cards */
.p-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.p-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.p-card-thumb {
  height: 180px;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.p-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.p-card:hover .p-card-thumb img {
  transform: scale(1.04);
}

.p-card-body {
  padding: 1.25rem;
}

.p-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.p-card-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.p-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.p-card-pricing {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.p-card-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.p-price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.p-price-builder {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c44;
}

.p-price-saved {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.p-card-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.p-card-view {
  flex: 1;
  padding: 0.55rem;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.p-card-view:hover {
  background: var(--bg-secondary);
  border-color: var(--border-hover);
}

.p-card-quote-btn {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.p-card-quote-btn:hover {
  background: var(--accent-light);
}

.p-card-quote-btn.added {
  background: var(--gold);
  border-color: var(--gold);
}

.p-card-coming-soon {
  opacity: 0.6;
  pointer-events: none;
}

/* ═══════════ QUOTE BAR ═══════════ */
.quote-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease both;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.quote-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.quote-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.quote-count {
  font-weight: 700;
  font-size: 0.95rem;
}

.quote-sep {
  opacity: 0.4;
}

.quote-total {
  font-weight: 700;
  font-size: 1rem;
}

.quote-savings-label {
  opacity: 0.6;
  font-size: 0.8rem;
}

.quote-savings {
  font-weight: 700;
  color: #a8e6a0;
}

.quote-actions {
  display: flex;
  gap: 0.5rem;
}

/* ═══════════ REBATE SECTION ═══════════ */
.rebate-content {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rebate-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rebate-info strong {
  color: var(--text);
}

.rebate-examples {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.rebate-example {
  flex: 1;
  min-width: 150px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.re-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.re-arrow {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.re-rebate {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ═══════════ RESOURCES ═══════════ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.resource-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.resource-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.rc-icon-text {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}

.resource-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.rc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.rc-link:hover {
  color: var(--accent-light);
}

/* ═══════════ FOOTER ═══════════ */
.portal-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.portal-footer a {
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}

.portal-footer a:hover {
  color: var(--accent-light);
}

/* ═══════════ QUOTE MODAL ═══════════ */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.quote-modal-content {
  background: var(--panel);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.quote-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--panel);
  z-index: 1;
}

.quote-modal-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.quote-modal-actions {
  display: flex;
  gap: 0.5rem;
}

.quote-body {
  padding: 2rem;
}

.quote-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.quote-brand img {
  height: 40px;
}

.quote-brand-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.quote-brand-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.quote-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.quote-table th {
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--border);
}

.quote-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.quote-table .qt-right {
  text-align: right;
}

.quote-table .qt-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.quote-totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.quote-totals-row {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
}

.quote-totals-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--border);
}

.quote-totals-row .ql {
  color: var(--text-muted);
}

.quote-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ═══════════ PRINT ═══════════ */
@media print {

  .portal-header,
  .quote-bar,
  .quote-modal-actions,
  .p-card-quote-btn {
    display: none !important;
  }

  .quote-modal {
    position: static;
    background: none;
    backdrop-filter: none;
  }

  .quote-modal-content {
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .portal-header {
    padding: 0.75rem 1rem;
  }

  .header-left {
    gap: 0.5rem;
  }

  .header-logo {
    height: 28px;
  }

  .header-text h1 {
    font-size: 0.9rem;
  }

  .back-link {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    border-radius: var(--radius);
  }

  .hero-headline {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .hero-cards {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-card {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .stat-value {
    font-size: 0.95rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .discount-tiers {
    grid-template-columns: 1fr;
  }

  .catalog-header {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-controls {
    flex-direction: column;
  }

  .ctl-input {
    min-width: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .rebate-examples {
    flex-direction: column;
  }

  .quote-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .portal-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}