@charset "UTF-8";
/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: inherit;
  cursor: pointer;
}

[hidden] {
  display: none;
}

/* Root */
:root {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.3;
  --black: #1a1a1a;
  --white: #ffffff;
  --anti-flash-white: #f3f3f3;
  --granite-gray: #999999;
  --lavender-blush: #FFEFF1;
  --pastel-blue: #b3ebf2;
  --rusty-red: #dc3545;
}

/* Typography */
h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4, h5, h6 {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p,
a {
  font-size: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Body */
body {
  width: 100%;
  height: 100%;
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: var(--white);
}

/* Globalne przejścia */
html,
body,
.navigation,
.container,
.blog,
.about,
.data {
  transition: background-color 0.33s ease, color 0.33s ease, border-color 0.33s ease;
}

/* Header: Navigation */
.navigation {
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  position: fixed;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--black);
  z-index: 665;
}
.navigation__brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-right: 1px solid var(--black);
}
.navigation__brand--logo {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 30px;
  border-right: 1px solid var(--black);
}
.navigation__brand--logo img {
  width: 135px;
  height: 16px;
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.navigation__brand--logo img:hover {
  opacity: 0.66;
}
.navigation__brand--search {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
.navigation__brand--search__input {
  width: 100%;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  background: transparent;
  border: none;
  outline: none;
}
.navigation__brand--search__input::-moz-placeholder {
  color: var(--granite-gray);
}
.navigation__brand--search__input::placeholder {
  color: var(--granite-gray);
}
.navigation__brand--search__button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.navigation__actions {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.navigation__actions--login, .navigation__actions--cart {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  transition: background-color 0.33s ease, color 0.33s ease;
}
.navigation__actions--login:hover, .navigation__actions--cart:hover {
  background-color: var(--black);
  color: var(--white);
}
.navigation__actions--login {
  border-right: 1px solid var(--black);
}

/* Sidebar */
.sidebar {
  width: calc(33.333vw + 1px);
  height: 100%;
  position: fixed;
  top: 0;
  right: calc(-33.333vw - 1px);
  border-left: 1px solid var(--black);
  background-color: var(--white);
  transition: right 0.66s ease;
  overflow: hidden;
  z-index: 666;
}
.sidebar__close {
  width: -moz-fit-content;
  width: fit-content;
  height: 59px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 30px;
  cursor: pointer;
  opacity: 1;
}
.sidebar__close span {
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.sidebar__close span:hover {
  opacity: 0.66;
}
.sidebar__cart {
  width: 100%;
  height: calc(100vh - 60px + 1px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--black);
}
.sidebar__cart--notice {
  padding: 30px;
}
.sidebar__cart--notice p {
  font-size: clamp(14px, 0.875rem, 14px);
}
.sidebar__cart--products {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sidebar__cart--products__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--black);
  align-items: stretch;
}
.sidebar__cart--products__item--thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  border-right: 1px solid var(--black);
  overflow: hidden;
}
.sidebar__cart--products__item--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar__cart--products__item--details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 30px;
}
.sidebar__cart--products__item--details__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sidebar__cart--products__item--details__title span {
  font-size: clamp(14px, 0.875rem, 14px);
}
.sidebar__cart--products__item--details__title span:nth-of-type(1) {
  font-family: "Inconsolata", monospace;
}
.sidebar__cart--products__item--details__title span:nth-of-type(2) {
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
  cursor: pointer;
}
.sidebar__cart--products__item--details__title span:nth-of-type(2):hover {
  opacity: 0.66;
}
.sidebar__cart--products__item--details__price {
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  font-weight: 600;
}
.sidebar__cart--footer {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  background: var(--white);
}
.sidebar__cart--footer__summary {
  padding: 15px 30px;
  border-top: 1px solid var(--black);
}
.sidebar__cart--footer__summary p {
  text-align: center;
  font-weight: 600;
}
.sidebar__cart--footer__summary p span {
  font-weight: 400;
}
.sidebar__cart--footer__cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--black);
}
.sidebar__cart--footer__cta--continue {
  padding: 15px;
  border-right: 1px solid var(--black);
  transition: background-color 0.33s ease, color 0.33s ease;
}
.sidebar__cart--footer__cta--continue span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.sidebar__cart--footer__cta--continue:hover {
  background-color: var(--black);
  color: var(--white);
}
.sidebar__cart--footer__cta--checkout {
  color: var(--black);
  background-color: var(--pastel-blue);
  padding: 15px;
  transition: background-color 0.33s ease, color 0.33s ease;
}
.sidebar__cart--footer__cta--checkout span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-weight: 600;
}
.sidebar__cart--footer__cta--checkout:hover {
  background-color: var(--black);
  color: var(--white);
}

.sidebar.open {
  right: 0;
}

/* Navigation: Menu */
.menu {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 90px;
  padding: 0 30px;
  gap: 30px;
}
.menu a {
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  font-weight: 600;
  text-transform: uppercase;
}
.menu a:not(:first-child) {
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.menu a:not(:first-child):hover {
  opacity: 0.66;
}
.menu__highlight {
  color: var(--black);
  text-decoration: none;
  background-image: linear-gradient(white 50%, var(--pastel-blue) 50%);
  background-size: 2px;
  background-size: auto 175%;
  background-position-y: 0%;
  transition: background 500ms ease;
}
.menu__highlight:hover {
  background-position-y: 100%;
}

/* Main: Container */
.container {
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 90px auto 0 auto;
  padding: 0 30px;
}

/* Breadcrumb */
.breadcrumb {
  width: 100%;
  height: auto;
}
.breadcrumb__path {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.breadcrumb__path a {
  color: var(--granite-gray);
  font-size: clamp(14px, 0.875rem, 14px);
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.breadcrumb__path a:hover {
  color: var(--black);
}
.breadcrumb__path--active {
  color: var(--black) !important;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.breadcrumb__path--active:hover {
  color: var(--granite-gray);
}
.breadcrumb__title {
  margin-top: 15px;
}

/* Latest products */
.latest {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  padding: 15px 0 60px 0;
  position: relative;
  transform-origin: center;
}
.latest__navigation {
  width: 45px;
  height: 45px;
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  transition: background 0.33s ease, opacity 0.33s ease;
  cursor: pointer;
  z-index: 663;
}
.latest__navigation::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1.5px solid var(--black);
  border-right: 1.5px solid var(--black);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.16s ease;
}
.latest__previous {
  left: 30px;
}
.latest__previous::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.latest__previous:active::before {
  transform: translate(-50%, -50%) scale(0.9) rotate(-135deg);
}
.latest__next {
  right: 30px;
}
.latest__next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.latest__next:active::before {
  transform: translate(-50%, -50%) scale(0.9) rotate(45deg);
}
.latest__indicator {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--rusty-red);
  border-radius: 100%;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.latest__gallery {
  width: 100%;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}
.latest__gallery--item {
  height: 360px;
  display: flex;
  flex: 0 1 36px;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  position: relative;
  background: #000;
  overflow: hidden;
  transition: flex 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.latest__gallery--item__price {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 7px 14px;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  color: var(--black);
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  z-index: 662;
}
.latest__gallery--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(2);
  z-index: 661;
}
.latest__gallery--item:hover .latest__gallery--item__price {
  opacity: 1;
  visibility: visible;
}

/* Shop */
.shop {
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.shop__filters {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: var(--black);
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.shop__filters:hover {
  opacity: 0.66;
}
.shop__filters:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}
.shop__filters--label {
  white-space: nowrap;
}
.shop__filters--chevron {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  position: relative;
}
.shop__filters--chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1.5px solid var(--black);
  border-right: 1.5px solid var(--black);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.16s ease;
}
.shop [aria-expanded=true].shop__filters .shop__filters--chevron::before {
  transform: translate(-50%, -50%) rotate(225deg);
}
.shop__categories {
  width: 100%;
  margin-top: 30px;
  border-bottom: 1px solid var(--granite-gray);
}
.shop__categories--list {
  height: 30px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop__categories--list__tab {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding-bottom: 10px;
  color: var(--granite-gray);
  text-decoration: none;
  font-size: clamp(14px, 0.875rem, 14px);
  line-height: 1;
  transition: color 0.33s ease;
}
.shop__categories--list__tab:hover {
  color: var(--black);
}
.shop__categories--list__tab.is-active {
  color: var(--black);
}
.shop__categories--indicator {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--black);
  transition: transform 0.33s ease;
  transition: width 0.33s ease;
  pointer-events: none;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.shop__grid--filters {
  box-sizing: border-box;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--granite-gray);
  overflow: auto;
}
.shop__grid--filters__form {
  display: grid;
  gap: 0;
}
.shop__grid--filters__form--section {
  border-top: 1px solid var(--granite-gray);
}
.shop__grid--filters__form--section:first-child {
  border-top: 0;
}
.shop__grid--filters__form--section__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  font-size: clamp(14px, 0.875rem, 14px);
  line-height: 1;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.shop__grid--filters__form--section__summary--title {
  color: var(--black);
  font-weight: 600;
}
.shop__grid--filters__form--section__summary--chevron {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  position: relative;
}
.shop__grid--filters__form--section__summary--chevron::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.shop__grid--filters__form--section__summary::-webkit-details-marker {
  display: none;
}
.shop__grid--filters__form--section__body {
  display: grid;
  gap: 10px;
  padding: 0 0 15px 0;
}
.shop__grid--filters__form--section[open] .shop__grid--filters__form--section__summary--chevron::after {
  transform: rotate(-135deg);
}
.shop__grid--filters__search {
  width: 100%;
  display: block;
  background-color: var(--anti-flash-white);
}
.shop__grid--filters__search input {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  line-height: 1;
  background: transparent;
  border: none;
}
.shop__grid--filters__search input:focus {
  outline: 1px solid var(--black);
}
.shop__grid--filters__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 5px 0 0;
  list-style: none;
  overflow: auto;
}
.shop__grid--filters__list li {
  margin: 0;
}
.shop__grid--filters__control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  line-height: 1;
  cursor: pointer;
}
.shop__grid--filters__control input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.shop__grid--filters__control.is-radio input {
  border-radius: 50%;
}
.shop__grid--filters__apply {
  width: 100%;
  height: 35px;
  margin-top: 15px;
  font-size: clamp(14px, 0.875rem, 14px);
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  cursor: pointer;
  transition: filter 0.33s ease;
}
.shop__grid--filters__apply:hover {
  filter: brightness(0.9);
}
.shop__grid--filters__close {
  display: none;
}
.shop__grid--products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column: 1/-1;
  gap: 30px;
}
.shop__grid--products__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.shop__grid--products__item.is-hidden {
  display: none !important;
}
.shop__grid--products__item--thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.shop__grid--products__item--thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop__grid--products__item--artist {
  box-sizing: border-box;
  width: 100%;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  margin-top: 30px;
}
.shop__grid--products__item--album {
  box-sizing: border-box;
  width: 100%;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop__grid--products__item--price {
  box-sizing: border-box;
  width: 100%;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  margin-top: 10px;
}
.shop__grid.has-filters-open {
  grid-template-columns: 220px 1fr;
}
.shop__grid.has-filters-open .shop__grid--filters {
  display: block;
  grid-column: 1;
  grid-row: 1;
  animation: shopFiltersIn 0.33s ease-out;
}
.shop__grid.has-filters-open .shop__grid--products {
  grid-template-columns: repeat(4, 1fr);
  grid-column: 2/-1;
}
.shop__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 10px;
}
.shop__pagination button {
  color: var(--black);
  border: 1px solid var(--black);
  padding: 8px 16px;
  font-size: clamp(14px, 0.875rem, 14px);
  transition: background-color 0.33s ease;
  cursor: pointer;
}
.shop__pagination button:hover:not(:disabled) {
  background-color: var(--black);
  color: var(--white);
}
.shop__pagination button:disabled {
  color: var(--white);
  background-color: var(--black);
  cursor: not-allowed;
}
.shop__pagination button.is-active {
  color: var(--white);
  cursor: default;
}
@keyframes shopFiltersIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Product */
.product {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 30px;
}
.product__gallery {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.product__gallery--navigation {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  transition: background 0.33s ease, opacity 0.33s ease;
  cursor: pointer;
  z-index: 664;
}
.product__gallery--navigation:hover {
  background: var(--white);
  opacity: 1;
}
.product__gallery--navigation::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1.5px solid var(--black);
  border-right: 1.5px solid var(--black);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.16s ease;
}
.product__gallery--navigation__previous {
  left: 30px;
}
.product__gallery--navigation__previous::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.product__gallery--navigation__previous:active::before {
  transform: translate(-50%, -50%) scale(0.9) rotate(-135deg);
}
.product__gallery--navigation__next {
  right: 30px;
}
.product__gallery--navigation__next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.product__gallery--navigation__next:active::before {
  transform: translate(-50%, -50%) scale(0.9) rotate(45deg);
}
.product__gallery--track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product__gallery--track::-webkit-scrollbar {
  display: none;
}
.product__gallery--track__item {
  position: relative;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  aspect-ratio: 1/1;
}
.product__gallery--track__item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product__gallery--track__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product__data {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 30px;
}
.product__data--overview {
  display: grid;
  gap: 15px;
}
.product__data--overview__album, .product__data--overview__artist {
  font-family: "Inconsolata", monospace;
}
.product__data--overview__album {
  font-size: clamp(24px, 1.5rem, 24px);
}
.product__data--overview__artist {
  font-weight: 600;
}
.product__data--price__value {
  font-family: "Inconsolata", monospace;
  font-size: clamp(32px, 2rem, 32px);
  font-weight: 600;
}
.product__data--price__value s {
  font-family: "Inconsolata", monospace;
  color: var(--rusty-red);
  font-weight: 600;
  font-size: clamp(14px, 0.875rem, 14px);
}
.product__data--price p {
  margin-top: 15px;
  color: var(--granite-gray);
  font-family: "Inconsolata", monospace;
  font-size: clamp(12px, 0.75rem, 12px);
}
.product__data--actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.product__data--actions__quantity {
  width: 45px;
  height: 45px;
  color: var(--black);
  font-size: clamp(14px, 0.875rem, 14px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--granite-gray);
  outline: none;
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.product__data--actions__quantity::-webkit-outer-spin-button, .product__data--actions__quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product__data--actions__quantity:focus {
  border-color: var(--granite-gray);
}
.product__data--actions__add {
  width: 100%;
  height: 45px;
  padding: 8px 16px;
  color: var(--black);
  background-color: var(--pastel-blue);
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.33s ease, color 0.33s ease;
}
.product__data--actions__add:hover {
  color: var(--white);
  background-color: var(--black);
}
.product__data--details {
  width: 100%;
  display: grid;
  border-top: 1px solid var(--granite-gray);
}
.product__data--details__section {
  border-bottom: 1px solid var(--granite-gray);
}
.product__data--details__section[open] .product__data--details__section--content {
  max-height: 100%;
}
.product__data--details__section--trigger {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-size: clamp(14px, 0.875rem, 14px);
  font-weight: 600;
  background: transparent;
  border: 0;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.product__data--details__section--trigger::-webkit-details-marker {
  display: none;
}
.product__data--details__section--trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  transform: rotate(-45deg);
  transition: transform 0.33s ease;
}
.product__data--details__section[open] .product__data--details__section--trigger::after {
  transform: rotate(45deg);
}
.product__data--details__section--content {
  max-height: 0;
  display: grid;
  gap: 15px;
  padding: 15px 0;
  font-family: "Inconsolata", monospace;
  transition: max-height 0.33s ease;
  overflow: hidden;
}
.product__data--details__section--content p {
  font-size: clamp(14px, 1.1vw, 14px);
}
.product__data--details__section--content__sheet--list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.product__data--details__section--content__sheet--row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 16px;
}
.product__data--details__section--content__sheet--row:nth-child(odd) {
  background: var(--anti-flash-white);
}
.product__data--details__section--content__sheet--row dt,
.product__data--details__section--content__sheet--row dd {
  font-size: clamp(14px, 1.1vw, 14px);
}
.product__data--details__section--content__sheet--row dt {
  font-weight: 600;
  text-align: left;
}
.product__data--details__section--content__sheet--row dd {
  margin: 0;
  color: var(--black);
}

/* Related */
.related {
  margin-top: 120px;
}
.related__products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.related__products--item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.related__products--item__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.related__products--item__thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.related__products--item__artist, .related__products--item__album, .related__products--item__price {
  box-sizing: border-box;
  width: 100%;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related__products--item__artist, .related__products--item__price {
  font-weight: 600;
}
.related__products--item__artist {
  margin-top: 30px;
}
.related__products--item__price {
  margin-top: 10px;
}

/* Results */
.results {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.results__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.results__item--thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.results__item--thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.results__item--artist, .results__item--album, .results__item--price {
  box-sizing: border-box;
  width: 100%;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.results__item--artist, .results__item--price {
  font-weight: 600;
}
.results__item--artist {
  margin-top: 30px;
}
.results__item--price {
  margin-top: 10px;
}

/* Artists */
.artists {
  width: 100%;
  margin-top: 60px;
}
.artists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolumny przy 1280px */
  gap: 30px;
}
.artists__letter {
  padding-top: 15px;
  border-top: 1px solid var(--granite-gray);
}
.artists__letter--heading {
  margin: 0 0 15px 0;
  padding: 15px 0;
  color: var(--granite-gray);
  font-size: clamp(14px, 0.875rem, 14px);
  line-height: 1;
}
.artists__letter--list {
  display: grid;
  grid-auto-rows: minmax(30px, auto);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.artists__letter--list__item a {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.artists__letter--list__item a:hover {
  opacity: 0.66;
}
.artists__letter--list__item a:focus-visible {
  outline: 1px solid var(--black);
  outline-offset: 2px;
}
.artists__empty {
  margin: 20px 0;
  color: var(--granite-gray);
}

/* About */
.about {
  width: 100%;
  margin-top: 60px;
}
.about__author h3 {
  margin-top: 30px;
}
.about__store {
  margin-top: 120px;
}
.about__contact {
  margin-top: 15px;
  font-family: "Inconsolata", monospace;
  font-size: clamp(14px, 0.875rem, 14px);
  text-align: right;
}

/* Legal area */
.legal-area {
  width: 100%;
  height: auto;
}
.legal-area h1,
.legal-area h2,
.legal-area h3,
.legal-area h4,
.legal-area h5,
.legal-area h6,
.legal-area p,
.legal-area span,
.legal-area ul,
.legal-area ol {
  margin-top: 30px;
}
.legal-area ul,
.legal-area ol {
  margin-left: 15px;
  list-style: disc;
}
.legal-area ul li,
.legal-area ol li {
  margin-top: 15px;
}
.legal-area strong,
.legal-area b {
  font-weight: 600;
  color: var(--black);
}
.legal-area hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid var(--granite-gray);
  opacity: 0.3;
}

/* Aside: Sneakpeak */
.sneakpeak {
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: grid;
  margin: 0 auto;
  margin-top: 120px;
  padding: 0 30px;
}
.sneakpeak p {
  font-family: "Inconsolata", monospace;
  margin-top: 30px;
}

/* Footer: Data */
.data {
  width: 100%;
  height: auto;
  background-color: var(--lavender-blush);
  margin-top: 120px;
}
.data__wrapper {
  width: 1280px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  padding: 60px 30px;
}
.data__wrapper--about__logo {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.data__wrapper--about__logo img {
  width: 135px;
  height: 16px;
}
.data__wrapper--about__contact {
  width: 50%;
  margin-top: 30px;
}
.data__wrapper--about__contact a {
  display: block;
  font-size: clamp(14px, 0.875rem, 14px);
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.data__wrapper--about__contact a:hover {
  opacity: 0.66;
}
.data__wrapper--about p {
  margin-top: 30px;
  font-size: clamp(14px, 0.875rem, 14px);
  color: var(--granite-gray);
}
.data__wrapper--menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.data__wrapper--menu__list a {
  display: block;
  margin-top: 10px;
  font-size: clamp(14px, 0.875rem, 14px);
  opacity: 1;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
}
.data__wrapper--menu__list a:hover {
  opacity: 0.66;
}

/* _mobile.scss */
@media (max-width: 1024px) {
  /* Header: Navigation */
  .navigation__brand {
    border-right: none;
  }
  .navigation__brand--logo {
    min-width: auto;
    height: 100%;
    position: relative;
    background: url("../../assets/images/logo/sign-black.svg") no-repeat center;
    background-size: auto 16px;
  }
  .navigation__brand--logo img {
    display: none;
  }
  .navigation__brand--search {
    display: none;
  }
  .navigation__actions {
    max-width: 100vw;
    display: grid !important;
    grid-template-columns: 60px 60px !important;
    justify-content: end !important;
  }
  .navigation__actions--login, .navigation__actions--cart {
    width: 60px !important;
    height: 60px !important;
    aspect-ratio: 1/1;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    min-width: 0 !important;
    box-sizing: border-box;
    transition: none !important;
  }
  .navigation__actions--login:hover, .navigation__actions--cart:hover {
    background-color: transparent;
    color: transparent;
  }
  .navigation__actions--login::before, .navigation__actions--cart::before {
    content: "" !important;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    margin: auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 18px 18px !important;
  }
  .navigation__actions--login {
    border-left: 1px solid var(--black);
  }
  .navigation__actions--login::before {
    background-image: url("../../assets/images/icons/user.svg");
  }
  .navigation__actions--cart::before {
    background-image: url("../../assets/images/icons/cart.svg");
  }
  /* Sidebar */
  .sidebar {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    border-left: 1px solid var(--black);
    background-color: var(--white);
    transition: right 0.66s ease;
    overflow: hidden;
    z-index: 666;
  }
  .sidebar__close {
    width: -moz-fit-content;
    width: fit-content;
    height: 59px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 30px;
    cursor: pointer;
    opacity: 1;
  }
  .sidebar__close span {
    transition: all 0.33s ease-in-out;
    -webkit-transition: all 0.33s ease-in-out;
    -o-transition: all 0.33s ease-in-out;
  }
  .sidebar__close span:hover {
    opacity: 0.66;
  }
  .sidebar__cart {
    width: 100%;
    height: calc(100vh - 60px + 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid var(--black);
  }
  .sidebar__cart--notice {
    padding: 30px;
  }
  .sidebar__cart--notice p {
    font-size: clamp(14px, 0.875rem, 14px);
  }
  .sidebar__cart--products {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sidebar__cart--products__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--black);
  }
  .sidebar__cart--products__item--thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-right: 1px solid var(--black);
  }
  .sidebar__cart--products__item--details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 30px;
  }
  .sidebar__cart--products__item--details__title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .sidebar__cart--products__item--details__title span {
    font-size: clamp(14px, 0.875rem, 14px);
  }
  .sidebar__cart--products__item--details__title span:nth-of-type(1) {
    font-family: "Inconsolata", monospace;
  }
  .sidebar__cart--products__item--details__price {
    font-family: "Inconsolata", monospace;
    font-size: clamp(14px, 0.875rem, 14px);
    font-weight: 600;
  }
  .sidebar__cart--footer {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    background: var(--white);
  }
  .sidebar__cart--footer__summary {
    padding: 15px 30px;
    border-top: 1px solid var(--black);
  }
  .sidebar__cart--footer__summary p {
    text-align: center;
    font-weight: 600;
  }
  .sidebar__cart--footer__summary p span {
    font-weight: 400;
  }
  .sidebar__cart--footer__cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--black);
  }
  .sidebar__cart--footer__cta--continue {
    padding: 15px;
    border-right: 1px solid var(--black);
    transition: background-color 0.33s ease, color 0.33s ease;
  }
  .sidebar__cart--footer__cta--continue span {
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 0 auto;
  }
  .sidebar__cart--footer__cta--continue:hover {
    background-color: var(--black);
    color: var(--white);
  }
  .sidebar__cart--footer__cta--checkout {
    color: var(--black);
    background-color: var(--pastel-blue);
    padding: 15px;
    transition: background-color 0.33s ease, color 0.33s ease;
  }
  .sidebar__cart--footer__cta--checkout span {
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-weight: 600;
  }
  .sidebar__cart--footer__cta--checkout:hover {
    background-color: var(--black);
    color: var(--white);
  }
  /* Navigation: Menu */
  .menu {
    justify-content: space-between;
  }
  /* Breadcrumb (Bez zmian) */
  /* Latest products */
  .latest {
    max-width: 100%;
    min-height: 360px;
    padding: 0;
    justify-content: flex-start;
    position: relative;
  }
  .latest__indicator {
    display: none !important;
  }
  .latest__navigation {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .latest__gallery {
    width: 100%;
    height: auto;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .latest__gallery--item {
    height: 0;
    flex: 0 0 100%;
    padding-bottom: 100%;
    position: relative;
    margin: 0;
    scroll-snap-align: start;
    transition: none;
  }
  .latest__gallery--item__price {
    opacity: 1;
    visibility: visible;
  }
  .latest__gallery--item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1);
  }
  /* Shop */
  .shop__categories--list {
    justify-content: space-between;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .shop__grid {
    grid-template-columns: 1fr;
  }
  .shop__grid.has-filters-open {
    grid-template-columns: 1fr;
  }
  .shop__grid.has-filters-open .shop__grid--filters {
    display: block;
    inset: 0;
    animation: shopFiltersIn 0.33s ease-out;
  }
  .shop__grid.has-filters-open .shop__grid--products {
    grid-template-columns: 1fr;
    grid-column: 1/-1;
  }
  .shop__grid--products {
    grid-template-columns: 1fr;
    grid-column: 1/-1;
  }
  .shop__grid--filters__close {
    width: 100%;
    height: 35px;
    display: block;
    margin-top: 15px;
    font-size: clamp(14px, 0.875rem, 14px);
    color: var(--black);
    background: transparent;
    border: 1px solid var(--black);
    transition: filter 0.33s ease;
    cursor: pointer;
  }
  .shop__grid--filters__close:hover {
    filter: brightness(0.9);
  }
  /* Product */
  .product {
    grid-template-columns: 1fr;
  }
  .product__gallery--navigation {
    background: var(--white);
  }
  /* Related */
  .related {
    margin-top: 60px;
  }
  .related__products {
    grid-template-columns: 1fr;
  }
  /* Results */
  .results {
    grid-template-columns: 1fr;
  }
  /* Artists */
  .artists__grid {
    grid-template-columns: 1fr;
  }
  /* Footer: Data */
  .data__wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
  }
  .data__wrapper--about {
    text-align: left;
  }
  .data__wrapper--about__logo {
    margin-left: 0;
  }
  .data__wrapper--about__contact {
    width: 100%;
  }
  .data__wrapper--menu {
    flex-direction: column;
    align-items: left;
    gap: 30px;
  }
  /* Aside: Sneakpeak */
  .sneakpeak {
    margin-top: 60px;
  }
}/*# sourceMappingURL=styles.css.map */