:root {
    --black: #282828;

    --grey-100: #F2F3F7;
    --grey-200: #CCCDD0;
    --grey-300: #95969B;
    --grey-400: #3A3A3C;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    color: #7a7a7a;
    backdrop-filter: blur(20px);
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    /*border: 1px solid #FFFFFF4D;*/
    border-radius: 25px;
}

#header .logo {
    max-width: 150px;
    width: 130px;
    height: auto
}

#header .header-top {
    padding: 1rem 1rem;
    box-shadow: 0 20px 27px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #FFF;
    border-radius: 0 0 15px 15px;
}

#header a:hover {
    color: #A27D53;
    text-decoration: none
}

#header .header-top a[data-depth="0"] {
    color: #282828;
    font-weight: 500;
    font-size: .875rem;
}

#header .header-top .right-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    border-radius: 99999px;
    padding: .75rem 1rem;
    background-color: #A27D53;
}

#header .header-top .right-nav > *:not(:last-child) {
    border-right: 1px solid #FFFFFF33;
    padding-right: .5rem;
    margin-right: .5rem;
}

#header .top-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 130px;
}

#header .top-logo img {
    width: 130px;
    max-height: 100px;
}

#header .top-menu a[data-depth="0"]:hover, a:hover {
    color: #A27D53;
    text-decoration: none;
}

#wrapper {
    background: none;
    padding: 0;
}

/* products miniature */
/* miniatures/product partial */

.product-miniature .product-title {
    text-align: left;
    text-transform: none;
}

.product-miniature .product-title a {
    font-size: 1.125rem !important;
    line-height: 22px !important;
    font-weight: 400;
    letter-spacing: 0;
    color: #282828;
    text-decoration: none;
    text-align: left;
}

.product-miniature .product-price-and-shipping {
    font-weight: 400;
    color: #282828;
    display: grid;
    text-align: left;
}

.product-miniature .regular-price {
    display: inline-block;
    font-size: .875rem;
    color: #282828;
    opacity: .5;
    text-decoration: line-through
}

.product-miniature .add-to-cart {
    width: auto;
    height: auto;
}

.product-miniature .add-to-cart .ti {
    font-size: 1.5rem;
}

.price {
    font-weight: 700;
}

.product-miniature .thumbnail-container {
    position: relative;
    height: auto;
    margin-bottom: 1.563rem;
    overflow: hidden;
    background: #F2F3F7;
    border-radius: 25px;
    padding: 1.5rem;
}

.product-miniature .thumbnail-pack-container {
    position: relative;
    height: auto;
    margin-bottom: 1.563rem;
    overflow: hidden;
    background: #F2F3F7;
    border-radius: 25px;
    padding: .75rem;
}

.product-description.text-black p span,
.product-description.text-black p {
    color: #282828 !important;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 16px;
}

.product-miniature .thumbnail-container:focus .product-description::after, .product-miniature .thumbnail-container:hover .product-description::after {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    content: "";
    border-top: #7a7a7a 1px solid;
    opacity: .25;
    display: none;
}

.product-miniature .product-price-and-shipping .discount-product {
    font-size: .875rem;
    padding: .25rem;
    background: #282828;
    color: #fff;
    border-radius: 99999px;
    width: 50px;
    display: inline
}

.product-miniature .product-description {
    position: absolute;
    bottom: 1.5rem;
    inset-inline: 1.5rem;
    height: auto;
    padding: .25rem .25rem .7rem;
    background: transparent;
}

.product-description__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-pack-size {
    width: 100px;
    height: 100px;
}

.price-with-discount-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* buttons */

.btn-primary .material-icons,
.btn-secondary .material-icons,
.btn-tertiary .material-icons {
    margin-right: 0;
}

.btn-primary,
.btn-secondary {
    font-weight: 400;
    text-transform: none;
    height: 44px;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background-color: transparent;
}

.btn {
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

.btn-flip-text {
    display: block;
    position: relative;
    transition: transform 0.325s cubic-bezier(0.66, 0, 0.34, 1);
}

.btn-flip-text::after {
    content: attr(data-text); /* pokaże ten sam tekst */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
}

.btn:hover .btn-flip-text {
    transform: translateY(-100%);
}

.btn-flip-svg {
    display: grid;
    transition: transform 0.325s cubic-bezier(0.66, 0, 0.34, 1);
}

.btn-flip-svg .icon {
    grid-area: 1 / 1;
    transition: transform 0.325s cubic-bezier(0.66, 0, 0.34, 1);
}

.btn:hover .btn-flip-svg {
    transform: translateY(-100%);
}

.add-to-cart-btn-flip-svg {
    display: inline-block;
    position: relative;
    transition: transform 0.325s cubic-bezier(0.66, 0, 0.34, 1);
}

.add-to-cart-btn-flip-svg::after {
    content: url("data:image/svg+xml;utf8,<svg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(#clip0_2665_7802)'><path d='M13.1663 21.6666H9.24031C8.52371 21.6666 7.83079 21.41 7.28694 20.9434C6.74309 20.4768 6.38423 19.8309 6.27531 19.1226L5.02031 10.9706C4.97648 10.6856 4.9948 10.3945 5.07401 10.1172C5.15323 9.83994 5.29147 9.58307 5.47925 9.36423C5.66704 9.14538 5.89993 8.96974 6.16195 8.84933C6.42398 8.72892 6.70894 8.66659 6.99731 8.66663H18.3363C18.6247 8.66659 18.9096 8.72892 19.1717 8.84933C19.4337 8.96974 19.6666 9.14538 19.8544 9.36423C20.0421 9.58307 20.1804 9.83994 20.2596 10.1172C20.3388 10.3945 20.3571 10.6856 20.3133 10.9706L20.0503 12.6786M16.6663 19.6666H22.6663M19.6663 16.6666V22.6666M9.66626 11.6666V6.66663C9.66626 5.87098 9.98233 5.10791 10.5449 4.54531C11.1075 3.9827 11.8706 3.66663 12.6663 3.66663C13.4619 3.66663 14.225 3.9827 14.7876 4.54531C15.3502 5.10791 15.6663 5.87098 15.6663 6.66663V11.6666' stroke='%23282828' stroke-linecap='round' stroke-linejoin='round'/></g><defs><clipPath id='clip0_2665_7802'><rect width='24' height='24' fill='white' transform='translate(0.666504 0.666626)'/></clipPath></defs></svg>");
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn:hover .add-to-cart-btn-flip-svg {
    transform: translateY(-100%);
}

.btn-icon {
    padding: .75rem;
    background-color: #282828;
    color: #fff;
}

.btn-icon-light {
    padding: .75rem;
    background-color: #fff;
    color: #fff;
}

.btn-large {
    height: 56px;
    padding-inline: 2rem;
}

.btn-primary {
    background-color: #282828;
    color: #fff;
}

.btn-primary:hover {
    background-color: #A27D53;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #282828;
}

.btn-secondary:hover {
    border: 1px solid #A27D53;
    color: #A27D53;
}

.btn-tertiary {
    background-color: #fff;
    color: #282828;
}

.btn-tertiary:hover {
    background-color: #A27D53;
    color: #fff;
}

.btn-ghost {
    background-color: transparent;
    border: none;
    padding: 0;
}

.btn.disabled, .btn:disabled {
    cursor: not-allowed;
    opacity: .5;
}

.btn-primary.disabled:hover, .btn-primary:disabled:hover, .btn-primary:active, .btn-primary:active:hover, .btn-primary:focus, .btn-primary:focus:hover, .btn-primary:active:focus, .btn-primary:active:focus {
    background-color: var(--black);
    border-color: transparent;
}

/* text */

@font-face {
    font-family: "Onest";
    src: url(../css/Onest-VariableFont_wght.woff2) format("woff2");
    font-weight: 100 900;
    font-display: swap;
}

body,
html {
    font-family: "Onest", sans-serif
}

.h1,
h1 {
    font-size: 2rem !important;
    line-height: 35px;
    text-transform: none;
}

.h2,
h2 {
    font-size: 1.75rem;
    line-height: 32px;
    text-transform: none;
}

.h2-small {
    font-size: 1.5rem;
    line-height: 25px;
}

.h2-medium {
    font-size: 1.5rem;
    line-height: 30px;
}

.h3,
h3 {
    font-size: 2rem;
    line-height: 35px;
}

.h3-small {
    font-size: 1.125rem;
    line-height: 22px;
}

.h3-medium {
    font-weight: 500;
}

.h3-bold {
    font-weight: 700;
}

.h3-bold, .h3-medium {
    font-size: 1.25rem;
    line-height: 24px;
}

h1,
.h1,
.h1-medium,
h2,
.h2,
.h2-small,
.h2-medium {
    letter-spacing: calc(-2 * 0.01em);
}

.text-display1 {
    font-size: 2.25rem;
    line-height: 36px;
    letter-spacing: calc(-3 * 0.01em);
}

.text-caption {
    font-size: .75rem;
    line-height: 14px;
}

.text-body {
    font-size: 1rem;
    line-height: 20px;
}

.text-body-small {
    font-size: .875rem !important;
    line-height: 16px;
}

.font-semibold {
    font-weight: 600;
}

.font-weight-thin {
    font-weight: 200;
}

.font-weight-semibold {
    font-weight: 600;
}

.text-brand-primary {
    color: #A27D53;
}

.text-white-60 {
    color: #FFFFFF99;
}

.text-inverse {
    color: #fff;
}

.text-black {
    color: var(--black) !important;
}

.text-secondary {
    color: var(--grey-300);
}

.text-tertiary {
    color: var(--grey-400);
}

.text-light {
    color: var(--grey-200);
}

.test-size {
    width: 40px;
    height: 40px;
}

.test-size2 {
    width: 25px;
    height: 25px;
}

.text-center {
    text-align: center;
}

.text-underline {
    text-decoration: underline;
}

/* newsletter */
/* ps_emailsubsciption module */

#blockEmailSubscription_displayFooterBefore {
    margin: unset;
}

.block_newsletter {
    position: relative;
    float: inherit;
    width: 100%;
    max-width: 555px;
    clear: both;
    font-size: .875rem;
    background: transparent;
    margin: unset;
}

.block-newsletter__box {
    display: grid;
    margin-top: -3rem;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 2rem;
    border: 1px solid #F2F3F7;
}

.block_newsletter #block-newsletter-label {
    font-weight: 300;
    font-size: 2.5rem;
    line-height: 42px;
    margin: 0;
}

#footer .block_newsletter p, #footer .block_newsletter .page-content.page-cms ul, .page-content.page-cms #footer .block_newsletter ul {
    padding-top: .5rem;
}

.block-newsletter__description {
    color: #A27D53;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.block-newsletter__text-input {
    color: #282828;
    font-size: 1.125rem;
    border-bottom: 1px solid #A27D53;
}

.block-newsletter form input[type=email]::placeholder {
    color: #ff0000 !important;
    opacity: 1 !important;
}

.block-newsletter form input[type=email]::-webkit-input-placeholder {
    color: #ff0000 !important;
}

.block-newsletter form input[type=email]:-ms-input-placeholder {
    color: #ff0000 !important;
}

.block-newsletter form input[type=email]::-ms-input-placeholder {
    color: #ff0000 !important;
}

.block_newsletter form input[type=email]::placeholder {
    color: #282828 !important;
}

.block_newsletter form input[type=email] {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #A27D53;
    color: #282828;
    font-size: 1.125rem;
    padding-inline: 0;
}

.block_newsletter form input {
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.footer-container li a {
    font-size: .875rem;
    line-height: 16px;
    color: var(--grey-400);
    cursor: pointer;
}

.footer-container li a:hover {
    color: #A27D53;
}

.footer-container .h3, .footer-container .h4 {
    margin-bottom: 1.25rem;
    font-size: .875rem;
    line-height: 16px;
}

.footer-container .links ul {
    margin-bottom: 0;
    background-color: transparent;
}

.footer-container .links ul > li {
    padding: 0;
    font-weight: 400;
    border-bottom: none;
}

.video {
    width: 100%;
}

.product-badges {
    display: flex;
    gap: .5rem;
    margin-bottom: .5rem;
}

.product-badge {
    padding: .5rem 1rem;
    border-radius: 99999px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .625rem;
    line-height: 10px;
}

.product-badge--category {
    background-color: #fff;
    color: #282828;
}

.product-badge--special-offer {
    background-color: #A27D53;
    color: #fff;
}

.product-badge--date {
    background-color: #3A3A3C;
    color: #CCCDD0;
}

.product-price-label {
    display: inline-block;
    max-width: 100%;
    font-size: .75rem;
    color: #95969B
}

.product-price {
    display: inline-block;
    max-width: 100%;
    font-size: 2rem;
    font-weight: 600;
    color: #282828
}

.has-discount .page-content.page-cms ul, .has-discount p, .has-discount.product-price, .page-content.page-cms .has-discount ul {
    color: #282828;
}

.has-discount .discount {
    display: inline-block;
    padding: .25rem .5rem;
    margin-left: .625rem;
    font-size: .75rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    background: #282828;
    border-radius: 99999px;
}

.product-discount .regular-price {
    margin-right: .625rem;
    font-weight: 400;
    font-size: .875rem;
    text-decoration: line-through;
}

.product-line-grid-body > .product-line-info > .label {
    padding: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: inherit;
    text-align: left;
    white-space: inherit;
}

/* product quantity input */
/* product-add-to-cart partial */

.quantity-input {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 9999px;
    padding: 0 0.75rem;
}

.quantity-input__field {
    width: 2rem;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 500;
}

.quantity-input__field:focus {
    outline: none;
    box-shadow: none;
}

.quantity-input__btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input__btn i {
    font-size: 1rem;
    line-height: 1;
    color: #333;
}

.quantity-input__btn:hover i {
    color: #000;
}

/* grid & spacing */

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: start;
}

.items-end {
    align-items: end;
}

.shrink-0 {
    flex-shrink: 0;
}

.self-end {
    align-self: end;
}

.d-grid {
    display: grid;
}

.py-0-5 {
    padding-block: .5rem;
}

.px-0-75 {
    padding-inline: .75rem;
}

.py-1-5 {
    padding-block: 1.5rem;
}

.py-2-5 {
    padding-block: 2.5rem;
}

.py-100 {
    padding-block: 100px;
}

.p-0-75 {
    padding: .75rem;
}

.p-0-625 {
    padding: .625rem;
}

.p-1-5 {
    padding: 1.5rem;
}

.p-2-5 {
    padding: 2rem;
}

.p-8 {
    padding: 2rem;
}

.p-3-75 {
    padding: 3.75rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pt-7 {
    padding-top: 7rem;
}

.inset-0 {
    inset: 0;
}

.m-auto {
    margin: auto;
}

.mx-auto {
    margin-inline: auto;
}

.mx-0-75 {
    margin-inline: .75rem;
}

.my-16 {
    margin-block: 16rem;
}

.-mt-12 {
    margin-top: -12rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mt-7-5 {
    margin-top: 7.5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-3-75 {
    margin-top: 3.75rem;
}

.mt-1-5 {
    margin-top: 1.5rem;
}

.mt-1-25 {
    margin-top: 1.25rem;
}

.mt-0-75 {
    margin-top: 1rem;
}

.mt-auto {
    margin-top: auto;
}

.mb-0-25 {
    margin-bottom: .25rem;
}

.mb-0-75 {
    margin-bottom: .75rem;
}

.-mr-8 {
    margin-right: -8rem;
}

.ml-0-75 {
    margin-left: .75rem;
}

.gap-0-75 {
    gap: .75rem;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.rounded-sm {
    border-radius: 8px;
}

.rounded-md {
    border-radius: 16px;
}

.rounded-xl {
    border-radius: 25px;
}

.rounded-2xl {
    border-radius: 50px;
}

.blend-multiply {
    mix-blend-mode: multiply;
}

.object-cover {
    object-fit: cover;
}

.product-container > :last-child {
    padding: 1.5rem;
    border-radius: 25px;
    background-color: #fff;
    border: 2px solid #D5E5F4;
}

.auth-border {
    border: 1px solid #CCCDD0;
}

.col-2 {

}

.border {
    border: 1px solid #CCCDD0;
}

/* reassurance */
/* blockreassurance module */

.blockreassurance_product {
    display: block;
}

.blockreassurance_product p.block-title {
    line-height: 16px;
    font-size: .875rem;
    font-weight: 700;
    color: #282828;
}

/* inputs */

.input-radio {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    border: 1px solid #282828
}

.input-color:checked + span,
.input-color:hover + span,
.input-radio:checked + span,
.input-radio:hover + span {
    background-color: #282828;
    color: #fff;
}

.radio-label {
    display: inline-block;
    padding: .125rem .625rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #282828;
    border-radius: 99999px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #CCCDD0;
    padding: 1.25rem;
    color: #282828;
    background-color: #fff;
    height: 44px;
}

.form-control:focus {
    color: #282828;
    background-color: #fff;
    border-color: #A27D53;
    outline: .125rem solid #A27D53;
}

.custom-checkbox input[type=checkbox] {
    position: relative;
    width: 20px;
    height: 20px;
    appearance: none;
    z-index: 2;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.custom-checkbox input[type=checkbox] + .checkbox-checkmark + svg {
    position: absolute;
    top: 0;
    left: 0;
}

.custom-checkbox input[type=checkbox] + .checkbox-checkmark {
    display: none;
    margin: auto !important;
    font-size: 1.25rem;
    color: #232323
}

.custom-checkbox input[type=checkbox]:checked + .checkbox-checkmark {
    display: block;
    position: absolute;
    top: 5px !important;
    left: 5px !important;
    z-index: 3;
    border: none;
}

.custom-radio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
    vertical-align: middle;
    cursor: pointer;
    background: #F2F3F7;
    border: #95969B 1px solid;
    border-radius: 50%;
}

.custom-radio input[type=radio]:checked + span {
    position: absolute;
    top: .25rem;
    left: .25rem;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #282828;
    border-radius: 50%;
}

.input-group .input-group-btn > .btn[data-action="show-password"] {
    position: absolute;
    right: 10%;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.input-group .form-control:not(:last-child) {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
}

.input-group.focus {
    color: #282828;
    background-color: #fff;
    border-color: #A27D53;
    outline: .125rem solid #A27D53;
    border-radius: 8px;
}

.forgotten-password .form-fields label.required {
    width: max-content;
}

.forgotten-password .form-fields .center-email-fields {
    display: flex;
    flex-direction: column;;
    gap: 1rem;
    max-width: 350px;
}

.forgotten-password .form-fields .email {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

body#checkout section.checkout-step .step-number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-left: .5rem;
    font-size: 1rem;
    vertical-align: middle;
    background-color: #282828;
    color: #fff;
    border-radius: 50%
}

body#checkout section.checkout-step .step-title {
    padding-bottom: 1.25rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    border-bottom: 1px solid #CCCDD0;
}

body#checkout section.checkout-step.-current + .checkout-step .step-title {
    padding-top: 1.25rem;
    border-top: none
}

body#checkout section.checkout-step {
    padding: 2rem;
    background-color: #F2F3F7;
    margin-top: 0.625rem;
    border-radius: 25px;
}

body#checkout section.checkout-step .not-allowed,
body#checkout section.checkout-step.-unreachable .step-title {
    cursor: not-allowed;
    opacity: 1;
}

body#checkout section.checkout-step .address-item.selected {
    background: #fff;
    border: #A27D53 3px solid;
    border-radius: 8px;
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-right: .125rem;
    color: var(--black);
    cursor: pointer;
}

body#checkout section.checkout-step .step-edit {
    font-weight: 400;
    text-transform: lowercase;
}

body#checkout section.checkout-step.-reachable.-current .step-number {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: .65rem;
    font-size: 1rem;
    color: #fff;
    vertical-align: middle;
    background-color: #A27D53;
    border: 0;
    border-radius: 50%;
}

.page-not-found .search-widget form, .search-widget, body#checkout section.checkout-step.-reachable.-complete h1 .done {
    display: inline-flex;
}

body#checkout section.checkout-step .address {
    margin-left: 1.563rem;
    font-weight: 400;
}

body#checkout section.checkout-step .edit-address, body#checkout section.checkout-step .delete-address, body#checkout section.checkout-step .edit-address {
    display: inline-flex;
    align-items: center;
    margin: 0 .3125rem;
    color: var(--black);
}

.card {
    background-color: transparent;
    border-radius: 25px;
}

.cart-grid-body .card-block h1 {
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 400
}

body#checkout .cart-grid-right .card {
    border: 1px solid #3A3A3C;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body#checkout a:hover {
    color: #A27D53;
}

.col-md-8.no-margin {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: calc(66.66667% + 30) !important; /* dodaje szerokość usuniętego marginesu */
}

.cart-products-count {
    position: absolute;
    right: -4px;
    text-align: center;
    top: -4px;
    font-weight: 600;
    font-size: .625rem;
    color: #fff;
    background-color: #282828;
    border-radius: 9999999px;
    padding: .25rem;
    height: 16px;
    min-width: 16px;
    line-height: 100%;
    vertical-align: middle;
}

/* .blockcart .cart-preview .active {
    position: relative;
} */

.relative {
    position: relative;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total .value {
    font-size: 2rem;
}

#product #block-reassurance span,
.card-block.cart-summary-totals .cart-summary-line.cart-total .label,
.card-block.cart-summary-totals .cart-summary-line.cart-total .value {
    font-weight: 600;
    color: #A27D53;
}

.product-line-grid-right .cart-line-product-actions, .product-line-grid-right .product-price {
    line-height: 36px;
    font-size: 1.125rem;
    color: #232323;
}

a, a:hover, a:focus {
    color: #A27D53;
}

.progress {
    display: block;
    width: 100%;
    height: 5px;
    margin-bottom: 1rem;
    border-radius: 99999px;
    background-color: #CCCDD0;
}

.progress-bar {
    height: 100%;
    -webkit-transition: .25s ease-out;
    transition: .25s ease-out;
    border-radius: 999999px;
}

.page-customer-account #content .forgot-password {
    padding-bottom: 1rem;
    margin-top: 1rem;
    font-size: .875rem;
    text-align: right;
}


.page-customer-account #content .forgot-password a,
.page-customer-account #content .no-account a {
    font-size: .875rem;
    color: #282828;
    text-decoration: underline;
}

.home-blog {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
}

.home-blog__title {
    grid-column: 7 /9;
    grid-row: 2/2;
    margin-top: auto;
}

.home-blog__description {
    grid-column: 7 /10;
    grid-row: 1/2;
}

.home-blog__first-article {
    grid-column: 1 /7;
    grid-row: 1/4;
}

.home-blog__second-article {
    grid-column: 7 /10;
    grid-row: 3/5;
}

.home-blog__third-article {
    grid-column: 10 /13;
    grid-row: 2/4;
}

.home-blog__article-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.home-blog__article-date {
    border-radius: 99999px;
    border: 1px solid #FFFFFF4D;
    backdrop-filter: blur(20px);
    padding: .5rem .75rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.home-blog__article-description {
    font-weight: 500;
    font-size: .825rem;
    color: #fff;
    opacity: .6;
}

.blog-post {
    position: relative;
    overflow: hidden;
}

.blog-post::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */

    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));

    /* temp solution */
    border-radius: 0 0 25px 25px;
}

/* contact form/info */
/* contactform and ps_contactinfo modules */

.contact-rich {
    color: #7a7a7a;
    word-wrap: break-word;
    border-radius: 25px;
    background-color: #F2F3F7;
    padding: 1.5rem;
    height: 100%;
}

.contact-rich h4 {
    margin-bottom: 1.25rem;
}

.contact-rich .block {
    display: flex;
    align-items: start;
    height: auto;
    overflow: hidden;
}

.contact-rich .block a[href^="mailto:"] {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 24px;
    clear: both;
}

.contact-rich .block .data a {
    color: #A27D53;
}

.contact-rich .block .icon {
    float: left;
    width: 2.5rem;
}

.contact-form {
    width: 100%;
    padding: 1.5rem;
    color: #282828;
    background: #fff;
    border: 1px solid #CCCDD0;
    border-radius: 25px;
}

.contact-form h3 {
    color: #282828;
    text-transform: none;
    text-align: center;
}

textarea.form-control {
    height: 100px;
}

/* sliders */

.my-slider-wrapper {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
}

.reels-slider {
    align-items: flex-end;
}

.keen-slider__arrow {
    border: 1px solid #CCCDD0;
    padding: .625rem;
    border-radius: 99999px;
    cursor: pointer;
}

.keen-slider__arrow-icon-vertical {
    rotate: 90deg;
}

.reels-slider__arrows {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 8rem;
}

.reels-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    backdrop-filter: blur(20px);
    border: 1px solid #FFFFFF33;
}

.reels-slider__arrow-prev {
    left: 2rem;
}

.reels-slider__arrow-next {
    right: 2rem;
}

.reels-slider__slide {
    width: 150px;
    height: 380px;
}

.reels-slider__slide.active {
    height: 585px;
    z-index: 3;
}

.reels-slider__slide.adjacent {
    height: 450px;
    z-index: 2;
}

#weekpromo-slider {
    max-width: 800px;
    aspect-ratio: 1/1;
}

.weekpromo-slider__slide {
    min-height: 100%;
}

.pack-slider__slide {
    height: auto;
    width: 325px !important;
    min-width: 325px !important;
    max-width: none;
!important;
}

.product-slider__slide {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.hero__slider:not([data-keen-slider-disabled]) {
    border-radius: 50px;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    align-content: flex-start;
    align-items: end;
    display: flex;
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -khtml-user-select: none;
    width: 100%;

}

.hero__slider-slide {
    width: 100%;
    height: 700px;
}

.hero__slider-arrows {
    position: absolute;
    display: flex;
    right: 40px;
    bottom: 32px;
    gap: .5rem;
}

.hero__slider-arrow {
    border-radius: 999999px;
    padding: 1rem;
    border: 1px solid #fff;
    color: #fff;
}

.hero__left-column h1 {
    color: #282828;
    line-height: 35px;
}

.hero__left-column p {
    color: #282828;
}

.hero__left-column .tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.hero__left-column .tags .white {
    background: #FFF;
    color: #232323;;
}

.hero__left-column .tags .gold {
    background: #99774F;
    color: #FFF;
}

.hero__left-column .tags .item {
    text-transform: uppercase;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    border-radius: 1000px;
}

/* dialog */

.dialog {
}


.dialog__overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
}


.dialog--open .dialog__overlay {
    display: flex
}

.dialog__content.container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
    max-width: 640px;
    width: 100%;
    max-height: calc(100vh - 4rem);
    overflow: auto;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.dialog__title {
    font-size: 1.125rem;
    font-weight: 700
}

.dialog__close {
    background: transparent;
    border: 0;
    font-size: 1rem;
    cursor: pointer;
    padding: .25rem .5rem;
    border-radius: 8px
}

.dialog__close:focus {
    outline: 3px solid rgba(0, 0, 0, .08)
}

.dialog__body {
    color: #6b7280;
    line-height: 1.45;
    padding-top: .25rem
}

.dialog__footer {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    padding-top: .25rem
}

/* Small screens tweak */
@media (max-width: 420px) {
    .dialog__content.container {
        padding: .75rem;
        border-radius: 10px
    }
}

svg {
    display: block;
}

.hero {
    display: flex;
}

.hero__left-column {
    padding: 2.5rem;
    background-color: #F8EADB;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.color-category-universal {
    color: #F8EADB;
}

.bg-brand-primary {
    background-color: #A27D53;
}

.bg-secondary {
    background-color: var(--grey-100);
}

.bg-default {
    background-color: #fff;
}

.bg-scent-grapefruit {
    background-color: #FF5863;
}

.color-category-bathroom {
    color: #D5E5F4;
}

.color-category-kitchen {
    color: #D3E0DB;
}

.bg-category-bathroom {
    background-color: #D5E5F4 !important;
}

.bg-category-kitchen {
    background-color: #D3E0DB !important;
}

.bg-category-floors {
    background-color: #E8DBE9 !important;
}

.bg-category-special {
    background-color: #E5E5E5 !important;
}

.bg-category-sets {
    background-color: #F1DEDE !important;
}

.bg-category-universal {
    background-color: #F8EADB !important;
}

.bg-inverse {
    background-color: var(--black);
}

.bg-icon-bathroom {
    background-color: #2D89DE !important;
}

.bg-icon-kitchen {
    background-color: #46A380 !important;
}

.bg-icon-floors {
    background-color: #B45CBB !important;
}

.bg-icon-universal {
    background-color: #C98032 !important;
}

.bg-icon-special {
    background-color: #484848 !important;
}

.bg-icon-sets {
    background-color: #CC6B6B !important;
}

.color-icon-universal {
    color: #C98032;
}

.color-icon-kitchen {
    color: #46A380;
}

.contact-form .form-group {
    margin-bottom: 5px;
    margin-top: 0px;
}

.policy-label {
    display: flex;
    align-items: flex-start; /* checkbox wyrównany do góry tekstu */
    gap: 8px; /* odstęp między checkboxem a tekstem */
    text-align: left;
}

.policy-label p {
    margin: 0;
    font-size: 11px;
    line-height: 11px;
    color: #232323;
}

.blog-post-header-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1390px) minmax(0, 1fr);
    width: 100%;
}

.blog-post-header {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 1fr);
    width: 100%;
    height: 900px;
}

.blog-post-header__img {
    grid-column: 1 /9;
    grid-row: 1/7;
    object-fit: cover;
}

.blog-post-header__title-box {
    background-color: #282828;
    grid-column: 8 /13;
    grid-row: 3/6;
    padding: 2.5rem;
}

.blog-content {
    max-width: 900px;
}

.blog-content > img {
    margin-inline: 0;
}

.breadcrumb {
    padding: 1.25rem 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: 0
}

.breadcrumb ol {
    margin-left: 0px;
    padding-left: 0px;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li::after {
    margin: .5rem;
    color: var(--grey-400);
    content: "/";
}

.breadcrumb li:last-child {
    margin: 0;
    color: var(--grey-400);
    content: "/";
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    color: #95969B;
}

.section-title {
    max-width: 900px;
}

.section-description {
    max-width: 670px;
}

@media (min-width: 1200px) {
    .container {
        width: 1390px;
        max-width: 100%
    }

    .benefit-badge__red {
        left: 30rem !important;
        top: 30px;
    }

    .benefit-badge__blue {
        top: 3rem;
        right: 15rem !important;
    }

    .benefit-badge__green {
        bottom: 3rem;
        left: 20rem !important;
    }

    .benefit-badge__yellow {
        bottom: 0;
        right: 25rem !important;
    }

}

@media (min-width: 768px) {
    .divide-x-md-up > *:not(:last-child) {
        border-right: 1px solid #CCCDD0;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .divide-x-between-md-up {

    }

    .contact-form {
        padding: 25px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .contact-rich {
        padding: 3.75rem;
    }

    .contact-rich .block a[href^="mailto:"] {
        font-size: 1.75rem;
        line-height: 30px;
    }

    .flex-col-md-up {
        flex-direction: column !important;
    }

    .benefit-badge {
        width: 140px !important;
        height: 140px !important;
    }

    .benefit-badge__red {
        left: 20rem !important;
    }

    .benefit-badge__blue {
        top: 3rem;
        right: 10rem !important;
    }

    .benefit-badge__green {
        bottom: 3rem;
        left: 10rem !important;
    }

    .benefit-badge__yellow {
        bottom: 0;
        right: 20rem !important;
    }

    .reels-slider__arrow {
        top: 8rem;
        border-color: #282828;
        color: #282828;
    }

    .justify-between-md-up {
        justify-content: space-between;
    }

    .justify-end-md-up {
        justify-content: end;
    }

    .p-md-5 {
        padding: 5rem;
    }

    .mt-7-5-md-up {
        margin-top: 7.5rem;
    }

    .absolute-md-up {
        position: absolute;
    }

    .text-display1 {
        font-size: 4rem;
        line-height: 60px;
    }

    .h1,
    h1 {
        font-size: 3rem;
        line-height: 50px;
    }

    .h2-small {
        font-size: 2rem;
        line-height: 35px;
    }

    .h2-medium {
        font-size: 2.25rem;
        line-height: 40px;
    }

    .h2,
    h2 {
        font-size: 2.5rem;
        line-height: 42px;
    }

    .h3-bold, .h3-medium {
        font-size: 1.75rem;
        line-height: 30px;
    }

    .product-container > :last-child {
        padding: 2.5rem;
        border-radius: 50px;
    }

    .test-size {
        width: 67px;
        height: 67px;
    }

    .test-size2 {
        width: 43px;
        height: 43px;
    }

    .blog-content > * {
        margin-inline: 7.1875rem;
    }

    .blog-post-header {
        gap: 1.25rem;
    }

    #header .header-top {
        padding: 1rem 2.5rem;
    }

    .about-us-product {
        width: 806px !important;
        height: 806px !important;
        right: -10rem !important;
        top: -10rem !important;
    }

    .about-us__right-column {
        height: 854px !important;
        padding: 3.75rem !important;
    }

    .top-md-4-25 {
        top: 4.25rem;
    }

    .hero__left-column {
        height: 700px;
    }

    .header-color {
        height: 900px;
    }

    .block-newsletter__box {
        margin-top: -15rem;
    }
}

@media (min-width: 576px) {
    .justify-end-sm-up {
        justify-content: end;
    }
}

@media (min-width: 992px) {
    .home-blog {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(4, 1fr);

    }
}

@media (max-width: 1390px) {
    .blog-post-header {
        height: auto;
        min-height: 900px;
    }
}

@media (min-width: 1390px) {
    .absolute-xl-up {
        position: absolute;
    }

    .top-xl-1 {
        top: 1rem;
    }

    .left-xl-25 {
        left: 25rem;
    }

    .benefit-badge__red {
        left: 50rem !important;
    }
}

.about-us-product {
    width: 419px;
    height: 419px;
    right: -5rem;
    position: absolute;
    top: -10rem;
}

.about-us__right-column {
    height: 503px;
    justify-content: flex-end;
    flex-direction: column;
    padding: 1rem;
}

@media (max-width: 768px) {
    .weekpromo-leaf {
        width: 450px !important;
        max-width: 450px !important;
    }

    .about-us__first__blue {
        left: 3rem !important;
        right: auto !important;
    }

    .about-us__first__red {
        left: -10rem !important;
        right: auto !important;
    }

    .about-us__first__green {
        left: 3rem !important;
        right: auto !important;
    }

    .about-us__first__yellow {
        left: -10rem !important;
        right: auto !important;
    }

    .size-3-25-down {
        width: 52px;
        height: 52px;
    }

    .text-center-md-down {
        text-align: center;
    }

    .mt-6-25-md-up {
        margin-top: 6.25rem;
    }

    .mt-8-md-down {
        margin-top: 8rem;
    }

    .mt-2-md-down {
        margin-top: 2rem;
    }

    .p-1-5-md-down {
        padding: 1.5rem;
    }

    .blog-post-header img {
        border-radius: 0;
    }

    .blog-post-header__title-box {
        border-radius: 0 0 24px 24px;
    }

    .justify-end-md-down {
        justify-content: flex-end;
    }

    .flex-col-md-down {
        flex-direction: column !important;
    }

    .flex-col-reverse-md-down {
        flex-direction: column-reverse !important;
    }

    .d-flex-md-down {
        display: flex;
    }
}


.bootstrap-touchspin {
    position: relative;
    padding-left: 32px;
    padding-right: 32px;

}

.bootstrap-touchspin .btn-touchspin {
    background: transparent;

}

.product-quantity #quantity_wanted {
    background: transparent !important;
}

#quantity_wanted, .bootstrap-touchspin input.js-cart-line-product-quantity, .input-group-btn-vertical .btn {
    border: none;
}

#quantity_wanted, .js-cart-line-product-quantity {
    width: 40px !important;
    height: 50px !important;
    text-align: center;
    margin-left: -1px;
    font-size: 20px;
    font-weight: 700;
}

.input-group-btn-vertical {
    position: absolute !important;
    left: 0;
    display: flex !important;
    gap: 38px;
}

.input-group-btn-vertical .btn {
    height: 50px;
    margin: 0 !important;
}

.input-group-btn-vertical .btn i {
    top: 50%;
    transform: translateY(-50%);
    color: transparent;
}

.bootstrap-touchspin-up::before, .bootstrap-touchspin-down::before {
    color: black;
    font-size: 20px;
    font-weight: 700;
}

.bootstrap-touchspin-up::before {
    content: '+';
}

.bootstrap-touchspin-down::before {
    content: '-';
}

.bootstrap-touchspin-up {
    border-bottom-left-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.bootstrap-touchspin-down {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

/* override classes to allow collapsable facets on desktop */
/* ps_facetedsearch module */

#category #left-column #search_filters .facet .title .collapse-icons .facet-collapse-remove,
#category #left-column #search_filters .facet .title[aria-expanded=true] .collapse-icons .facet-collapse-add {
    display: none
}

#category #left-column #search_filters .facet .collapse.in,
#category #left-column #search_filters .facet .title[aria-expanded=true] .collapse-icons .facet-collapse-remove {
    display: block
}

.title .collapse-icons .custom-collapse-remove,
.title[aria-expanded=true] .collapse-icons .custom-collapse-add {
    display: none
}

#search_filters .navbar-toggler {
    display: none;
}

.title[aria-expanded=true] .collapse-icons .custom-collapse-remove {
    display: block
}

/*#category #left-column #search_filters .facet .collapse {*/
/*    display: none*/
/*}*/

#category #left-column #search_filters .facet .navbar-toggler {
    display: inline-block;
    height: inherit;
    padding: 0
}

.block-category h1 {
    margin-bottom: .75rem;
    font-size: inherit;
}

#search_filters .facet, #search_filters_brands .facet, #search_filters_suppliers .facet {
    padding-block: 1.5rem;
}

/* active filters */
/* ps_facetedsearch module */

.active_filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0;
    margin-bottom: 1.25rem;
    background: transparent;
}

.active_filters ul {
    margin: 0;
}

.active_filters .filter-block {
    display: inline-block;
    padding-inline: .75rem;
    padding-block: .25rem;
    font-size: .875rem;
    color: #fff;
    background: #282828;
    margin: 0;
}

.active_filters .filter-block .close {
    margin-top: .1875rem;
    margin-left: .3125rem;
    font-size: .9375rem;
    color: #FFFFFF4D;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--black);
    padding-block: .5rem
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content:hover {
    animation: none;
}

.marquee-content span {
    padding-right: 80px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Flex wrapper to repeat content */
.marquee-content-wrapper {
    display: flex;
    width: max-content;
}

.home-category:hover .category-particle {
    display: block;
}

.category-particle {
    position: absolute;
    z-index: 2;
    display: none;
}

#category-description {
    max-width: 50%;
}

@media (max-width: 768px) {
    #category-description {
        max-width: 100%;
    }
}

.bigger {
    right: 0;
    top: 0;
}

.smaller {
    left: 0;
    bottom: 0;
}

.image-comparison {
    max-width: 555px;
    border-radius: 20px;
    overflow: hidden;
}

.image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-comparison .images-container {
    position: relative;
    display: flex;
}

.image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
}

.image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #A27D53;
    left: 50%;
    transform: translateX(-50%);
}

.image-comparison .slider-icon {
    background-color: #A27D53;
    border-radius: 9999999px;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
    transform: translate(-50%, -50%) rotateZ(90deg);
}

.image-comparison .slider-icon svg {
    width: 30px;
    height: 30px;
    margin-top: 3px;
    margin-left: 3px;
}

.divide > *:first-child {
    border-top: 1px solid #CCCDD0;
}

.divide > * {
    border-bottom: 1px solid #CCCDD0;
}

.divide-between > *:not(:first-child) {
    border-top: 1px solid #CCCDD0;
}

.divide-x > *:not(:last-child) {
    border-right: 1px solid #CCCDD0;
}

#blockcart-modal {

}

#blockcart-modal .modal-dialog {
    position: absolute;
    margin: 0;
    right: 0;
    max-width: 480px;
    height: 100%;
}

#blockcart-modal .modal-content {
    height: 100%;
}

#blockcart-modal .modal-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

#blockcart-modal .cart-content {
    padding-left: 0;
}

#blockcart-modal .cart-content p.product-total {
    padding: 0.5rem;
    background-color: transparent;
    border-top: 1px solid #CCCDD0;
}

.modal-header::after {
    content: none;
}

.benefit-badge {
    position: absolute;
    width: 114px;
    height: 114px;
    z-index: 5;
}

.benefit-badge__red {
    left: -1rem;
}

.benefit-badge__blue {
    top: 3rem;
    right: -1rem;
}

.benefit-badge__green {
    bottom: 3rem;
    left: -1rem;
}

.benefit-badge__yellow {
    bottom: 0;
    right: -1rem;
}

#top_sub_menu_15142 {
    top: 65px !important;
}

.custom-popover {
    position: absolute;
    top: 65px;
    /*left: -20px;*/
    z-index: 1060;
    display: block;
    max-width: 921px;
    /*padding: 1px;*/
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0 0 25px 25px;
}

.top-menu .sub-menu {
    z-index: 18;
    width: initial;
    min-width: initial;
    margin-left: 0.9375rem;
    visibility: hidden;
    border: none;
    box-shadow: 2px 1px 11px 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.top-menu a:not([data-depth="0"]) {
    display: block;
    padding: .625rem;
    font-weight: 400;
    color: #7a7a7a;
}

#mobile_top_menu_wrapper .top-menu a[data-depth="0"] {
    padding: 0.625rem;
    border-bottom: 1px solid #CCCDD0;
}

.page-my-account #content .links a span.link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 1.5rem;
    background-color: #D5E5F4;
}

#field-id_country,
.form-control-select{
    padding: 10px !important;
}

.page-my-account #content .links a {
    display: inline-block;
    padding: 0 .9375rem;
    margin-bottom: 1.875rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    text-align: start;
    text-transform: none;
}

body#checkout section.checkout-step .delivery-options .delivery-option {
    min-height: 80px;
    padding: .9375rem 0;
    margin-bottom: .9375rem;
    background: #fff;
}


.row-no-clear::after {
    clear: initial !important;
}

.home-category:hover .category-anim {
    transform: translateX(-50%) translateY(-25px) !important;
}

.thumbnail-container .product-thumbnail img {
    transition: transform 0.4s ease;
    transform: scale(1);
}

.product-miniature:hover .thumbnail-container .product-thumbnail img {
    transform: scale(1.10); /* delikatne przybliżenie */
}

.thumbnail-container .product-thumbnail {
    overflow: hidden;
    border-radius: 8px; /* opcjonalnie */
}

#products .products {
    justify-content: center;
    gap: 1%
}

#products .products .product {
    width: 32%;
}

@media (max-width: 768px) {
    #products .products .product {
        width: 98%;
        margin-left: 1%;
        margin-right: 1%;
    }
}

#mobileMenuList{
    margin-top: 20px;
}

#mobileMenuList a{
    width: 100%;
    float: left;
    text-transform: uppercase;
    border-bottom: 1px solid #CCCDD0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

#mobileMenuList a:last-child{
    border-bottom: 0px;
}

#mobileMenuList a.cat{
    padding-left: 15px;
    text-transform: none;
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: 0px;
    font-size: 14px;
}

#products .products .product .product-miniature {
    display: block !important;
}

.productdescp p {
    color: #232323;
    font-size: 16px;
}

#topMenu {
    display: block;
    margin-top: 15px;
}

.carousel-inner{
    min-height: 700px;
}

@media (max-width: 767px) {
    #topMenu {
        display: none;
    }

    .carousel-item.active .col-md-8.no-margin{
        display: none;
    }

    .carousel-inner{
        min-height: 200px;
    }
}

#menu-icon {
    display: none;
}

@media (max-width: 767px) {
    #menu-icon {
        display: block;
    }
}

#topMenu ul li a {
    font-family: "Onest", sans-serif !important;
    color: #232323 !important;
    text-transform: uppercase;
}


#topMenu ul li a {
    display: flex;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}

#topMenu ul li a:hover {
    color: #9B7952 !important;
}

#topMenu ul li a svg {
    margin-left: 5px;
}

#topMenu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#topMenu #submenu{
    display: none;
    position: absolute;
    padding-top: 33px;
}

#topMenu .opensubmenu:hover > #submenu{
    display: block;
}

#topMenu .subcontent{
    background: #FDFDFD;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 5px 40px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#topMenu .subcontent .title{
    color: #9B7952;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 16px;
}

#topMenu .subcontent .categoryList{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
}

#topMenu .subcontent .categoryList a{
    text-transform: none;
    font-size: 15px;
}

#topMenu .subcontent .all{
    font-size: 12px;
    text-decoration: underline;
    text-transform: none;
}

#topMenu .subcontent .cat_main{
    display: flex; flex-direction: column; justify-content: space-between; padding: 24px;
    padding-bottom: 24px;
    min-width: 280px;
}

#topMenu .subcontent .promo{
    border-left: 1px solid #C7C8CB;
    margin-top: 24px;
    min-width: 240px;
    max-width: 250px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
}

#topMenu .subcontent .promo .title{
    color: #232323;
    font-size: 20px;
    font-weight: 200;
    text-transform: none;
}

#topMenu .subcontent .promo .bottom div{
    color: #232323;
    font-weight: 200;
}

#topMenu .subcontent .promo .prod{
    max-width: 180px;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
}

#topMenu .subcontent .promo .prod .prod_top{
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

#topMenu .subcontent .promo .prod .prod_content svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#topMenu .discount{
    background: #000;
    right: 0;
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 2000px;
    padding: 5px;
}

#topMenu .cat{
    background: #F3F3F3;
    right: 0;
    color: #232323;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 2000px;
    padding: 5px;
    padding-left:15px;
    padding-right:15px;
}

#topMenu .subcontent .zestaw{
    max-width: 300px;
    padding-left: 24px;
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    overflow: hidden;
    border-radius: 0px 0px 20px 0px;
    display: flex; flex-direction: column; justify-content: space-between;
}

#topMenu .subcontent .zestaw .title{
    color: #232323;
    font-size: 20px;
    font-weight: 200;
    text-transform: none;
}

#topMenu .subcontent .zestaw .bottom div{
    color: #232323;
    font-weight: 200;
}

#topMenu .subcontent .zestaw .prod{
    max-width: 250px;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
}

#topMenu .subcontent .zestaw .prod .prod_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media (min-width: 1024px){
    section#ambasador .container > div > div{
        flex:1 1 calc(50% - 15px) !important;
        max-width:calc(50% - 15px) !important;
    }
}
