/** Shopify CDN: Minification failed

Line 1778:0 Unexpected "}"

**/


product-component {
  display: block;
  color: var(--primary_text);
}

/* COLORS <----- CTRL + F qwert */

.product-module__notify-me,
product-component,
.product-module__sticky-atc {
  background-color: var(--background_color);
}

.product-module__sticky-atc {
  border-top: 1px solid var(--tertiary_grey);
  position: fixed;
  z-index: 15;
  bottom: 0;
  left: 0;
  width: 100%;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  box-shadow: 3px 3px 30px 0px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  opacity: 0;
  text-align: center;
}

input#product-module__notify-me-input {
  border-bottom: 1px solid var(--secondary_grey);
  color: var(--primary_text);
}
.product-module__yotpo-wrapper {
  position: relative;
  width: 0;
  height: 0;
  overflow: hidden;
}

input#product-module__notify-me-input::placeholder {
  color: var(--secondary_grey);
  opacity: 1;
}

.product-module__selectbox-image.product-module__selectbox-image--selected {
  border-color: var(--primary_text);
}

.product-module__selectbox-image[disabled] {
  border-color: var(--tertiary_grey);
}

.product-module__selectbox-image[disabled]  img {
  opacity: .4;
}

.product-module__selectbox-image.product-module__selectbox-image--selected[disabled] {
  border-color: var(--secondary_grey);
}

.product-module__star-rating .product-module__star-half .star-half path,
.product-module__star-rating .yotpo-sr-star-full path {
  fill: var(--primary_text);
  stroke: var(--primary_text);
}

.product-module__custom-stars {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.product-module__custom-stars svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.product-module__star-info {
  display: none;
}

.product-module__star-rating {
  display: flex;
  justify-content: space-between;
  gap: 0.125rem;
}

.product-module__star-rating .pdp__sku {
  color: var(--secondary_grey);
  margin-top: 0.25rem;
}

.product-module__star-rating .product-module__star-half .star-full path,
.product-module__star-rating .yotpo-sr-star-empty path {
  fill: var(--secondary_grey);
}

.product-module__subtitle,
.product-module__usp-list,
.product-module__compare-price {
  color: var(--primary_grey)
}

.product-module__stock-indicator[data-stock-status="in-stock"]::before {
  background-color: var(--stock-color-in, var(--secondary_accent));
}
.product-module__stock-indicator[data-stock-status="low-in-stock"]::before {
  background-color: var(--stock-color-low, var(--secondary_accent));
}
.product-module__stock-indicator[data-stock-status="out-of-stock"]::before {
  background-color: var(--stock-color-out, var(--secondary_accent));
}

.product-module__selectbox-image:hover {
  border-color: var(--primary_grey);
}

.product-module__dropdown {
  border-bottom: 1px solid var(--tertiary_grey);
}

.product-module__swiper-scrollbar {
  background-color: var(--secondary_grey);
}

.product-module__swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--primary_text);
}

usp-pdp .usps-scrollbar__wrapper {
  padding-top: 1rem;
}

.product-module__notify-action--error,
.product-module__notify-action--email-error {
  color: var(--alert_error);
}

.product-module__notify-action--success {
  color: var(--alert_success);
}

/* COLORS END */

.product-module__product-info {
  padding: 1rem;
  overflow: hidden;
}

.product-module__price-stock-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-module__product-main-prices {
  gap: .25rem;
}

.product-module__quantity {
  min-width: 4.5rem;
  min-height: 2.375rem;
  width: fit-content;
  padding: .5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.product-module__quantity-atc-container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.product-module__preorder-estimate {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--primary_grey);
}

.product-module__preorder-estimate {
  position: relative;
}

.product-module__preorder-info-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  position: relative;
}

.product-module__preorder-info-toggle svg {
  width: 1rem;
  height: 1rem;
}

.product-module__preorder-info-toggle::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--tertiary_grey, #F1EFEF);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-module__preorder-info {
  padding: .5rem;
  color: var(--primary_grey);
  background-color: var(--tertiary_grey, #F1EFEF);
  position: absolute;
  left: 0;
  top: calc(100% + .5rem);
  width: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

@media (min-width: 1025px) {
  preorder-info:has(.product-module__preorder-info-toggle:hover) .product-module__preorder-info,
  preorder-info:has(.product-module__preorder-info-toggle:hover) .product-module__preorder-info-toggle::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 1024px) {
  .product-module__preorder-info.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .product-module__preorder-info-toggle.is-active::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.product-module__product-atc {
  width: 100%;
}

.product-module__product-atc-wrapper {
  position: relative;
}

.product-module__form-error {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: .25rem;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

.product-module__product-actions {
  flex: 1;
}

.product-module__quantity-input {
  border: none;
  width: 1.5rem;
  padding: 0;
}

.product-module__alt-atc-button[disabled] {
  opacity: .5;
  pointer-events: none;
}

.product-module__alt-atc-button {
  transition: opacity .1s ease-in-out;
}

.product-module__alt-atc-button > div {
  margin-top: .5rem !important;
}

.product-module__quantity-button {
  display: flex;
}

.product-module__quantity-button svg {
  width: 1rem;
  height: 1rem;
}

.product-module__stock-indicator {
  display: flex;
  align-items: center;
  color: var(--primary_grey);
}

.product-module__stock-indicator::before {
  content: "";
  display: block;
  height: .3125rem;
  width: .3125rem;
  border-radius: 50%;
  margin-right: .5rem;
}

.yotpo-widget-instance .star-container {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .125rem !important;
}

.product-module .product-card__favorites-icon {
  position: relative;
  right: unset;
  top: unset;
  opacity: 1;
}

.product-module__subtitle-favorites {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}

.yotpo-widget-instance .star-container svg {
  width: .875rem;
  height: .875rem;
}

.product-module__star-rating {
  transition: opacity .25s ease-in-out;
}

.product-module__star-half {
  position: relative;
  display: flex;
  width: fit-content;
  height: fit-content;
}

.yotpo-widget-instance .product-module__star-half svg.star-half {
  position: absolute;
  z-index: 2;
  left: 0;
  width: auto;
  height: auto;
}  

.yotpo-widget-instance .yotpo-sr-bottom-line-summary > div {
  height: fit-content !important;
  margin: 0 !important;
}

.product-module__compare-price {
  text-decoration: line-through;
}

.product-module__usp-list:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-module__usp-item p {
  text-align: center;
}

.product-module__usp-list:not(.swiper-initialized) .product-module__usp-item {
  flex: 1 1 83.2px;
  max-width: 83.2px;
  min-width: 83.2px;
}

/* When 5 or fewer items, distribute equally */
.product-module__usp-list:not(.swiper-initialized) .swiper-wrapper:has(.product-module__usp-item:nth-child(-n+5):last-child) .product-module__usp-item {
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
}


.product-module__connected-items-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.product-module__selectbox-image {
  display: flex;
  width: 3.75rem;
  border: 1px solid transparent;
  aspect-ratio: .8;
  box-sizing: border-box;
  transition: border-color .15s ease-in-out;
}

.product-module__selectbox-image img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}

.product-module__swiper-button-conn {
  opacity: 1;
  transition: opacity .25s ease-in-out;
  position: absolute;
  height: 100%;
  width: 3.125rem;
  top: 0;
  z-index: 3;
  display: flex;
  pointer-events: none;
  align-items: center;
}

.product-module__swiper-button-conn > div,
.product-module__swiper-button-conn svg {
  pointer-events: initial;
  width: .75rem;
  height: .75rem;
}

.product-module__swiper-button-conn[disabled] {
  opacity: 0;
  pointer-events: none;
}

.product-module__swiper-button-conn--prev {
  left: 0;
  background: linear-gradient(90deg, var(--background_color), transparent);
}

.product-module__swiper-button-conn--next {
  right: 0;
  background: linear-gradient(270deg, var(--background_color), transparent);
}

.product-module__swiper-button-conn--prev > div {
  margin-left: .25rem;
  margin-right: auto;
}

.product-module__swiper-button-conn--next > div {
  margin-right: .25rem;
  margin-left: auto;
}

.product-module__dropdown-inner-content {
  padding-bottom: 1rem;
}

.product-module__dropdown-button {
  padding: 1rem 0;
  color: var(--primary_text);
}

.product-module__dropdown-icon svg {
  width: .75rem;
  height: .75rem;
}

.product-module__swiper-scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .125rem;
  z-index: 3;
}

.product-module__swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--primary_text);
}

.swiper-zoom-target.product-module__product-slider-element {
  cursor: pointer !important;
}

.product-module__sticky-atc[aria-hidden="false"] {
  transform: translateY(0);
  opacity: 1;
}

.product-module__sticky-product-info {
  gap: .125rem;
}

.product-module__product-atc-notify {
  width: 100%;
}

.product-module__notify-me {
  position: fixed;
  z-index: 25;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 19.4375rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: opacity .25s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.product-module__notify-button {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.product-module__notify-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
}

.product-module__notify-actions {
  display: flex;
  flex-direction: column;
  padding: 3rem 1rem 2rem 1rem;
}

.product-module__notify-text {
  margin-bottom: 1.5rem;
}

.product-module__notify-me[aria-hidden="false"] {
  opacity: 1;
  pointer-events: unset;
}

.product-module__close-button {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
  transition: transform .2s ease-in-out;
  display: flex;
}

.product-module__quantity-button:active {
  transform: scale(.8);
}

.pswp__button--close {
  transition: transform .2s ease-in-out;
}

.product-module__close-button svg {
  width: 1rem;
  height: 1rem;
}

.pswp__button--close:hover,
.product-module__close-button:hover {
  transform: rotate(90deg);
}

#product-module__notify-me-input {
  padding: 0.5rem;
  border: none;
  width: 100%;
}

.product-module__notify-image-container {
  width: 100%;
  overflow: hidden;
}

.product-module__notify-actions {
  border-radius: 0 0 .5rem .5rem;
}

.product-module__notify-action[aria-hidden="true"] {
  display: none;
}

.product-module__notify-action {
  margin-top: .5rem;
}

/* Personalization block */

.product-module__p-cover-wrapper {
  padding: 1rem;
  border: 1px solid var(--tertiary_grey);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-module__p-cover-heading {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
}

.product-module__p-cover-title {
  flex: 1;
}

.product-module__p-cover-price {
  height: fit-content;
  align-self: center;
}

.product-module__p-cover-button {
  margin-top: 0.5rem;
  width: 100%;
}

.product-module__p-cover-subtitle  {
  max-width: 83.5%;
}

.product-module__p-cover-information {
  color: var(--secondary_accent);
}

.personalization-preview__image-container {
  max-width: 421px;
  overflow: hidden;
}

.personalization-preview__alignment--right {
    text-align: end;
  }
  
  .personalization-preview__alignment--center {
    text-align: center;
  }

/* Personalization block end */


/* Personalization main popup */

#modal-personalized-cover {
  top: 0;
}

#modal-personalized-cover, #personalization-cover__exit-modal,
#personalization-cover__rows-modal, #personalization-cover__delete-image-modal, #personalization-cover__replace-image-modal {
  max-height: unset;
  transition: opacity 0.25s ease-in-out, height .25s ease-in-out;
  opacity: 0;
}

#modal-personalized-cover[aria-expanded='true'], #personalization-cover__exit-modal[aria-expanded='true'],
#personalization-cover__rows-modal[aria-expanded='true'], #personalization-cover__delete-image-modal[aria-expanded='true'], #personalization-cover__replace-image-modal[aria-expanded='true'] {
  opacity: 1;
}

#modal-personalized-cover[inert], #personalization-cover__exit-modal[inert],
#personalization-cover__rows-modal[inert], #personalization-cover__delete-image-modal[inert], #personalization-cover__replace-image-modal[inert] {
  display: none;
}

#modal-personalized-cover [data-scrollable] {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.exit-modal__buttons-container,
.rows-modal__buttons-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.exit-modal__buttons-container > .Button,
.rows-modal__buttons-container > .Button {
  width: 100%;
}

#personalization-cover__exit-modal, #personalization-cover__rows-modal, #personalization-cover__delete-image-modal, #personalization-cover__replace-image-modal {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
  padding: 2rem 1rem;
  max-width: 311px; 
  color: var(--primary_text);
  background: var(--background_color);
  text-align: center;
}

.personalized-cover__replace-popup-content .personalized-cover__upload-content {
  position: relative;
  margin-top: 0;
  min-height: auto;
  max-width: 100%;
  padding: 2rem 1rem;
  border: 2px dashed var(--secondary_grey);
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

#personalization-cover__replace-image-modal {
  width: calc(100vw - 2rem);
  max-width: 676px;
  padding: 1rem;
}

.personalized-cover__replace-popup-content .uppy-DragDrop-inner svg {
  max-width: 10.625rem;
  width: 100%;
  height: auto;
}

.personalized-cover__replace-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  z-index: 2;
}

.personalized-cover__replace-close svg {
  width: 1rem;
  height: 1rem;
}

#modal-edit-img[data-cover-mode="true"] #layout__label,
#modal-edit-img[data-cover-mode="true"] .fjs__btn-layout {
  display: none;
}

.personalization-cover__exit-modal--overlay {
  z-index: 3;
}

.rows-modal__info {
  color: var(--secondary_grey);
}

.personalized-cover__header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 3;
  background: var(--background_color);
}

.personalized-cover__close {
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--primary_text);
}
.personalized-cover__close path {
  fill: var(--primary_text);
}

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



.personalized-cover__main-content {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.personalized-cover__main-content {
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.personalized-cover__close-txt {
  height: fit-content;
  align-self: center;
}

.personalized-cover__text-rows, .personalized-cover__options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.personalized-cover__text-rows {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 1.5rem;
  column-gap: 0.75rem;
  align-items: center;
}

.personalized-cover__custom-text-toggle .custom-text-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--primary_text);
}

.personalized-cover__custom-text-toggle .custom-text-price {
  color: var(--primary_grey);
}

.personalized-cover__custom-text-toggle .square-agree rect,
.personalized-cover__custom-text-toggle .square-agree path,
.personalized-cover__custom-text-toggle .square-not__agree path {
  fill: var(--primary_grey);
}

.personalized-cover__custom-text-toggle .square-agree {
  display: none;
}

.personalized-cover__custom-text-toggle input[data-action="toggle-custom-text"]:checked + .custom-text-label .square-agree {
  display: flex;
}

.personalized-cover__custom-text-toggle input[data-action="toggle-custom-text"]:checked + .custom-text-label .square-not__agree {
  display: none;
}

.personalized-cover__text-settings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

personalization-modal[data-custom-text-enabled="false"] .personalized-cover__text-settings {
  display: none;
}

.personalized-cover__image-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  text-align: center;
}

.personalized-cover__image-upload-title {
  color: var(--primary_grey);
}

.personalized-cover__image-upload-meta {
  color: var(--primary_grey);
}

.personalized-cover__image-upload-select-button {
  min-width: 19.375rem;
}

.personalized-cover__image-upload-placeholder.dragover,
[data-action="cover-image-dropzone"].dragover {
  background: #8EABC233;
}

.personalized-cover__image-upload .personalized-cover__upload-content {
  position: relative;
  background-color: transparent;
  transition: background-color 0.25s ease, opacity 0.25s ease;
  padding: 2rem 1rem;
  border: 2px dashed var(--primary_text);
  flex-direction: column;
  overflow-x: hidden;
  justify-content: center;
  max-width: calc(100vw - 2rem);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  cursor: pointer;
  box-sizing: border-box;
}

.personalized-cover__upload-inside-content {
  height: auto;
  position: relative;
}

.personalized-cover__uploaded-state {
  display: none;
}

.personalized-cover__uploaded-image-wrapper {
  position: relative;
}

personalization-modal[data-cover-image-uploaded="true"] .personalized-cover__image-upload .personalized-cover__upload-content {
  display: none;
}

personalization-modal[data-cover-image-uploaded="true"] .personalized-cover__uploaded-state {
  display: block;
}

.personalized-cover__uploaded-preview-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.personalized-cover__uploaded-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  cursor: pointer;
}

.personalized-cover__uploaded-overlay,
.personalized-cover__uploaded-overlay * {
  pointer-events: auto !important;
}

.personalized-cover__replace-image-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--background_color);
}

.personalized-cover__replace-image-btn svg {
  width: 0.875rem;
  height: 0.75rem;
}

@media (hover: hover) and (pointer: fine) {
  .personalized-cover__uploaded-image-wrapper:hover .personalized-cover__uploaded-overlay {
    opacity: 1;
    visibility: visible;
  }
}

.personalized-cover__uploaded-image-wrapper.show-overlay .personalized-cover__uploaded-overlay {
  opacity: 1;
  visibility: visible;
}

.personalized-cover__image-upload .photo-printer__content-actions-wrappar,
.personalized-cover__image-upload .photo-print_modal-footer {
  z-index: 3;
}

.personalized-cover__image-upload .uppy-DragDrop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.personalized-cover__image-upload .uppy-DragDrop-inner::after,
.personalized-cover__replace-popup-content .uppy-DragDrop-inner::after {
  content: none;
}

.personalized-cover__image-upload .uppy-DashboardTab {
  max-width: 14.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.personalized-cover__image-upload .photo-printer__content-label {
  display: flex;
  justify-content: center;
}

.personalized-cover__image-upload .Svg--img_picker {
  margin-left: auto;
  margin-right: auto;
}

.personalized-cover__image-upload .uppy-DragDrop-inner svg {
  max-width: 5rem;
  width: 100%;
  height: auto;
}

.personalized-cover__image-upload .photo-print_info {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  color: var(--primary_grey);
}

.personalized-cover__image-upload .photo-print_info a {
  color: var(--primary_grey);
  text-decoration: underline;
}

/* Keep uploader children interactive despite global [data-action] pointer-events reset */
[data-action="cover-image-dropzone"] > *,
[data-action="cover-image-dropzone"] * {
  pointer-events: auto;
}

.personalized-cover__font-styles, .font-style-group,
.personalized-cover__font-sizes, .font-size-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.personalized-cover__text-row {
  display: contents;
}

.personalized-cover__text-input-wrapper {
  position: relative;
}

.personalized-cover__text-input-wrapper input {
  width: 100%;
  padding: 0.25rem 0.5rem;
  background: var(--background_color);
  color: var(--primary_text);
  border-bottom: 1px solid var(--secondary_grey);
}

.personalized-cover__text-input-wrapper input::placeholder {
  color: var(--secondary_grey);
}


.text-color-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.text-color-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.text-color-options {
  display: flex;
  gap: 0.5rem;
}

.text-color-option {
  width: 1.625rem;
  height: 1.625rem;
  border: 1px solid var(--tertiary_grey);
  cursor: pointer;
  transition: border 0.3s ease;
}

.font-style-option, .font-size-option {
  padding: 0.375rem 0.5rem;
  border: 1px solid var(--secondary_text);
  transition: border 0.3s ease;
  color: var(--primary_text);
}

.text-color-option[selected], .font-style-option[selected], .font-size-option[selected] {
  border: 1px solid var(--primary_text);
}

.personalization-cover__image-info {
  text-align: center;
  color: var(--primary_accent);
  margin-top: 0.5rem;
}

.personalization-cover__order-container {
  padding: 1rem;
  background: var(--secondary_text);
  color: var(--primary_text);
}

.personalization-cover__order-header, .order-container__description {
  margin-bottom: 1rem;
}

.order-container__total {
  padding-top: 1rem;
  border-top: 1px solid var(--tertiary_grey);
}

.order-container__title-price, .order-container__summary,
.order-container__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-container__description {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.personalization-cover__footer {
  position: sticky;
  bottom: 0;
  z-index: 5;
  padding: 1rem;
  background: var(--background_color);
  border-top: 1px solid var(--secondary_text);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-desc__product-type {
  color: var(--primary_grey);
}

.personalization-cover__footer-terms .square-agree rect,
.personalization-cover__footer-terms .square-agree path,
.personalization-cover__footer-terms .square-not__agree path{
    fill: var(--primary_grey);
}

.personalization-cover__footer-terms .agree_label {
  display: flex;
  gap: 0.5rem;
  color: var(--primary_grey);
  align-items: center;
  cursor: pointer;
}

.agree_label span{
    display: flex;
}


label .square-agree {
    display: none
}


.personalized-cover__custom-text-toggle .square-not__agree {
  height: 16px;
}

:checked+label .square-agree{
    display: flex;

}

:checked+label .square-not__agree{
    display: none;
}

.personalization-modal__form-error {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: .25rem;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

.personalization-modal__product-atc {
  width: 100%;
}

.preview-image {
  width: 100%;               
  height: auto;              
  max-width: 100%;           
  aspect-ratio: 343 / 429;   
  display: block;
  margin: 0 auto;            
}

.personalization-preview-modal {
  max-width: 343px;
  width: 100%;
  z-index: 33;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: unset;
  height: fit-content;
}

.personalization-cover__image-container {
  position: relative;
  cursor: pointer;
}

.personalization-cover__canvas-wrapper {
  position: relative;
}

.personalized-cover__uploaded-state .personalization-cover__image-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  pointer-events: all;
}

.personalization-cover__edit-image {
  color: var(--primary_text);
}

.personalization-cover__delete-image {
  display: flex;
  color: var(--primary_text);
}

.personalization-cover__delete-image .Svg--trash,
.personalization-cover__delete-image svg {
  width: 1rem;
  height: 1rem;
}

.personalization-cover__image-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--tertiary_grey);
  border: 1px dashed var(--primary_grey);
  pointer-events: none;
  z-index: 1;
}

.product-module__quantity-atc-container .product-module__choose-cover-btn {
  flex: 1;
}

.personalization-cover__image-placeholder .Svg--img_picker {
  width: 33%;
  height: auto;
}

personalization-modal[data-cover-image-uploaded="false"][data-cover-placeholder-visible="true"] .personalization-cover__image-placeholder {
  display: flex;
}

.personalization-cover__image-container > .personalization-cover__info-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  pointer-events: all;
  z-index: 2;
}

.personalization-cover__image-container svg path {
  fill: var(--primary_grey);
}

.personalization-cover__info-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  position: absolute;
  top: 2rem;
  right: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.personalization-cover__info-container[aria-hidden="true"] {
    opacity: 0;
  visibility: hidden;
}

.pointer-container {
  background: var(--secondary_text);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 13px;
  height: 9px;
  margin-right: 9px;
}

.personalization-cover__info-container > p {
  display: block;
  width: fit-content;
  padding: 0.5rem;
  background: var(--secondary_text);
  color: var(--primary_grey);
}

.personalization-cover__footer-terms {
  position: relative;
}

.personalization-cover__footer-terms.error .agree_label {
  color: var(--alert_error);
}

.personalization-cover__footer-terms.error path,
 .personalization-cover__footer-terms.error rect {
  fill: var(--alert_error);
}

.personalization-cover__terms-error {
  position: absolute;
  left: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--alert_error);
}

.personalization-cover__terms-error.visible {
  opacity: 1;
}

.personalized-cover__image-upload.error .personalized-cover__upload-content {
  border-color: var(--alert_error);
}

.personalization-cover__image-error {
  position: absolute;
  left: 0;
  top: calc(100% + 0.25rem);
  opacity: 0;
  visibility: hidden;
  color: var(--alert_error);
  transition: opacity 0.3s ease-in, visibility 0s linear 0.3s;
}

.personalization-cover__image-error.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in, visibility 0s linear 0s;
}

#personalization-cover__preview-modal {
  position: fixed;
  inset: 0;
  z-index: 4;
  height: 100%;
  display: flex;
  background: var(--background_color);
}



#personalization-cover__preview-modal img {
  height: 100%;
  width: 100%;
   object-fit: contain;
}

.personalization-cover__preview-container {
  position: absolute;
  width: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.personalization-cover__preview-container .personalization-cover__image-info {
  width: 100%;
  padding: 1rem;
  margin-top: 0;
}

.personalization-cover__preview-exit {
  width: fit-content;
  display: flex;
}

.personalization-cover__preview-exit svg {
  width: 1rem;
  height: 1rem;
}

.personalization-cover__preview-exit path {
  fill: var(--primary_text);
}

.fabric-error {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -15px;
  left: 0;
  color: var(--alert_error);
  transition: opacity 0.3s ease-in;
}

.fabric-error.visible {
  opacity: 1;
  visibility: visible;
}

.char-limit-error {
  position: absolute;
}

/* Personalization main popup end */

.personalization-preview-block {
  display: block;
  width: 100%;
  margin: 2rem 0;
}

.personalization-preview__container {
  max-width: 600px;
  margin: 0 auto;
}

.personalization-preview__canvas-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
}

.personalization-preview__canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.personalization-preview__text-area-overlay {
  background: rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: red;
}

.pm__usp-icon_wrapper {
  width: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .personalization-preview__container {
    max-width: 90vw;
  }
  
  .personalization-preview__canvas-container {
    max-width: 350px;
  }
  
  .personalization-preview__text-area-overlay::after {
    font-size: 10px;
    padding: 1px 4px;
  }
}


@media screen and (min-width: 768px) {
  .product-module__main-swiper:not(.single-column) .swiper-slide:first-child {
    grid-column: span 2;
  }
  
  .product-module__main-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
  }
  
  .product-module__main-swiper .swiper-wrapper.single-column {
    grid-template-columns: minmax(100px, 1fr);
  }

  .product-module__main-swiper .swiper-slide {
    width: auto !important;
  }

  .product-module__wrapper {
    display: grid;
    grid-template-columns: 21.875rem minmax(100px, 1fr);
    gap: 1rem;
  }

  .product-module__product-info {
    margin-right: 1rem;
  }

  .product-module__main-info {
    position: sticky;
    top: var(--header-height);
    height: fit-content;
  }

  .product-module__sticky-atc {
    padding: 1rem 2rem;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .product-module__product-atc--sticky {
    width: fit-content;
  }
}

@media screen and (min-width: 1025px) {
  .personalized-cover__replace-popup-content {
    padding: 1rem;
  }

  #personalization-cover__delete-image-modal {
    max-width: 510px;
  }

  .personalized-cover__replace-popup-content .personalized-cover__upload-content {
    padding: 2rem;
  }

  .product-module__usp-list {
      justify-content: center;
  }

  .product__labels-holder {
    padding: .5rem 2rem;
  }

  .product-module__close-button {
    top: 1rem;
    right: 1rem;
  }

  .product-module__notify-text {
    margin-bottom: 2rem;
  }

  .product-module__notify-me {
    max-width: 40.5rem;
  }

  .product-module__star-rating {
  gap: 0.5rem;
  }

  .product-module__star-rating .pdp__sku {
    margin-top: 0.125rem;
  }

  .product-module__usp-list:not(.swiper-initialized) .swiper-wrapper {
  gap: 1rem;
}
  
  .product-module__wrapper {
    grid-template-columns: minmax(100px, 48.47%) minmax(100px, 1fr);
    gap: 1.5rem;
  }

  .product-module__product-info {
    padding: 1rem 1.5rem;
    margin-right: 1.5rem;
  }

  .product-module__selectbox-image {
    width: 4.875rem;
  }

  /* Personalization main popup */

  .personalized-cover__header {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--secondary_text);
  }

  .personalized-cover__header .header__logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .personalized-cover__main-content {
    flex-direction: row;
    justify-content: center;
    gap: 152px;
    min-height: calc(100% - 120px);
    align-items: center;
    padding: 2rem 4rem;
  }

  .personalized-cover__main-content.has-cover-image {
    align-items: flex-start;
  }

  .personalized-cover__options-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 421px;
    width: 29.24%;
  }

  .personalization-cover__image-container {
    min-width: 421px;
    height: fit-content;
    cursor: pointer;
  }

  .personalization-cover__order-container {
    padding: 2rem;
  }

  .order-container__title-price, .order-container__summary, .order-container__total {
    gap: 1rem;
  }

  .personalization-cover__footer {
    flex-direction: row;
    align-items: center;
  }

  .personalization-cover__footer-desc {
    flex: 1;
  }

  .text-color-option:hover:not([selected]), .font-style-option:hover:not([selected]), .font-size-option:hover:not([selected]) {
    border: 1px solid var(--secondary_grey);
  }

  #personalization-cover__exit-modal, #personalization-cover__rows-modal {
  max-width: 510px;
  padding: 2rem;
  }

  .exit-modal__buttons-container, .rows-modal__buttons-container {
    flex-direction: row;
    gap: 1rem;
  }

  .exit-modal__buttons-container > .Button,
  .rows-modal__buttons-container > .Button {
    width: calc(50% - 0.5rem);
    min-width: unset;
  }

  #personalization-cover__rows-modal .personalization-modal__product-actions {
    width: calc(50% - 0.5rem);
  }

    #personalization-cover__rows-modal .personalization-modal__product-actions .Button {
    min-width: unset;
  }

  .personalization-cover__info-container {
  flex-direction: row;
  align-items: center;
}

  .personalization-cover__info-container {
  top: 0;
  right: -160px;
}

.pointer-container {
  background: var(--secondary_text);
  height: 13px;
  width: 9px;
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
  margin-right: 0;
}

.preview-image {
  width: 100%;               
  height: auto;             
  max-width: 100%;          
  aspect-ratio: 516 / 646; 
  display: block;
  margin: 0 auto;   
}

#personalization-cover__preview-modal img {
  height: 100vh;
  width: 80%; /* 0.8 aspect ratio: width = height * 0.8 */
  margin: 0 auto;
}

.personalization-cover__preview-container {
  padding: 1rem;
  flex-direction: row-reverse;
  align-items: center;
}

.personalization-cover__preview-container .personalization-cover__image-info {
 padding: 0;
}

  /* Personalization main popup end */

}

@media screen and (min-width: 1440px) {
  .product-module__wrapper {
    grid-template-columns: minmax(100px, 48.47%) minmax(100px, 1fr);
    gap: 4rem;
  }

  .product-module__product-info {
    padding: 2rem 4rem;
    margin-right: 4.375rem;
  }

  .product-module__p-cover-heading {
    gap: 1rem;
  }

  .product-module__p-cover-subtitle {
    max-width: 85.65%;
   }

}
}
