* {
  box-sizing: border-box;
}

:root {
  --rd-nav-accent: #eea300;
  --rd-nav-text: #10162c;
  --rd-nav-muted: #747b8c;
  --rd-nav-border: #e6e8ef;
  --rd-nav-bg: #ffffff;
  --rd-ann-bg: #24376f;
  --rd-ann-text: #ffffff;
  --rd-nav-height: 72px;
  --rd-drawer-width: min(88vw, 400px);
}

html {
  scroll-behavior: smooth;
}

html.is-locked,
html.is-locked body {
  overflow: hidden;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--rd-nav-text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

.rd-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: top 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: top;
}

.rd-navbar-wrap.is-scroll-hidden {
  top: calc(0px - var(--rd-navbar-hide-distance, 104px));
}

.rd-navbar-wrap.has-panel-open {
  top: 0;
}

.rd-navbar-wrap.is-scroll-solid .rd-navbar {
  border-bottom-color: rgba(16, 22, 44, 0.12);
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(16, 22, 44, 0.1);
}

.rd-announcement-bar {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--rd-ann-bg);
  color: var(--rd-ann-text);
}

.rd-announcement-bar__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
}

.rd-announcement-bar__item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.rd-navbar {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--rd-nav-border);
  background: var(--rd-nav-bg);
  color: var(--rd-nav-text);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.rd-navbar__inner {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  min-height: var(--rd-nav-height);
  align-items: center;
  gap: 30px;
  padding: 0 36px;
}

.rd-navbar__mobile-left {
  display: none;
  align-items: center;
  gap: 2px;
}

.rd-navbar__left,
.rd-navbar__center,
.rd-navbar__right {
  display: flex;
  min-width: 0;
  align-items: center;
}

.rd-navbar__center {
  justify-content: center;
}

.rd-navbar__right {
  justify-content: flex-end;
  gap: 10px;
}

.rd-navbar__logo-link {
  display: inline-flex;
  align-items: center;
}

.rd-navbar__logo {
  display: block;
  width: 63px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.rd-account-button--mobile {
  display: none;
}

.rd-account-button svg {
  width: 26px;
  height: 26px;
}

.rd-navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 2.35vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.rd-navbar__menu-item {
  position: static;
}

.rd-navbar__menu-link {
  display: inline-flex;
  min-height: var(--rd-nav-height);
  align-items: center;
  gap: 6px;
  color: var(--rd-nav-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.rd-navbar__menu-link.is-active,
.rd-navbar__menu-link:hover {
  color: #060b1b;
}

.rd-navbar__caret {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-navbar__mega {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  z-index: 50;
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #eef0f4;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rd-navbar__menu-item--mega:hover .rd-navbar__mega,
.rd-navbar__menu-item--mega:focus-within .rd-navbar__mega,
.rd-navbar__menu-item--mega.is-open .rd-navbar__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rd-navbar__mega-shell {
  width: min(1420px, calc(100% - 80px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.rd-navbar__mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px;
}

.rd-navbar__mega-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.rd-mega-card {
  color: #111111;
  text-align: center;
  text-decoration: none;
}

.rd-mega-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  background: #f0f0f0;
}

.rd-mega-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-mega-card strong {
  display: block;
  margin-top: 9px;
  font-size: 14px;
}

.rd-navbar__mega-promos {
  padding-top: 0;
}

.rd-mega-promo {
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e4e7ee;
  color: #111111;
  text-decoration: none;
}

.rd-mega-promo__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--rd-nav-accent);
  font-size: 22px;
  font-weight: 800;
}

.rd-mega-promo strong,
.rd-mega-promo small {
  display: block;
}

.rd-mega-promo strong {
  font-size: 15px;
}

.rd-mega-promo small {
  margin-top: 5px;
  color: #5d6272;
  font-size: 13px;
}

.rd-icon-button {
  position: relative;
  display: inline-flex;
  width: 34px;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--rd-nav-text);
  cursor: pointer;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.rd-icon-button svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-icon-button:hover {
  color: #0a1025;
  background: #f3f5f9;
  transform: translateY(-1px);
}

.rd-icon-button:focus-visible {
  outline: 2px solid #24376f;
  outline-offset: 3px;
}

.rd-brand-app-button svg {
  width: 29px;
  height: 29px;
}

.rd-brand-app-button__head,
.rd-brand-app-button__person {
  fill: none;
  stroke: currentColor;
}

.rd-brand-app-button__bolt {
  fill: #f5a300;
  stroke: none;
}

.rd-cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #24376f;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.rd-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rd-navbar-wrap.has-panel-open .rd-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rd-mobile-drawer,
.rd-search-drawer,
.rd-cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 90;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  visibility: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), visibility 280ms;
}

.rd-mobile-drawer {
  left: 0;
  width: var(--rd-drawer-width);
  transform: translateX(-100%);
}

.rd-search-drawer,
.rd-cart-drawer {
  right: 0;
  width: min(92vw, 430px);
  padding: 0 24px 30px;
  transform: translateX(100%);
}

.rd-navbar-wrap.is-menu-open .rd-mobile-drawer,
.rd-navbar-wrap.is-search-open .rd-search-drawer,
.rd-navbar-wrap.is-cart-open .rd-cart-drawer {
  visibility: visible;
  transform: translateX(0);
}

.rd-drawer-head,
.rd-panel-head {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef0f4;
}

.rd-drawer-head {
  padding: 0 18px;
}

.rd-drawer-head img {
  width: 58px;
  height: auto;
}

.rd-panel-head h2 {
  margin: 0;
  font-size: 24px;
}

.rd-mobile-nav {
  padding: 14px 20px 34px;
}

.rd-mobile-nav > a,
.rd-mobile-nav summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef0f4;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}

.rd-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.rd-mobile-nav summary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.rd-mobile-nav details[open] summary svg {
  transform: rotate(180deg);
}

.rd-mobile-submenu {
  padding: 7px 0 10px 12px;
}

.rd-mobile-submenu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: #4a4f5d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.rd-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 28px;
}

.rd-search-form input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfd3dd;
  border-radius: 4px;
}

.rd-search-form button,
.rd-checkout-button {
  border: 0;
  background: #11182c;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.rd-search-form button {
  padding: 0 18px;
  border-radius: 4px;
}

.rd-popular-searches {
  margin-top: 30px;
}

.rd-popular-searches div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.rd-popular-searches a {
  padding: 9px 13px;
  border: 1px solid #e0e3ea;
  border-radius: 999px;
  color: #11182c;
  font-size: 13px;
  text-decoration: none;
}

.rd-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  margin-top: 28px;
}

.rd-cart-item img {
  width: 90px;
  height: 112px;
  border-radius: 6px;
  object-fit: cover;
}

.rd-cart-item div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rd-cart-item span {
  color: #72798a;
  font-size: 13px;
}

.rd-cart-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e1e4eb;
}

.rd-checkout-button {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  border-radius: 4px;
}

@media (max-width: 1380px) and (min-width: 990px) {
  .rd-navbar__inner {
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 20px;
    padding: 0 30px;
  }

  .rd-navbar__menu {
    gap: 22px;
  }

  .rd-navbar__menu-link {
    font-size: 15px;
  }

  .rd-navbar__right {
    gap: 10px;
  }
}

@media (max-width: 1100px) and (min-width: 990px) {
  .rd-navbar__menu {
    gap: 14px;
  }

  .rd-navbar__menu-link {
    font-size: 13px;
  }

  .rd-navbar__right {
    gap: 5px;
  }

  .rd-icon-button {
    width: 34px;
    min-width: 34px;
  }
}

@media (max-width: 989px) {
  :root {
    --rd-nav-height: 54px;
  }

  .rd-announcement-bar {
    min-height: 27px;
  }

  .rd-announcement-bar__item {
    font-size: 12px;
  }

  .rd-navbar__inner {
    grid-template-columns: 72px 1fr 72px;
    min-height: var(--rd-nav-height);
    gap: 0;
    padding: 0 7px;
  }

  .rd-navbar__mobile-left {
    display: flex;
    grid-column: 1;
  }

  .rd-account-button--mobile {
    display: inline-flex;
  }

  .rd-account-button--desktop {
    display: none;
  }

  .rd-navbar__left {
    grid-column: 2;
    justify-content: center;
  }

  .rd-navbar__center {
    display: none;
  }

  .rd-navbar__right {
    grid-column: 3;
    gap: 2px;
  }

  .rd-navbar__logo {
    width: 50px;
    max-height: 48px;
  }

  .rd-wishlist-button,
  .rd-brand-app-button {
    display: none;
  }

  .rd-icon-button {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .rd-icon-button svg {
    width: 19px;
    height: 19px;
  }

}

@media (max-width: 380px) {
  .rd-navbar__inner {
    grid-template-columns: 64px 1fr 64px;
    padding-inline: 5px;
  }

  .rd-navbar__mobile-left {
    gap: 0;
  }

  .rd-navbar__right {
    gap: 0;
  }

  .rd-icon-button {
    width: 28px;
    min-width: 28px;
  }

  .rd-navbar__logo {
    width: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .rd-navbar-wrap,
  .rd-navbar {
    transition: none;
  }
}

body {
  min-height: 100vh;
}
