html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
    z-index: 0;
}
body {
	line-height: 1;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Custom CSS */

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
    padding-top: 80px;
    padding-bottom: 88px;
    min-height: 50vh;
}

header {
    background: #63CECA;
    color: #fff;
    padding: 0 24px;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.6s ease-in-out;
    z-index: 100; /* Ensure it's above other content */
    max-width: 1440px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1920px) {
    header {
        padding: 0;
    }
}

.hidden {
    top: -80px !important; /* Move it above the viewport */
}

.header-overlay {
    width: 100%;
    height: 80px;
    background-color: #63CECA;
    position: fixed;
    top: 0;
    transition: top 0.6s ease-in-out;
    z-index: 5;
}

header > div {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

header div:nth-of-type(1) {
    justify-content: flex-start;
}

header div:nth-of-type(2) {
    justify-content: center;
}

header div:nth-of-type(3) {
    justify-content: flex-end;
}

.header-logo {
    gap: 24px
}

.header-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo a svg {
    display: block;
}

header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    line-height: 22.1px;
    letter-spacing: 0.03em;
    color: #FFF;
    font-variant: all-small-caps;
    gap: 16px;
    margin-bottom: 0;
}

header nav ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

header nav ul li:last-of-type {
    margin-left: 16px;
}

header nav ul li:last-of-type span {
    display: flex;
    cursor: pointer;
}

header nav ul li:first-child a span:nth-child(2) {
    transform: translateY(-2px);
}


header nav ul li:nth-child(3) a span:nth-child(2) {
    transform: translateY(-2px);
}

header nav ul li a span:nth-child(2) {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-title {
    text-align: center;
}

.header-title a {
    font-weight: 400;
    font-size: 17px;
    line-height: 22.1px;
    letter-spacing: 0.03em;
    color: #FFF;
    text-decoration: none;
    font-variant: all-small-caps;
}

.header-logo img {
    display: block;
    width: auto;
    max-height: 32px;
}

.header-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.header-links nav ul {
    padding-left: 32px;
}

.header-filters-container {
    padding-right: 32px;
    border-right: 1px solid #fff;
}

.header-filters-container ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.header-filters-container li {
    font-variant: all-small-caps;
    font-size: 17px;
    line-height: 22.1px;
    letter-spacing: 0.03em;
    
}

.mobile-header-hamburger {
    display: none;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

.mobile-header-hamburger span {
    width: 24px;
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-header-hamburger span svg path {
    stroke: #FFFFFF;
}

.mobile-header-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #63CECA;
    z-index: 103;
    display: none;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.mobile-header-menu.open {
    display: block;
}

.close-mobile-menu-wrapper {
    padding: 24px 32px 60px 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-header-menu .title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 17px;
    line-height: 22.1px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    color: #FFF;
    display: flex;
    justify-content: center;
    font-variant: all-small-caps;
}

.mobile-header-menu nav {
    width: 100%;
}

.mobile-header-menu nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 32px;
}


.mobile-header-menu nav ul li ul {
    display: flex;
    flex-direction: column;
    break-inside: avoid-column;
}

/* Apply borders only to the first-level <li> elements */
#menuList > li {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-top: 16px;
    padding-bottom: 16px;
}

#menuList li:nth-of-type(2), #menuList li:nth-of-type(4), #menuList li:nth-of-type(5) {
    border-bottom: none;
}

#menuList li ul li {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: none;
}

.mobile-header-menu nav ul li a {
    gap: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 150%;
    letter-spacing: 0.18em;
    font-size: 14px;
    margin-bottom: 16px;
}

.mobile-header-menu nav ul li {
    text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    height: auto;
    break-inside: avoid-column;

}

.mobile-header-menu nav ul li.mobile-li {
    display: none;
}

.mobile-menu-logo-wrapper, .mobile-menu-title-wrapper {
    display: none;
}



.mobile-header-menu nav ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}

.mobile-header-menu nav ul li ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.02em;
    vertical-align: middle;
    text-transform: none;
    margin-bottom: 8px;
}


.mobile-header-menu nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Hover background color */
}

.mobile-header-menu .close-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-header-menu .mobile-menu-links {
    padding: 0 24px;
    height: 100%;
    align-items: flex-start;
    padding-top: 0;
}

.mobile-header-menu .mobile-menu-links .basket-icon {
    width: 20px;
    height: 24px;
}

.mobile-header-menu .mobile-menu-links .basket-icon::after {
    top: -7px;
    right: -2px;
}

.mobile-header-menu .mobile-language-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 20.8px;
}

.mobile-header-menu .mobile-language-links a:first-of-type {
    margin-right: 12px;
}

.mobile-header-menu .mobile-language-links a:first-of-type::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #FFFFFF;
    transform: translateY(-15%);
    margin-left: 12px;
}

.header-links li a {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: opacity 0.4s ease;
}

.header-links li a:hover {
    opacity: 0.7;
}

.header-links li a span:first-of-type {
    margin-right: 4px;
    white-space: nowrap;
}

.basket-icon, .heart-icon {
    position: relative;
}

.basket-icon::after, .heart-icon::after {
    content: attr(data-count);
    position: absolute;
    top: -3px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    color: #63CECA;
    font-size: 12px;
    letter-spacing: 0.03em;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it's higher than the SVG's */
}

.language-links {
    margin-left: 10px;
}

.language-links span:nth-child(1), .language-links span:nth-child(2) {
    margin-right: 8px;
}
.slider, .slider-single {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%; /* Ensure the slider takes 100% width */
    overflow: hidden; /* Avoid overflow issues */
}

.slider div, .slider-single div {
    width: 100%;
    background-size: contain; /* Ensure the image is fully visible without cropping */
    background-repeat: no-repeat; /* Avoid repetition */
    background-position: center; /* Center the background image */
    text-align: center;
    aspect-ratio: 1920/960;
}

.slider-item {
    background-size: contain; /* Ensure the entire image is visible */
    background-repeat: no-repeat;
    background-image: var(--lg-background-image); /* Large screen image */
    background-position: center;
}

/* Medium screens (e.g., tablets and smaller desktops) */
@media (max-width: 1000px) {
    .slider-item {
        background-image: var(--md-background-image); /* Medium screen image */
    }
    .slider div, .slider-single div {
        aspect-ratio: 1400/930;
    }
}

.contact-triangle {
    display: none;
}

/* Small screens (e.g., mobile devices) */
@media (max-width: 500px) {
    .slider-item {
        background-image: var(--sm-background-image); /* Small screen image */
    }
    .slider div, .slider-single div {
        aspect-ratio: 420/700;
    }
    
.contact-triangle {
    display: block; /* Ensure it is visible */
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: #63CECA;
    clip-path: polygon(100% 0, 0 100%, 100% 100%); /* Triangle shape */
    display: flex;
    align-items: center;
    justify-content: center; /* Center SVG inside */
    z-index: 50;
}

.contact-triangle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact-triangle svg {
    width: 32px;
    height: 32px;
    transform: translate(20px, 20px);
    animation: shake 0.5s ease-in-out; /* Trigger the shake animation */
}

div.arrow-to-top {
    right: 48px;
    bottom: 48px;
}
}

/* Keyframes for the shake effect */
@keyframes shake {
    0% { transform: translate(20px, 20px) rotate(0deg); }
    25% { transform: translate(18px, 22px) rotate(-5deg); }
    50% { transform: translate(20px, 20px) rotate(5deg); }
    75% { transform: translate(22px, 18px) rotate(-5deg); }
    100% { transform: translate(20px, 20px) rotate(0deg); }
}

.slider div.slider-container, .slider-single div.slider-container {
    width: 100%;
    height: 100%; /* Set to 100% of the parent div */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    aspect-ratio: auto;
}


.slider div h2, .slider-single div h2 {
    font-size: 30px;
    line-height: 39px;
    color: #fff;
    letter-spacing: 0.03em;
    font-weight: 400;
    font-variant: all-small-caps;
}

.slider div a, .slider-single div a {
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.4s ease;
    font-variant: all-small-caps;
}

.slider div a:hover, .slider-single div a:hover {
    opacity: 0.7;
}

.slider .slick-dots {
    transform: translateY(-200%);
}

.slider .slick-dots li button:before, .slider .slick-dots li.slick-active button:before {
    color: #fff;
}

.slider .slick-dots li {
    width: 6px;
    height: 6px;
}

.headline {
    font-size: 29px;
    font-weight: 300;
    line-height: 37.7px;
    color: #000;
    text-align: center;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headline h3 {
    width: 546px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.headline h3.active {
    opacity: 1;
    transform: translateY(0);
}

.products {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
    padding: 0 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.products-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    color: #000;
    text-align: left;
    width: 100%;
    text-transform: uppercase;
}

.products-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.product-item {
    width: calc(33.3% - 12px);
    min-width: 350px;
    height: 502px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.product-item.active {
    opacity: 1;
    transform: translateY(0);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px); /* Adjust blur amount as needed */
    opacity: 0;
    transition: opacity 0.3s ease; /* Add a transition for smooth effect */
}

.product-item:hover::before {
    opacity: 1;
}

.product-item a {
    font-size: 28px;
    line-height: 36.4px;
    letter-spacing: 0.03em;
    color: #fff;
    text-decoration: underline;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-variant: all-small-caps;
}

.products-search {
    overflow: visible;
}

.products-filters {
    z-index: 3;
    width: 95%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px 32px 0px;
    border-bottom: 1px solid #f7f7f7;
    max-width: calc(1440px - 48px);
    margin: 56px auto 32px auto;
    overflow: visible;
    position: relative;
}

.mobile-products-filters {
    display: none;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.mobile-products-filters span {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    font-family: "Source Sans 3", sans-serif;
    line-height: 15.6px;
    letter-spacing: 0.03em;
    color: #000;
}

select {
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18.2px;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    padding-right: 25px; /* Add padding to accommodate the SVG */
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='8' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='black'/></svg>"); /* SVG as background image */
    background-repeat: no-repeat;
    background-position: right center; /* Position the SVG */
    -webkit-appearance: none; /* Remove default appearance on WebKit browsers */
    -moz-appearance: none; /* Remove default appearance on Firefox */
    appearance: none; /* Remove default appearance on other browsers */
    transition: opacity 0.4s ease;
}

.custom-select-wrapper {
    position: relative;
    width: auto;
    opacity: 0;
    transition: opacity 0.4s;
}

.custom-select-wrapper.active {
    opacity: 1;
}

.custom-select {
    position: relative;
    cursor: pointer;
}

.custom-select-trigger {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding: 10px;
    padding-right: 25px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    font-weight: 400;
    font-size: 14px;
    font-family: "Source Sans 3", sans-serif;
    line-height: 18.2px;
    font-variant: all-small-caps;
    letter-spacing: 0.03em;
}

.custom-select-trigger:hover {
    opacity: 0.7;
}

.custom-options {
    position: absolute;
    background: #fff;
    width: auto;
    min-width: 165px;
    display: none;
    flex-direction: column;
    z-index: 71;
    max-height: 450px;
    overflow-y: scroll;
    transform: translateX(-10%);
}


.custom-options {
  --sb-track-color: #ffffff;
  --sb-thumb-color: #d9d9d6;
  --sb-size: 6px;
}

.custom-options::-webkit-scrollbar {
  width: var(--sb-size)
}

.custom-options::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 15px;
}

.custom-options::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 15px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .custom-options {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

.custom-option {
    padding: 10px 30px 10px 24px;
    cursor: pointer;
    letter-spacing: 0.03em;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    font-size: 14px;
    font-family: "Source Sans 3", sans-serif;
    line-height: 18.2px;
    font-variant: all-small-caps;
}

.custom-option:hover {
    background: #f0f0f0;
}

.custom-select.open .custom-options {
    display: flex;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6.5px 8.5px 7px;
    border: 1px solid #CDCDCD;
    border-radius: 2px;
    cursor: pointer;
    background-color: #fff;
    position: relative; /* Ensure pseudo-element is positioned correctly */
    opacity: 1;
    transform: translateY(0);
}

input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15.75px;
    height: 11.25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 5.5L4 8.5L11.5 1" stroke="%23F7F7F7"/></svg>');
    transform: translate(-50%, -50%);
    display: none;
}

input[type="checkbox"]:checked::before {
    display: block;
}

input[type="checkbox"]:checked {
    background-color: #63CECA;
}

  
  

.filters select {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.filters select.active {
    opacity: 1;
    transform: translateY(0);
}

select:hover, .filters select:hover {
    opacity: 0.7;
}

.products-filters .filters {
    display: flex;
    gap: 24px;
    z-index: 2;
}

.mobile-filters-heading {
    display: none;
}

.products-search-input-container {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.products-search-input-container.active {
    opacity: 1;
    transform: translateY(0);
}

.products-search-input-container.mobile {
    display: none;
}

.products-search-input {
    padding-right: 12px;
    padding-left: 12px;
    height: 42px;
    width: 300px;
    min-width: calc(228px - 40px);
    border: 1px solid #F1F1F1;
    outline: none;
    font-variant: all-small-caps;
    font-weight: 400;
    color: #000;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
}

.products-search-input::placeholder, .products-search-input::-webkit-input-placeholder {
    color: #000;
    font-size: 14px;
}

.products-search-input-results-container {
    position: absolute;
    top: 99%;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    border: 1px solid #F1F1F1;
    border-top: none;
    display: block;
    overflow: visible;
}

.products-search-input-results-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-search-input-results-container ul li {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    font-variant: all-small-caps;
}

.products-search-input-results-container ul li:hover {
    background-color: #f2f2f2;
}

.products-search-input:focus + .products-search-input-results-container {
    display: block;
}


.products-search-input-icon {
    position: absolute;
    top: 50%;
    right: 15px; 
    transform: translateY(-50%);
}
.sorting {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px; /* Adjust the gap between items */
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sorting.active {
    transform: translateX(0);
    opacity: 1;
}

.products-total {
    font-weight: 300;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    color: #000;
}

.sorting-border {
    height: 34px;
    width: 1px;
    background-color: #f7f7f7;
}

.sorting-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-align: left;
    font-variant: all-small-caps;
}

.sorting-select-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

/* Adjust styles for smaller screens */
@media (max-width: 375px) {
    .sorting {
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    }
    .sorting.active {
        flex-wrap: nowrap; /* Prevent items from wrapping unnecessarily */
    }
}

.products-filters-labels {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px 32px 24px;
    max-width: calc(1440px - 48px);
    margin: 16px auto 16px auto;
    overflow: visible;
    position: relative;
    font-size: 12px;
    gap: 8px;
}

.products-filters-labels .filter-label-container, .cart-products-label .filter-label-container, .wish-list-container .filter-label-container {
    padding: 10.5px 16px 7.5px 16px;
    border: 1px solid #EEEEEE;
    background-color: #EEEEEE;
    border-radius: 48px;
    width: auto;
    height: 37px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wish-list-container .filter-label-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.products-filters-labels .filter-label-container.clear-all, .cart-products-label .filter-label-container.clear-all, .wish-list-container .filter-label-container.clear-all {
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-products-label .filter-label-container.clear-all span {
    text-transform: none;
}

.products-filters-labels .filter-label-container.clear-all:hover, .cart-products-label .filter-label-container.clear-all:hover, .wish-list-container .filter-label-container.clear-all:hover {
    background-color: #EEEEEE;
} 

.products-filters-labels .filter-label-container .remove-filter-icon {
    transform: translateY(3px);
    cursor: pointer;
}

.products-filters-labels .filter-label-container .remove-filter-icon:hover svg circle, .products-filters-labels .filter-label-container .remove-filter-icon:hover svg path {
    stroke: #aba7a7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(462px, auto); /* Adjust the row height as needed */
    grid-gap: 16px;
    row-gap: 56px;
    padding: 0 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.product {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.product:hover .izdvojenoPodcastSmallCorner {
    transform: rotate(45deg) translateX(0) translateY(-77%);
    background-color: #FFFFFF;
}

.product:hover .featured-corner {
    transform: rotate(45deg) translateX(0) translateY(-70%);
    background-color: #FFFFFF;
}

.product:hover .izdvojenoPodcastSmallCorner.inverted {
    transform: rotate(45deg) translateX(0) translateY(-77%);
    background-color: #63CECA;
}

.product:hover .izdvojenoPodcastSmallCorner span svg path {
    fill: #63CECA;
    stroke: #63CECA;
}

.product:hover .featured-corner svg path {
    fill: #63CECA;
    stroke: #63CECA;
}

.product:hover .izdvojenoPodcastSmallCorner.inverted span svg path {
    fill: #FFFFFF;
}

.product:hover .izdvojenoPodcastSmallCorner span svg circle {
    stroke: #63CECA;
}

.product:hover .featured-corner svg circle {
    stroke: #63CECA;
}

.product:hover .izdvojenoPodcastSmallCorner p {
    color: #63CECA;
}

.product:hover .izdvojenoPodcastSmallCorner.inverted p {
    color: #FFFFFF;
}

.product a {
    pointer-events: auto;
}

.question-container {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 24px;
    background-color: #EFFAFA;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    color: #000;
}

.products-grid .question-container {
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.question-container .question-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.question-container .question-box a {
    color: #63CECA;
    text-decoration: none;
    transition: opacity 0.3s ease-in;
}

.question-container .question-box strong {
    font-weight: 700;
}

.question-container .question-box input {
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #D8DADC;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    box-shadow: 0 0 0 0 transparent;
    background-color: #fff;
    opacity: 1;
    margin-bottom: 12px;
    transform: translateY(0);
    transition: border 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.question-container .question-box input.error {
    border: 1px solid red;
}

.question-container .question-box a:hover {
    opacity: 0.7;
}

.question-container .question-box button {
    padding: 6px 12px;
    background-color: #63ceca;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    transition: opacity: 0.7 ease-in;
}

.question-container .question-box button:hover {
    opacity: 0.7;
}

.question-box .mailto-link {
    font-weight: 700;
    text-decoration: underline;
}

.question-box .mailto-link:hover {
    opacity: 0.7;
}

.load-more-container {
    padding-top: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.load-more-button {
    font-variant: all-small-caps;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
}

.load-more-button:hover {
    text-decoration: none;
}

.loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 96px auto 0 auto;
  animation: l5 1s infinite linear;
}
@keyframes l5 {
    0%  {box-shadow: 20px 0 #0002, -20px 0 #63CECA; background: #0002 }
    33% {box-shadow: 20px 0 #0002, -20px 0 #0002; background: #63CECA}
    66% {box-shadow: 20px 0 #63CECA, -20px 0 #0002; background: #0002}
    100%{box-shadow: 20px 0 #0002, -20px 0 #63CECA; background: #0002 }
}


.izdvojenoPodcastSmallCorner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 262px;
    height: 262px;
    position: absolute;
	background-color: #63CECA;
	color: #fff;
    top: 0;
    right: 0;
    z-index: 1;
    overflow: hidden; /* Ensure content doesn't overflow */
	transform: rotate(45deg) translateX(0) translateY(-80%);
    transition: transform 0.4s ease, background-color 0.4s ease;
}


.featured-corner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 262px;
    height: 262px;
    position: absolute;
	background-color: #63CECA;
	color: #fff;
    top: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
	transform: rotate(45deg) translateX(0) translateY(-75%);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.izdvojenoPodcastSmallCorner span {
	width: 45px;
	height: 45px;
    transform: translateY(190%) translateX(0%) rotate(135deg);
	position: relative;
	display: block;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.featured-corner svg {
    transform: translateY(180%) rotate(27deg);
}

.izdvojenoPodcastSmallCorner span svg path {
    fill: white;
    transition: fill 0.4s ease;
}

.izdvojenoPodcastSmallCorner.inverted span svg path {
    fill: #63CECA;
}

.izdvojenoPodcastSmallCorner p {
    font-family: "Source Sans 3", sans-serif;
	transform: translateY(750%) translateX(-20%);
	font-size: 12px;
	line-height: 15.6px;
    font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.4s ease;
}

.izdvojenoPodcastSmallCorner.inverted p {
    color: #63CECA;
}

.izdvojenoPodcastSmallCorner.inverted {
	background-color: #fff;
	color: #63CECA;
}

.circle-label {
    position: absolute;
    top: 5%;
    right: 5%;
}

.product.active {
    opacity: 1;
    transform: translateY(0);
}

.product .product-image-container {

    background-color: #f7f7f7;
    width: 100%;
    height: auto;
    max-height: 360px;
    display: block;
    margin-bottom: 24px;
    transition: background-color 0.4s ease;
    overflow: hidden;
    position: relative;
}

.product.highlighted .product-image-container img {
    max-width: 400px;
    max-height: 400px;
}

.product.highlighted .product-image-container {
    width: 100%;
    height: 100%;
}

.product .product-image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
    .product:hover .product-image-container {
        background-color: #63CECA;
    }

    .product:hover .product-image-container img {
        transform: scale(1.05);
    }
    
    .product .product-information-container .product-information a:hover {
        color: #63ceca;
    }
}

.product .product-information-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    color: #000;
    font-variant-caps: all-small-caps;
    margin-bottom: 24px;
    gap: 8px;
    text-decoration: none;
}


.product .product-information-container .product-information:first-of-type {
    align-items: flex-start;
    height: 65px;
    justify-content: flex-start;
}

.wish-list-container .product .product-information-container .product-information {
    align-items: flex-end;
}

.wish-list-container .product .product-information-container a.product-information {
    align-items: flex-start;
}

.product .product-information-container .product-information {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    line-height: calc(1em + 8px);
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}

.product .product-information-container .product-information:hover {
    color: #63ceca;
}

.product .product-information-container .product-information a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease-in;
}

.product .product-information-container .product-information .price, .price {
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

.product-title span.price {
    font-weight: 700;
}

.product-title span.sellingPrice {
    margin-right: 6px;
}

.product .product-information-container .product-information .price .sellingPrice, .price .sellingPrice {
    font-weight: 400;
    text-decoration: line-through;
    white-space: nowrap;
}

.product-cta {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
}

.cart-form {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.product-cta-submit {
    transform: translateX(0);
}

.custom-input-wrapper {
    position: relative;
    display: inline-block;
    width: 166px;
    height: 43px;
}

.product-cta-submit {
    opacity: 0; /* Hide the actual input value */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; /* Ensure input is above custom-text */
    width: 100%;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.custom-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #63CECA;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
    z-index: 1; /* Ensure text is below the input */
    pointer-events: none; /* Disable interactions to allow clicks to pass through */
}

.custom-input-wrapper:hover .custom-text {
    background-color: rgba(99, 206, 202, 0.7);
}


.custom-text svg {
    margin-left: 8px;
    transform: translateY(-1px);
}

.product-cta a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 8px 16px;
    background-color: #63CECA;
    color: #fff;
    font-variant: all-small-caps;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03em;
    gap: 8px;
    height: 34px;
    transition: background-color 0.4s ease;
    position: relative;
}

.product-cta a span {
    display: flex;
    align-items: center;
}

.product-cta a[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.product-cta a.disabled {
    background-color: rgba(152, 152, 152, 1);
    pointer-events: none;
    cursor: not-allowed;
}

.product-cta-wrapper.disabled {
    cursor: not-allowed;
}

.product-cta a.disabled:hover {
    background-color: rgba(152, 152, 152, 1);
}

.product-cta a:hover {
    background-color: rgba(99, 206, 202, 0.7); /* Use rgba for specifying color and opacity */
}

.product-cta a.wish-list {
    background-color: #63CECA;
    padding: 8px;
}

.product-cta a.wish-list:hover {
    background-color: rgba(99, 206, 202, 0.7);
}

.product-cta a.wish-list {
    width: 34px;
    padding: 0;
    justify-content: center;
}

.highlighted {
    grid-column: span 2; /* Highlighted product spans 2 columns */
    grid-row: span 2; /* Highlighted product spans 2 rows */
}

.arrow-to-top {
    width: 48px;
    height: 48px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #37B9B4;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.4s ease;
    z-index: 99;
}

.arrow-to-top:hover {
    background-color: rgba(99, 206, 202, 0.7); /* Use rgba for specifying color and opacity */
}

.arrow-to-top span {
    transform: translateY(3px);
}

footer {
    margin-top: 0;
    width: 100%;
    padding: 40px 24px 28px 24px;
    background-color: #63CECA;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 88px;
    width: 780px;
}

.footer-info-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.paying-methods-container h6 {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    font-variant: all-small-caps;
    transition: opacity 0.4s ease;
    margin-bottom: 12px;
}

.paying-methods-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    row-gap: 0;
    flex-wrap: wrap;
    max-width: 280px;
}

.paying-method-item-separate {
    margin-bottom: 24px;
}

.paying-method-item-separate img {
    max-height: 300px;
}


.footer-webshop-info, .footer-address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

footer a, footer span {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    font-variant: all-small-caps;
    transition: opacity 0.4s ease;
}

footer a:hover {
    opacity: 0.7;
}

.footer-webshop-info {
    max-width: 600px; /* Set a maximum width to prevent it from spanning too wide */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Create two equal-width columns */
    column-gap: 150px;
    margin-right: 40px;
}

.footer-webshop-info a {
    text-align: left; /* Center the text within each link */
}

.footer-links {
    border-top: 1px solid #FFFFFF;
    width: 100%;
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-links .social-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.social-links {
    margin-right: 24px;
}

/**
* DETAILS.HTML 
*/

.product-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 125px;
    margin: 104px auto 0 auto;
    padding: 0 24px 0 24px;
    box-sizing: border-box;
    max-width: 1920px;
}

.details-slider {
    width: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.details-slider.active {
    transform: translateX(0);
    opacity: 1;
}

.details-slider .slick-dots {
    position: absolute;
    right: -57%; /* Adjust the value as needed to position the dots correctly */
    top: 50%; /* Adjust vertical position if needed */
    width: 100%;
    height: fit-content;
    transform: translateY(-50%) rotate(90deg); /* Rotate and vertically center */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.details-slider.active .slick-dots {
    opacity: 1;
}

.details-slider .slick-dots li {
    margin: 0;
    width: 14px;
}

.details-slider .slick-dots li button::before {
    color: #63CECA;
    opacity: 0.5;
}

.details-slider .slick-dots li.slick-active button::before {
    color: #63CECA;
    opacity: 1;
}

.details-slider .slick-slide {
    background-color: #f7f7f7;
    padding: 100px;
    box-sizing: border-box;
}

.details-slider div img {
    max-width: 100%; 
    object-fit: contain;
    display: block;
    margin: 0 auto;
     max-height: 500px;
     height: 500px;
}


.product-info {
    width: 50%;
    height: 100%;
    margin-right: 60px;
    margin-top: 24px;
    opacity: 0;
    transform: translateX(50%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-width: 490px;
}

.product-info.active {
    opacity: 1;
    transform: translateX(0);
}

.return-link {
    margin-bottom: 17%;
}

.return-link a {
    color: #63CECA;
    font-size: 14px;
    line-height: 18.2px;
    
}

.return-link a:hover {
    color:rgba(99, 206, 202, 0.7);
}
.product-title span {
    font-weight: 400;
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: 0.03em;
    color: #000;
    text-transform: uppercase;
}

.product-title h1 {
    font-weight: 300;
    font-size: 48px;
    line-height: 62.4px;
    letter-spacing: 0.03em;
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: left;
}

.product-title {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #63CECA;
}

.product-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    margin-bottom: 12px;
}

.product-text .product-text-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.product-text .product-text-subtitle:first-of-type {
    margin-top: 0;
}

.product-text strong {
    font-weight: 700;
}

.product-text em {
    font-style: italic;
}

.product-text a {
    color: #63CECA;
    text-decoration: none;
}

.product-text {
    padding-bottom: 40px;
    border-bottom: 1px solid #63CECA;
    margin-bottom: 30px;
}

.product-text ol, ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}

.product-text li {
    line-height: 20.8px;
}

.unavailable-container {
    background-color: rgba(239, 250, 250, 1);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.unavailable-container p {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 3%;
    color: rgba(0, 0, 0, 1);

}

.product-basket {
    margin-bottom: 30px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.product-basket span:first-child {
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    margin-right: 16px;
}

.product-basket .quantity {
    font-size: 24px;
    line-height: 31.2px;
    font-weight: 400;
}

.product-basket button {
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.product-basket button span:first-child {
    margin-right: 0;
}

.product-discount-code {
    border-top: 0.5px solid #63CECA;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 18.2px;
}

.product-discount-code strong {
    font-weight: 700;
}

.product-discount-code input {
    opacity: 1;
    transform: translateY(0);
    width: 321px;
}

.product-discount-code a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.product-discount-code-input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.product-discount-code-input-container button {
    background-color: #63CECA;
    padding: 19px 38.5px;
    outline: none;
    border: none;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s background-color ease;
}

.product-discount-code-input-container button:hover {
    background-color: rgba(99, 206, 202, 0.7);
}

.productAddedToCartMessage {
    position: fixed; /* Ensures it is fixed relative to the viewport */
    top: -100px; /* Start off-screen */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%);
    background-color: #63ceca; /* Success green */
    color: white;
    padding: 8px 14px;
    border-radius: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10000; /* Ensure it’s above all other elements */
    pointer-events: none; /* Prevent blocking other interactions */
    animation: none; /* Default: no animation until triggered */
    white-space: nowrap;
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Fully transparent initially */
}

/* Make the notification visible */
.productAddedToCartMessage.active {
    visibility: visible; /* Ensure it’s visible */
    animation: slideDown 0.5s ease-out forwards, fadeOut 2s ease-out 4s forwards;
}

.productAddedToCartMessage span:first-of-type {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Slide down animation */
@keyframes slideDown {
    from {
        top: -100px; /* Off-screen */
        opacity: 0; /* Transparent */
    }
    to {
        top: 100px; /* Visible position */
        opacity: 1; /* Fully opaque */
    }
}

/* Fade out animation */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}




.product-question {
    padding: 24px 48px;
    text-align: center;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #EFFAFA;
    border-radius: 24px;
    margin-bottom: 24px;
}

.product-question .question-buttons-container button {
    padding: 12px 24px;
    margin: 0 6px;
    outline: none;
    border: none;
    background-color: #63ceca;
    color: #fff;
    border-radius: 0;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity 0.3s ease-out;
}

.product-question .question-buttons-container button:hover {
    opacity: 0.7;
}

.product-question-answer-no-container {
    margin-bottom: 24px;
}

.product-question-answer-no-container p a {
    color: #63ceca;
    text-decoration: none;
    transition: opacity 0.3s ease-out;
}

.product-question-answer-no-container p a:hover {
    opacity: 0.7;
}

.product-labels {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 1440px;
    margin: 80px auto 86px auto;
}

.product-labels div {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 0.5px solid #63CECA;
    width: 100%;
    height: 300px;
    padding: 80px 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-labels div.active {
    transform: translateY(0);
    opacity: 1;
}

.product-labels div:last-child {
    border-right: none;
}

.product-labels div img {
    margin-bottom: 44px;
}

.product-labels h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20.8px;
    text-align: center;
}

.product-labels span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    text-align: center;
    margin-top: 4px;
}

.products-recommended {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    flex-wrap: wrap;
}

.products-recommended .product {
    width: calc(25% - 16px);
    min-width: 250px;
    flex-grow: 1;
}

.single-banner-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.single-banner {
    margin: 94px 0 24px 0;
    height: 550px;
    background-image: var(--lg-background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media screen and (max-width: 1400px) {
    .single-banner {
            background-image: var(--md-background-image);
    }
}

@media screen and (max-width: 420px) {
    .single-banner {
        background-image: var(--sm-background-image);
    }
    .single-banner-container .single-banner .text h4 {
        font-size: 32px;
        line-height: 41.6px;
    }
    .single-banner-container .single-banner .text a {
        font-size: 12px;
        margin-top: 16px;
    }
    .single-banner-container .single-banner .text span {
        margin-bottom: 16px;
    }
}

.single-banner.not-found {
    height: 800px;
}

.single-banner.active {
    opacity: 1;
}

.single-banner .text {
    width: auto;
    margin-left: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.single-banner.not-found .text {
    margin-left: 70%;
    margin-right: 7%;
}

.single-banner .text span {
    font-weight: 400;
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.single-banner .text span.active {
    opacity: 1;
    transform: translateY(0);
}

.single-banner .text h4 {
    font-weight: 300;
    font-size: 48px;
    line-height: 62.4px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.single-banner .text h4.active {
    opacity: 1;
    transform: translateY(0);
}

.single-banner .text a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(99, 206, 202, 1);
    text-decoration: none;
    margin-top: 28px;
    padding: 8px 32px;
    background-color: #FFF;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: color 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.single-banner .text a.active {
    opacity: 1;
    transform: translateY(0);
}

.single-banner .text a:hover {
    color: rgba(99, 206, 202, 0.7); /* Use rgba for specifying color and opacity */
}

/**
* DETAILS.HTML - END
*/

/**
* CART.HTML - START
*/

.cart-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding: 48px 24px 4px 24px;
    box-sizing: border-box;
    margin-top: 80px;
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (min-width: 1920px) {
    .cart-container {
        padding: 48px 0px 4px 0px;
    }
}

.cart-products-label {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-products-label.active {
    opacity: 1;
    transform: translateY(0);
}

.cart-products-label span {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    color: #000000;
    text-transform: uppercase;
}

.cart-summary {
    border-radius: 3px;
    border: 0.5px solid #FFF;
    padding: 32px 32px 18px 32px;
    margin-top: 24px;
    width: 350px;
    min-width: 350px;
    height: 544px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border 0.4s ease;
}

.cart-summary.active {
    border: 0.5px solid #63CECA;
}

.cart-summary-container .cart-summary-row:first-child {
    padding-top: 0;
}

.cart-summary-row {
    border-bottom: 0.5px solid #63CECA;
    padding-bottom: 24px;
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 20.8px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-summary-row.active {
    opacity: 1;
    transform: translateY(0);
}

.cart-summary-row span {
    font-size: 16px;
    line-height: 20.8px;
}

.cart-summary-total {
    transform: translateY(50px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-summary-total.active {
    opacity: 1;
    transform: translateY(0);
}

.cart-summary-total-row {
    margin-bottom: 16px;
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-total-row span {
    font-weight: 700;
}

.cart-summary .product-cta {
    gap: 13px;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-summary .product-cta.active {
    opacity: 1;
}

.cart-summary .product-cta a:first-of-type {
    padding: 12px 18px;
    height: 43px;
}

.cart-summary .product-cta a.wish-list {
    width: auto;
    background-color: transparent;
    color: #63CECA;
    text-transform: none;
    text-decoration: underline;
    height: 43px;
    padding-left: 0;
}

.cart-summary .product-cta a.wish-list:hover {
    color: rgba(99, 206, 202, 0.7); /* Use rgba for specifying color and opacity */
}

.paying-methods {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    width: fit-content;
}

.paying-methods img {
    width: 50px;
    height: auto;
}

.cart-products .cart-row {
    border-top: 0.5px solid #63CECA;
    padding-top: 40px;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-products .cart-row.active {
    opacity: 1;
    transform: translateY(0);
}

.cart-products .cart-row:last-child {
    border-bottom: 0.5px solid #63CECA;
}

.cart-row h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20.8px;
    color: #000000;
    margin-bottom: 4px;
}

.paying-methods {
    margin-top: 12px;
}

.cart-row-container {
    margin-top: 76px;
}

.cart-product .image-container {
    width: 226px;
    min-width: 226px;
    height: 226px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.cart-product .image-container.active {
    opacity: 1;
    transform: translateX(0);
    background-color: #f7f7f7;
}

.cart-product .image-container:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #63ceca;
}

.cart-product .image-container:hover img {
    transform: scale(1.10);
}

.cart-product-info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 226px;
    opacity: 0;
    transform: translateX(50%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-product-info-container.active {
    opacity: 1;
    transform: translateX(0);
}

.cart-product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 34px;
}

.cart-product .image-container img {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    transition: transform 0.4s ease;
}

.cart-product-info .top-text {
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart-product-info h3 {
    font-weight: 300;
    font-size: 32px;
    line-height: 41.6px;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.cart-product-info h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease-in
}

.cart-product-info h3 a:hover {
    color: #63CECA;
}

.cart-product-info .volume {
    font-weight: 400;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-bottom: 5px;
}

.cart-product-info .price {
    font-weight: 700;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    color: #000000;
}

.cart-product-action-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;  
}

.action-box {
    border: 1.22px solid #f7f7f7;
    border-radius: 3px;
    padding: 12px 9px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.action-box button {
    background-color: transparent;
    border: 1.26px solid #f7f7f7;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.action-box button svg path {
    transition: stroke 0.4s ease, fill 0.4s ease;
}

.action-box button:not([disabled]):hover {
    background-color: #63CECA;
    border-color: #63CECA;
}

.action-box button:not([disabled]):hover svg path {
    fill: #fff;
    stroke: #fff;
}

.action-box button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.action-box button[disabled] svg path {
    stroke: #6c6c6c;
}

.action-box .quantity {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.03em;
}

.action-box .trash {
    margin-left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.action-box .trash svg path, .action-box .trash svg rect {
    transition: opacity 0.4s ease;
}

.action-box .trash:hover svg path, .action-box .trash:hover svg rect {
    opacity: 0.7;
}

.cart-products-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

/**
* CART.HTML - END
*/

/**
* DELIVERY-INFORMATION.HTML - START
*/

.delivery-container .profile-menu-container h1 {
    width: 80%;
    white-space: break-spaces;
}

.delivery-container .addresses-container h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    padding-top: 16px;
}

.delivery-container .delivery-address-container.company-wrapper {
    margin-top: 52px;
}

.delivery-container .border {
    width: 100%;
    max-width: 690px;
    height: 1px;
    background-color: #63CECA;
    margin-top: 48px;
    margin-bottom: 48px;
}

.delivery-container .legal-notice-wrapper {
    padding-top: 40px;
    margin-bottom: 48px;
}

.delivery-container .legal-notice-wrapper span {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    opacity: 0.5;
}

.delivery-container .legal-notice-wrapper span a {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
    color: #000;
}

.delivery-container .legal-notice-wrapper span a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.delivery-container .benefits-container {
    width: 100%;
    max-width: 528px;
    height: auto;
    border-radius: 24px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    background-color: #EFFAFA;
}

.delivery-container .benefits-container .benefits-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.delivery-container .benefits-container .benefits-title h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 39px;
    letter-spacing: 0.03em;
    color: #000;
}

.delivery-container .benefits-container .benefits-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.delivery-container .benefits-container .benefits-text ul li {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0.03em;
    color: #000;
}

.delivery-container .benefits-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.delivery-container .benefits-cta a {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: 0.03em;
    color: #000;
    text-decoration: underline;
    transition: opacity 0.4s ease;
}

.delivery-container .benefits-cta a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.delivery-container .benefits-cta:hover span {
    transition: transform 0.4s ease-out;
}

.delivery-container .benefits-cta:hover span {
    transform: translateX(4px) translateY(4px);
}

.delivery-container .benefits-cta span {
    transform: translateY(4px);
}

.delivery-container .login-register-container {
    width: 100%;
    max-width: 708px;
    border-radius: 24px;
    padding: 24px 32px;
    background-color: #EFFAFA;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-direction: row;
    margin-bottom: 30px;
}

.delivery-container .login-register-container div {
    width: 100%;
}

.delivery-container .login-register-container div span {
    font-weight: 300;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: 0.03em;
    color: #000;
}

.delivery-container .login-register-container div span a.login-link .icon-arrow-container {
    display: inline-block;
    height: 32px;
    width: 32px;
    transform: translateY(8px);
    margin-left: 4.5px;
    margin-right: 4.5px;
}

.delivery-container .login-register-container div a {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 23.4px;
    color: #000;
    text-decoration: underline;
}

.delivery-container .login-register-container div a:hover {
    text-decoration: none;
}

.delivery-container .login-register-container div a.login-link, .delivery-container .login-register-container div a.login-link span {
    font-weight: 600;
    display: inline;
    text-decoration: none;
}

.delivery-container .login-register-container div a.login-link span:first-of-type {
    text-decoration: underline;
}

.delivery-container .login-register-container div a.login-link:hover span:first-of-type {
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    .delivery-container.profile-container {
        flex-direction: column;
    }
    .delivery-container .profile-menu-container, .delivery-container .profile-menu-container h1 {
        width: 100%;
    }
    .delivery-container .profile-content-container {
        padding-top: 50px;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .delivery-container .benefits-container {
        padding: 32px;
    }
    .popup-content div.exit-icon {
        margin-bottom: 32px;
    }
    .popup-content form h4 {
        font-size: 32px;
    }
    .container .login-container h1 {
        font-size: 42px;
        margin-bottom: 32px;
    }
    .container .login-container {
        padding-top: 32px;
    }
}

/**
* DELIVERY-INFORMATION.HTML - END
*/

/**
* LOGIN.HTML - START
*/

.login-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 354px;
    padding-top: 48px;
    box-sizing: border-box;
    margin-bottom: 156px;
}

.login-container h1 {
    font-weight: 300;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.login-container h1.active {
    opacity: 1;
    transform: translateY(0);
}

.login-form {
    max-width: 354px;
}

.login-form form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    max-width: 354px;
}

.grecaptcha-badge {
    opacity: 0;
}

.login-input-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
}

.login-input-container label {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17.5px;
    color: #000;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.login-input-container label.active {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.login-form form input {
    width: 342px;
    background-color: #FFF;
    border: 1px solid #D8DADC;
    padding: 18px 16px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    outline: none;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 0 0 0 transparent;
    transition: opacity 0.4s ease, transform 0.4s ease, border 0.4s ease, box-shadow 0.4s ease;
}

.login-form form input.active {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}


.login-input-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 352px;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.password-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.password-input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    font-size: 14px;
    border: 1px solid #D8DADC;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.password-input.active {
    opacity: 1;
    transform: translateY(0);
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggle-password img {
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.toggle-password.active img {
    transition-delay: 0.4s;
    opacity: 1;
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.login-form form input:focus, .login-form form input:hover, .login-form form input:active{
    border: 1px solid #63CECA;
    box-shadow: 2px 2px 10px rgba(99, 206, 202, 0.2);
    outline: none;
}

.login-form form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.login-form form span.error {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 16.25px;
    color: #E64646;
}

.login-form form a {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17.5px;
    color: #000;
    text-decoration: underline;
    opacity: 0;
    transition: color 0.4s ease, opacity 0.4s ease;
}

.login-form form a.active {
    transition-delay: 0.3s;
    opacity: 1;
}

.login-form form a:hover {
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.4s ease;
}

/* General button styles */
.login-form form button {
    width: 100%;
    height: 56px;
    gap: 10px;
    background-color: #63CECA;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
}

.login-form form button.active:disabled {
    opacity: 0.5;
    background-color: #000;
    cursor: not-allowed;
}

/* Clear button styles */
.login-form button.clear {
    background-color: #FFFFFF;
    color: #000;
    border: 1px solid #D8DADC;
}

/* Password change button adjustments */
.login-form form.password-change button {
    margin-bottom: 0;
}

.login-form form.password-change button.clear {
    margin-bottom: 64px;
}

/* Active state transitions */
.login-form form button.active {
    opacity: 1;
    transform: translateY(0);
}

.login-form form button.clear.active {
    opacity: 1;
    transform: translateY(0);
    transition: background-color 0.4s ease-in, color 0.4s ease-in-out;
}

/* Hover state transitions */
.login-form form button:hover {
    background-color: rgba(99, 206, 202, 0.7); /* Use rgba for specifying color and opacity */
    transition: background-color 0.4s ease-in;
}

.login-form form button.clear:hover {
    background-color: #63CECA;
    color: #fff;

}


.login-separator {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    text-align: center;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    text-align: left;
    color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.login-separator.active {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.login-separator span {
    padding: 0 12px; /* Gap between text and lines */
    position: relative;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #D8DADC;
}

.login-separator::before {
    margin-right: 8px; /* Adjust gap between line and text */
}

.login-separator::after {
    margin-left: 8px; /* Adjust gap between line and text */
}

.social-media-login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    max-width: 354px;
    width: 100%;
}

.social-media-login a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(33.33% - 3.5px); /* Adjust width of each button */
    height: 52px;
    border: 1px solid #D8DADC;
    border-radius: 0;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-decoration: none;
    transition: background-color 0.4s ease;
    font-family: "Source Sans 3", sans-serif;
    padding: 19.5px 45px 16.5px 45px;
    gap: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-media-login a.active {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.social-media-login a:hover {
    background-color: #63CECA;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.social-media-login a img {
    width: 16px;
    height: 16px;
    transform: translateY(-1.5px);
}

/* Styles for the span inside the .social-media-login a element */
.social-media-login a span {
    height: 16px;
}

.login-registration-container {
    margin-bottom: 64px;
}

.login-registration-container span {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    text-align: left;
    color: #000000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.login-registration-container span.active {
    transition-delay: 0.7s;
    opacity: 1;
}

.recaptcha-description {
    margin-bottom: 24px;
}

.login-registration-container span a, .recaptcha-description span a {
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    line-height: 17.5px;
    font-family: "Source Sans 3", sans-serif;
    transition: color 0.4s ease;
    opacity: 1;
}

.login-registration-container span a:hover, .recaptcha-description span a {
    color: rgba(0, 0, 0, 0.7);
}

.legal-notice-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.3px;
    text-align: left;
    gap: 16px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.legal-notice-container.active {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.checkbox-wrapper-6 .tgl {
    display: none;
  }
  .checkbox-wrapper-6 .tgl,
  .checkbox-wrapper-6 .tgl:after,
  .checkbox-wrapper-6 .tgl:before,
  .checkbox-wrapper-6 .tgl *,
  .checkbox-wrapper-6 .tgl *:after,
  .checkbox-wrapper-6 .tgl *:before,
  .checkbox-wrapper-6 .tgl + .tgl-btn {
    box-sizing: border-box;
  }
  .checkbox-wrapper-6 .tgl::-moz-selection,
  .checkbox-wrapper-6 .tgl:after::-moz-selection,
  .checkbox-wrapper-6 .tgl:before::-moz-selection,
  .checkbox-wrapper-6 .tgl *::-moz-selection,
  .checkbox-wrapper-6 .tgl *:after::-moz-selection,
  .checkbox-wrapper-6 .tgl *:before::-moz-selection,
  .checkbox-wrapper-6 .tgl + .tgl-btn::-moz-selection,
  .checkbox-wrapper-6 .tgl::selection,
  .checkbox-wrapper-6 .tgl:after::selection,
  .checkbox-wrapper-6 .tgl:before::selection,
  .checkbox-wrapper-6 .tgl *::selection,
  .checkbox-wrapper-6 .tgl *:after::selection,
  .checkbox-wrapper-6 .tgl *:before::selection,
  .checkbox-wrapper-6 .tgl + .tgl-btn::selection {
    background: none;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 44px;
    height: 26px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:after,
  .checkbox-wrapper-6 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:before {
    display: none;
  }
  .checkbox-wrapper-6 .tgl:checked + .tgl-btn:after {
    left: 50%;
  }

  .checkbox-wrapper-6 .tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 3px;
    transition: all 0.4s ease;
  }
  .checkbox-wrapper-6 .tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-6 .tgl-light:checked + .tgl-btn {
    background: #63CECA;
  }

.checkbox-wrapper-18 .round {
    position: relative;
  }

  .checkbox-wrapper-18 .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    width: 20px;
    display: block;
  }

  .checkbox-wrapper-18 .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 4px;
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 6px;
    transform: rotate(-45deg);
    width: 9px;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"] {
    visibility: hidden;
    display: none;
    opacity: 0;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label {
    background-color: #63CECA;
    border-color: #63CECA;
  }

  .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }

.registration-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.registration-text.active {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.registration-text p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 25.6px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000;
}

.registration-text ul {
    padding-left: 20px;
}

.registration-text ul li {
    list-style-type: disc;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 25.6px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000;
}

/**
* LOGIN.HTML - END
*/

/**
* ORDERS.HTML - START
*/

.profile-container {
    width: 100%;
    height: 100%;
    padding: 48px 241px 120px 141px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1920px;
    margin: 0 auto;
}

.profile-menu-container {
    width: 35%;
}

.profile-content-container {
    width: 65%;
    padding-top: 150px;
}
 
.profile-menu-container .return-link {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.profile-menu-container .return-link.active {
    opacity: 1;
    transform: translateY(0);
}

.profile-menu-container h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 52px;
    letter-spacing: 0.03em;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
}

.profile-menu-container h1.active {
    opacity: 1;
    transform: translateY(0);
}

.profile-menu-links {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.profile-menu-links.active {
    opacity: 1;
    transform: translateY(0);
}

.profile-menu-links ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
    list-style: none;
    padding-left: 0;
}

.profile-menu-links ul li {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.profile-menu-links ul li.active {
    opacity: 1;
    transform: translateY(0);
}

.profile-menu-links ul li a {
    text-transform: uppercase;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000000;
    text-decoration: none;
}

.profile-menu-links ul li a:active, .profile-menu-links ul li a.active, .profile-menu-links ul li a:hover {
    font-weight: 700;
}

.orders-container h2 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 5px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.orders-container h2 a {
    text-decoration: none;
    color: #000;
}

.orders-container h2.active {
    opacity: 1;
}

.order-wrapper {
    border-bottom: 1px solid #63CECA;
    margin-top: 32px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.order-wrapper.active {
    opacity: 1;
    transform: translateX(0);
}

.order-wrapper a {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 8px;
    color: #000;
    text-decoration: none;
}

.order-details {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 32px;
}

.order-details span {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000000;
}

/**
* ORDERS.HTML - END
*/

/**
* ORDER-DETAILS.HTML - START
*/

.order-products-list {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.order-product-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.order-product-item.active {
    opacity: 1;
    transform: translateX(0);
}

.order-product-item .product-details {
    display: flex;
    flex-direction: column;
}

.order-product-item .product-details .subtitle {
    margin-bottom: 8px;
}

.order-product-item .product-details h3 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 41.6px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000000;
    margin-bottom: 8px;
}


.order-product-item .product-details .subtitle, .order-product-item .product-details .value {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000000;
    text-transform: uppercase;
}

.order-product-item .product-details .value {
    margin-bottom: 5px;
}

.order-product-item .product-details .price {
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    text-align: left;
    color: #000000;
}

.product-image-wrapper {
    width: 226px;
    height: 226px;
    background: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    object-fit: cover;
}

.order-details-summary {
    display: flex;
    flex-direction: column;
    padding-top: 75px;
    padding-bottom: 55px;
}

.order-details-summary div strong {
    font-family: "Source Sans 3", sans-serif;
font-size: 16px;
font-weight: 700;
line-height: 20.8px;
text-align: left;

}

.order-details-summary div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 0.5px solid #63CECA;
    padding-top: 40px;
    padding-bottom: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.order-details-summary div.active {
    opacity: 1;
}

.order-details-summary div:last-of-type {
    border-bottom: 0.5px solid #63CECA;
}

.order-details-summary div.contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.download-button {
    width: 354px;
    height: 56px;
    padding: 17px 152px;
    background-color: #63CECA;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    margin-top: 100px;
    opacity: 0;
    transition: background-color 0.4s ease, opacity 0.4s ease;
}

.download-button.active {
    opacity: 1;
}

.download-button:hover {
    background-color: rgba(99, 206, 202, 0.7);
}

/**
* ORDER-DETAILS.HTML - END
*/

/**
* CONTACT-DETAILS.HTML - START
*/

input {
    padding: 18px 16px;
    width: 342px;
    box-sizing: border-box;
    border: 1px solid #D8DADC;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    box-shadow: 0 0 0 0 transparent;
    opacity: 0;
    transform: translateY(50px);
    transition: border 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

input.active {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0)
}

input:focus, input:hover, input:active {
    outline: none;
    border: 1px solid #63CECA;
    box-shadow: 2px 2px 10px rgba(99, 206, 202, 0.2);
}

input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* Basic select element styling */
select {
  padding: 18px 16px;
  width: 342px;
  box-sizing: border-box;
  border: 1px solid #D8DADC;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  box-shadow: 0 0 0 0 transparent;
  appearance: none;  /* Remove default arrow */
  -webkit-appearance: none; /* Remove default arrow in Chrome and Safari */
  -moz-appearance: none; /* Remove default arrow in Firefox */
  background: transparent url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%221.5%22%20stroke%3D%22currentColor%22%20class%3D%22size-6%22%3E%3Cpath%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22m19.5%208.25-7.5%207.5-7.5-7.5%22%20%2F%3E%3C%2Fsvg%3E') no-repeat right 10px center;
  background-size: 16px 16px; /* Adjust the size of the arrow */
  padding-right: 30px; /* Adjust padding to make space for the arrow */
  transition: border 0.4s ease, box-shadow 0.4s ease;
}



select.active {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0)
}

select:focus, select:hover, select:active {
    outline: none;
    border: 1px solid #63CECA;
    box-shadow: 2px 2px 10px rgba(99, 206, 202, 0.2);
}

select::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

h1 {
    padding-top: 24px;
    font-size: 36px;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto 24px auto;
}

.text-plain {
    max-width: 1158px;
    width: 100%;
    padding: 48px 24px 24px 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 132px;
    justify-content: flex-start;
    align-items: flex-start;
}

.text-plain p {
    margin-bottom: 24px;
}

@media screen and (max-width: 1000px) {
    .text-plain {
        gap: 0;
        flex-direction: column;
    }
    div.text-plain div {
        max-width: none;
    }
}

.text-plain div {
    max-width: 648px;
}

.text-plain strong {
    font-weight: 700;
}

.text-plain italic, .text-plain em {
    font-style: italic;
}

.text-plain a, .backlink {
    color: #63CECA;
    opacity: 1;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}

.text-plain a:hover, .backlink {
    opacity: 0.7;
}

.text-plain .backlink, .backlink {
    text-decoration: underline;
}


.delivery-information-container {
    width: 100%;    
    max-width: 648px;
    padding: 24px 24px;
}

.delivery-information-container p {
    margin-bottom: 16px;
}

.delivery-information-large-container {
    max-width: 1158px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    gap: 132px;
    padding: 48px 16px 0 16px;
}

@media screen and (min-width: 1920px) {
    .delivery-information-container {
        padding: 24px 0;
    }
}

.delivery-information-container h1 {
    font-size: 36px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 24px;
}

.delivery-information-container strong {
    font-weight: 700;
}

.delivery-information-container table, table {
    border-collapse: collapse; /* Using collapse for consistent spacing */
    border: 1px solid #63ceca;
    width: 100%;
    background-color: #f9f9f9; /* Light background for better readability */
    font-family: Arial, sans-serif; /* Consistent font style */
    font-size: 14px; /* Ensure readability */
    max-width: 1440px;
    margin: 24px auto;
}

.delivery-information-container table th,
.delivery-information-container table td,
table th,
table td {
    padding: 10px 15px; /* Add padding for a cleaner layout */
    text-align: left; /* Align text for better readability */
    border-bottom: 1px solid #63ceca; /* Consistent row separation */
}

.delivery-information-container table th,
table th {
    background-color: #63ceca; /* Distinguish header row */
    color: #ffffff; /* Contrast header text */
    text-transform: uppercase; /* Add emphasis to headers */
    font-weight: bold; /* Make headers stand out */
}

.delivery-information-container table tr:nth-child(even),
table tr:nth-child(even) {
    background-color: #eaf7f7; /* Add zebra striping for clarity */
}

.delivery-information-container table tr:hover,
table tr:hover {
    background-color: #d8f0ef; /* Highlight row on hover for better UX */
    cursor: pointer; /* Optional: Show pointer cursor on hover */
}



.contact-details-container h2 {
    font-weight: 300;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-bottom: 33px;
}

.input-row-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-details-data {
    padding-top: 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1108px;
}

.contact-details-data h3 {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    margin-bottom: 57px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-details-data h3.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-details-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #63CECA;
    padding-bottom: 40px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-details-wrapper.active {
    opacity: 1;
    transform: translateX(0);
}

.contact-details-wrapper .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.contact-details-wrapper .left span:first-of-type {
    font-weight: 400;
    font-size: 14px;
    line-height: 17.5px;
}

.contact-details-wrapper .left span:last-of-type {
    font-size: 16px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.bordered-button {
    width: auto;
    box-sizing: content-box;
    max-width: 342px;
    text-align: center;
    height: auto;
    padding: 17px 152px;
    border: 1px solid #63CECA;
    color: #63CECA;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    display: block;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.bordered-button:hover {
    color: #FFF;
    background-color: #63CECA;

}

.delete-link-wrapper {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.delete-link-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.delete-link {
    font-weight: 700;
    font-size: 14px;
    line-height: 17.5px;
    color: #000000;
    transition: opacity 0.4s ease;
}

.delete-link:hover {
    opacity: 0.7;
}

.notification-wrapper {
    position: absolute;
    top: 137px;
    left: 40%;
    padding: 24px 80px 24px 80px;
    gap: 8px;
    border-radius: 64px;
    color: #FFF;
    opacity: 0px;
    background: #63CECA;
    box-shadow: 4px 4px 20px 0px #00000012;
    font-family: "Sorce Sans Pro", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.notification-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.popup-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    width: 100%;
    max-width: 660px;
    height: 100%;
    max-height: 660px;
    background: #FFF;
    padding: 16px 16px 82px 135px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.popup-content form {
    padding-right: 80px;
}

.popup-content .exit-icon {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 46px;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.popup-content .exit-icon:hover {
    opacity: 0.7;
}

.popup-content .exit-icon span {
    z-index: 101;
    width: 34px;
    height: 34px;
    background-color: #63ceca;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content h4 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 52px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 16px;
}

.popup-content .description {
    display: block;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 22.4px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 24px;
}

.popup-content .button-wrapper {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.popup-content .button, .popup-content .button-clear {
    width: 100%;
    max-width: 342px;
    height: 100%;
    max-height: 56px;
    display: block;
    background-color: #63CECA;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.popup-content .button:hover {
    background-color: rgba(99, 206, 202, 0.7);
}

.popup-content .button-clear:hover {
    background-color: #63CECA;
    color: #fff;
    border: 1px solid transparent;
}

.popup-content .button-clear {
    background-color: #FFF;
    color: #000;
    border: 1px solid #D8DADC;
    margin-top: 24px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/**
*   EMAIL-MESSAGE.HTML - END
*/

.message-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
    padding: 230px 0 352px 0;
}

.message-container h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 52px;
    letter-spacing: 0.03em;
    text-align: left;
    margin: 0 auto;
    width: 440px;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.message-container h1.active {
    opacity: 1;
    transform: translateY(0);
}

.message-container .button-wrapper {
    margin: 0 auto;
    width: 440px;
}

.message-container .button {
    padding: 17px;
    max-width: 354px;
    background-color: #63CECA;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/**
*   EMAIL-MESSAGE.HTML - END
*/

/**
* ADDRESSES.HTML - START
*/

.delivery-address-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 19px;
    margin-bottom: 45px;
}

.addresses-container h2 {
    margin-bottom: 33px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.addresses-container h2.active {
    opacity: 1;
}

.delivery-address-container h2 {
    margin-bottom: 0;
}

.addresses-container .button {
    padding: 17px;
    max-width: 354px;
    background-color: #63CECA;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    display: block;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.addresses-container .button-wrapper {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.addresses-container .button-wrapper.active {
    opacity: 1;
}

.addresses-container .button:hover {
    background-color: rgba(99, 206, 202, 0.7);
}

/**
* ADDRESSES.HTML - END
*/

/** 
* ORDER-SUCCESSFUL.HTML - START
*/

.order-successful-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 125px;
    padding: 24px 126px 0 24px;
    max-width: 1920px;
    margin: 0 auto;
}

.image-left-container, .text-right-container {
    width: 50%;
}

.image-left-container {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.image-left-container.active {
    opacity: 1;
    transform: translateX(0);
}

.text-right-container {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.text-right-container.active {
    opacity: 1;
    transform: translateX(0);
}

.text-right-container {
    max-width: 423px;
}

.image-left-container img {
    width: 742px;
    height: 742px;
    object-fit: cover;
    object-position: right top;
}

.text-right-container h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 62.4px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 41px;
}

.text-right-container p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 23.4px;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 41px;
}

.text-right-container .button-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.text-right-container .button {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #63CECA;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.text-right-container .button:hover {
    background-color: rgba(99, 206, 202, 0.7);
}

/**
* ORDER-SUCCESSFUL.HTML - END
*/

/**
* WISH-LIST.HTML - START
*/

.wish-list-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 24px 0 24px;
    max-width: 1488px;
    margin: 0 auto;
}

.wish-list-container .return-link {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wish-list-container .return-link.active {
    opacity: 1;
    transform: translateY(0);
}

.wish-list-container h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 52px;
    letter-spacing: 0.03em;
    text-align: left;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wish-list-container h1.active {
    opacity: 1;
}

.wish-list-items-container .exit-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #63CECA;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, background-color 0.4s ease;
}

.wish-list-items-container .exit-icon span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wish-list-items-container {
    width: 100%;
}

.wish-list-container .products-grid {
    padding: 0;
    max-width: none;
}

.wish-list-container .product:hover .exit-icon, .wish-list-items-container .exit-icon:hover {
    opacity: 0.7;
    background-color: #FFF;
}

.wish-list-container .product:hover .exit-icon span svg path, .wish-list-items-container .exit-icon:hover span svg path {
    fill: #63CECA;
    stroke: #63CECA;
}

.wish-list-empty-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 125px;
    padding: 0;
}

.cart-list-empty-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 125px;
    padding: 0;
    margin-top: 24px;
    margin-left: 24px;
}

.cart-list-empty-container .image-left-container img {
    width: 100%;
}

/**
* WISH-LIST.HTML - END
*/


/**
* MEDIA QUERY - START
*/

@media screen and (min-width: 1920px) {
    .footer-info-container {
        padding: 0 24px;
    }
    .footer-links {
        max-width: calc(1440px - 48px);
    }
}

@media screen and (max-width: 1600px) {
    .profile-container {
        padding: 48px 50px 120px 141px;
    }
}

@media screen and (max-width: 1461px) {
    .input-row-container .login-input-container input {
        min-width: 229px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1250px) {
    .cart-container {
        justify-content: space-between;
        gap: 48px;
        padding: 48px 70px 4px 70px;
    }
    .single-banner.not-found .text {
        margin-left: 60%;
    }
    .footer-info-container {
        flex-direction: column;
        gap: 0;
    }
    .footer-info {
        margin-bottom: 48px;
    }
    .paying-methods-container {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 1150px) {
    .bordered-button {
        padding: 17px 100px;
    }
}

@media screen and (max-width: 1100px) {
    .product-item {
        flex-basis: calc(50% - 4px);
    }
    .products-list .product-item:last-child {
        flex-basis: 100%;
    }
    .products-list {
        gap: 8px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1000px) {
    .products-grid {
        grid-gap: 8px;
        row-gap: 38px;
    }
    .product-title {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .product-text {
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
    .product-basket {
        margin-bottom: 15px;
    }
    .product-container {
        gap: 80px;
    }
    .cart-container {
        padding: 48px 35px 4px 35px;
    }
    .profile-container {
        padding: 40px 60px 90px 60px;
    }
    .product-discount-code-input-container {
        width: 100%;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .product-discount-code input {
        width: 100%;
    }
    .mobile-header-menu nav ul {
        column-count: 2;
    }
    #menuList > li:nth-of-type(4) {
        border-top: none;
        border-bottom: 1px solid #fff;
    }
    #menuList > li:nth-of-type(7) {
        border-top: none;
    }
    .delivery-information-large-container {
        flex-direction: column;
        gap: 16px;
    }
    .delivery-information-container {
        margin: 0 auto;
        padding: 16px 8px;
    }
    .delivery-information-container h1 {
        padding-top: 0;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 1100px) {
    .cart-container {
        flex-direction: column;
    }
    .cart-summary {
        width: 100%;
        margin-top: 48px;
    }
    .cart-products {
        width: 100%;
    } 
    .wish-list-empty-container, .cart-list-empty-container {
        flex-direction: column-reverse;
        gap: 24px;
        box-sizing: border-box;
        margin-left: 0;
        padding-left: 24px;
        padding-right: 24px;
    }
    .image-left-container, .text-right-container {
        width: 100%;
    }
    .image-left-container img {
        width: 100%;
    }
    .text-right-container h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 870px) {
    .products-filters .filters {
        gap: 8px;
    }
    .sorting {
        gap: 8px;
        z-index: 50;
    }
    .footer-info {
        width: 100%;
    }
    .single-banner.not-found .text {
        margin-left: 50%;
    } 
}


@media screen and (max-width: 800px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sorting-select-container div.custom-select-wrapper {
        margin-right: 0;
    }
    div.products-search-input-container.mobile {
        padding: 8px 24px 16px 24px;
    }
    div.products-search-input-container.mobile .products-search-input-icon {
        right: 32px;
    }
    .products-filters {
        margin-top: 32px;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
        .product-labels {
        flex-direction: column;
    }
    .product-labels div {
        border-right: none;
        border-bottom: 0.5px solid #63CECA;
    }
    .product-labels div:last-child {
        border-bottom: none;
    }
    .products-filters .filters {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FFF;
        z-index: 101;
        display: none;
        flex-direction: column;
    }
    .products-filters .filters.open {
        display: flex;
        z-index: 103;
        overflow-x: auto;
    }
    .products-filters .filters select {
        margin: 0 24px;
        padding-top: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #F7F7F7;
    }
    .products-filters .filters select:last-of-type {
        border-bottom: none;
    }
    .products-filters .filters .products-search-input-container {
        display: none;
    }
    .mobile-filters-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 32px 24px;
        font-family: "Source Sans 3", sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 20.8px;
        color: #000000;
        border-bottom: 1px solid #F7F7F7;
    }
    .mobile-filters-heading span:nth-of-type(2) {
        cursor: pointer;
    }
    .custom-options {
        width: 100%;
        align-items: flex-start;
        position: relative;
        transform: translateX(0);
    }
    .sorting-select-container .custom-options {
        position: absolute;
    }
    .products-search-input-container.mobile {
        z-index: 2;
        display: block;
        opacity: 1;
        transform: translateX(0);
        margin-bottom: 16px;
        padding: 8px 32px 16px 32px;
    }
    .products-search-input-container.mobile input {
        width: 100%;
        font-size: 16px;
    }
    .products-search-input-container.mobile .products-search-input-icon {
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-60%);
}
    .custom-option {
        width: 100%;
        justify-content: flex-start;
    }
    .mobile-products-filters {
        display: flex;
    }
    .products-total {
        display: none;
    }
    .sorting-border {
        display: none;
    }
    .sorting-select-container {
        font-size: 12px;
    }
    .product-container {
        flex-direction: column;
        gap: 40px;
        margin-top: 48px;
    }
    .details-slider {
        width: 100%;
    }
    .details-slider .slick-slide {
        padding: 48px;
    }
    .details-slider .slick-dots {
        top: auto;
        bottom: -5%;
        right: 0;
        transform: rotate(0);
    }
    .product-info {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }
    .footer-info {
        flex-direction: column;
        gap: 40px;
    }
    .custom-select-wrapper {
        padding: 14px 0;
        margin: 0 24px;
        border-bottom: none;
    }
    .bordered-button {
        padding: 17px 60px;
    }
}

@media screen and (max-width: 760px) {
    .product-item {
        flex-basis: 100%
    }
    .profile-container {
        padding: 30px 80px 70px 32px;
    }
}

@media screen and (max-width: 700px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-labels div {
        width: 100%;
        border-right: none;
        border-bottom: 0.5px solid #63CECA;
        padding: 40px 0 0 0;
        height: 180px;
    }
    .product-labels div:last-child {
        border-bottom: none;
    }
    .product-labels div img {
        margin-bottom: 22px;
    }
    .footer-webshop-info {
        grid-template-columns: repeat(1, 1fr);
    }
    .single-banner.not-found .text {
        margin-left: 40%;
    }
    .popup-content {
        padding: 32px;
        width: 90%;
    }
    .popup-content form {
        margin: 0 auto;
    }
    .popup-content form .input-row-container {
        align-items: center;
    }
    .popup-content .button-wrapper {
        justify-content: center;
    }
    .paying-methods-wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 670px) {
    main {
        padding-top: 76px;
    }
    .contact-details-wrapper {
        flex-direction: column;
        gap: 24px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .contact-details-wrapper .right {
        width: 100%;
    }
    .bordered-button {
        width: 100%;
        max-width: none;
        padding: 17px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    .input-row-container {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 650px) {
    .product .product-information-container {
        height: 100px;
    }
        header div:nth-of-type(2) {
        justify-content: flex-end;
    }
        .header-links {
        display: none;
    }
    .mobile-header-hamburger {
        display: flex;
    }
    .mobile-header-menu.open {
        display: block;
    }
        .header-logo img {
        width: auto;
    }
    .mobile-header-menu {
        width: 100%;
        overflow: scroll;
        height: 100vh;
    }
    .mobile-header-menu nav ul {
        column-count: 1;
    }
    #menuList > li:nth-of-type(4) {
        border-bottom: none;
    }
    #menuList li.mobile-li {
        display: block;
        border: none;
        padding-top: 0;
    }
    .mobile-header-menu nav ul li.mobile-li ul {
        gap: 16px;
    }
    .mobile-header-menu nav ul li.mobile-li ul li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        letter-spacing: 0.03em;
        vertical-align: middle;
        font-variant: small-caps;
    }
    .close-mobile-menu-wrapper {
        justify-content: space-between;
        padding: 24px 24px 47px 24px;
    }
    .logo-container {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .mobile-menu-title-wrapper {
        font-weight: 400;
        font-size: 17px;
        line-height: 22.1px;
        letter-spacing: 0.03em;
        text-align: center;
        vertical-align: middle;
        font-variant: small-caps;
        color: #fff;
        display: block;
    }
    .mobile-menu-logo-wrapper {
        display: block;
        line-height: 1;
    }
    .mobile-menu-logo-wrapper img {
        max-width: 59px;
        width: 100%;
    }
    header div:nth-of-type(2) {
        justify-content: flex-end;
    }
    .mobile-header-menu .close-btn {
        width: 24px;
    }
}

@media screen and (max-width: 600px) {
    .slider div h2, .slider-single div h2, .headline h3, .product-item a {
        font-size: 18px;
        line-height: 24px;
    }
    .single-banner .text {
        width: 53%;
        float: right;
        padding-right: 24px;
    }
    .profile-container {
        padding: 24px 24px 70px 24px;
    }
}

@media screen and (max-width: 564px) {
    .products-recommended .product {
        width: 100%;
        min-width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .products-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(362px, auto); /* Adjust the row height as needed */
    }
    .product.highlighted {
        grid-column: span 1;
        grid-row: span 1;
    }
    .products-grid .product-cta a {
        width: 100%;
    }
    .product .product-information-container .product-information:first-of-type {
        height: 60px;
    }
    .products-grid .product.highlighted .product-image-container {
        height: 400px;
    }
    .products-grid .product .product-image-container {
        max-height: 200px;
    }
    .product .product-image-container img {
        width: 100%;
        height: 100%;
        max-height: 360px;
    }
    .product .product-information-container .product-information {
        font-size: 12px;
    }
    .products-grid .product-cta {
        justify-content: space-between;
        gap: 6px
    }
    .products-grid .product-cta a {
        padding-left: 6px;
        padding-right: 8px;
        white-space: nowrap;
        justify-content: center;
    }
    .products-grid .highlighted .product-cta a {
        width: 100%;
    }
    .products-grid .product-cta a.wish-list {
        width: 20%;
        max-width: 34px;
    }
    .izdvojenoPodcastSmallCorner, .featured-corner {
        width: 160px;
        height: 160px;
    }
    .izdvojenoPodcastSmallCorner span {
        width: 25px;
        height: 25px;
        transform: translateY(215%) translateX(0%) rotate(135deg)
    }
    .featured-corner svg {
        width: 30px;
        height: 30px;
        transform: translateY(160%) rotate(27deg)
    }
    .product .product-information-container .product-information:first-of-type {
        height: 90px;
    }
    .products-grid .question-container {
        padding: 14px;
        font-size: 12px;
    }
    .question-container .question-box button {
        font-size: 14px;
    }
    .question-container .question-box {
        font-size: 12px;
    }
    .question-container .question-box input {
        height: 28px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    .question-container .question-box {
        max-height: 85px;
        gap: 6px;
        overflow-x: auto;
    }
    .sorting-label {
        display: none;
    }
    .footer-webshop-info {
        column-gap: 48px;
    }
    .footer-links {
        gap: 128px;
    }
    .footer-links .social-links {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    .details-slider .slick-dots {
        bottom: -8%;
    }
    .single-banner.not-found .text {
        margin-left: 30%;
    }
}

@media screen and (max-width: 510px) {
    .profile-container {
        flex-direction: column;
    }
    .profile-menu-container {
        width: 100%;
    }
    .profile-content-container {
        width: 100%;
        padding-top: 48px;
    }
    .message-container {
        padding: 100px 20px 150px 20px;
    }
    .message-container h1 {
        width: auto;
    }
    .message-container .button-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .single-banner.not-found .text {
        margin: 0;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 450px) {
    .footer-info {
        flex-direction: column;
        gap: 32px;
    }
    .footer-address {
        margin-left: 0;
    }
    .product-item {
        min-width: 100%;
    }
    .cart-product {
        flex-direction: column;
        width: 100%;
        border-bottom: 0.5px solid #63CECA;
        gap: 16px;
        padding-bottom: 32px;
        margin-bottom: 24px;
    }
    .cart-products-list .cart-product:last-child {
        border-bottom: none;
    }
    .cart-product-info-container {
        height: 180px;
    }
    .cart-row-container {
        margin-top: 0;
    }
    .cart-summary {
        min-width: 100%;
    }
    .cart-summary .product-cta {
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .cart-summary .product-cta a.wish-list {
        padding-right: 0;
    }
}

@media screen and (max-width: 370px) {
    .login-container {
        padding-left: 24px;
    }
    .login-form form input {
        width: 90%;
    }
    .toggle-password {
        right: 14%;
    }
    .password-wrapper {
        width: 100%;
    }
    .login-form form button {
        padding: 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product.highlighted {
        grid-column: span 1;
    }
    .products-grid .product-cta a {
        width: 100%;
    }
    .product .product-information-container .product-information:first-of-type {
        height: 60px;
    }
}

@media screen and (max-width: 360px) {
    body {
        overflow-x: scroll;
    }
    .header-logo svg {
        width: auto;
        height: 30px;
    }
    .cart-summary {
        min-width: 100%;
    }
    .cart-container {
        width: 100%;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .single-banner {
        height: 550px;
        overflow: auto;
    }
    .single-banner-container {
        width: 100%;
    }
    footer {
        width: 100%;
    }
}

@media screen and (max-width: 260px) {

}

#sto2_cms_cookie_consent {
    position: fixed;
    bottom: 0px;
    background-color: hsl(178 52% 90% / 1);
    left: 0;
    right: 0;
    padding: 20px;
    color: hsl(178 52% 30% / 1);
    z-index: 999999;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

#sto2_cms_cookie_consent > div {
    display: flex;
    align-items: center;
}

#sto2_cms_cookie_consent .cookie-consent-content-left {
    flex: 1;
}

#sto2_cms_cookie_consent button {
    padding: 12px 24px 13px;
    width: 123px;
    height: 45px;
    background: #64ceca;
    border-radius: 2px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    border: 0;
    font-family: inherit;
}

#sto2_cms_cookie_consent button:hover {
    background: #319b98;
    text-decoration: underline;
}

.product-cta a .action-button-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(100 206 202);
    display: none;
    justify-content: center;
    align-items: center;
}

.product-cta a.processing > .action-button-spinner {
    display: flex;
}

.registration-text.password-hints p {
    font-size: 13px;
    margin-bottom: 4px;
}

.registration-text.password-hints ul li {
    font-size: 12px;
    color: hsl(39 100% 32% / 1);
}

.registration-text.password-hints ul li.active {
    color: hsl(120 100% 20% / 1);
}

.product-cta a.product-unavailable {
    background-color: hsl(0 0% 76% / 1);
    cursor: not-allowed;
    user-select: none;
}

.btn-form-primary {
    padding: 17px;
    max-width: 354px;
    background-color: #63CECA;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background-color 0.4s ease, color 0.4s ease, opacity 0.4s ease;
    border: 0;
    cursor: pointer;
}

.btn-form-primary:hover {
    opacity: 0.7;
}