@charset "UTF-8";
@font-face {
  font-family: "Merriweather";
  src: url("/assets/fonts/merriweather-v33-latin_latin-ext-800italic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("/assets/fonts/work-sans-v24-latin_latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
}

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

body {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #0D0D0D;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 300;
  line-height: 1.1;
  color: #0D0D0D;
}

h1 {
  font-size: clamp(2.16rem, 2.16rem + 2.6vw, 4rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 1.8rem + 2vw, 2.9rem);
  margin-top: 0;
}

h3 {
  font-size: clamp(1.62rem, 1.62rem + 1.5vw, 2.2rem);
}

h4 {
  font-size: clamp(1.44rem, 1.44rem + 1.1vw, 1.9rem);
}

h5 {
  font-size: clamp(1.32rem, 1.32rem + 0.8vw, 1.5rem);
}

h6 {
  font-size: clamp(1.2rem, 1.2rem + 0.5vw, 1.3rem);
}

span {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-size: 0.9em;
}

.perex {
  font-size: clamp(1.2rem, 1.2rem + 0.8vw, 1.875rem);
  line-height: 1.3;
  font-weight: 300;
  margin-top: 1rem;
}

ul {
  list-style-type: none;
  padding: 0;
}

strong {
  font-weight: 600;
}

/* header */
.header {
  background-color: #540D6E;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.header__container {
  display: flex;
  align-items: center;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  position: relative;
}
.header__logo-link {
  font-optical-sizing: auto;
  font-weight: 600;
  color: #FFD23F;
  text-decoration: none;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.header__logo-color {
  color: white;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.header__logo-title {
  margin: 0;
}
.header__basket {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  margin-left: 1.5rem;
}
.header__basket-icon {
  display: block;
}
.header__basket-amount {
  color: white;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
}

@keyframes cursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
.toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #FFD23F;
  color: #0D0D0D;
  text-align: center;
  border-radius: 0.3125rem;
  padding: 0.75rem 1rem;
  position: absolute;
  z-index: 1001;
  top: calc(100% + 0.5rem);
  right: 0;
  transform: none;
}
.toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.cart__panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 25rem;
  height: 100%;
  background: white;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  padding: 3rem 2rem;
}
@media screen and (max-width: 40rem) {
  .cart__panel {
    width: 80%;
  }
}
.cart__panel.is-open {
  right: 0;
}
.cart__overlay {
  pointer-events: none;
}
.cart__overlay.is-active {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: auto;
}
.cart__overlay.is-active {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.cart__close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #540D6E;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1001;
}
.cart__content {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.cart__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid #FFD23F;
  border-radius: 0.3125rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.cart__item-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: none;
  font-size: 1.2rem;
  color: #540D6E;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__item-remove:hover {
  opacity: 0.7;
}
.cart__image {
  display: block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.cart__details {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem 0.5rem;
  padding-right: 2rem;
}
.cart__subheading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  word-break: break-word;
  grid-column: 1;
}
.cart__price {
  margin: 0;
  grid-column: 2;
  white-space: nowrap;
  align-self: start;
}
.cart__total {
  font-weight: 600;
}
.cart__total-price--number {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.cart__checkout-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .cart__checkout-btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .cart__checkout-btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .cart__checkout-btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.cart__checkout-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.cart__checkout-btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.cart__checkout-btn {
  background-color: #540D6E;
  color: white;
  width: 100%;
  font-size: 0.9rem;
  padding: 0.9rem 1.25rem;
}
.cart__back-link {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .cart__back-link {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .cart__back-link {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .cart__back-link:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.cart__back-link:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.cart__back-link:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.cart__back-link {
  background-color: white;
  border: 1px solid #540D6E;
  color: #540D6E;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
}
.cart__back-link:hover {
  color: #0D0D0D;
  border: 1px solid #0D0D0D;
}
.cart__footer {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid #FFD23F;
  border-radius: 0.3125rem;
}
.cart__subheading--footer {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
}
.cart__quantity-wrapper {
  grid-column: 1/-1;
  display: inline-flex;
  align-items: center;
  border: 1px solid #540D6E;
  border-radius: 0.3125rem;
  overflow: hidden;
  font-family: "Work Sans", sans-serif;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.cart__quantity-btn {
  border: none;
  padding: 5px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 400;
  color: #540D6E;
  background-color: white;
}
.cart__quantity-btn:hover {
  background: white;
}
.cart__quantity-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.cart__quantity-value {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #540D6E;
  padding: 5px 10px;
  font-size: 0.8rem;
  min-width: 2.5rem;
  text-align: center;
  border-left: 1px solid #540D6E;
  border-right: 1px solid #540D6E;
}

.header__navigation {
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header__nav-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__nav-link:hover {
  font-weight: 600;
  border-bottom: 1px solid white;
}
.header__nav-link:focus-visible {
  font-weight: 600;
  border-bottom: 2px solid #FFD23F;
}
.header__nav-item--active .header__nav-link {
  font-weight: 800;
}
.header__menu-toggle {
  display: none;
}
.header__basket-icon--dark {
  display: none;
}

@media screen and (min-width: 53.8125rem) {
  .header__nav-list-second {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
  }
  .header__nav-item:hover .header__nav-list-second {
    display: block;
  }
  .header__nav-item {
    position: relative;
  }
  .header__nav-list-second .header__nav-link {
    color: #540D6E;
  }
  .header__nav-list-second .header__nav-item:hover {
    border-bottom: 1px solid #540D6E;
    background-color: white;
  }
  .header__nav-list-second .header__nav-item:focus-visible {
    font-weight: 600;
  }
}
@media screen and (max-width: 53.75rem) {
  .header__menu-toggle {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 2rem;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.25rem;
    gap: 0.5rem;
    z-index: 1000;
    position: relative;
  }
  .header__hamburger-line, .header__hamburger-line::before, .header__hamburger-line::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 3px;
    border-radius: 2px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__hamburger-line {
    position: relative;
  }
  .header__hamburger-line::before {
    top: -0.5rem;
    position: absolute;
    left: 0;
  }
  .header__hamburger-line::after {
    top: 0.5rem;
    position: absolute;
    left: 0;
  }
  .header__menu-text {
    color: white;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
  }
}
@media screen and (max-width: 53.75rem) and (max-width: 18.75rem) {
  .header__menu-text {
    display: none;
  }
}
@media screen and (max-width: 53.75rem) {
  .header__menu-toggle.is-active .header__hamburger-line {
    transform: rotate(45deg);
    background-color: #540D6E;
  }
  .header__menu-toggle.is-active .header__hamburger-line::before {
    transform: rotate(-90deg) translateX(-0.5rem);
    background-color: #540D6E;
  }
  .header__menu-toggle.is-active .header__hamburger-line::after {
    opacity: 0;
  }
  .header__menu-toggle.is-active .header__menu-text {
    color: #540D6E;
  }
  .header__basket {
    position: relative;
    z-index: 1000;
    transition: background-color 0s 0.15s;
  }
  .header__basket-icon--dark {
    display: none;
  }
  .header__basket.is-active {
    background-color: transparent;
    transition-delay: 0s;
  }
  .header__basket.is-active .header__basket-icon--light {
    display: none;
  }
  .header__basket.is-active .header__basket-icon--dark {
    display: block;
  }
  .header__basket.is-active .header__basket-amount {
    color: #540D6E;
  }
  .header__navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
    margin-left: 0;
  }
  .header__nav-overlay, .header__nav-list {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .header__nav-overlay {
    width: 80%;
    background-color: #FFD23F;
    z-index: 1;
    transition-delay: 0.1s;
  }
  .header__nav-list {
    flex-direction: column;
    width: 70%;
    background-color: white;
    padding: 6rem 1rem 2rem 1.5rem;
    z-index: 2;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    transition-delay: 0s;
  }
  .header__navigation.is-open {
    pointer-events: all;
  }
  .header__navigation.is-open .header__nav-overlay {
    right: 0;
    transition-delay: 0s;
  }
  .header__navigation.is-open .header__nav-list {
    right: 0;
    transition-delay: 0.15s;
  }
  .header__nav-item {
    margin-bottom: 1rem;
  }
  .header__nav-link {
    color: #540D6E;
    font-size: 1rem;
    width: 100%;
  }
  .header__nav-link:hover, .header__nav-link:focus {
    font-weight: 800;
    color: #540D6E;
    background-color: white;
    font-size: 1.1rem;
  }
  .header__nav-list-second {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }
  .header__nav-item--open .header__nav-list-second {
    display: block;
  }
  .header__nav-item:has(.header__nav-list-second) > .header__nav-link::after {
    content: " ▼";
    font-size: 0.5rem;
    transition: transform 0.3s ease;
  }
  .header__nav-item--open > .header__nav-link::after {
    transform: rotate(180deg);
  }
}
.no-scroll {
  overflow: hidden;
}

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

.footer {
  background-color: #540D6E;
  color: white;
  font-size: 1rem;
}
.footer__container {
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row: auto;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 0;
}
@media screen and (max-width: 48rem) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 36rem) {
  .footer__container {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}
.footer__section-logo {
  grid-column: 1/-1;
  grid-row: 1/2;
}
.footer__heading {
  color: #FFD23F;
  margin-bottom: 0;
  margin-top: 0;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  text-transform: uppercase;
  font-weight: 600;
}
.footer__heading-color {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
}
.footer__section-about {
  grid-column: 1/2;
  grid-row: 2/3;
}
.footer__claim {
  font-weight: 600;
  margin-top: 1rem;
}
.footer__text {
  margin: 0.5rem 0 0 0;
}
.footer__menu {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media screen and (max-width: 48rem) {
  .footer__menu {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 36rem) {
  .footer__menu {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.footer__subheading {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.footer__nav-list {
  margin: 0 0 1rem 0;
  padding: 0;
  list-style-type: none !important;
  color: color;
}
.footer__nav-link {
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  color: white;
}
.footer__nav-item {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 200;
  color: white;
  padding: 0 0 1rem 0;
}
.footer__section_contact {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 48rem) {
  .footer__section_contact {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.footer__contact {
  font-style: normal;
}
.footer__email {
  font-weight: 600;
}
.footer__social-link, .footer__contact-link, .footer__credit-link {
  color: white;
  text-decoration: none;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.footer__social-icon--img {
  vertical-align: text-bottom;
  padding-right: 0.5rem;
}
.footer__address {
  font-style: normal;
}
.footer__section_important {
  grid-column: -1/-2;
  grid-row: 2/3;
}
@media screen and (max-width: 36rem) {
  .footer__section_important {
    grid-row: 6/7;
  }
}
.footer__legal {
  color: white;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  display: block;
  padding-bottom: 0.5rem;
}
.footer__section_info {
  grid-column: 1/-1;
  grid-row: 3/4;
}
@media screen and (max-width: 48rem) {
  .footer__section_info {
    grid-row: 4/5;
  }
}
@media screen and (max-width: 48rem) {
  .footer__section_info {
    grid-row: 6/7;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background-color: #D3BDD8;
  background: url(/images/bg2.svg) top left no-repeat;
  background-size: cover;
}
.hero__container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 5rem;
  animation: fadeInUp 0.8s ease-out forwards;
}
@media screen and (max-width: 40rem) {
  .hero__container {
    flex-direction: column;
  }
}
.hero_text-container {
  flex: 1;
}
.hero__subheading {
  font-weight: 600;
  margin-top: 2rem;
}
.hero__btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .hero__btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .hero__btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .hero__btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.hero__btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.hero__btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.hero__btn {
  background-color: #540D6E;
  color: white;
  margin-top: 3rem;
}
@media screen and (max-width: 36rem) {
  .hero__btn {
    margin-top: 2rem;
  }
}
.hero__btn:hover {
  background-color: #2c033b;
}
.hero__btn:active {
  background-color: #8127a2;
}
.hero__btn:focus-visible {
  outline-color: #a834d2;
}
.hero__image-container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 40rem) {
  .hero__image-container {
    margin-top: 0;
  }
}
.hero__image {
  width: 70%;
  height: auto;
  display: block;
  background-color: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.advantages__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .advantages__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: last baseline;
  margin: 1rem 0;
}
.advantages__heading {
  text-align: center;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  font-weight: 600;
}
.advantages__description {
  text-align: center;
  margin-bottom: 0;
}

.play {
  background-color: #FFD23F;
}
.play__text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.play__heading {
  font-size: clamp(1.8rem, 1.8rem + 2.6vw, 4rem);
  text-align: center;
  margin-bottom: 1rem;
}
.play__perex {
  margin-bottom: 1rem;
  text-align: center;
}
.play__btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .play__btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .play__btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .play__btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.play__btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.play__btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.play__btn {
  background-color: #540D6E;
  color: white;
  margin-top: 2rem;
}
.play__btn:hover {
  background-color: #2c033b;
}
.play__btn:active {
  background-color: #8127a2;
}
.play__btn:focus-visible {
  outline-color: #dba307;
}
.play__image-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (max-width: 48rem) {
  .play__image-container {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 36rem) {
  .play__image-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 36.01rem) and (max-width: 48rem) {
  .play__image-container > :nth-last-child(2) {
    grid-column: 2/span 2;
    justify-content: center;
  }
}
@media screen and (max-width: 48rem) {
  .play__image-container > :last-child:nth-child(odd) {
    grid-column: 4/span 2;
    justify-content: center;
  }
}
@media screen and (max-width: 36rem) {
  .play__image-container > :last-child:nth-child(odd) {
    grid-column: 2/span 2;
    justify-content: center;
  }
}
@media screen and (max-width: 48rem) {
  .play__link {
    grid-column: span 2;
  }
}
@media screen and (max-width: 36rem) {
  .play__link {
    grid-column: span 2;
  }
}
.play__image {
  width: 100%;
  height: auto;
  display: block;
  background-color: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.offline__container {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .offline__container {
    flex-direction: column;
  }
}
.offline__text-container {
  flex: 1 1 100%;
}
.offline__heading {
  font-size: clamp(1.8rem, 1.8rem + 2.6vw, 4rem);
  margin-bottom: 1.5rem;
}
.offline__btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .offline__btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .offline__btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .offline__btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.offline__btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.offline__btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.offline__btn {
  background-color: #FFD23F;
  color: #0D0D0D;
}
.offline__btn:hover {
  background-color: #f2bc0a;
}
.offline__btn:active {
  background-color: #fde493;
}
.offline__btn:focus-visible {
  outline-color: #dba307;
}
.offline__image-container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offline__image {
  width: 80%;
  height: auto;
  display: block;
  background-color: whitesmoke;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 48rem) {
  .offline__image {
    width: 100%;
  }
}

.herna__container {
  padding-top: 7rem;
}
@media screen and (max-width: 48rem) {
  .herna__container {
    padding-top: 5rem;
  }
}
.herna__heading {
  text-align: center;
  animation: fadeInUp 0.8s ease-out forwards;
}
.herna__perex {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out forwards;
}
.herna__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.herna__grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .herna__grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.herna__grid-card {
  grid-column: span 2;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
@media screen and (max-width: 48rem) {
  .herna__grid-card--les {
    order: 1;
  }
}
@media screen and (max-width: 48rem) {
  .herna__grid-card--zelenina {
    order: 2;
  }
}
@media screen and (max-width: 48rem) {
  .herna__grid-card--vanoce {
    order: 3;
  }
}
@media screen and (max-width: 48rem) {
  .herna__grid-card--ptaci {
    order: 4;
  }
}
@media screen and (max-width: 48rem) {
  .herna__grid-card--psi {
    order: 5;
  }
}
.herna__grid-card:hover {
  transform: translateY(-4px);
}
.herna__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.herna__image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.3125rem;
}
.herna__subheading {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  color: white;
  width: 100%;
  padding: 0 1rem;
}
.herna__subheading--black {
  color: #0D0D0D;
}

.rules__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  border-top: 2px solid #FFD23F;
}
@media screen and (max-width: 42rem) {
  .rules__container {
    grid-template-columns: 1fr;
  }
}
.rules__title {
  grid-column: 1/-1;
  text-align: center;
}
.rules__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: last baseline;
}
.rules__heading {
  text-align: center;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  font-weight: 600;
}
.rules__description {
  text-align: center;
}

.paper {
  background-color: #D3BDD8;
  background: url(/images/bg2.svg) top left no-repeat;
  background-size: cover;
}
.paper__container {
  margin: 0 auto;
  padding: 7rem 1.25rem 5rem 1.25rem;
  animation: fadeInUp 0.8s ease-out forwards;
}
@media screen and (max-width: 36rem) {
  .paper__container {
    padding: 5rem 1.25rem 3rem 1.25rem;
  }
}

.shop__container {
  margin: 0 auto;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 23.125rem) {
  .shop__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.shop__grid-card {
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.3125rem;
}
.shop__grid-card:hover {
  transform: translateY(-4px);
}
@media screen and (min-width: 23.125rem) and (max-width: 48rem) {
  .shop__grid-card--les {
    order: 1;
  }
}
@media screen and (min-width: 23.125rem) and (max-width: 48rem) {
  .shop__grid-card--zelenina {
    order: 2;
  }
}
@media screen and (min-width: 23.125rem) and (max-width: 48rem) {
  .shop__grid-card--vanoce {
    order: 3;
  }
}
@media screen and (min-width: 23.125rem) and (max-width: 48rem) {
  .shop__grid-card--ptaci {
    order: 4;
  }
}
@media screen and (min-width: 23.125rem) and (max-width: 48rem) {
  .shop__grid-card--psi {
    order: 5;
  }
}
.shop__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.shop__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.3125rem 0.3125rem 0 0;
}
.shop__text-container {
  padding: 1rem;
}
.shop__subheading {
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.shop__info {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.shop__price {
  font-weight: 600;
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
}
.shop__btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .shop__btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .shop__btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .shop__btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.shop__btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.shop__btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.shop__btn {
  background-color: #540D6E;
  color: white;
}
.shop__btn:hover {
  background-color: #2c033b;
}
.shop__btn:active {
  background-color: #8127a2;
}

.info {
  background-color: #FFD23F;
}
.info__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}
@media screen and (max-width: 48rem) {
  .info__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.info__heading {
  grid-column: span 4;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 48rem) {
  .info__heading {
    grid-column: span 2;
  }
}
.info__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: last baseline;
}
.info__subheading {
  text-align: center;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  font-weight: 600;
}
.info__description {
  text-align: center;
}

.transport__heading {
  margin-bottom: 1rem;
  text-align: center;
}
.transport__subheading {
  text-align: center;
}
.transport__icons {
  display: flex;
  gap: 1.25rem;
}
.transport__icon {
  border-radius: 50%;
}
.transport__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 40rem) {
  .transport__boxes {
    grid-template-columns: 1fr;
  }
}
.transport__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 1.5rem;
  border: 2px solid #FFD23F;
  border-radius: 0.3125rem;
}
.transport__title {
  text-align: center;
  margin: 1rem 0;
}
.transport__description {
  text-align: center;
  margin: 0;
}

.paper-faq__container {
  padding-bottom: 2rem;
}
.paper-faq__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .paper-faq__boxes {
    grid-template-columns: 1fr;
  }
}
.paper-faq__question {
  border: 1px solid #540D6E;
  border-radius: 0.3125rem;
  margin: 0;
  padding: 1.875rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.paper-faq__question.active {
  background-color: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.paper-faq__title {
  margin: 0 35px 0 0;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
}
.active .paper-faq__title {
  font-weight: 600;
}
.paper-faq__text {
  display: none;
  margin: 30px 0 0;
}
.paper-faq__question.active .paper-faq__text {
  display: block;
}
.paper-faq__toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  transition: background-color 0.3s ease;
}
.paper-faq__toggle:focus {
  outline: 0;
}
.paper-faq__icon {
  width: 20px;
  height: 20px;
}
.paper-faq__chevron {
  display: block;
}
.paper-faq__times {
  display: none;
}
.paper-faq__question.active .paper-faq__chevron {
  display: none;
}
.paper-faq__question.active .paper-faq__times {
  display: block;
}
.paper-faq__question.active .paper-faq__toggle {
  background-color: #FFD23F;
}
@media screen and (max-width: 22.5rem) {
  .paper-faq__image {
    width: 20%;
    height: auto;
  }
}

.contact__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "hero hero hero" "contact contact contact" "faq faq faq";
  gap: 1.25rem;
}

.contact-hero {
  grid-area: hero;
}
.contact-hero__container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  padding: 2rem 1.25rem 0 1.25rem;
}
@media screen and (max-width: 43.75rem) {
  .contact-hero__container {
    flex-direction: column;
  }
}
.contact-hero__text-container {
  flex: 6;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.contact-hero__heading {
  padding-top: 4rem;
  margin-bottom: 1rem;
}
.contact-hero__perex {
  margin-bottom: 0;
}
.contact-hero__button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .contact-hero__button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .contact-hero__button {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .contact-hero__button:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.contact-hero__button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.contact-hero__button:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.contact-hero__button {
  background-color: #540D6E;
  color: white;
  margin: 2rem 0 0 0;
}
.contact-hero__button:hover {
  background-color: #2c033b;
}
.contact-hero__button:active {
  background-color: #8127a2;
}
.contact-hero__button:focus-visible {
  outline-color: #a834d2;
}

.contact {
  background-color: #FFD23F;
  margin-top: 2rem;
  grid-area: contact;
}
.contact__container {
  grid-area: form;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-column: 1rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 0 1.25rem;
  gap: 3rem;
}
@media screen and (max-width: 43.75rem) {
  .contact__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.contact__form-container {
  grid-column: 1/2;
  grid-row: 1/2;
  border-radius: 0.3125rem;
  padding: 0;
}
@media screen and (max-width: 43.75rem) {
  .contact__form-container {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.contact__info-container {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 43.75rem) {
  .contact__info-container {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.contact-form__legend {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
}
@media screen and (max-width: 43.75rem) {
  .contact-form__legend {
    margin-top: 1rem;
  }
}
.contact-form__fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 50rem) {
  .contact-form__fieldset {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.contact-form__label {
  display: block;
  margin: 0.5rem 0 0.2rem 0;
  font-weight: 500;
}
.contact-form__label--textarea {
  margin-top: 0.8rem;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.3125rem;
  border: 1px solid white;
  font-family: inherit;
  margin-bottom: 0.5rem;
}
.contact-form__GDPR {
  color: #0D0D0D;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}
.contact-form__note {
  font-style: italic;
  margin-bottom: 1rem;
}
.contact-form__input:focus, .contact-form__textarea:focus, .contact-form__button:focus {
  outline: 2px solid #a834d2;
}
.contact-form__button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .contact-form__button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .contact-form__button {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .contact-form__button:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.contact-form__button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.contact-form__button:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.contact-form__button {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  background-color: #540D6E;
  color: white;
}
@media screen and (max-width: 43.75rem) {
  .contact-form__button {
    margin-bottom: 1rem;
  }
}
.contact-form__button:hover {
  background-color: #2c033b;
}
@media screen and (max-width: 43.75rem) {
  .contact-form__button:hover {
    margin-bottom: 1rem;
  }
}
.contact-form__button:active {
  background-color: #8127a2;
}
@media screen and (max-width: 43.75rem) {
  .contact-form__button:active {
    margin-bottom: 1rem;
  }
}
.contact-form__button:focus-visible {
  outline-color: #a834d2;
}
@media screen and (max-width: 43.75rem) {
  .contact-form__button:focus-visible {
    margin-bottom: 1rem;
  }
}
.contact-form__input.is-invalid, .contact-form__textarea.is-invalid, .contact-form__checkbox.is-invalid {
  border: 2px solid #FFD23F !important;
  background-color: #fff8f8;
}
.contact-form__input.is-invalid:focus, .contact-form__textarea.is-invalid:focus {
  outline-color: #FFD23F;
  box-shadow: 0 0 5px rgba(217, 48, 37, 0.3);
}
.contact-form__error {
  color: #540D6E;
  font-size: 0.85rem;
  margin: 0 0 0.8rem 0;
  font-weight: 400;
}

#checkbox-error {
  margin-left: 0;
  display: block;
}

.contact__subheading {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
}
@media screen and (max-width: 43.75rem) {
  .contact__subheading {
    margin-top: 0;
  }
}
.contact__address, .contact__address-name {
  font-style: normal;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.contact__address-link {
  color: #0D0D0D;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}
.contact__subheading--business, .contact__subheading--social {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Work Sans", sans-serif;
  color: #0D0D0D;
  font-weight: 800;
}
.contact__business-text {
  margin-top: 0;
}
.contact__social {
  margin-bottom: 3rem;
}
.contact__social-links {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.contact__social-icon--img {
  width: 35px;
  height: 35px;
  fill: #540D6E;
  margin-right: 10px;
  margin-top: 2px;
}
.contact__social-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 0.1rem;
  transition: transform 0.2s ease;
  font-family: "Work Sans", sans-serif;
  color: #0D0D0D;
}
.contact__social-link:hover {
  transform: translateY(-2px);
}
.contact__social-link:focus-visible {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

.faq {
  grid-area: faq;
}
.faq__container {
  padding-bottom: 3rem;
}
.faq__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .faq__boxes {
    grid-template-columns: 1fr;
  }
}
.faq__question {
  border: 1px solid #540D6E;
  border-radius: 0.3125rem;
  padding: 1.875rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.faq__question.active {
  background-color: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.faq__title {
  margin: 0 35px 0 0;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
}
.active .faq__title {
  font-weight: 600;
}
.faq__text {
  display: none;
  margin: 30px 0 0;
}
.faq__question.active .faq__text {
  display: block;
}
.faq__link {
  color: #0D0D0D;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}
.faq__toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  transition: background-color 0.3s ease;
}
.faq__toggle:focus {
  outline: 0;
}
.faq__icon {
  width: 20px;
  height: 20px;
}
.faq__chevron {
  display: block;
}
.faq__times {
  display: none;
}
.faq__question.active .faq__chevron {
  display: none;
}
.faq__question.active .faq__times {
  display: block;
}
.faq__question.active .faq__toggle {
  background-color: #FFD23F;
}

.about__container {
  margin: 0 auto;
}
.about__image {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: auto;
}

.gdpr-hero__container {
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.gdpr-hero__heading {
  padding-top: 4rem;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.gdpr__container {
  margin: 0 auto;
  padding: 2rem 1.25rem;
}
.gdpr__heading {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  margin: 2rem 0 0 0;
}
.gdpr__list {
  padding: 0.5rem 1.2rem;
  margin: 0;
}
.gdpr__paragraph {
  padding: 0.5rem 0;
  margin: 0;
}

.thanks__container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-columns: auto;
  grid-column: 2rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media screen and (max-width: 37.5rem) {
  .thanks__container {
    grid-template-columns: 1fr;
  }
}
.thanks__text-container {
  grid-column: 1/2;
  grid-row: 1/2;
}
.thanks__heading {
  padding: 4rem 0 2rem 0;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.8rem + 2.5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.thanks__paragraph {
  margin-top: 0;
}
.thanks__image-container {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 37.5rem) {
  .thanks__image-container {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: center;
    align-items: center;
  }
}
.thanks__image {
  display: block;
  max-width: 200px;
  min-height: auto;
  margin-top: 1rem;
}
.thanks__buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 48.75rem) {
  .thanks__buttons {
    flex-direction: column;
  }
}
.thanks__button-cta {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .thanks__button-cta {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .thanks__button-cta {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .thanks__button-cta:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.thanks__button-cta:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.thanks__button-cta:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.thanks__button-cta {
  margin-top: 3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
@media screen and (max-width: 48.75rem) {
  .thanks__button-cta {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.thanks__button-cta:hover {
  background-color: #2c033b;
}
.thanks__button-cta:active {
  background-color: #8127a2;
}
.thanks__button-cta:focus-visible {
  outline-color: #a834d2;
}
.thanks__button-secondary {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .thanks__button-secondary {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .thanks__button-secondary {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .thanks__button-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.thanks__button-secondary:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.thanks__button-secondary:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.thanks__button-secondary {
  margin-top: 3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  border: 2px solid #FFD23F;
}
@media screen and (max-width: 48.75rem) {
  .thanks__button-secondary {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.thanks__button-secondary:hover {
  background-color: #f2bc0a;
}
.thanks__button-secondary:active {
  background-color: #fde493;
}
.thanks__button-secondary:focus-visible {
  outline-color: #dba307;
}
.thanks__link-secondary {
  color: #FFD23F;
  text-decoration: none;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 31.25rem) {
  .thanks__link-secondary {
    font-size: 1rem;
  }
}
.thanks__social-icon {
  font-size: 2.5rem;
  color: #540D6E;
}
.thanks__social-icon--img {
  width: 35px;
  height: 35px;
  fill: #540D6E;
  margin-left: 7px;
  align-self: flex-end;
}
.thanks__social-link {
  text-decoration: none;
  display: inline-block;
  margin-right: 0.1rem;
  transition: transform 0.2s ease;
}
.thanks__social-link:hover {
  transform: translateY(-2px);
}
.thanks__social-link:focus-visible {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}
.thanks__social-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.game__container {
  padding-top: 5rem;
}
.game__text-container {
  display: flex;
  flex-direction: row;
  align-items: last baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 48rem) {
  .game__text-container {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.game__heading {
  font-size: clamp(1.5rem, 1.5rem + 2vw, 2.9rem);
  margin: 0;
}
.game__counters {
  display: flex;
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  gap: 2rem;
}
@media screen and (max-width: 48rem) {
  .game__counters {
    align-items: last baseline;
    justify-content: space-between;
    width: 100%;
    padding-top: 0.5rem;
  }
}
@media screen and (max-width: 36rem) {
  .game__counters {
    gap: 1.25rem;
    font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
  }
}
.game__moves, .game__counter {
  margin: 0;
  font-weight: 200;
}
.game__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 48rem) {
  .game__grid {
    gap: 0.75rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 36rem) {
  .game__grid {
    gap: 0.5rem;
  }
}
.game__card {
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.game__card:hover {
  transform: scale(1.05);
}
.game__card:active {
  transform: scale(0.95);
}
.game__card--flipped .game__image--front {
  transform: rotateY(0deg);
  z-index: 2;
}
.game__card--flipped .game__image--back {
  transform: rotateY(180deg);
  z-index: 1;
}
.game__card--matched {
  cursor: default;
  opacity: 0.7;
}
.game__card--matched:hover {
  transform: none;
}
.game__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  transition: transform 0.6s;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.game__image--front {
  transform: rotateY(180deg);
  z-index: 1;
}
.game__image--back {
  transform: rotateY(0deg);
  z-index: 2;
}
.game__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.game__again {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .game__again {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .game__again {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .game__again:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.game__again:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.game__again:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.game__again {
  background-color: #FFD23F;
  color: #0D0D0D;
  transition: all 0.3s ease;
}
.game__again:hover {
  background-color: #f2bc0a;
}
.game__again:active {
  background-color: #fde493;
}
.game__again:focus-visible {
  outline-color: #dba307;
}
.game__theme {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .game__theme {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .game__theme {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .game__theme:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.game__theme:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.game__theme:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.game__theme {
  background-color: white;
  color: #0D0D0D;
  border: 1px solid #540D6E;
  transition: all 0.3s ease;
}
.game__theme:hover {
  background-color: white;
}
.game__theme:active {
  background-color: white;
}
.game__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game__modal--show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.game__modal--show .game__modal-content {
  transform: scale(1);
  opacity: 1;
}
.game__modal-content {
  background: white;
  border-radius: 5px;
  padding: 3rem 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}
.game__modal-title {
  margin: 0 0 0.5rem 0;
}
.game__modal-text {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  margin: 0 0 2rem 0;
  font-weight: 300;
}
.game__modal-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.game__modal-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 2rem;
}
.game__modal-stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
}
.game__modal-stat-value {
  font-size: 2rem;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.game__modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.game__modal-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .game__modal-btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .game__modal-btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .game__modal-btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.game__modal-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.game__modal-btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.game__modal-btn {
  font-size: 1rem;
}
.game__modal-btn--primary {
  background-color: #540D6E;
  color: white;
  border: none;
}
.game__modal-btn--primary:hover {
  background-color: #2c033b;
}
.game__modal-btn--primary:active {
  background-color: #8127a2;
}
.game__modal-btn--primary2 {
  background-color: #FFD23F;
  color: #0D0D0D;
  border: none;
}
.game__modal-btn--primary2:hover {
  background-color: #f2bc0a;
}
.game__modal-btn--primary2:active {
  background-color: #fde493;
}
.game__modal-btn--primary2:focus-visible {
  outline-color: #dba307;
}
.game__modal-btn--secondary {
  background-color: white;
  color: #0D0D0D;
  border: 1px solid #540D6E;
}
.game__modal-btn--secondary:hover {
  background-color: white;
}
.game__modal-btn--secondary:active {
  background-color: white;
}
.game__modal-btn--secondary:focus-visible {
  outline-color: white;
}

.product__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 6rem 1.25rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 58rem) {
  .product__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 3rem;
  }
}
.product__image-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
@media screen and (min-width: 50.25rem) {
  .product__image-container {
    grid-column: 1/2;
    gap: 1rem;
  }
}
.product__image-main {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
}
.product__image-main:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.product__image-main img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.product__image-main:hover img {
  transform: scale(1.05);
}
.product__thumbnails-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.product__thumbnails {
  display: grid;
  grid-template-columns: repeat(6, calc(25% - 0.375rem));
  gap: 0.5rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 48rem) {
  .product__thumbnails {
    grid-template-columns: repeat(6, calc((100% - 3rem) / 4));
    gap: 1rem;
  }
}
.product__thumbnail {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.product__thumbnail:hover {
  border-color: #540D6E;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.product__thumbnail.active {
  border-color: #540D6E;
}
.product__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.product__thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border: 1.5px solid white;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product__thumb-arrow:hover {
  background: #540D6E;
  border-color: #540D6E;
  color: #fff;
}
.product__thumb-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.product__thumb-arrow--left {
  left: 0;
}
.product__thumb-arrow--right {
  right: 0;
}
@media screen and (min-width: 48rem) {
  .product__thumb-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media screen and (min-width: 48rem) {
  .product__text-container {
    grid-column: 2/3;
    grid-row: 1;
  }
}
.product__back-link {
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  color: #0D0D0D;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  transition: color 0.2s;
}
.product__back-link:hover {
  color: #540D6E;
}
.product__heading {
  margin-bottom: 1rem;
}
.product__price {
  font-weight: 500;
  font-size: clamp(1.2rem, 1.2rem + 1.1vw, 1.9rem);
  margin: 0;
  color: #540D6E;
}
@media screen and (min-width: 48rem) {
  .product__price {
    grid-column: 2/3;
    grid-row: 1;
    margin: 0 0 0.5rem 0;
  }
}
.product__subheading {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
  font-weight: 400;
  margin: 1rem 0 0 0;
}
.product__text p {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}
.product__try {
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  color: #0D0D0D;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  transition: color 0.2s;
  margin-bottom: 1rem;
}
.product__try:hover {
  color: #540D6E;
}
.product__buttons {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 48rem) {
  .product__buttons {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.product__btn-buy, .product__btn-back {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .product__btn-buy, .product__btn-back {
    width: auto;
  }
}
.product__btn-buy {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .product__btn-buy {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .product__btn-buy {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .product__btn-buy:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.product__btn-buy:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.product__btn-buy:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.product__btn-buy {
  background-color: #540D6E;
  color: white;
  padding: 0.75rem 2rem;
}
.product__btn-buy:hover {
  background-color: #2c033b;
}
.product__btn-buy:active {
  background-color: #8127a2;
}
.product__btn-buy:focus-visible {
  outline-color: #a834d2;
}
.product__btn-back {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .product__btn-back {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .product__btn-back {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .product__btn-back:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.product__btn-back:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.product__btn-back:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.product__btn-back {
  border: 1px solid #540D6E;
}
.product__btn-back:hover {
  background-color: #2c033b;
}
.product__btn-back:active {
  background-color: #8127a2;
}
.product__btn-back:focus-visible {
  outline-color: #dba307;
}

.box {
  margin: 1rem 0 2rem 0;
}
.box__heading {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
  margin-top: 3rem;
  font-weight: 400;
}
.box__item {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: start;
  justify-content: center;
  margin-bottom: 1rem;
}
.box__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.box__description {
  margin: 0;
  font-weight: 400;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
  border: 2px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1001;
}
@media screen and (max-width: 48rem) {
  .lightbox__close {
    top: 0.625rem;
    right: 0.625rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__close:hover {
  color: #ccc;
}
.lightbox__nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1001;
  top: 50%;
  transform: translateY(-50%);
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 48rem) {
  .lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__nav:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.lightbox__nav--prev {
  left: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__nav--prev {
    left: 0.625rem;
  }
}
.lightbox__nav--next {
  right: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .lightbox__nav--next {
    right: 0.625rem;
  }
}

.quantity__wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #540D6E;
  border-radius: 0.3125rem;
  overflow: hidden;
  font-family: "Work Sans", sans-serif;
}
.quantity__btn {
  border: none;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-weight: 400;
  color: #540D6E;
  background-color: white;
}
.quantity__btn:hover {
  background: white;
}
.quantity__btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.quantity__value {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #540D6E;
  padding: 10px 20px;
  font-size: 1rem;
  min-width: 2.5rem;
  text-align: center;
  border-left: 1px solid #540D6E;
  border-right: 1px solid #540D6E;
}

.checkout__container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto;
  grid-template-areas: "heading heading" "form summary";
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .checkout__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "heading" "form" "summary";
  }
}
.checkout__heading {
  margin-top: 3rem;
  grid-area: heading;
}
.checkout__form-container {
  grid-area: form;
}
.checkout__section {
  border: 2px solid #FFD23F;
  border-radius: 0.3125rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.checkout__form-group {
  display: flex;
  flex-direction: column;
}
.checkout__label {
  display: block;
  margin: 0.5rem 0 0.2rem 0;
  font-weight: 500;
}
.checkout__label--textarea {
  margin-top: 0.8rem;
}
.checkout__input, .checkout__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D3BDD8;
  border-radius: 0.3125rem;
  font-family: inherit;
  margin-bottom: 0.5rem;
  background-color: #f1eaf3;
}
.checkout__input:focus, .checkout__textarea:focus {
  outline: none;
  border: 1px solid #540D6E;
  background-color: #f1eaf3;
}
.checkout__shipping-options, .checkout__payment-options {
  display: flex;
  flex-direction: column;
}
.checkout__radio {
  font-weight: 600;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
}
.checkout__form-group {
  display: flex;
  flex-direction: column;
}
.checkout__form-group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.checkout__summary {
  grid-area: summary;
  padding: 2rem;
  background-color: #FFD23F;
  border-radius: 0.3125rem;
  height: -moz-fit-content;
  height: fit-content;
}
.checkout__subheading {
  font-size: clamp(1.1rem, 1.1rem + 0.8vw, 1.5rem);
}
.checkout__title {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
.checkout__total {
  padding: 10px;
  background-color: white;
  border-radius: 0.3125rem;
  margin-bottom: 0.5rem;
}
.checkout__total-price span, .checkout__total-price {
  font-weight: 600;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-size: 1.1rem;
}
.checkout__link {
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  color: #540D6E;
}
.checkout__submit-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .checkout__submit-btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .checkout__submit-btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .checkout__submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.checkout__submit-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.checkout__submit-btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.checkout__submit-btn {
  background-color: #540D6E;
  color: white;
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1rem;
  padding: 1.25rem;
}
.checkout__submit-btn:hover {
  background-color: #2c033b;
}
.checkout__submit-btn:active {
  background-color: #8127a2;
}
.checkout__submit-btn:focus-visible {
  outline-color: #a834d2;
}

.payment-card,
.shipping-card {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D3BDD8;
  border-radius: 0.3125rem;
  font-family: inherit;
  margin-bottom: 0.5rem;
  background-color: #f1eaf3;
}

.shipping-card {
  flex-wrap: wrap;
  align-items: flex-start;
  cursor: pointer;
}
.shipping-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.shipping-card__main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.payment-card__left,
.shipping-card__left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.shipping-card__name,
.payment-card__name {
  font-weight: 600;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
}

.shipping-card__price,
.payment-card__price {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
}

.payment-card__icon,
.shipping-card__icon {
  vertical-align: middle;
  padding-right: 0.2rem;
}

.payment-card__icons {
  display: flex;
  align-items: center;
}

.checkout-item,
#checkout__summary-shipping-payment {
  padding: 10px;
  background-color: white;
  border-radius: 0.3125rem;
  margin-bottom: 0.5rem;
}

.checkout__section--shipping {
  display: none;
}
.checkout__section--shipping.is-visible {
  display: block;
}

.checkout__error-msg {
  display: none;
}
.checkout__error-msg:not(:empty) {
  display: block;
}

.shipping-selector {
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.shipping-selector .btn--small {
  width: auto;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.selected-point-box {
  margin-top: 0.75rem;
  padding: 1rem;
  background-color: white;
  border-radius: 0.3125rem;
  border: none;
}

.selected-point-label,
.selected-point-name {
  display: block;
  font-weight: 300;
  font-style: normal;
  color: #0D0D0D;
  font-family: "Work Sans", sans-serif;
}

input[type=radio] {
  accent-color: #540D6E;
}

input[type=checkbox] {
  accent-color: #540D6E;
}

.btn--small {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .btn--small {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .btn--small {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .btn--small:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.btn--small:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.btn--small:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.btn--small {
  background-color: #FFD23F;
}
.btn--small:hover {
  background-color: #f2bc0a;
}
.btn--small:active {
  background-color: #fde493;
}
.btn--small:focus-visible {
  outline-color: #dba307;
}

.thanks {
  background-color: #FFD23F;
}
.thanks__container {
  padding-top: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.thanks__heading {
  font-weight: 300;
}
.thanks__instructions, .thanks__cash-instructions {
  display: none;
  background: white;
  padding: 1.25rem;
  border-radius: 0.3125rem;
  border: 1px solid #FFD23F;
  margin: 2rem auto;
  max-width: 31.25rem;
  text-align: left;
}
.thanks__subheading {
  margin-top: 0;
}
.thanks__back {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .thanks__back {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .thanks__back {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .thanks__back:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.thanks__back:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.thanks__back:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.thanks__back {
  background-color: #540D6E;
  color: white;
  margin-top: 3rem;
  padding: 0.75rem 1.25rem;
}
.thanks__back:hover {
  background-color: #2c033b;
}
.thanks__back:active {
  background-color: #8127a2;
}
.thanks__back:focus-visible {
  outline-color: #dba307;
}
.thanks__btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .thanks__btn {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .thanks__btn {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .thanks__btn:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.thanks__btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.thanks__btn:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.thanks__btn {
  background-color: #540D6E;
  color: white;
}
.thanks__btn:hover {
  background-color: #2c033b;
}
.thanks__btn:active {
  background-color: #8127a2;
}
.thanks__btn:focus-visible {
  outline-color: #a834d2;
}

.error {
  background-color: #D3BDD8;
}
.error__container {
  padding-top: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.error__heading {
  font-weight: 300;
}
@media screen and (min-width: 48rem) {
  .error__perex {
    max-width: 70%;
  }
}
.error__buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 37.5rem) {
  .error__buttons {
    flex-direction: column;
  }
}
.error__link {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .error__link {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .error__link {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .error__link:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.error__link:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.error__link:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.error__link:hover {
  background-color: #2c033b;
}
.error__link:active {
  background-color: #8127a2;
}
.error__link--primary {
  background-color: #540D6E;
  color: white;
}
.error__link--primary:hover {
  background-color: #2c033b;
}
.error__link--primary:active {
  background-color: #8127a2;
}
.error__link--secondary {
  background-color: #FFD23F;
  color: #0D0D0D;
}
.error__link--secondary:hover {
  background-color: #2c033b;
}
.error__link--secondary:active {
  background-color: #8127a2;
}

.conditions__title {
  font-size: clamp(1.5rem, 1.5rem + 2vw, 2.9rem);
  margin-top: 3rem;
}
.conditions__section-heading {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
  font-family: "Merriweather", serif;
  font-weight: 800;
  margin: 2rem 0 0 0;
  color: #540D6E;
}
.conditions__article-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.conditions__list {
  margin: 0;
  list-style-type: disc;
  padding-left: 1rem;
}
.conditions__list-item {
  padding-left: 0.5rem;
}
.conditions__article-body {
  margin-top: 0;
}

.hero-with {
  background-color: #FFD23F;
}
.hero-with__container {
  margin-top: 3rem;
}

.withdrawal__container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .withdrawal__container {
    grid-template-columns: 1fr;
  }
}

.withdrawal-form {
  grid-column: 1/2;
}
.withdrawal-form__legend {
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
  margin-top: 0;
}
.withdrawal-form__fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 50rem) {
  .withdrawal-form__fieldset {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.withdrawal-form__label {
  display: block;
  margin: 0.5rem 0 0.2rem 0;
  font-weight: 500;
}
.withdrawal-form__label--textarea {
  margin-top: 0.8rem;
}
.withdrawal-form__input, .withdrawal-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.3125rem;
  border: 1px solid #540D6E;
  font-family: inherit;
  margin-bottom: 0.5rem;
}
.withdrawal-form__note {
  margin-top: 1rem;
}
.withdrawal-form__field--checkbox {
  margin-top: 1rem;
}
.withdrawal-form__GDPR {
  color: #0D0D0D;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
  margin-top: 2rem;
}
.withdrawal-form__note {
  font-style: italic;
  margin-bottom: 1rem;
}
.withdrawal-form__input:focus, .withdrawal-form__textarea:focus, .withdrawal-form__button:focus {
  outline: 2px solid #a834d2;
}
.withdrawal-form__field--photo {
  padding: 0;
}
.withdrawal-form__input--photo::file-selector-button {
  background-color: #FFD23F;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  margin-right: 1rem;
  transition: background-color 0.2s;
}
.withdrawal-form__button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 48rem) {
  .withdrawal-form__button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 36rem) {
  .withdrawal-form__button {
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .withdrawal-form__button:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
  }
}
.withdrawal-form__button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: none;
  transition: transform 0.1s;
}
.withdrawal-form__button:focus-visible {
  outline: 1px solid #a834d2;
  outline-offset: 3px;
}
.withdrawal-form__button {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  background-color: #540D6E;
  color: white;
}
.withdrawal-form__button:hover {
  background-color: #2c033b;
}
.withdrawal-form__button:active {
  background-color: #8127a2;
}
.withdrawal-form__button:focus-visible {
  outline-color: #a834d2;
}
.withdrawal-form__input.is-invalid, .withdrawal-form__textarea.is-invalid, .withdrawal-form__checkbox.is-invalid {
  border: 2px solid #FFD23F !important;
  background-color: #fff8f8;
}
.withdrawal-form__input.is-invalid:focus, .withdrawal-form__textarea.is-invalid:focus {
  outline-color: #FFD23F;
  box-shadow: 0 0 5px rgba(217, 48, 37, 0.3);
}
.withdrawal-form__error {
  color: #540D6E;
  font-size: 0.85rem;
  margin: 0 0 0.8rem 0;
  font-weight: 400;
}

.download {
  grid-column: 2/3;
  border-left: 1px solid #540D6E;
  padding-left: 1.25rem;
}
@media screen and (max-width: 48rem) {
  .download {
    grid-column: 1/2;
    grid-row: 2/3;
    border-left: none;
    padding-left: 0;
  }
}
.download__heading {
  font-size: clamp(1.35rem, 1.35rem + 1.5vw, 2.2rem);
}
@media screen and (max-width: 48rem) {
  .download__links {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
  }
}
.download__link--italic {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 0.5rem;
}
.download__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  margin-bottom: 1rem;
  text-align: center;
}
.download__link:hover {
  opacity: 0.7;
}
.download__icon {
  display: block;
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.privacy__title {
  font-size: clamp(1.5rem, 1.5rem + 2vw, 2.9rem);
  margin-top: 3rem;
}
.privacy__section-heading {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
  font-family: "Merriweather", serif;
  font-weight: 800;
  margin: 2rem 0 0 0;
  color: #540D6E;
}
.privacy__article-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.privacy__list {
  margin: 0;
  list-style-type: disc;
  padding-left: 1rem;
}
.privacy__list-item {
  padding-left: 0.5rem;
}
.privacy__article-body {
  margin-top: 0;
}

.cookies__title {
  font-size: clamp(1.5rem, 1.5rem + 2vw, 2.9rem);
  margin-top: 3rem;
}
.cookies__section-heading {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.3rem);
  font-family: "Merriweather", serif;
  font-weight: 800;
  margin: 2rem 0 0 0;
  color: #540D6E;
}
.cookies__article-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cookies__list {
  margin: 0 0 1rem 0;
  list-style-type: disc;
  padding-left: 1rem;
}
.cookies__list-item {
  padding-left: 0.5rem;
}
.cookies__article-body {
  margin-top: 0;
}

#cc-main {
  --cc-bg: white; /* Pozadí lišty */
  --cc-text: #0D0D0D; /* Obecná barva textu */
  /* 1. Tlačítko: Povolit vše (Primary) */
  --cc-btn-primary-bg: #540D6E;
  --cc-btn-primary-color: white;
  /* 2. Tlačítko: Jen nezbytné (Secondary) */
  --cc-btn-secondary-bg: #540D6E;
  --cc-btn-secondary-color: white;
  /* 3. Tlačítko: Nastavit individuálně (Tertiary) */
  --cc-btn-tertiary-bg: #540D6E;
  --cc-btn-tertiary-color: white;
  /* Font */
  --cc-font-family: inherit;
  /* Zaoblení rohů */
  --cc-modal-border-radius: 5px;
  --cc-btn-border-radius: 5px;
}

/* Hover stavy pro všechna tlačítka */
#cc-main .cm__btn--primary:hover,
#cc-main .cm__btn--secondary:hover,
#cc-main .cm__btn--tertiary:hover {
  background-color: #2c033b;
  color: white;
}

.story-hero {
  background-color: #D3BDD8;
  background: url(/images/bg2.svg) top left no-repeat;
  background-size: cover;
}
.story-hero__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 6rem 1.25rem 1.25rem 1.25rem;
}
.story-hero__heading {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.story__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem 1.25rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 2rem;
}
@media screen and (max-width: 48rem) {
  .story__container {
    grid-template-columns: 1fr;
  }
}
.story__subheading {
  font-size: 1.5rem;
  margin: 2rem 0 0 0;
  font-weight: 400;
}
.story__subheading:first-of-type {
  margin: 0;
}
.story__text {
  margin-top: 0.5rem;
}
.story__text-container {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
}
.story__image {
  display: block;
  width: 50%;
  height: auto;
  border-radius: 0.3125rem;
  align-self: self-end;
}
.story__image:first-of-type, .story__image:last-of-type {
  align-self: self-start;
}
.story__image-container {
  grid-column: 2/3;
  grid-row: 2/3;
  border-left: 2px solid #FFD23F;
  padding-left: 4rem;
}
@media screen and (max-width: 48rem) {
  .story__image-container {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.story__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.story__photo::after {
  content: "[]";
  border: 3px solid red;
  padding: 2rem;
}
.story__link {
  color: #0D0D0D;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.2em;
}/*# sourceMappingURL=style.css.map */