/* Shared Vender identity: retail bands, compact typography and overlapping merchandise. */
:root {
  --identity-blue: #087585;
  --identity-red: #c43e28;
  --identity-white: #fffdf9;
}
.announcement {
  display: none;
}
.identity-departments {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 var(--gap);
  min-height: 58px;
  background: var(--identity-red);
  color: #fff;
}
.identity-departments a {
  display: flex;
  align-items: center;
  min-height: 58px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.identity-departments a:last-child {
  margin-left: auto;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.identity-campaign {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--identity-blue);
  color: #fff;
  min-height: 520px;
  padding: 0 var(--gap) 66px;
  gap: 40px;
  align-items: center;
}
.identity-campaign-copy {
  padding: 48px 0;
}
.identity-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.identity-campaign h1 {
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  font-weight: 750;
  margin: 28px 0 22px;
}
.identity-campaign h1 > span {
  font-size: 0.65em;
  font-weight: 300;
  letter-spacing: -1px;
}
.identity-campaign p {
  font-size: 15px;
  line-height: 1.6;
}
.identity-arrow {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: var(--identity-red);
  padding: 17px 28px 17px 20px;
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}
.identity-campaign-image {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.identity-campaign-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.identity-caption {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  padding: 12px;
  background: var(--identity-blue);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.identity-arrivals {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 1fr;
  margin: -50px var(--gap) 70px;
  background: var(--identity-white);
}
.identity-products {
  padding: 28px;
}
.identity-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.identity-section-head h2 {
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.identity-section-head p {
  font-size: 12px;
  color: var(--muted);
  margin: 5px 0;
}
.identity-section-head > a {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--identity-red);
  border: 1px solid currentColor;
  padding: 12px;
  min-height: 44px;
}
#identity-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.identity-product > a {
  display: block;
}
.identity-product img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}
.identity-product-meta > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin: 14px 0 6px;
}
.identity-product h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 10px;
}
.identity-product-meta > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--line);
}
.identity-product strong {
  font-size: 15px;
  font-weight: 600;
}
.identity-product button {
  min-height: 44px;
  font-size: 11px;
}
.identity-product button > span {
  font-size: 20px;
  color: var(--identity-red);
  margin-left: 8px;
}
.identity-edit {
  background: var(--identity-blue);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.identity-edit > span {
  padding: 20px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.identity-edit img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}
.identity-edit > div {
  padding: 20px;
}
.identity-edit h2 {
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.7px;
}
.identity-edit a {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
}
.identity-arrow:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}
.identity-departments a:focus-visible,
.identity-edit a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}
@media (max-width: 850px) {
  .identity-departments {
    gap: 20px;
    flex-wrap: wrap;
  }
  .identity-arrivals {
    grid-template-columns: 1fr;
  }
  .identity-edit {
    display: none;
  }
  .identity-campaign {
    gap: 20px;
  }
  .identity-campaign h1 {
    font-size: 48px;
  }
  .identity-caption {
    font-size: 8px;
  }
  .identity-product-meta > div {
    flex-wrap: wrap;
  }
}
@media (max-width: 650px) {
  .identity-departments {
    padding: 8px 20px;
    gap: 0 24px;
  }
  .identity-departments a {
    min-height: 44px;
    font-size: 10px;
  }
  .identity-departments a:last-child {
    margin-left: 0;
  }
  .identity-campaign {
    grid-template-columns: 1fr;
    padding: 0 20px 58px;
    gap: 0;
  }
  .identity-campaign-copy {
    padding: 30px 0;
  }
  .identity-campaign h1 {
    font-size: 48px;
  }
  .identity-campaign-image img {
    max-height: 250px;
  }
  .identity-caption {
    bottom: 0;
  }
  .identity-arrivals {
    margin: -30px 20px 40px;
  }
  .identity-products {
    padding: 20px;
  }
  .identity-section-head h2 {
    font-size: 20px;
  }
  .identity-section-head > a {
    font-size: 9px;
    padding: 10px;
  }
  #identity-product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .identity-product {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .identity-product img {
    height: 115px;
    aspect-ratio: auto;
  }
  .identity-product-meta > span {
    margin-top: 0;
  }
  .identity-product h3 {
    font-size: 14px;
  }
  .identity-product-meta > div {
    flex-wrap: nowrap;
  }
}

/* Match the selected direction-01 wordmark at the preview root. */
.wordmark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -5px;
  line-height: 1;
  text-transform: none;
  color: var(--ink);
}
@media (max-width: 650px) {
  .wordmark {
    font-size: 45px;
    letter-spacing: -4px;
  }
}

/* Small punctuation mark at the logo baseline. */
.wordmark::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--identity-red);
  vertical-align: baseline;
}
@media (max-width: 650px) {
  .wordmark::after {
    width: 6px;
    height: 6px;
    margin-left: 4px;
  }
}

/* Shared identity tokens and storefront details. Preserve native workflow controls. */
:root {
  --teal: var(--identity-blue);
}
.section-head h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.section-head .eyebrow {
  color: var(--coral);
}
.product-card .card-info {
  padding-top: 14px;
  gap: 12px;
}
.product-card .card-info h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.product-card .card-info p {
  font-size: 11px;
}
.product-card .card-info > span {
  font-size: 15px;
  font-weight: 600;
}
.product-card .card-image > button {
  border-radius: 0;
  background: var(--paper);
  color: var(--coral);
}
.home-story {
  background: var(--identity-blue);
  color: #fff;
}
.home-story h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -1px;
}
.home-story em {
  font-style: normal;
  font-weight: 600;
}
.home-story .eyebrow {
  color: #fff;
}
.catalog-heading h2 {
  font-size: 27px;
  letter-spacing: -0.5px;
}
.catalog-heading > span {
  font-size: 10px;
}
.components-page h1 {
  font-size: 48px;
  letter-spacing: -1.5px;
}
.kit-preview {
  background: var(--identity-white);
}
.catalog-tools {
  border-top: 3px solid var(--identity-red);
}
.delivery-milestone,
.club-example,
.gift-card-art {
  background: var(--identity-blue);
}
.gift-card-art > span::after {
  content: ".";
  color: #fff;
}
.kit-table thead {
  background: var(--identity-blue);
}
.merch-copy h3 {
  font-size: 17px;
}
.merch-label {
  border-radius: 0;
}
.merch-image img {
  aspect-ratio: 1.2;
}
.merch-copy {
  padding-top: 16px;
}
.shopping-help {
  border-radius: 3px;
  background: var(--identity-blue);
}
.assistant-message {
  border-radius: 0;
}
.assistant-message.user {
  border-radius: 0;
  background: var(--identity-blue);
}
.assistant-prompts button {
  border-radius: 2px;
}
@media (max-width: 650px) {
  .components-page h1 {
    font-size: 36px;
  }
  .catalog-heading h2,
  .section-head h2 {
    font-size: 24px;
  }
  .header-actions {
    gap: 8px;
  }
  .identity-departments {
    gap: 0 20px;
  }
}
.home-story em,
.home-story .story-copy p {
  color: #fff;
}
.home-story .story-copy h2 em {
  color: #fff;
  font-family: inherit;
  font-weight: 600;
}
