:root {
  --bg: #f5f9fc;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --text: #212121;
  --muted: #5f5f5f;
  --border: rgba(35, 35, 35, 0.12);
  --button: #fad6a5;
  --button-text: #000000;
  --shadow: 0 10px 12px rgba(0, 63, 107, 0.1);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", Arial, sans-serif;
}

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

main,
.site-footer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

main {
  padding-top: 0.25rem;
  padding-bottom: 2.75rem;
}

.announcement-bar,
.site-header,
.home-hero,
.story-grid,
.sizes-grid,
.product-page,
.content-page,
.footer-top,
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 1rem;
  background: transparent;
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
  font-size: 0.9rem;
  text-align: center;
}

.announcement-bar p {
  margin: 0;
}

.announcement-text {
  font-weight: 800;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.announcement-text.is-fading {
  opacity: 0;
  transform: translateY(-5px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 249, 252, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35, 35, 35, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 0 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 300px;
}

.brand-banner {
  display: block;
  width: 268px;
  max-width: 100%;
  height: auto;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex: 1 1 auto;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 16px rgba(0, 63, 107, 0.08);
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(33, 33, 33, 0.9);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 63, 107, 0.12);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 300px;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 18px rgba(0, 63, 107, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.cart-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 63, 107, 0.13);
}

.cart-link svg {
  width: 1.28rem;
  height: 1.28rem;
  fill: rgba(33, 33, 33, 0.92);
}

.cart-link-count {
  position: absolute;
  top: -0.18rem;
  right: -0.18rem;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.22rem;
  border-radius: 999px;
  background: #212121;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 63, 107, 0.18);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.3rem;
  font-size: 0.93rem;
  margin: 0;
  flex: 1 1 auto;
}

.nav a {
  color: rgba(33, 33, 33, 0.78);
}

.nav a:hover {
  color: var(--text);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead,
.muted,
.subtitle,
.details-list,
.journey-list,
.form-note,
.payment-line {
  color: var(--muted);
  line-height: 1.62;
}

.product-info,
.product-sidebar,
.content-page,
.footer-newsletter,
.footer-links {
  padding: 1.5rem;
}

.product-info h1,
.product-sidebar h1,
.content-page h1 {
  margin: 0.4rem 0 0.9rem;
  font-size: clamp(1.7rem, 3.3vw, 2.45rem);
  line-height: 1.08;
  font-weight: 800;
}

.form-actions,
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-actions {
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.82rem 1.2rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.button-primary {
  background: var(--button);
  color: var(--button-text);
  border: 1px solid rgba(184, 123, 62, 0.3);
  box-shadow: 0 4px 0 rgba(184, 123, 62, 0.18), 0 10px 18px rgba(0, 63, 107, 0.12);
}

.button-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(184, 123, 62, 0.16), 0 14px 24px rgba(0, 63, 107, 0.14);
}

.button-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(184, 123, 62, 0.16), 0 8px 14px rgba(0, 63, 107, 0.1);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.button-muted {
  background: #d8dde3;
  color: rgba(33, 33, 33, 0.74);
  border: 1px solid rgba(84, 96, 109, 0.22);
  box-shadow: 0 2px 0 rgba(84, 96, 109, 0.08);
}

.button-muted:hover:not(:disabled) {
  transform: none;
  box-shadow: 0 2px 0 rgba(84, 96, 109, 0.08);
}

.button-muted:active:not(:disabled) {
  transform: none;
  box-shadow: 0 1px 0 rgba(84, 96, 109, 0.08);
}

.panel {
  background: var(--surface);
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.home-hero {
  margin-bottom: 0.8rem;
}

.home-hero-image,
.gallery-artwork {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.home-hero-image {
  min-height: 450px;
  max-width: 62%;
  margin: 0 auto;
  background: transparent;
}

.home-hero-image img,
.gallery-main-image,
.thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-intro {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.35rem 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-product-intro h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.2;
  font-weight: 800;
}

.home-product-intro p {
  margin: 1rem 0 0;
  color: #5f5f5f;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.35;
}

.home-product-intro-price {
  font-weight: 700;
}

.home-product-intro-copy {
  max-width: 860px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.price {
  margin: 0.65rem 0;
  color: #b87b3e;
  font-size: 1.15rem;
  font-weight: 700;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-bottom: 0.9rem;
}

.story-card {
  padding: 1.55rem 1.45rem;
  text-align: left;
  background: #eef0f2;
  border-radius: 32px;
  box-shadow: none;
}

.story-card-heading {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.story-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
}

.step-index {
  margin: 0;
  color: #b87b3e;
  font-size: 1.55rem;
  font-weight: 800;
}

.section-cta {
  display: flex;
  justify-content: center;
  padding-bottom: 1.55rem;
}

.section-cta .button {
  min-width: 300px;
  min-height: 3.4rem;
  border-radius: 18px;
  box-shadow: 0 5px 0 rgba(184, 123, 62, 0.16), 0 12px 20px rgba(0, 63, 107, 0.14);
}

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  padding-top: 0.45rem;
  padding-bottom: 1rem;
}

.size-card {
  text-align: center;
}

.size-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.size-card h3 {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.product-page {
  padding-top: 0.95rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  grid-template-areas:
    "gallery sidebar"
    "details sidebar";
  gap: 2.2rem;
  align-items: start;
}

.product-gallery {
  grid-area: gallery;
}

.gallery-primary {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.gallery-artwork {
  min-height: 680px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.thumb {
  display: block;
  padding: 0;
  border: 1px solid rgba(33, 33, 33, 0.1);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumb.is-active {
  border-color: #212121;
}

.thumb:hover {
  transform: translateY(-1px);
}

.thumb-image {
  aspect-ratio: 1 / 1.12;
}

.product-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 1rem;
  align-self: start;
  padding: 1.35rem 1.35rem 1.45rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(33, 33, 33, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(0, 63, 107, 0.08);
  backdrop-filter: blur(10px);
}

.product-details {
  grid-area: details;
  padding: 0.4rem 0 0;
}

.product-sidebar .flight-form {
  margin-top: 1.1rem;
}

.product-sidebar .button {
  width: 100%;
}

.product-sidebar .details-block {
  display: none;
}

.product-sidebar h1 {
  margin: 0.2rem 0 0.45rem;
  font-size: clamp(1.85rem, 2.45vw, 2.3rem);
  line-height: 1.1;
  font-weight: 800;
}

.subtitle {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
}

.product-explainer {
  margin: 0 0 0.95rem;
}

.product-price-block {
  margin-bottom: 1rem;
}

.product-tax-line {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
}

.product-intro {
  max-width: 44rem;
  margin: 0 0 1.25rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(33, 33, 33, 0.08);
  font-size: 0.83rem;
  border-radius: 999px;
}

.form-section {
  margin-bottom: 1rem;
}

.option-group {
  margin-bottom: 1rem;
}

.option-label {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-option {
  position: relative;
  display: inline-flex;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(33, 33, 33, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pill-option input:checked + span {
  border-color: #212121;
  background: #ffffff;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  max-width: 320px;
}

.form-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(0, 63, 107, 0.3);
  border-radius: 999px;
  background: rgba(15, 78, 120, 0.12);
  color: #0f4e78;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  padding: 0;
  margin-left: 0.1rem;
}

.info-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.info-tooltip__content {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  transform: translateX(-50%) translateY(0.2rem);
  width: max-content;
  max-width: 13rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(33, 33, 33, 0.94);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 12;
}

.info-tooltip__content::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(33, 33, 33, 0.94);
  transform: translateX(-50%) rotate(45deg);
}

.info-tooltip.is-open .info-tooltip__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .info-tooltip:hover .info-tooltip__content,
  .info-tooltip:focus-within .info-tooltip__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.form-row input,
.form-row select,
.signup-form input {
  width: 100%;
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(33, 33, 33, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  width: 100%;
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(33, 33, 33, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.form-row input::placeholder,
.signup-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(33, 33, 33, 0.42);
}

.form-row input:focus,
.form-row select:focus,
.signup-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 63, 107, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 63, 107, 0.08);
}

.form-row-wide {
  max-width: 620px;
}

.autocomplete-row {
  position: relative;
}

.suggestions {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 20;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(35, 35, 35, 0.08);
}

.suggestion-item {
  padding: 0.75rem 0.95rem;
  cursor: pointer;
}

.suggestion-item:hover,
.suggestion-item.is-active {
  background: #eef7fc;
}

.flight-form .button {
  min-width: 245px;
  min-height: 3rem;
}

.form-note {
  font-size: 0.92rem;
}

.confirmation-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(33, 33, 33, 0.12);
  background: #eef7fc;
  border-radius: 10px;
}

.confirmation-card-error {
  background: #fff4f1;
  border-color: rgba(181, 73, 46, 0.24);
}

.confirmation-card-error .confirmation-cta {
  display: none !important;
}

.confirmation-title {
  margin: 0 0 0.6rem;
  font-weight: 800;
}

.confirmation-card p {
  margin: 0.25rem 0;
}

.confirmation-cta {
  margin-top: 1rem;
  min-width: min(100%, 260px);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.confirmation-reset {
  margin-top: 0;
}

.confirmation-contact {
  margin-top: 0;
  text-decoration: none;
}

.mobile-product-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.7rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(245, 249, 252, 0.98), rgba(245, 249, 252, 0.88));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(33, 33, 33, 0.08);
}

.mobile-product-bar__inner {
  max-width: 28rem;
  margin: 0 auto;
}

.mobile-product-bar__button {
  width: 100%;
  min-height: 3.15rem;
}

.details-block {
  margin-top: 1.45rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
  max-width: 500px;
}

.details-list,
.journey-list {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.journey-list li {
  margin-bottom: 0.75rem;
}

.journey-list strong,
.journey-list span {
  display: block;
}

.journey-list strong {
  color: var(--text);
  margin-bottom: 0.2rem;
}

.content-page {
  margin-top: 2rem;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.content-document {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top left, rgba(250, 214, 165, 0.18), transparent 42%);
  border: 1px solid rgba(34, 68, 93, 0.08);
}

.content-copy {
  margin-top: 1.25rem;
  color: var(--text);
}

.content-copy p,
.content-list li {
  color: rgba(33, 33, 33, 0.82);
  line-height: 1.72;
  font-size: 1rem;
}

.content-copy p {
  margin: 0;
}

.content-list {
  margin: 1.15rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.content-list li::marker {
  color: rgba(0, 63, 107, 0.55);
}

.cart-page {
  max-width: 980px;
}

.cart-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.cart-page-header h1 {
  margin-bottom: 0;
}

.cart-top-checkout {
  flex-shrink: 0;
}

.cart-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 0 0 1.35rem;
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.cart-item-media img {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 63, 107, 0.1);
}

.cart-item-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.cart-item-topline h2 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
}

.cart-item-price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.cart-item-details {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cart-item-details p {
  margin: 0.1rem 0;
}

.cart-remove {
  margin-top: 1rem;
}

.cart-summary {
  margin-top: 1.5rem;
  max-width: 420px;
  padding-top: 0.45rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.contact-page {
  max-width: 860px;
}

.contact-form {
  margin-top: 1.2rem;
}

.form-message {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message-success {
  background: rgba(35, 128, 93, 0.12);
  border: 1px solid rgba(35, 128, 93, 0.2);
  color: #1f5e47;
}

.form-message-error {
  background: rgba(164, 55, 55, 0.1);
  border: 1px solid rgba(164, 55, 55, 0.18);
  color: #7b2d2d;
}

.content-points {
  margin-top: 1rem;
}

.press-page {
  max-width: 980px;
}

.press-section {
  margin-top: 1.5rem;
}

.press-section h2 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.button-press {
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  background: #0f4e78;
  color: #ffffff;
  border-radius: 6px;
}

.press-resources {
  margin-top: 0.25rem;
}

.press-resources summary {
  list-style: none;
  display: inline-flex;
}

.press-resources summary::-webkit-details-marker {
  display: none;
}

.press-resource-groups {
  margin-top: 1rem;
}

.press-resource-group {
  margin-top: 0.9rem;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.press-resource-group h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #c9e2f3;
  color: #0f4e78;
  font-size: 1.05rem;
}

.press-resource-list {
  padding: 0.2rem 0;
}

.press-resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
}

.press-resource-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.press-resource-thumb {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  background: #ffffff;
}

.button-press-link {
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
  background: #0f4e78;
  color: #ffffff;
  border-radius: 6px;
  white-space: nowrap;
}

.faq-list {
  margin-top: 1.4rem;
}

.faq-item {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  border-top: 1px solid rgba(35, 35, 35, 0.08);
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: min(28rem, calc(100vw - 2rem));
}

.cookie-banner__inner {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 63, 107, 0.12);
}

.cookie-banner__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.cookie-banner__copy {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.cookie-banner__details {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(35, 35, 35, 0.08);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.cookie-option:first-child {
  margin-top: 0;
}

.cookie-option span {
  display: grid;
  gap: 0.12rem;
}

.cookie-option small {
  color: var(--muted);
  line-height: 1.45;
}

.cookie-option input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
}

.cookie-banner__save {
  margin-top: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: start;
}

.footer-newsletter,
.footer-links {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-newsletter {
  text-align: center;
}

.footer-newsletter h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  line-height: 1.05;
}

.footer-newsletter .muted {
  max-width: 52rem;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  text-wrap: balance;
}

.footer-offer {
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.signup-form {
  margin: 1rem auto 0;
  max-width: 32rem;
  display: grid;
  gap: 0.9rem;
}

.signup-feedback {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  font-size: 0.92rem;
  color: #0f4e78;
}

.signup-feedback.is-error {
  color: #b5492e;
}

.signup-consent {
  display: grid;
  grid-template-columns: 1.1rem auto;
  align-items: start;
  justify-content: start;
  gap: 0.18rem 0.65rem;
  width: 100%;
  max-width: 32rem;
  padding: 0.15rem 0;
  color: rgba(33, 33, 33, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
}

.signup-consent input {
  margin: 0.18rem 0 0;
  accent-color: #0f4e78;
}

.signup-privacy {
  margin: -0.1rem 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: left;
}

.signup-privacy a {
  color: #0f4e78;
  text-decoration: underline;
}

.signup-form button {
  width: fit-content;
  min-width: 11.5rem;
  justify-self: start;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  border: 1px solid rgba(184, 123, 62, 0.3);
  box-shadow: 0 4px 0 rgba(184, 123, 62, 0.18), 0 10px 18px rgba(0, 63, 107, 0.12);
  letter-spacing: 0.01em;
}

.signup-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(184, 123, 62, 0.16), 0 14px 24px rgba(0, 63, 107, 0.14);
}

.signup-form button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(184, 123, 62, 0.16), 0 8px 14px rgba(0, 63, 107, 0.1);
}

.signup-form button:disabled {
  background: #d7dde4;
  color: rgba(33, 33, 33, 0.5);
  border-color: rgba(84, 96, 109, 0.14);
  box-shadow: none;
}

.footer-link-grid,
.social-links,
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-links {
  width: 100%;
}

.footer-links-centered {
  text-align: center;
}

.footer-link-grid a,
.social-links a,
.policy-links a {
  color: rgba(33, 33, 33, 0.78);
}

.footer-link-grid a:hover,
.social-links a:hover,
.policy-links a:hover {
  color: var(--text);
}

.footer-aux-link {
  display: inline-block;
  color: rgba(33, 33, 33, 0.72);
  margin-top: 1rem;
}

.social-links {
  justify-content: center;
  margin-top: 1.2rem;
  gap: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #212121;
}

.social-links a svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.social-links a span {
  line-height: 1;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(35, 35, 35, 0.08);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta p,
.payment-line {
  margin: 0;
  font-size: 0.92rem;
}

.payment-line {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 2.45rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(33, 33, 33, 0.04);
}

.payment-badge svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .product-layout,
  .footer-top,
  .story-grid,
  .sizes-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-areas:
      "gallery"
      "sidebar"
      "details";
  }

  .product-gallery {
    position: static;
  }

  .product-sidebar {
    position: static;
    top: auto;
    padding-top: 1.15rem;
  }

  .home-hero-image {
    min-height: 340px;
    max-width: 68%;
  }

  .header-shell,
  .header-main {
    flex-direction: column;
    align-items: center;
  }

  .header-shell {
    gap: 1rem;
    padding: 0.8rem 0 0.75rem;
  }

  .header-main {
    gap: 0.9rem;
  }

  .nav {
    gap: 0.7rem 1rem;
    font-size: 0.92rem;
  }

  .brand {
    flex-basis: auto;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .brand-banner {
    width: 228px;
  }

  .product-page {
    padding-top: 0.75rem;
  }

  .gallery-artwork {
    min-height: 560px;
  }

  .product-sidebar {
    padding-top: 0.35rem;
  }
}

@media (max-width: 760px) {
  .announcement-bar,
  .hero-actions,
  .form-actions,
  .signup-form,
  .footer-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .signup-consent {
    grid-template-columns: 1.1rem minmax(0, 1fr);
    gap: 0.18rem 0.9rem;
  }

  .announcement-bar {
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    text-align: center;
  }

  .header-shell {
    gap: 0.5rem;
    padding: 0.7rem 0 0.65rem;
    align-items: center;
  }

  .header-main {
    width: 100%;
    justify-content: center;
    position: relative;
    min-height: 2.75rem;
  }

  .header-actions {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, calc(100vw - 2rem));
    display: none;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(35, 35, 35, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 34px rgba(0, 63, 107, 0.14);
    gap: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.35;
    text-align: center;
    z-index: 20;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(245, 249, 252, 0.96);
  }

  .form-row,
  .flight-form .button,
  .details-block {
    max-width: none;
  }

  .product-sidebar h1,
  .content-page h1 {
    font-size: 2.4rem;
  }

  .cart-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-top-checkout {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .cart-item-media {
    max-width: 240px;
  }

  .cart-item-topline {
    flex-direction: column;
    gap: 0.45rem;
  }

  .home-hero-image {
    min-height: 250px;
    max-width: 88%;
  }

  .home-product-intro {
    padding: 0.25rem 0 1.2rem;
  }

  .story-grid {
    gap: 0.9rem;
  }

  .story-card {
    border-radius: 24px;
    padding: 1.2rem 1.1rem;
  }

  .section-cta .button {
    min-width: min(100%, 280px);
  }

  .sizes-grid {
    gap: 1rem;
  }

  .size-card h3 {
    margin-top: 0.8rem;
  }

  .gallery-artwork {
    min-height: 400px;
  }

  .product-sidebar h1,
  .content-page h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .subtitle,
  .product-intro {
    font-size: 0.96rem;
  }

  .pill-options {
    gap: 0.45rem;
  }

  .pill-option span {
    min-height: 2.55rem;
    padding: 0.62rem 0.85rem;
    font-size: 0.88rem;
  }

  .form-actions {
    gap: 0.65rem;
  }

  .brand-banner {
    width: 198px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .footer-top {
    gap: 1.4rem;
  }

  .footer-newsletter h2,
  .footer-links h2 {
    font-size: 1.9rem;
  }

  .footer-bottom {
    margin-top: 1.25rem;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .cookie-banner__actions .button,
  .cookie-banner__save .button {
    width: 100%;
  }

  .cookie-option {
    gap: 0.7rem;
  }

  .press-resource-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-press-link {
    width: 100%;
  }

  .product-page {
    padding-bottom: 5.8rem;
  }

  .mobile-product-bar[hidden] {
    display: none !important;
  }
}

@media (min-width: 761px) {
  .mobile-product-bar {
    display: none !important;
  }
}
