/* frontend/css/root.css */
:root {
  --black: #212121;
  --grey-400: #525966;
  --grey-300: #848992;
  --grey-200: #dcdfe5;
  --grey-150: #f0f1f2;
  --grey-100: #f7f6f5;
  --white: white;
  --brand-orange: #e56239;
  --white-80pct: #fffc;
  interpolate-size: allow-keywords;
  box-sizing: border-box;
}

* {
  color: var(--grey-400);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: figtree;
  font-size: 14px;
}

div {
  width: 100%;
}

h1 {
  color: var(--black);
  font-family: the-seasons;
  font-size: 38px;
  font-weight: 400;
  line-height: 42px;
}

h2 {
  color: var(--black);
  font-family: the-seasons;
  font-size: 32px;
  font-weight: 400;
}

#root {
  display: flex;
  flex-direction: column;
  align-items:  center;
  min-height: 100vh;
}

html, body, #root {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

span {
  text-wrap: nowrap;
  white-space: nowrap;
}

input, textarea {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid #e9e9f0;
  border-radius: .285rem;
  padding: 1rem .85rem;
  font-size: 16px;
}

:is(input, textarea).input-big {
  height: 8rem;
}

:is(input, textarea):focus {
  outline: none;
}

:is(input, textarea)::placeholder {
  color: var(--grey-300);
  opacity: 1;
}

:is(input, textarea) ::placeholder {
  color: var(--grey-300);
}

:is(input, textarea) ::-ms-input-placeholder {
  color: var(--grey-300);
}

:is(input, textarea)[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

:is(input, textarea).error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px #e539350f;
}

:is(input, textarea).error:focus {
  box-shadow: 0 0 0 4px #e5393514;
}

/* frontend/css/global-footer.css */
.global-footer-spacer {
  flex-grow: 1;
}

.global-footer {
  background: var(--grey-100);
  width: 100%;
  padding: 2rem 1.25rem 2.5rem;
}

.footer-inner {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 1.7rem;
}

.footer-nav-and-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:  center;
  gap: .75rem;
}

.footer-nav .footer-link {
  color: var(--grey-400);
  text-decoration: none;
  font-size: .95rem;
}

.footer-nav .footer-nav-seperator {
  background-color: #c7c7c7;
  width: 1px;
  height: 1rem;
}

.footer-logo {
  cursor: pointer;
  height: 1.6rem;
  margin-bottom: .5rem;
}

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

.footer-socials {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 1.25rem;
}

.footer-socials .nav-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 1.2rem;
}

.footer-copy {
  font-size: .9rem;
}

/* frontend/css/bag.css */
.bag-panel {
  position: fixed;
  background: var(--white);
  z-index: 50;
  display: flex;
  box-shadow: none;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  height: 100%;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.bag-panel.open {
  transform: translateX(0);
  box-shadow: -8px 0 30px #0000001a;
}

.bag-header {
  display: flex;
  justify-content: start;
  align-items:  center;
  gap: .25rem;
}

.bag-header .bag-title {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 600;
}

.bag-close {
  display: flex;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: end;
  align-items:  center;
  padding: 1rem 1.5rem .25rem;
}

.bag-panel-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}

.bag-content-and-total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 8rem;
}

.bag-content-and-total .bag-content {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.bag-content-and-total .bag-content .bag-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  height: 100%;
}

.bag-content-and-total .bag-content .bag-empty-state .empty-state-title {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 600;
}

.bag-content-and-total .bag-total {
  display: grid;
  grid-template-columns: auto fit-content(100%);
  gap: .6rem;
}

.bag-content-and-total .bag-total .text-total {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 600;
}

.bag-content-and-total .bag-total > :nth-child(2) {
  text-align: right;
  justify-self: end;
}

.bag-content-and-total .bag-total > :nth-child(4) {
  text-align: right;
  justify-self: end;
}

.bag-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  height: 5rem;
}

.bag-item .bag-item-image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .25rem;
  height: 100%;
}

.bag-item .bag-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bag-item .bag-item-info .bag-title-and-property {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bag-item .bag-item-info .bag-title-and-property .bag-item-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.bag-item .bag-item-info .bag-title-and-property .bag-item-title .bag-item-title-text {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
}

.bag-item .bag-item-info .bag-title-and-property .bag-item-properties {
  display: flex;
  flex-direction: row;
  gap: .5rem;
}

.bag-item .bag-item-info .bag-title-and-property .bag-item-properties .bag-item-property {
  color: var(--grey-300);
  font-size: .9rem;
}

.bag-item .bag-item-info .quantity-picker {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items:  center;
  gap: .5rem;
  width: 9.5rem;
}

.bag-item .bag-item-info .quantity-picker .quantity-btn {
  aspect-ratio: 1;
  display: flex;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  border: none;
  border-radius: .25rem;
  justify-content: center;
  align-items:  center;
  height: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1rem;
}

.bag-item .bag-item-info .quantity-picker .quantity-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.bag-footer {
  border-top: 1px solid var(--grey-200);
  position: fixed;
  background-color: var(--white);
  padding: .6rem .9rem;
  bottom: 0;
  left: 0;
}

.bag-footer .footer-guarantee {
  display: flex;
  color: var(--grey-400);
  flex-direction: row;
  justify-content: center;
  align-items:  center;
  gap: .34rem;
  padding: .9rem 0 1rem;
  font-size: .85rem;
}

.bag-footer .footer-guarantee .footer-guarantee-link {
  color: var(--black);
  font-size: .85rem;
}

/* frontend/css/navbar.css */
.nav-toggle {
  display: none;
}

.page-header {
  position: fixed;
  z-index: 20;
  display: flex;
  overflow: hidden;
  background-color: var(--white-80pct);
  flex-direction: column;
  align-items:  start;
  gap: 1.75rem;
  height: 3rem;
  transition: height .5s, background-color .5s;
  top: 0;
}

.page-header .acrylic {
  position: absolute;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: backdrop-filter .5s, -webkit-backdrop-filter .5s;
  inset: 0;
}

body:has(.nav-toggle:checked) .page-header {
  background-color: var(--white);
  height: auto;
}

body:not(:has(.nav-toggle:checked)) .page-header.auto-transparent:not(.scrolled) {
  background-color: #0000;
}

body:not(:has(.nav-toggle:checked)) .page-header.auto-transparent:not(.scrolled) .acrylic {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

body:not(:has(.nav-toggle:checked)) .page-header.auto-transparent:not(.scrolled) .line {
  background-color: var(--white);
}

body:not(:has(.nav-toggle:checked)) .page-header.auto-transparent:not(.scrolled) img {
  filter: invert(100%);
}

.navbar {
  display: flex;
  z-index: 10;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  height: 3rem;
}

.navbar .page-logo {
  height: 48%;
}

.navbar img {
  transition: filter .5s;
}

.navbar .navbar-btn {
  position: relative;
  display: flex;
  cursor: pointer;
  background-color: #0000;
  border: none;
  justify-content: center;
  align-items:  center;
  width: 3.5rem;
  height: 100%;
}

.navbar .navbar-btn .navbar-bag {
  height: 1.35rem;
}

.navbar .navbar-btn .line {
  position: absolute;
  transform-origin: 0;
  background-color: var(--black);
  border-radius: .5px;
  height: 1px;
  transition: all .5s;
  left: 34%;
}

.navbar .navbar-btn .line-top {
  width: 1.25rem;
  top: 40%;
}

.navbar .navbar-btn .line-bottom {
  width: 1rem;
  bottom: 40%;
}

.navbar .navbar-btn .navbar-badge {
  position: absolute;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: .75rem;
  top: .35rem;
  right: .35rem;
}

.navbar .navbar-btn .navbar-badge:is(.auto-transparent *) {
  background-color: var(--white);
  color: var(--black);
}

body:has(.nav-toggle:checked) .navbar-btn .line-top {
  top: calc(40% - .17rem);
  transform: rotate(45deg);
}

body:has(.nav-toggle:checked) .navbar-btn .line-bottom {
  width: 1.25rem;
  bottom: calc(40% - .17rem);
  transform: rotate(-45deg);
}

.nav-menu {
  display: flex;
  z-index: 10;
  flex-direction: column;
  gap: 0;
}

.nav-menu .nav-link {
  cursor: pointer;
  background-color: #0000;
  border: none;
}

.nav-menu .nav-link h2 {
  text-align: left;
  margin: .55rem 2rem;
  font-size: 2.3rem;
  line-height: 2.25rem;
}

.nav-menu .nav-link.selected h2 {
  color: var(--grey-200);
  font-style: italic;
}

.nav-socials {
  display: grid;
  grid-template-columns: 2rem 1fr 1fr 2rem;
  grid-template-rows: 1fr 1fr 1fr;
  z-index: 10;
  row-gap: .5rem;
  width: 100%;
  margin: 1.5rem 0;
}

.nav-socials a {
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
}

.nav-socials .nav-social {
  display: flex;
  text-transform: uppercase;
  grid-column: 3;
  justify-content: end;
  align-items:  center;
  gap: .25rem;
}

.nav-socials .social-1 {
  grid-row: 1;
}

.nav-socials .social-2 {
  grid-row: 2;
}

.nav-socials .social-3 {
  grid-row: 3;
}

.nav-socials .nav-contact {
  grid-column: 2;
  grid-row: 3;
}

.nav-scrim {
  z-index: 15;
  position: fixed;
  background-color: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  inset: 0;
}

.nav-scrim-close {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

body:has(.nav-toggle:checked) .nav-scrim {
  opacity: .75;
  pointer-events: all;
}

/* frontend/css/about.css */
.about-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-artist {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items:  center;
  gap: .75rem;
}

.about-avatar {
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
}

.about-artist-description {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: .25rem;
}

.about-artist-description > p {
  color: var(--black);
}

/* frontend/css/checkout.css */
.checkout-page-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 4rem 1rem 3rem;
}

.checkout-title {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 600;
}

.your-order {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-indicator {
  display: flex;
  text-wrap: nowrap;
  color: var(--grey-400);
  align-items:  center;
  gap: 1em;
  font-size: .95em;
}

.section-indicator .seperator {
  background-color: var(--grey-200);
  height: .5px;
}

.express-checkout {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.checkout-page-content .bag-content {
  display: flex;
  overflow-y: visible;
  flex-direction: column;
  gap: 1rem;
  max-height: 24rem;
}

.checkout-page-content .bag-item {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  height: 4rem;
}

.image-with-badge {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}

.image-with-badge .quantity-badge {
  position: absolute;
  z-index: 10;
  background-color: var(--black);
  color: var(--white);
  outline: 3px solid var(--white);
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: .75rem;
  top: -.35rem;
  right: -.35rem;
}

.image-with-badge .bag-item-image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .25rem;
  height: 100%;
}

.checkout-page-content .bag-title-and-property {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.checkout-page-content .bag-item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.checkout-page-content .bag-item-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-page-content .bag-item-title-text {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
}

.checkout-page-content .bag-item-properties {
  display: flex;
  flex-direction: row;
  gap: .5rem;
}

.checkout-page-content .bag-item-property {
  color: var(--grey-300);
  font-size: .9rem;
}

.checkout-page-content .bag-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items:  center;
  gap: .6rem;
  padding-top: .5rem;
}

.checkout-page-content .bag-total .text-subtotal {
  color: var(--grey-400);
}

.checkout-page-content .bag-total .text-total, .checkout-page-content .bag-total .text-total-price {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-page-content .bag-total .text-subtotal-price, .checkout-page-content .bag-total .text-total-price {
  text-align: right;
  justify-self: end;
}

.contact-and-address, .payment, .checkout-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-guarantee {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:  center;
  gap: .25rem;
}

/* frontend/css/checkout-complete.css */
.checkout-complete {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 2rem;
  width: 100%;
  height: 100%;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.checkout-complete .title-and-paragraph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 1.5rem;
}

.checkout-complete .title-and-paragraph h1 {
  display: flex;
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.checkout-complete .title-and-paragraph .paragraph {
  text-align: center;
}

.checkout-complete .btn-fitcontent {
  width: -moz-fit-content;
  width: fit-content;
}

.checkout-complete .support {
  display: flex;
  flex-direction: row;
  gap: .5rem;
  font-size: .91rem;
}

.checkout-complete .support .text-black {
  color: var(--black);
  font-size: .91rem;
  font-weight: 500;
}

.checkout-complete .seperator {
  background-color: var(--grey-200);
  height: 1px;
}

.checkout-complete .order-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-complete .order-summary h2 {
  color: var(--black);
  padding-bottom: .5rem;
  font-family: figtree;
  font-size: 1.15rem;
  font-weight: 600;
}

.checkout-complete .whats-next {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.checkout-complete .whats-next h3 {
  color: var(--black);
  padding-bottom: .25rem;
  font-weight: 600;
}

.checkout-complete .paragraph-small {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .91rem;
}

/* frontend/css/components/product-card.css */
.product-card {
  display: flex;
  background-color: var(--white);
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid var(--grey-150);
  cursor: pointer;
  flex-direction: column;
  width: calc(50vw - .5px);
}

.product-card .product-image {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.product-card .product-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  padding: 1rem 1rem .75rem;
}

.product-card .product-card-content .product-name {
  font-size: 1.4rem;
}

.product-card .product-card-content .description-and-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: .25rem;
}

.product-card .product-card-content .description-and-price .product-description {
  color: var(--grey-300);
  font-size: .85rem;
}

.product-card .product-card-content .description-and-price .product-price {
  color: var(--grey-300);
  font-size: .85rem;
}

.product-card:nth-child(2n) {
  border-right: none;
}

/* frontend/css/collection.css */
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .25px;
}

/* frontend/css/components/product-carousel.css */
.product-carousel {
  display: flex;
  overflow-x: auto;
  flex-direction: row;
  gap: .75em;
  width: 100vw;
  height: auto;
  padding-left: 1.25rem;
  padding-right: 1.25em;
}

.product-carousel b {
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.product-carousel .carousel-card {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items:  flex-start;
  gap: 8px;
  min-width: 75vw;
}

.product-carousel .carousel-card .product-brief {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-carousel .carousel-card .product-brief .product-meaning {
  color: var(--grey-300);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
}

.product-carousel .carousel-card .carousel-img {
  object-fit: contain;
  width: 100%;
}

/* frontend/css/reveal.css */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .8s, transform .8s;
  transform: translateY(40px);
}

.reveal.reveal-right {
  transform: translateX(20px);
}

.reveal.reveal-btn {
  transform: translateY(20px);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal.delay-0 {
  transition-delay: .2s;
}

.reveal.delay-1 {
  transition-delay: .3s;
}

.reveal.delay-2 {
  transition-delay: .5s;
}

.reveal.delay-3 {
  transition-delay: .7s;
}

/* frontend/css/index.css */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: .75rem;
  width: 100%;
  min-height: 100vh;
  padding: 0 1.5rem 1.5rem;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 3.6rem;
}

.hero-subheading {
  font-size: 1.1rem;
}

.index-video {
  position: absolute;
  object-fit: cover;
  z-index: -1;
  filter: brightness(80%) contrast(95%) saturate(110%) hue-rotate(357deg);
  height: 105vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spacer {
  height: 35vh;
}

.bg-section {
  background-color: var(--white);
  display: flex;
  background-position: 53%;
  background-size: cover;
  flex-direction: column;
  width: 100%;
  min-height: 85vh;
}

.bg-section :not(button), .hero :not(button) {
  color: var(--white);
}

.bg-section.position-left {
  background-position: 40%;
}

.image-scrim {
  display: flex;
  min-height: inherit;
  background: linear-gradient(#00000030, #0000 50%);
  flex-direction: column;
  justify-content: space-between;
  align-items:  flex-start;
  width: 100%;
  padding: 1.75rem 1.25rem 2rem;
}

.image-scrim.dark {
  background: linear-gradient(#00000045, #0000 50%);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-section {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding: 1.75rem 0 3rem;
}

.featured-section .section-title {
  padding: 0 1.25rem;
}

.luxury-section {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  min-height: 75vh;
  padding: 1.75rem 1.25rem 2rem;
}

.luxury-row {
  display: flex;
  flex-direction: row;
  align-items:  center;
  gap: 1rem;
}

.artist-section {
  background-color: var(--white);
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  min-height: 75vh;
  padding: 1.75rem 1.25rem 2rem;
}

.artist-section :not(button) {
  color: var(--black);
}

.artist-section-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items:  center;
  gap: .75rem;
}

.zori-avatar {
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
}

.artist-description {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: .25rem;
}

/* frontend/css/components/button.css */
button.btn {
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  height: 44px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
}

button.btn:disabled {
  color: var(--grey-300);
  opacity: .8;
}

button.btn.btn-inverse {
  background-color: var(--white);
  color: var(--black);
}

button.btn.btn-centered {
  align-self:  center;
}

button.btn.btn-start {
  align-self:  flex-start;
}

button.btn.btn-fullwidth {
  width: 100%;
}

/* frontend/css/policy.css */
details:open > summary {
  font-weight: bold;
}

.assistance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  padding: 1.75rem 1rem;
}

.assistance p {
  text-align: center;
}

.padded {
  margin: 1rem 1.25rem 0;
}

h1.policy-title {
  margin-top: 7.5rem;
}

ul {
  list-style-position: inside;
}

/* frontend/css/components/accordion.css */
details {
  width: 100%;
}

details summary:after {
  transition: all .5s;
}

details summary {
  list-style: none;
  display: flex;
  border-bottom: 1px solid var(--grey-200);
  flex-direction: row;
  justify-content: space-between;
  align-items:  center;
  padding: 20px;
  font-size: 1rem;
}

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

details summary:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuNzk1NDk1IDBMNi43OTU1IDZMMTIuNzk1NSAwTDEzLjU5MSAwLjc5NTQ5NUw2Ljc5NTUgNy41OTA5OUwwIDAuNzk1NDk1TDAuNzk1NDk1IDBaIiBmaWxsPSIjODQ4OTkyIi8+DQo8L3N2Zz4NCg==");
  display: inline-block;
  transform: rotate(0);
}

details:open {
  border-bottom: 1px solid var(--grey-200);
}

details:open summary {
  border-bottom: none;
}

details:open summary:after {
  transform: rotate(180deg);
}

details > :not(summary) {
  margin: 0 1.25rem 1.25rem;
}

/* frontend/css/product.css */
.fixed-footer {
  position: fixed;
  background-color: var(--white);
  display: flex;
  z-index: 2;
  will-change: opacity, transform;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  width: 100%;
  padding: .6rem 1.2rem;
  transition: opacity .25s, transform .15s;
  bottom: 0;
  left: 0;
}

.fixed-footer .footer-guarantee {
  display: flex;
  color: var(--grey-400);
  flex-direction: row;
  justify-content: center;
  align-items:  center;
  gap: .34rem;
  padding: .9rem 0 1rem;
  font-size: .85rem;
}

.fixed-footer .footer-guarantee-link {
  color: var(--black);
  font-size: .85rem;
}

.top-spacer {
  height: 3rem;
}

.bottom-spacer {
  height: 4rem;
}

.product-images {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  flex-direction: row;
  gap: 0;
  width: 100vw;
  height: 125vw;
  padding: 0;
}

.product-images .product-image {
  object-fit: fill;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  width: 100vw;
}

.scroll-indicator {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  height: 3rem;
}

.scroll-indicator .scroll-indicator-default {
  background-color: var(--grey-200);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.scroll-indicator .scroll-indicator-selected {
  background-color: var(--black);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.product-page-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 1.4rem;
}

.header-and-price {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.product-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.product-header .product-title {
  font-size: 2.4rem;
}

.product-header .product-description {
  color: var(--grey-300);
  font-size: .9rem;
}

.price {
  display: flex;
  padding-bottom: .15rem;
}

.dropdowns {
  display: flex;
  text-align: end;
  flex-direction: column;
  align-items:  end;
  gap: .5rem;
}

.out-of-stock-message {
  display: flex;
  color: #ca2421;
  text-align: end;
  flex-direction: row;
  justify-content: start;
  gap: .5rem;
  font-size: .9rem;
}

.out-of-stock-message .get-notified-link {
  color: var(--black);
  text-decoration: underline;
  font-size: .86rem;
  font-weight: 600;
}

.section-header {
  color: var(--black);
  font-weight: 600;
}

.section-content {
  color: var(--grey-400);
  font-size: .9rem;
}

.about-this-piece {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.reviews-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  width: 100%;
}

.view-all {
  display: flex;
  color: var(--black);
  flex-direction: row;
  justify-content: end;
  align-items:  center;
  gap: .5rem;
  width: 33vw;
  font-size: .9rem;
  font-weight: 600;
}

.what-collectors-say {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-write-a-review {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items:  center;
  gap: .4rem;
  padding: .25rem 0;
}

.btn-write-a-review .btn-write-a-review-text {
  color: var(--black);
  font-size: .9rem;
  font-weight: 600;
}

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fixed-footer.at-bottom {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40%);
}

/* frontend/css/components/accordion-small.css */
.faq-section details {
  width: 100%;
}

.faq-section details summary:after {
  transition: all .5s;
}

.faq-section details summary {
  list-style: none;
  display: flex;
  border-bottom: 1px solid var(--grey-200);
  flex-direction: row;
  justify-content: space-between;
  align-items:  center;
  padding: 1rem 0;
  font-size: .9rem;
}

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

.faq-section details summary:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuNzk1NDk1IDBMNi43OTU1IDZMMTIuNzk1NSAwTDEzLjU5MSAwLjc5NTQ5NUw2Ljc5NTUgNy41OTA5OUwwIDAuNzk1NDk1TDAuNzk1NDk1IDBaIiBmaWxsPSIjODQ4OTkyIi8+DQo8L3N2Zz4NCg==");
  display: inline-block;
  transform: rotate(0);
}

.faq-section details:open {
  border-bottom: 1px solid var(--grey-200);
}

.faq-section details:open summary {
  color: var(--black);
  border-bottom: none;
  font-weight: 600;
}

.faq-section details:open summary:after {
  transform: rotate(180deg);
}

.faq-section .accordion-content {
  display: flex;
  text-wrap: wrap;
  flex-direction: column;
  gap: .75rem;
  margin: 0;
  padding-bottom: 1rem;
}

.faq-section .accordion-content .accordion-text {
  text-wrap: wrap;
  font-size: .9rem;
}

/* frontend/css/components/dropdown.css */
.dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.dropdown summary {
  list-style: none;
  cursor: pointer;
  border: var(--grey-200) 1px solid;
  display: flex;
  background: #fff;
  border-radius: .3rem;
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

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

.dropdown summary:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuNzk1NDk1IDBMNi43OTU1IDZMMTIuNzk1NSAwTDEzLjU5MSAwLjc5NTQ5NUw2Ljc5NTUgNy41OTA5OUwwIDAuNzk1NDk1TDAuNzk1NDk1IDBaIiBmaWxsPSIjODQ4OTkyIi8+DQo8L3N2Zz4NCg==");
  display: inline-block;
  transition: transform .3s;
}

.dropdown[open] summary:after {
  transform: rotate(180deg);
}

.dropdown .attribute {
  color: var(--black);
  font-weight: 600;
}

.dropdown .value {
  color: var(--black);
}

.dropdown .menu {
  position: absolute;
  border: var(--grey-200) 1px solid;
  list-style: none;
  z-index: 1;
  background: #fff;
  border-radius: .3rem;
  width: 100%;
  margin: 0;
  padding: .4rem 0;
  top: calc(100% + .3rem);
  left: 0;
}

.dropdown .item {
  display: flex;
  cursor: pointer;
  color: var(--black);
  justify-content: end;
  align-items:  center;
  gap: 1rem;
  padding: .6rem 1.1rem;
}

.dropdown .item:hover {
  background: var(--grey-100);
}

.dropdown .item.active {
  font-weight: 600;
}

.dropdown .item:not(.active) {
  padding-right: 3.15rem;
}

.dropdown .spacer-h {
  flex-grow: 1;
}

/* frontend/css/components/review-carousel.css */
.review-carousel {
  display: flex;
  overflow-x: auto;
  flex-direction: row;
  gap: .5rem;
  width: 100%;
  padding-right: 1.25em;
}

.review-carousel b {
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.review-carousel .carousel-card {
  display: flex;
  border: var(--grey-200) 1px solid;
  border-radius: .3rem;
  flex-direction: column;
  align-items:  flex-start;
  min-width: 58vw;
  height: auto;
  padding: .75rem .9rem .9rem;
}

.review-carousel .carousel-card .review-content {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  width: 100%;
}

.review-carousel .carousel-card .review-content .review-header {
  display: flex;
  white-space: nowrap;
  flex-direction: row;
  align-items:  center;
}

.review-carousel .carousel-card .review-content .review-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  text-wrap: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  font-size: .9rem;
}

/* frontend/css/components/stars.css */
.stars {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: .15rem;
  height: 1rem;
  padding-bottom: .2rem;
}

/* frontend/css/components/reviews-bottom-sheet.css */
.reviews-toggle {
  display: none;
}

.scrim {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  background: #0006;
  transition: opacity .25s;
  inset: 0;
}

.reviews-toggle:checked ~ .scrim {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet {
  position: fixed;
  background: var(--white);
  z-index: 20;
  display: flex;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  flex-direction: column;
  width: 100%;
  max-height: 85vh;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  bottom: 0;
  left: 0;
  transform: translateY(101vh);
}

.reviews-toggle:checked ~ .bottom-sheet {
  transform: translateY(0);
}

body:has(.reviews-toggle:checked) {
  overflow: hidden;
}

.bottom-sheet .close-btn {
  display: flex;
  cursor: pointer;
  justify-content: end;
  align-items:  center;
  padding: 1rem 1.1rem 0 1rem;
}

.bottom-sheet .close-btn .close-svg {
  cursor: pointer;
  filter: opacity(50%);
  height: .9rem;
}

.sheet-content {
  overflow-y: auto;
  flex: 1;
  padding: 0 1.4rem 1.75rem;
}

.sheet-header {
  display: flex;
  color: var(--black);
  justify-content: center;
  padding-top: .6rem;
  padding-bottom: .8rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.bottom-sheet-review {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem 0;
}

.bottom-sheet-review .review-text {
  color: var(--grey-400);
  font-size: 1rem;
  line-height: 1.3rem;
}

.bottom-sheet-review-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items:  center;
  gap: .5rem;
}

.review-header-start {
  display: flex;
  flex-direction: row;
  align-items:  center;
  gap: .9rem;
}

.customer-name {
  color: var(--black);
  font-size: 1rem;
  font-weight: 550;
}

.verified-buyer {
  display: flex;
  flex-direction: row;
  align-items:  center;
  gap: .25rem;
  font-size: .85rem;
}

.verified-buyer .guarantee-icon {
  width: .8rem;
  height: .8rem;
}

.reviews-seperator {
  background-color: var(--grey-200);
  width: 100%;
  height: .5px;
}

/* frontend/css/components/review-submission-form.css */
.review-submission-toggle {
  position: relative;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  border: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.review-backdrop {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  background: #00000073;
  transition: opacity .25s;
  inset: 0;
}

.review-drawer {
  position: fixed;
  background: var(--white);
  z-index: 30;
  display: flex;
  background: var(--white);
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding: 1.1rem 1.4rem 3rem;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(101vh);
  box-shadow: 0 -8px 30px #0000001f;
}

.review-form-close {
  display: flex;
  justify-content: end;
  padding-bottom: .9rem;
}

.review-form-close .close-svg {
  cursor: pointer;
  filter: opacity(50%);
  height: .97rem;
}

.review-form-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.review-form-body .review-form-header {
  color: var(--black);
  text-align: center;
  font-size: 2.25rem;
}

.review-form-body .review-inputs {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-bottom: .5rem;
}

.review-form-body .certificate-id {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.review-form-body .info-text {
  text-wrap: wrap;
  font-size: .9rem;
}

.review-form-rating {
  display: flex;
  flex-direction: row;
  align-items:  center;
  gap: 1.14rem;
  margin-top: .8rem;
  margin-bottom: 1rem;
}

.review-form-rating .rating-text {
  font-size: 16px;
}

.review-form-rating .review-form-stars {
  display: flex;
  flex-direction: row;
  gap: .25rem;
}

.review-form-rating .review-form-stars .review-form-star {
  height: 1.75rem;
}

.review-form-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2.25rem;
}

.form-error {
  color: #ca2421;
  text-align: center;
  background-color: #ca242115;
  border: 1px solid #ca242130;
  border-radius: .25rem;
  margin-bottom: 1rem;
  padding: .4rem;
  font-size: 1rem;
}

.field-error-text {
  color: #ca2421;
  margin-top: .35rem;
  font-size: .88rem;
}

.review-form-rating.error .review-form-stars {
  outline: 2px solid #e539351f;
  border-radius: .375rem;
  width: auto;
  padding: .25rem;
}

#review-submission-toggle:checked ~ .review-backdrop {
  opacity: 1;
  pointer-events: all;
}

#review-submission-toggle:checked ~ .review-drawer {
  transform: translateY(0);
}

/* frontend/css/components/stock-notification.css */
.stock-notification-toggle {
  display: none;
}

.get-notified-btn {
  display: flex;
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 44px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
}

.stock-notification-scrim {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  background: #0000005c;
  transition: opacity .25s;
  inset: 0;
}

.stock-notification-toggle:checked ~ .stock-notification-scrim {
  opacity: 1;
  pointer-events: auto;
}

.stock-notification-sheet {
  position: fixed;
  background: var(--white);
  z-index: 31;
  display: flex;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  flex-direction: column;
  width: 100%;
  padding: 1.1rem 1.4rem 3rem;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(101vh);
  box-shadow: 0 -18px 30px #0000001f;
}

.stock-notification-toggle:checked ~ .stock-notification-sheet {
  transform: translateY(0);
}

body:has(.stock-notification-toggle:checked) {
  overflow: hidden;
}

.stock-notification-close {
  display: flex;
  cursor: pointer;
  justify-content: end;
  align-items:  center;
  margin-bottom: 1rem;
}

.stock-notification-close .close-svg {
  filter: opacity(.65);
  width: .9rem;
}

.stock-notification-header h2 {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items:  center;
  margin-bottom: .6rem;
  font-size: 1.75rem;
  line-height: 2rem;
}

.stock-notification-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.stock-notification-body form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stock-notification-copy {
  color: var(--grey-400);
  text-align: center;
  font-size: .95rem;
}

.stock-notification-field {
  display: flex;
  color: var(--grey-600);
  flex-direction: column;
  gap: .6rem;
}

.stock-notification-submit {
  margin-top: .25rem;
}

.stock-notification-form-error {
  color: #ca2421;
  text-align: center;
  background-color: #ca242115;
  border: 1px solid #ca242130;
  border-radius: .25rem;
  margin-bottom: .15rem;
  padding: .4rem;
  font-size: 1rem;
}
