:root {
  color-scheme: light;
  --page-width: 430px;
  --color-page: #fff;
  --color-ink: #000;
  --color-muted: #505050;
  --color-line: #e5e5e5;
  --color-sale: #e30613;
  --font-family-primary: SwatchCTWeb, Arial, FreeSans, sans-serif;
  --motion-duration: 280ms;
  --shadow-1: rgba(0, 0, 0, .28) 0 2px 8px;
  --shadow-2: rgba(0, 0, 0, .35) 0 0 18px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #dcdcdc;
  color: var(--color-ink);
  font-family: var(--font-family-primary);
  font-size: 16px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #006bff;
  outline-offset: 3px;
}

.royal-page {
  position: relative;
  width: min(100%, var(--page-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-page);
  box-shadow: var(--shadow-2);
}

.royal-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(100%, var(--page-width));
  height: 54px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  background: rgba(255, 255, 255, .98);
  color: #111;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.royal-header.is-solid {
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(12px);
}

.menu-button,
.bag-button {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: currentColor;
  display: grid;
  place-items: center;
  padding: 0;
}

.menu-button img,
.bag-button img {
  display: block;
  width: 22px;
  height: 22px;
}

.swatch-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  color: currentColor;
  text-decoration: none;
}

.swatch-logo img {
  display: block;
  width: 100px;
  height: auto;
}

.bag-button {
  position: relative;
}

.bag-count {
  position: absolute;
  top: 11px;
  right: 12px;
  z-index: 2;
  min-width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-sale);
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: max(0px, calc(50% - (var(--page-width) / 2)));
  z-index: 80;
  width: min(350px, 86vw);
  transform: translateX(calc(-100% - max(0px, calc(50vw - (var(--page-width) / 2)))));
  padding: 68px 24px 24px;
  background: #fff;
  box-shadow: var(--shadow-2);
  transition: transform var(--motion-duration) ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.menu-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
}

.royal-video {
  position: relative;
  height: 700px;
  max-height: 92vh;
  overflow: hidden;
  background: #111;
}

.royal-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}

.video-controls span {
  width: 34px;
  height: 34px;
  display: block;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: rgba(0, 0, 0, .22);
}

.brand-strip {
  background: #fff;
}

.brand-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.text-block,
.notice-block,
.availability {
  padding: 20px 22px;
  background: #fff;
  text-align: center;
}

.intro-block {
  padding-top: 22px;
  padding-bottom: 22px;
}

.text-block h1,
.text-block h2,
.notice-block h2,
.royal-products h2,
.wear-section h2,
.info-carousel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.text-block p,
.notice-block p,
.availability p,
.wear-section p,
.info-carousel p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.48;
}

.image-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.image-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent);
}

.image-hero h2 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.notice-block h2 {
  font-size: 17px;
}

.notice-block p {
  font-size: 15px;
}

.collection-copy {
  padding-top: 20px;
  padding-bottom: 22px;
}

.royal-products {
  padding: 20px 0 15px;
  background: #fff;
}

#story,
#products,
#wear,
#more,
#footer {
  scroll-margin-top: 66px;
}

.royal-products h2 {
  padding: 0 22px 16px;
  text-align: left;
  font-size: 24px;
}

.product-list {
  display: grid;
  gap: 15px;
}

.product-card {
  padding: 0 15px;
  background: #fff;
}

.product-card button {
  position: relative;
  width: 100%;
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f7f7f7;
  color: #000;
  padding: 0;
  text-align: left;
}

.product-card button::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  background: #f7f7f7;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-duration) ease;
}

.product-card button:active .product-image img {
  transform: scale(1.025);
}

.product-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 1;
}

.product-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-info p {
  margin: 7px 0 0;
  color: #333;
  font-size: 13px;
  font-weight: 800;
}

.badge,
.price {
  display: none;
}

.availability {
  padding-top: 18px;
  padding-bottom: 22px;
}

.availability p {
  margin: 0;
}

.wear-section {
  background: #fff;
}

.wear-section img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f3f3;
}

.wear-section div {
  padding: 22px;
  text-align: left;
}

.wear-section button,
.info-carousel button {
  min-height: 44px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.wear-section button {
  min-width: 120px;
  margin-top: 18px;
}

.info-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 78%);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 20px 30px;
  background: #fff;
  scrollbar-width: none;
}

.info-carousel::-webkit-scrollbar {
  display: none;
}

.info-carousel article {
  scroll-snap-align: start;
}

.info-carousel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f4f4f4;
}

.info-carousel h2 {
  margin-top: 16px;
  font-size: 21px;
}

.info-carousel p {
  font-size: 15px;
}

.info-carousel button {
  min-width: 122px;
  margin-top: 17px;
}

.footer {
  padding: 24px 20px 36px;
  background: #000;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}

.footer h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.social-row span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 13px;
}

.language-row span {
  color: rgba(255, 255, 255, .45);
}

.footer details {
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.footer details:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.footer summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: #fff;
  font-weight: 900;
}

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

.footer summary::after {
  content: "+";
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
  line-height: 1;
}

.footer details[open] summary::after {
  content: "-";
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  padding: 0 0 11px;
  font-size: 12px;
}

.footer details p {
  padding: 0 0 14px;
  font-size: 12px;
}

.made-row {
  display: grid;
  place-items: center;
  gap: 7px;
  margin: 22px 0 16px;
}

.made-row span {
  position: relative;
  width: 24px;
  height: 16px;
  display: block;
  background: #e00022;
}

.made-row span::before,
.made-row span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.made-row span::before {
  width: 13px;
  height: 3px;
}

.made-row span::after {
  width: 3px;
  height: 13px;
}

.made-row strong {
  font-size: 11px;
  letter-spacing: .08em;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 14px 0;
}

.legal-links a {
  padding: 0;
  font-size: 11px;
}

.copyright {
  text-align: center;
  font-size: 10px !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}

.order-sheet {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(var(--page-width), 100vw);
  max-height: 94vh;
  transform: translateX(-50%);
  overflow: auto;
  background: #fff;
  padding: 10px 14px calc(14px + env(safe-area-inset-bottom));
  border-radius: 14px 14px 0 0;
}

.close-button {
  position: absolute;
  right: 8px;
  top: 5px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
}

.modal-gallery {
  position: relative;
  margin: 34px -14px 10px;
  background: #f5f5f5;
}

.gallery-ribbon {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 9px;
  background: rgba(0, 0, 0, .84);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

.modal-gallery > img {
  display: block;
  width: 100%;
  height: clamp(238px, 62vw, 305px);
  object-fit: contain;
  background: #f5f5f5;
}

.modal-gallery > img.is-swapping {
  animation: modalImagePop .34s ease;
}

.gallery-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  height: 3px;
  overflow: hidden;
  background: rgba(0, 0, 0, .08);
}

.gallery-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #000;
}

.modal.is-open .gallery-progress span {
  animation: galleryAutoBar 2.6s linear infinite;
}

.modal-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 7px 14px 8px;
  background: #fff;
  scrollbar-width: none;
}

.modal-thumbs::-webkit-scrollbar {
  display: none;
}

.modal-thumbs button {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  background: #f5f5f5;
  padding: 0;
}

.modal-thumbs button.active {
  border: 2px solid var(--color-sale);
  box-shadow: 0 0 0 2px rgba(227, 6, 19, .12);
}

.modal-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.order-product {
  padding-right: 24px;
}

.order-product p {
  margin: 0 0 3px;
  color: var(--color-sale);
  font-size: 11px;
  font-weight: 900;
}

.order-product h2 {
  margin: 0;
  font-size: 18px;
}

.selected-attribute {
  margin-top: 4px;
  color: var(--color-ink);
  font-size: 12px;
  font-style: italic;
  line-height: 1.3;
}

.selected-attribute span {
  color: #006478;
  font-style: normal;
  font-weight: 900;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}

.price-line s {
  color: #999;
  font-size: 13px;
}

.price-line span {
  color: var(--color-sale);
  font-weight: 900;
}

.stock-line {
  margin: 9px 0;
  padding: 8px 10px;
  background: #f2f2f2;
  font-size: 13px;
}

.stock-line strong {
  color: var(--color-sale);
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 0 0 8px;
}

.trust-line span {
  min-height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #ededed;
  background: #fafafa;
  color: #1d1d1d;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 7px;
}

label {
  display: grid;
  gap: 0;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

input,
textarea,
select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d8d2ca;
  border-radius: 0;
  padding: 8px 10px;
  background: #fff;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.15;
}

input::placeholder,
textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

select:required:invalid {
  color: #9a9a9a;
}

select option {
  color: #000;
}

textarea {
  resize: vertical;
  min-height: 58px;
  line-height: 1.25;
}

.form-row,
.bundle-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bundle-picker {
  gap: 8px;
}

.bundle-picker button {
  min-height: 38px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.bundle-picker button.active {
  background: #111;
  color: #fff;
}

.terms {
  margin: 0;
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.35;
}

.submit-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: var(--color-sale);
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
}

.submit-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .42), transparent 70%);
}

.pulse-submit {
  animation: submitPulse 1.45s ease-in-out infinite;
}

.pulse-submit::after {
  animation: submitShine 2.25s ease-in-out infinite;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .78;
  animation: none;
}

.submit-button:disabled::after {
  animation: none;
}

.form-status {
  min-height: 14px;
  margin: 0;
  color: #087d42;
  font-size: 12px;
  font-weight: 800;
}

.thank-page {
  min-height: 100vh;
  padding-top: 54px;
}

.thank-header {
  display: flex;
  justify-content: center;
}

.thank-hero {
  background: #fff;
  text-align: center;
}

.thank-brand {
  display: block;
  width: 100%;
  height: auto;
}

.thank-visual {
  position: relative;
  overflow: hidden;
  background: #f3f3f3;
}

.thank-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(255, 255, 255, .9));
}

.thank-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thank-confirmation {
  position: relative;
  z-index: 1;
  margin-top: -56px;
  padding: 0 24px 24px;
}

.checkmark {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  animation: checkPop .58s ease both;
}

.checkmark::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  width: 18px;
  height: 31px;
  border: solid #fff;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg) scale(.4);
  transform-origin: center;
  animation: checkDraw .46s .22s ease forwards;
}

.checkmark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(0, 0, 0, .18);
  animation: checkRing 1.65s ease-out infinite;
}

.thank-kicker {
  margin: 0 0 8px;
  color: var(--color-sale);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.thank-confirmation h1 {
  margin: 0;
  color: #000;
  font-size: 27px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.thank-copy {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.48;
}

.thank-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 18px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
}

.thank-summary div {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  background: #fff;
}

.thank-summary span {
  color: #777;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.thank-summary strong {
  color: #000;
  font-size: 14px;
  line-height: 1.25;
  word-break: break-word;
}

.thank-product-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  margin: 14px 18px 0;
  padding: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.thank-product-card img {
  width: 92px;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: #f3f3f3;
}

.thank-product-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-sale);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.thank-product-card strong {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.thank-product-card p {
  margin: 7px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.thank-product-card b {
  color: #087d42;
}

.thank-details {
  display: grid;
  gap: 12px;
  padding: 14px 18px 0;
  background: #fff;
}

.detail-panel {
  border: 1px solid #e5e5e5;
  background: #fff;
}

.detail-panel h2 {
  margin: 0;
  padding: 12px 13px;
  border-bottom: 1px solid #e5e5e5;
  background: #000;
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
}

.detail-list {
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(88px, .42fr) 1fr;
  gap: 10px;
  padding: 10px 13px;
  border-bottom: 1px solid #ededed;
}

.detail-list div:last-child {
  border-bottom: 0;
}

.detail-list dt {
  color: #777;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: #000;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.thank-steps {
  padding: 24px 22px 8px;
  background: #fff;
}

.thank-steps h2 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 900;
}

.thank-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: thankStep;
}

.thank-steps li {
  position: relative;
  min-height: 62px;
  padding: 0 0 17px 44px;
  counter-increment: thankStep;
}

.thank-steps li::before {
  content: counter(thankStep);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.thank-steps li::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 32px;
  bottom: 4px;
  width: 2px;
  background: #e5e5e5;
}

.thank-steps li:last-child::after {
  display: none;
}

.thank-steps strong,
.thank-steps span {
  display: block;
}

.thank-steps strong {
  font-size: 15px;
  line-height: 1.25;
}

.thank-steps span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.38;
}

.thank-actions {
  display: grid;
  gap: 9px;
  padding: 14px 22px 32px;
  background: #fff;
}

.thank-actions a {
  min-height: 46px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-action {
  background: #000;
  color: #fff;
  box-shadow: 0 9px 20px rgba(0, 0, 0, .22);
}

.secondary-action {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalImagePop {
  0% {
    opacity: .72;
    transform: scale(.985);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes galleryAutoBar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes submitPulse {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 0 0 0 rgba(227, 6, 19, .38);
  }

  50% {
    filter: brightness(1.08);
    box-shadow: 0 0 0 7px rgba(227, 6, 19, 0);
  }
}

@keyframes submitShine {
  0%, 34% {
    transform: translateX(-120%);
  }

  65%, 100% {
    transform: translateX(120%);
  }
}

@keyframes checkPop {
  0% {
    opacity: 0;
    transform: scale(.72);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checkDraw {
  100% {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes checkRing {
  0% {
    opacity: .75;
    transform: scale(.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (max-width: 374px) {
  .text-block h1,
  .text-block h2,
  .royal-products h2 {
    font-size: 20px;
  }

  .text-block p,
  .notice-block p,
  .availability p,
  .wear-section p,
  .info-carousel p {
    font-size: 15px;
  }

  .product-info h3 {
    font-size: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
