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

html {
  height: 100%;
}

body.pepco-site {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0b2d5b;
  background: #ffffff;
}

a {
  color: #0b2d5b;
}

.pepco-header {
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: 0 1px 0 #e4eaf2, 0 4px 24px rgba(11, 45, 91, 0.06);
}

.pepco-header__accent {
  height: 3px;
  background: #e31837;
}

.pepco-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.pepco-header__logo img {
  display: block;
  width: 118px;
  height: auto;
}

.pepco-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.pepco-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #0b2d5b;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pepco-header__link:hover,
.pepco-header__link:focus-visible {
  background: #f4f7fb;
  color: #0b2d5b;
}

.pepco-header__link.is-active {
  background: #0b2d5b;
  color: #ffffff;
}

.pepco-header__link--ghost {
  color: #4a5f7a;
}

.pepco-header__link--cta {
  background: #e31837;
  color: #ffffff;
  border-color: #e31837;
}

.pepco-header__link--cta:hover,
.pepco-header__link--cta:focus-visible {
  background: #c41430;
  border-color: #c41430;
  color: #ffffff;
}

.pepco-header__cart {
  position: relative;
}

.pepco-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #e31837;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}

.pepco-header__link.is-active .pepco-cart-badge {
  background: #ffffff;
  color: #e31837;
}

.pepco-cart-badge--empty {
  display: none;
}

.pepco-main {
  flex: 1 0 auto;
  width: 100%;
}

.pepco-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2rem;
}

.pepco-page__title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b2d5b;
}

.pepco-page__content {
  max-width: 720px;
}

.pepco-page__content--full,
.pepco-page--dashboard .pepco-page__content {
  max-width: none;
  width: 100%;
}

.pepco-footer {
  flex-shrink: 0;
  width: 100%;
}

.pepco-footer__main {
  background: #f8fafc;
  border-top: 1px solid #e4eaf2;
}

.pepco-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.pepco-footer__inner--bar {
  padding: 1rem 1.5rem;
}

.pepco-footer__main .pepco-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pepco-footer__brand img {
  display: block;
  margin-bottom: 0.75rem;
}

.pepco-footer__brand p {
  margin: 0;
  font-size: 0.875rem;
  color: #4a5f7a;
  max-width: 220px;
}

.pepco-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b2d5b;
}

.pepco-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pepco-footer__links li {
  margin-bottom: 0.4rem;
}

.pepco-footer__links a {
  font-size: 0.875rem;
  color: #4a5f7a;
  text-decoration: none;
}

.pepco-footer__links a:hover,
.pepco-footer__links a:focus-visible {
  color: #e31837;
}

.pepco-footer__disclaimer {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #4a5f7a;
}

.pepco-footer__bar {
  background: #0b2d5b;
}

.pepco-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.pepco-notice {
  max-width: 420px;
  margin: 4rem auto;
  text-align: center;
}

.pepco-notice p {
  margin-bottom: 1.25rem;
  color: #4a5f7a;
}

.pepco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pepco-btn--primary {
  color: #ffffff;
  background: #e31837;
  border-color: #e31837;
}

.pepco-btn--primary:hover,
.pepco-btn--primary:focus-visible {
  background: #c41430;
  border-color: #c41430;
  color: #ffffff;
}

.pepco-btn--outline {
  color: #0b2d5b;
  background: #ffffff;
  border-color: #0b2d5b;
}

.pepco-btn--outline:hover,
.pepco-btn--outline:focus-visible {
  background: #0b2d5b;
  color: #ffffff;
}

.pepco-disclaimer {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #7a8fa8;
}

@media (max-width: 768px) {
  .pepco-footer__main .pepco-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .pepco-header__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem;
  }

  .pepco-header__logo {
    text-align: center;
  }

  .pepco-header__nav {
    justify-content: center;
  }
}
