:root {
  --navy: #0d1b2f;
  --navy-2: #152944;
  --off-white: #f6f5f1;
  --light: #ffffff;
  --steel: #d6dbe3;
  --charcoal: #1f2937;
  --accent: #d64545;
  --accent-soft: #f2c5c5;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(9, 20, 36, 0.14);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, #eef2f7 0%, #f8f8f8 40%, #ffffff 100%);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}

.kicker {
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--light);
}

.btn-primary:hover {
  background: #081322;
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  background: #f0f3f8;
}

.btn-tertiary {
  background: #edf1f7;
  color: var(--navy);
  width: 100%;
}

.text-link {
  font-weight: 700;
  color: var(--navy-2);
}

.text-link:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.promo-banner {
  background: linear-gradient(90deg, #0d1b2f 0%, #152944 70%, #1b3558 100%);
  color: #eef3fb;
  border-bottom: 1px solid #2a3f60;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.promo-banner p {
  margin: 0;
}

.promo-banner strong {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 248, 252, 0.92);
  border-bottom: 1px solid #dfe5ef;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 2.5rem;
}

.brand {
  font-size: 2rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--navy);
}

.primary-nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfd6e2;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--navy-2);
  border-bottom: 1.5px solid var(--navy-2);
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.lang-switch select {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-2);
  cursor: pointer;
}

.lang-switch select:focus {
  outline: none;
}

.lang-switch:focus-within {
  border-color: #aebbd1;
  box-shadow: 0 0 0 3px rgba(143, 164, 197, 0.2);
}

.cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #cfd6e2;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cart-link img {
  width: 18px;
  height: 18px;
  display: block;
}

.cart-link:hover {
  transform: translateY(-1px);
  border-color: #b8c5da;
  box-shadow: 0 8px 18px rgba(13, 27, 47, 0.14);
}

.cart-link:focus-visible {
  outline: 2px solid #8fa4c5;
  outline-offset: 2px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  width: 1400px;
  max-width: calc(100% - 4rem);
  margin: 5vh auto 0 auto;
  border-radius: var(--radius);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(115deg, rgba(13, 27, 47, 0.82) 10%, rgba(21, 41, 68, 0.6) 42%, rgba(13, 27, 47, 0.78) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
  max-width: 680px;
  color: #fff;
}

.hero-copy .kicker {
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  margin: 0.35rem 0 1rem;
  color: #fff;
}

.hero-copy p {
  max-width: 54ch;
  font-size: 1.08rem;
  color: #eaf0fb;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.featured-collections,
.featured-products,
.brand-story,
.packaging-inspiration,
.editors-picks,
.newsletter,
.product-main,
.fragrance-notes,
.product-details,
.recently-viewed{
  padding: 3rem 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.collection-tile {
  background: var(--off-white);
  border: 1px solid #e1e5ec;
  border-radius: var(--radius);
  padding: 2rem;
}

.collection-tile h2 {
  margin: 0.25rem 0 0.6rem;
}

.collection-tile.men {
  background:
    linear-gradient(160deg, #f8f7f2 0, #f1f0ea 45%, #e6edf5 100%);
}

.collection-tile.women {
  background:
    linear-gradient(160deg, #f7f8fc 0, #f0f2fa 42%, #ece4ea 100%);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  border: 1px solid #e0e4ec;
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
  text-align: center;
}

.product-image {
  height: 210px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  & picture{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  & img{
    object-fit: contain;
  }
}

.product-card h3 {
  margin: 0.2rem 0;
}

.product-meta {
  margin: 0;
  color: #576277;
  font-size: 0.92rem;
}

.price {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin: 0.5rem 0 0.85rem;
}

.price span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #d5deeb;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: #f7f9fd;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story-visual {
  min-height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 21%, rgba(214, 69, 69, 0.26), transparent 36%),
    linear-gradient(140deg, #f2f5fa 0%, #dce5f2 100%);
  border: 1px solid #d4deeb;
  background-image: radial-gradient( circle farthest-corner at -24.7% -47.3%,  rgba(6,130,165,1) 0%, rgba(34,48,86,1) 66.8%, rgba(15,23,42,1) 100.2% );
}

.teams-map{
  & .container{
    display: grid;
    grid-template-columns: .5fr 1.5fr;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(120deg, #102238, #1d3557);
    color: #fff;
    background-image: radial-gradient( circle farthest-corner at -24.7% -47.3%,  rgba(6,130,165,1) 0%, rgba(34,48,86,1) 66.8%, rgba(15,23,42,1) 100.2% );
  }
  & .kicker{
    color: var(--accent);
  }
}
.teams-map-wrapper{
  position: relative;
}
.usa-logos-wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
}

.map-product-cards-wrapper{
  position: relative;
  width: 240px;
  height: 340px;
  border-radius: var(--radius);
  opacity: 1;
  overflow: hidden;
  & article{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    border: none;
    &.default{
      opacity: 1;
      visibility: visible;
      border: 2px solid var(--accent);
      background-image: url('../img/brice-harper.webp');
      background-size: cover;
      &:before{
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        background-image: radial-gradient(
          circle farthest-corner at -24.7% -47.3%,
          #f2c5c5 0%,
          #d64545 66.8%,
          #6e1f1f 100.2%
        );
        opacity: 0.3;
      }
    }
  }
  & .product-image {
    height: 140px;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    & picture{
      display: flex;
      justify-content: center;
      width: 100%;
      height: 100%;
    }
    & img{
      object-fit: contain;
    }
  }

  & h3 {
    margin: 0.2rem 0;
    color: var(--navy);
  }

  & .product-meta {
    margin: 0;
    color: #576277;
    font-size: 0.92rem;
  }

  & .price {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin: 0.5rem 0 0.85rem;
  }

  & .price span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #d5deeb;
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    background: #f7f9fd;
  }
}

.usa-logos-wrapper .mapBrand {
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.usa-logos-wrapper .mapBrand.is-active {
  filter: drop-shadow(0 0 16px rgba(15,23,42,1));
}

.map-product-cards-wrapper article {
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: scale(1.1);
}

.map-product-cards-wrapper article.default {
  transform: scale(1);
}

.map-product-cards-wrapper article.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.map-product-cards-wrapper.has-active-card article.default {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pack-card {
  min-height: 190px;
  border-radius: 14px;
  color: var(--light);
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(6, 11, 19, 0.1), rgba(6, 11, 19, 0.52)),
    linear-gradient(130deg, #20324f, #6a87af);
    background-image: radial-gradient( circle farthest-corner at -24.7% -47.3%,  rgba(6,130,165,1) 0%, rgba(34,48,86,1) 66.8%, rgba(15,23,42,1) 100.2% );
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #dce2ed;
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
  & .product-image{
    width: 100%;
  }
  & .btn{
    margin-top: 1rem;
  }
}

.newsletter .kicker{
  color: var(--navy);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  background-image: radial-gradient(
  circle farthest-corner at -24.7% -47.3%,
  #f2c5c5 0%,
  #d64545 66.8%,
  #6e1f1f 100.2%
);
  color: var(--navy);
  border-radius: 20px;
  padding: 2rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea,
.selectors select {
  width: 100%;
  border: 1px solid #c8d0dd;
  border-radius: 10px;
  background: #fff;
  color: #101828;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.reassurance-band {
  padding: 1.15rem 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.reassurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  min-height: 58px;
  & img{
    width: 26px;
    height: 26px;
  }
}

.reassurance-item p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.reassurance-picto {
  position: relative;
  width: 26px;
  height: 26px;
  color: var(--navy);
  flex: 0 0 26px;
}





.picto-mlb {
  border: 2px solid currentColor;
  border-radius: 999px;
}

.picto-mlb::after {
  content: "MLB";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer {
  background: #0d1b2f;
  color: #dce3ef;
  padding-top: 2.8rem;
}

.site-footer a {
  color: #eff3fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #2b3d5a;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin-left: auto;
}

.breadcrumbs {
  padding-top: 1.4rem;
  color: #44556e;
  font-size: 0.93rem;
}

.product-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
}

.gallery-main {
  min-height: 500px;
  border-radius: 20px;
  border: 1px solid #d8dfeb;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  & picture{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  & img{
    object-fit: contain;
  }
  /*background:
    radial-gradient(circle at 70% 20%, rgba(214, 69, 69, 0.22), transparent 35%),
    linear-gradient(145deg, #f7f9fd, #dce6f5);*/
}

.thumb-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.thumb {
  width: 82px;
  height: 82px;
  border-radius: 12px;
  border: 1px solid #ced6e4;
  padding: 0;
  overflow: hidden;
  & img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  /*background: linear-gradient(145deg, #eef2f9, #d8e2f2);*/
}

.thumb.active,
.thumb:hover {
  border-color: #8aa0c2;
}

.product-summary h1 {
  margin: 0.2rem 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.price-lg {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0.4rem 0 1rem;
}

.selectors {
  margin: 1rem 0;
}

.selectors label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.quantity-row {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfd6e4;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.quantity-row button,
.quantity-row input {
  border: 0;
  background: #fff;
  width: 44px;
  height: 42px;
  text-align: center;
  font: inherit;
}

.quantity-row input {
  width: 52px;
}

.summary-actions {
  display: flex;
  gap: 0.6rem;
}

.reassurance {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #45566f;
}

.notes-grid,
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.notes-grid article,
.details-grid article,
.recently-viewed .container {
  border: 1px solid #dbe1ec;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.fragrance-notes{
  padding-bottom: .8rem;
}
.product-details{
  padding-top: 0;
}
.details-grid article{
  color: var(--light);
  background-image: radial-gradient( circle farthest-corner at -24.7% -47.3%,  rgba(6,130,165,1) 0%, rgba(34,48,86,1) 66.8%, rgba(15,23,42,1) 100.2% );
}

.notes-grid article{
  color: var(--light);
  background-image: radial-gradient(
  circle farthest-corner at -24.7% -47.3%,
  #f2c5c5 0%,
  #d64545 66.8%,
  #6e1f1f 100.2%
);
}

.contact-intro {
  padding: 4.4rem 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.2rem;
}

.contact-form,
.contact-details {
  background: #fff;
  border: 1px solid #dde4ef;
  border-radius: 16px;
  padding: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 700;
}

.contact-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.faq-snippet {
  margin-top: 1rem;
}

.faq-snippet details {
  border-top: 1px solid #e2e7f0;
  padding: 0.6rem 0;
}

@media (max-width: 1100px) {
  .container {
    width: min(1180px, calc(100% - 40px));
  }

  .story-grid,
  .product-main-grid,
  .contact-grid,
  .newsletter-inner,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packaging-grid,
  .mini-grid,
  .details-grid,
  .notes-grid,
  .footer-grid,
  .reassurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid #ced6e2;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: #fff;
    font: inherit;
    font-size: 0.9rem;
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: #fff;
    border: 1px solid #d4dcea;
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: grid;
    gap: 0.6rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 78vh;
    align-items: flex-end;
  }

  .hero-content {
    min-height: 78vh;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding-bottom: 2.4rem;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-ctas {
    flex-wrap: wrap;
  }

  .product-grid,
  .packaging-grid,
  .mini-grid,
  .notes-grid,
  .details-grid,
  .footer-grid,
  .reassurance-grid {
    grid-template-columns: 1fr;
  }

  .teams-map {
      & .container {
          display: grid;
          grid-template-columns: 1fr;
          align-items: center;
          gap: 1.2rem;
          padding: 2rem;
          border-radius: var(--radius);
          background: linear-gradient(120deg, #102238, #1d3557);
          color: #fff;
          background-image: radial-gradient(circle farthest-corner at -24.7% -47.3%, rgba(6, 130, 165, 1) 0%, rgba(34, 48, 86, 1) 66.8%, rgba(15, 23, 42, 1) 100.2%);
      }
  }

  .footer-bottom {
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }

  .footer-bottom p {
    margin-left: 0;
    width: 100%;
  }
}
