:root {
    --cornero-black: #222;
    --cornero-black-hover: #181818;
    --blue-accent: #422f28;
    --ivory: #f9f7f5;
    --cornero-red: #dc2626;
    --cornero-red-hover: #bf1515;
    --cornero-green: #28a745;
    --cornero-green-hover: #159745;
    --cornero-border-light: #ded8d4;
    --gray: #666;

    --page-width: 1650px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Figtree, sans-serif;
    font-size: 1rem;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary:disabled.focus,
.btn-primary:disabled:focus {
    background-color: var(--blue-accent);
    border-color: transparent;
}

#wrapper {
    min-height: calc(110vh - 400px);
    padding-top: 40px;
    background: var(--ivory);
}

#index #wrapper,
#product #wrapper {
    padding-top: 0;
}

#checkout #wrapper {
    flex: 1;
}

#checkout main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body#checkout a {
    color: var(--blue-accent);
}
body#checkout a:hover {
    color: var(--cornero-black);
}

.brands-sort .select-list:hover,
.products-sort-order .select-list:hover,
.suppliers-sort .select-list:hover {
    color: var(--ivory);
    text-decoration: none;
    background: #3d2a23;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinnerAnimate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

body:has(.mobile-menu-overlay.active) {
    overflow: hidden;
}

.btn.btn-primary {
    height: 40px;
    border-radius: 10px;
    background: var(--blue-accent);
    color: var(--ivory);
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
}

.btn.btn-primary > i {
    display: flex;
    align-items: center;
}

.btn-primary:active:focus,
.btn.btn-primary:hover {
    background: #3d2a23;
    color: var(--ivory);
}

a {
    background-color: transparent;
    color: var(--blue-accent);
    text-decoration: none;
}
a:active,
a:hover {
    background-color: transparent;
    color: #3d2a23;
    text-decoration: none;
}

.page-header {
    margin-bottom: 0 !important;
}

.form-control.atc_qty {
    width: 70px;
    border: 1px solid #cecece;
    text-align: center;
    position: relative;
    padding: 0;
    height: 26px;
    border-radius: 0;
    background: transparent;
}

#products .thumbnail-container {
    border-radius: inherit;
    margin-bottom: 3px;
}

.atc_spinner {
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

a,
.btn {
    transition: 0.05s !important;
}

.container > .row {
    margin: 0;
}

.custom-text-content p {
    padding-top: 0.1rem !important;
    margin: 0;
    padding-bottom: 1.5rem;
}

.add-to-cart-wrapper-product {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 5px;
    height: 100px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.add-to-cart-wrapper-product .add-to-cart i {
    margin: 0;
}

.details-my .tabs {
    width: 100%;
}

.products-section-title {
    text-align: left !important;
}

#category #wrapper {
    background: var(--ivory);
}

.banner .img-fluid {
    width: 1400px;
}

#custom-text {
    text-align: left;
    padding: 0;
}

.carousel .carousel-inner {
    max-height: 590px;
    height: fit-content;
}

#header {
    box-shadow: none;
}

#search_widget form i {
    position: static;
    padding: 0;
}

#header .header-nav .user-info {
    margin: 0;
    width: fit-content;
}

#header .header-nav .cart-preview.active i {
    color: var(--cornero-black);
}

.product-miniature .variant-links {
    top: 25px;
}

.product-miniature .highlighted-informations {
    background: none;
}

#product table {
    width: 100%;
    border-collapse: collapse;
}

#product table td {
    padding: 10px;
    border: 1px solid var(--cornero-border-light);
    width: 50%;
}

#product table tr td:nth-child(1) {
    color: #666;
    font-weight: bold;
}

#product table tr td:nth-child(2) {
    color: var(--cornero-black);
}

#product .tab-content div {
    width: 100%;
}

#product .tab-content div p:last-child {
    margin: 0;
}

.add-to-cart-wrapper-product .atc_div {
    display: flex;
}

.qty_inc,
.qty_dec {
    border: 1px solid #cecece;
    height: 100%;
    display: grid;
    place-items: center;
    cursor: pointer;
    width: 28px;
}

.qty_inc {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.qty_dec {
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.qty_inc svg,
.qty_dec svg {
    fill: #7a7a7a;
    height: 100%;
}

.js-product .variant-qty,
.js-product .out-of-stock-qty {
    display: none !important;
}

.btn.out-of-stock {
    background: transparent;
    color: var(--cornero-black);
    border-color: var(--cornero-black);
}

.btn.out-of-stock svg {
    fill: var(--cornero-black);
}

.btn.out-of-stock:hover svg {
    fill: var(--ivory);
}

.product-miniature .product-flags li.product-flag,
.product-flags li.product-flag {
    font-size: 14px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    min-width: 2rem;
    min-height: 1.2rem;
    margin: 0;
    background: var(--ivory);
    border: 1px solid var(--cornero-black);
    color: var(--cornero-black);
    text-transform: capitalize;
}

.product-flags li.product-flag.discount,
.product-flags li.product-flag.discount-amount,
.product-flags li.product-flag.discount-percentage {
    background-color: var(--blue-accent);
    border: none;
    color: var(--ivory);
}

#subcategories ul li .subcategory-name:hover,
.block-categories .arrows .arrow-down:hover,
.block-categories .arrows .arrow-right:hover,
.block-categories .collapse-icons .add:hover,
.block-categories .collapse-icons .remove:hover,
.cart-grid-body a.label:hover {
    color: var(--blue-accent);
}

.add-to-cart span {
    font-size: 15px;
}

.add-to-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.products .wishlist-button-add {
    display: none;
}

.product-flags {
    flex-direction: row;
    left: 50%;
    translate: -50%;
    padding: 0;
    gap: 4px;
}

#product .product-flags {
    max-width: 100%;
    margin: 0 auto;
    position: static;
    translate: 0;
}

.layer {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45) !important;
}

.tab-content ul {
    list-style-type: disc;
    padding-left: 15px;
}

.product-miniature .product-title {
    height: fit-content;
    margin: 0;
}

#_desktop_contact_link {
    display: none !important;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
}

.logo-row {
    min-width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
}

body#checkout #header .header-nav .logo {
    width: auto;
    max-height: 200px;
    padding: 4px 0;
}

.logo-row .mobile-nav-toggle {
    position: absolute;
    right: 15px;
    top: calc(40% - 2px);
    transform: translateY(-50%);
}

.logo-row .logo {
    max-width: 300px !important;
    transition: all 0.2s;
}

#header .header-nav {
    max-height: 500px;
    border-bottom: 1px solid var(--cornero-border-light);
    box-shadow: var(--cornero-box-shadow);
}

body#checkout #header .header-nav {
    padding: 16px 0 !important;
}

#my-search-button {
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.header-top {
    padding: 0 20px !important;
    top: 75px;
}

.toggled {
    top: 0 !important;
}

.sticky .logo {
    max-height: 48px !important;
    transition: all 0.2s !important;
}

#sticky-header {
    background: #fff;
    transition: all 0.2s;
    z-index: 20000 !important;
}

.custom-category-nav .nav-link {
    padding: 16px 0 !important;
    font-size: 14px !important;
    gap: 2px !important;
}

#search_widget {
    margin-bottom: 0;
}

.clear-btn {
    background-color: var(--ivory) !important;
    cursor: pointer;
    font-size: 14px;
    height: 40px;
    border: inherit;
    border-radius: 10px;
    display: grid;
    place-items: center;
    width: 40px;
}

.clear-btn svg {
    fill: #7a7a7a;
    margin: 0 !important;
}

#product #qty_form {
    display: flex;
    min-width: fit-content;
    height: fit-content;
    max-width: 25%;
}

#product .atc_qty,
#product #qty_form .qty_buttons {
    height: 40px !important;
}

#product .wishlist-button-add {
    position: absolute;
    right: 0;
    box-shadow: none !important;
    border: 1px solid var(--cornero-border-light);
    z-index: 2;
    border-radius: 50% 10px 50% 50%;
    top: 0;
}

#product .wishlist-button-add i {
    color: var(--cornero-black);
}

#product .product-add-to-cart .control-label {
    display: none;
}

#product .product-variants-item .control-label {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

#product .current-price-value {
    font-size: 36px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

#product .my-add-to-cart {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
    gap: 8px;
}

#add-to-cart-or-refresh {
    position: relative;
}

#product .product-information .product-description {
    height: fit-content;
    min-height: 10px;
}

#product .product-information {
    border-bottom: 1px solid var(--cornero-border-light);
    padding-bottom: 24px;
}

.nav-tabs .nav-link {
    padding: 5px !important;
}

.details-my {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.carousel .carousel-item figure {
    width: 100%;
}

.variant-product {
    border-radius: 20px;
    color: var(--ivory);
    background-color: var(--cornero-black);
    border-color: rgba(0, 0, 0, 0);
}

.form-fields .form-group.row:has([for="field-company"]),
.form-fields .form-group.row:has([for="field-vat_number"]),
.form-fields .form-group.row:has([for="field-address2"]),
.form-fields .form-group.row:has([for="field-alias"]) {
    display: none !important;
}

#footer,
#checkout {
    padding: 0 !important;
}

#footer {
    border-top: 1px solid var(--cornero-border-light);
}

#checkout #footer {
    border-top: none;
}

#checkout #_mobile_logo {
    margin: 5px 0 0 5px;
}

.media-body .product-name a,
.js-show-details:hover {
    color: var(--cornero-black) !important;
}

#my-modal .cart-content .cart-content-btn .btn {
    border-radius: 20px;
}

#cart .js-cart-detailed-actions .btn {
    border-radius: 10px;
    justify-content: center;
    text-transform: none;
    padding: 12px;
}

.order .row .col-xs-2.text-xs-right {
    display: flex;
}

body#checkout,
section.checkout-step,
.delivery-options,
.delivery-option:nth-child(1) {
    border-radius: 10px 10px 0 0;
}

body#checkout,
section.checkout-step,
.delivery-options,
.delivery-option:nth-last-child(-n + 3) {
    border-radius: 0 0 10px 10px;
}

.js-search-input {
    height: 100%;
}

h1:has(.logo) {
    width: fit-content;
    margin-bottom: 0;
}

.customnav {
    min-height: 1px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    padding: 4px 0;
}

.logo {
    max-width: 100px !important;
    height: auto;
    width: auto;
}

.login {
    position: relative;
}

.login-overlay {
    position: absolute;
    width: 200px;
    right: -1px;
    top: 28px;
    border-radius: 20px;
    height: 400px;
    background: var(--ivory);
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    border: none;
}

.login:hover .login-overlay {
    max-height: 400px;
    border: 1px solid var(--cornero-border-light);
}

.product-title,
.product-price-and-shipping {
    text-align: left !important;
    font-size: 18px;
    color: var(--cornero-black) !important;
}

.bestseller_product .products,
.new_products .products,
.featured-products .products {
    margin-left: 0;
    height: fit-content;
}

.owl-item .product-miniature {
    background: var(--ivory);
    overflow: hidden;
    border: 2px solid var(--ivory);
    transition: all 0.1s;
    height: 100%;
}

#index .bestseller_product,
#index .featured-products,
#index .new_products,
.blog-container {
    overflow: hidden;
}

.container:has(.blog-block) {
    padding: 0;
}

.blog-block .text-center.mt-3 {
    margin-top: 0 !important;
}

#index #wrapper .container {
    margin: auto;
    width: 100%;
    max-width: 100%;
}

#index #content > .cornero-section-1,
#index #content > section,
#index #content > .container {
    display: block;
    width: var(--page-width);
    margin: 0 auto 48px !important;
    max-width: 95vw;
}

.mobile-nav-toggle-bar .icon-close {
    display: none;
}

.mobile-nav-toggle-bar.is-open .icon-menu {
    display: none;
}

.mobile-nav-toggle-bar.is-open .icon-close {
    display: inline-flex;
}

#products .products-section-title,
.featured-products .products-section-title,
.product-accessories .products-section-title {
    margin: 1rem 0;
}

.custom-price {
    display: flex;
    flex-direction: column;
}

.add-to-cart-wrapper-product .add-to-cart {
    height: 36px;
    width: 100%;
    border-radius: 8px;
}

.h3.product-title a,
.custom-price {
    color: var(--cornero-black);
    font-weight: 400;
    transition: 0.1s;
}

.js-product:hover .add-to-cart-wrapper-product .add-to-cart {
    opacity: 1;
}

.all-product-link {
    display: none;
}

.login-main {
    width: fit-content;
    position: relative;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.login-main a {
    line-height: 10px;
}

.login-popup {
    display: none;
    position: absolute;
    top: 110%;
    border: 1px solid var(--cornero-border-light);
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 140%;
    flex-direction: column;
    text-align: left;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--ivory);
    z-index: 1;
}

.login-popup a {
    margin-bottom: 8px;
}

.login-popup a:last-child {
    margin-bottom: 0;
}

.login-popup .login {
    text-align: center;
}

.login-popup:before {
    content: "";
    position: absolute;
    bottom: 95%;
    width: 100%;
    left: 0;
    height: 20px;
}

.login-popup .logout {
    text-align: center;
    opacity: 0.8;
}

.login-popup i {
    margin-right: 10px;
}

.login-main:hover .login-popup {
    display: flex !important;
}

.separator {
    margin: 8px 0;
    width: 100%;
    border-bottom: 1px solid var(--cornero-border-light);
}

#cart .separator {
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--cornero-border-light);
}

#cart .login-popup .separator {
    margin: 0;
}

.cart-summary-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
}

#checkout .cart-summary-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    border-bottom: 1px solid var(--cornero-border-light);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.custom-category-nav-wrapper {
    margin: 0 !important;
    border-bottom: none !important;
}

.customnav > div:nth-child(1) {
    padding-left: 0;
}

.custom-category-nav .custom-html-submenu {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1) !important;
}

.nav-item {
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
}

.custom-html-submenu:before {
    content: "";
    width: 90%;
    position: absolute;
    bottom: 100%;
    left: 0;
    height: 20px;
}

.custom-category-nav .nav-items {
    gap: 0 !important;
}

.customnav > .col-xl-3:nth-child(3) {
    display: flex;
    flex-direction: row;

    align-items: center;
}

#header .header-nav .blockcart .header a {
    display: flex;
}

.nav2 {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding-right: 0;
    width: 25%;
    min-width: fit-content;
}

.customnav .cart-popup {
    position: absolute;
    top: 100%;
    border: 1px solid var(--cornero-border-light);
    right: 0;
    flex-direction: column;
    text-align: left;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--ivory);
    z-index: 1;
    display: none;
}

.customnav #_desktop_cart:hover .cart-popup {
    display: block;
}

.customnav .cart-popup .label {
    color: var(--cornero-black) !important;
}

.customnav .product-price,
.customnav .cart-popup .price {
    width: fit-content;
}

.customnav .cart-popup .label,
.customnav .cart-popup .discount-percentage,
.customnav .cart-popup .product-line-info {
    font-size: 12px !important;
}

.customnav .cart-popup .product-line-grid-body * {
    text-align: left;
    width: fit-content;
}

.customnav .cart-popup .cart-overview,
.customnav .cart-popup .product-line-grid-body {
    display: flex;
    width: fit-content;
    flex-direction: column;
}

.customnav .cart-popup .cart-overview {
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px 0;
    max-height: 500px;
}

.product-line-grid,
.cart-item {
    width: 100% !important;
}

.product-line-grid-right {
    width: 40% !important;
}

#cart .product-line-grid-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 200px;
    margin-left: auto;
}

.product-line-grid-right > .row {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
}

.customnav .cart-popup,
.customnav .cart-popup .cart-items {
    width: fit-content;
}

.customnav .cart-popup .cart-item,
.customnav .cart-popup .product-line-grid {
    display: flex;
    width: fit-content;
    padding-right: 10px;
}

.customnav .cart-popup .cart-item {
    border-bottom: 1px solid var(--cornero-border-light);
}

.customnav .cart-popup .product-line-grid-left {
    width: fit-content;
}

.customnav .cart-popup .product-image img {
    min-width: 80px !important;
    max-width: 80px !important;
}

.customnav.cart-popup .product-line-info {
    max-width: 160px !important;
    display: flex;
}

.customnav.cart-popup .product-price {
    flex-direction: column;
}

.customnav.cart-popup .product-line-info .label {
    display: flex;
    text-wrap: wrap;
}

.customnav .cart-popup .product-line-grid-right .row .col-md-10 {
    width: 100px;
}

.customnav .cart-popup .product-line-grid-right {
    padding: 0;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.customnav #_desktop_cart {
    position: relative;
    height: fit-content;
}

.customnav .cart-products-count {
    position: absolute;
    bottom: 60%;
    left: 50%;
    background: var(--ivory);
    border: 1px solid;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    font-weight: 700;
    z-index: 80;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

#header .header-nav .cart-preview.active {
    background: transparent;
}

#header .header-nav .cart-preview.active .cart-products-count {
    border-color: var(--cornero-black);
    color: var(--cornero-black);
}

#index .products .owl-item {
    height: 100%;
}

.products .owl-item .item {
    height: 100%;
    margin: 0 auto;
}

.products .owl-item .product-title {
    min-height: fit-content !important;
    margin: 8px 0;
}

.product-miniature .thumbnail-container {
    margin: 0;
    padding: 0;
    border-radius: 12px;
    background: transparent;
}

#prices-drop .products,
#best-sales .products,
#search .products,
#new-products .products,
#category .products {
    display: grid;
    background: var(--ivory);
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.products.row {
    --cornGap: 16px;
    --tiles: 3;

    width: 100%;
    display: grid;
    grid-template-columns: repeat(
    var(--tiles),1fr);
    gap: calc(var(--cornGap) * 2) var(--cornGap);
}



.product-description .product-title a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#new-products .products .product .product-miniature,
#search .products .product .product-miniature,
#category .products .product .product-miniature {
    margin: 0 auto;
    border-radius: inherit;
}

.product.item {
    border-radius: 16px;
}

#search_filters {
    margin: 0 0 16px 0;
    box-shadow: none;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--cornero-border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.input-container .color,
.input-container .color.texture {
    min-height: 30px !important;
    transition-duration: 0.1s;
}

.input-container .color.texture {
    background-size: cover;
    background-position: center;
}

.burger-icon,
.burger-icon::before,
.burger-icon::after {
    left: 0;
    background: #7a7a7a !important;
}

.mobile-nav-toggle {
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}

.wsxcd {
    width: 100%;
    border-radius: 20px;
}

.banner {
    width: 100%;
    margin-top: 20px;
}

.banner img {
    width: 100%;
    border-radius: 20px;
}

#opis h1,
#opis p {
    text-align: center;
    width: 100%;
}

.content-list {
    justify-content: center;
    margin-top: 20px;
}

.specs-container {
    display: flex;
}

.specs-table {
    flex: 3;
}

.specs-table table {
    width: 100%;
    height: 100%;
}

.specs-table tr {
    width: 100%;
    transition: all 0.3s;
}

.specs-table tr:hover {
    background-color: var(--ivory);
    color: var(--cornero-black);
}

.specs-table td {
    width: 50%;
}

.specs-table td:last-child {
    text-align: right;
}

.specs-image {
    flex: 2;
    display: flex;
    justify-content: right;
}

.specs-image img {
    max-height: 300px;
    object-fit: contain;
}

.details-block {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 16px !important;
    flex: 1;
}

.product-cover {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.product-miniature .thumbnail-container:focus .product-description::after,
.product-miniature .thumbnail-container:hover .product-description::after {
    border-top: none !important;
}

#product-comments-list,
#empty-product-comment,
#product #product-comments-list-header,
#product .product-accessories,
#product #wrapper .container .details-my {
    margin: 0 auto;
}

#product-comments-list,
#empty-product-comment,
#product #product-comments-list-header {
    max-width: 100%;
}

.photo-container {
    min-width: 55%;
    padding: 0;
}

.details-photo {
    display: flex;
    justify-content: center;
    background: var(--ivory);
    height: fit-content;
    gap: 36px;
    padding-bottom: 24px;
}

#product .breadcrumb {
    margin-bottom: 0 !important;
    background: var(--ivory) !important;
    padding: 1rem 0 !important;
}

.details-block .col-md-8 {
    padding-left: 0 !important;
}

.scroll-box-arrows {
    position: relative;
    width: 490px;
}

.product-images > li.thumb-container .thumb.selected,
.product-images > li.thumb-container .thumb {
    border-radius: 10px;
}

.scroll-box-arrows i {
    user-select: none;
}

.scroll-box-arrows .material-icons {
    background: #e2e2e2aa;
    border-radius: 2px;
}

#index .product-name {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 0;
}

.nav-toggle-div .mobile-nav-toggle {
    display: block;
}

#header .logo-nav {
    display: flex;
    padding: 12px 0;
}

.nav-toggle-div {
    width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.2s;
}

.sticky .nav-toggle-div {
    width: fit-content;
}

.sticky {
    transition: all 0.2s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.mobile-menu {
    display: block !important;
}

.go-to-cart-btn {
    color: var(--cornero-black) !important;
    width: fit-content;
    text-align: center;
    padding-top: 10px;
    padding-left: 0;
}

.search-bar {
    padding-left: 0;
    padding-right: 0;
    flex: 1;
}

#search_widget form {
    width: 100% !important;
    min-width: fit-content;
    display: flex;
    align-items: center;
}

.all-products {
    border: 1px solid var(--cornero-border-light);
    width: 250px;
    height: 250px;
    border-radius: 20px;
    display: flex;
    place-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 10px var(--ivory);
    margin-left: 50px;
    gap: 20px;
    text-align: center;
}

.all-products svg {
    fill: var(--cornero-black);
    opacity: 0.8;
}

.owl-item .all-products {
    min-height: 100%;
}

.owl-stage {
    display: flex;
    align-items: center;
}

.js-input-column input {
    border-radius: 10px;
}

.form-control-static,
.form-control {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: auto !important;
    background: white;
}

.form-control-static {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 42px !important;
    background-color: white;
}

.fpsc-consent-checkbox {
    padding: 0;
}

#fpsc-consent-form .form-group {
    margin-bottom: 25px;
}
.fpsc-buttons-consent {
    display: flex;
    align-items: center;
}

.fpsc-buttons-consent .account-link {
    flex: 1;
}

.fpsc-buttons-consent .continue {
    flex: 2;
}

#fpsc-consent-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control-label b {
    font-weight: 600;
}

.col-md-6:has(.form-control-static) {
    padding: 0;
    width: 100%;
}

#authentication hr {
    margin: 15px auto;
    width: 70%;
    opacity: 1;
    border-top: 1px solid var(--cornero-border-light);
}

.thumb-container,
#product-modal .thumb-container {
    width: 100%;
    height: fit-content !important;
}

.thumb {
    border-radius: 10px;
}

#product-modal .product-images {
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
    height: 100%;
    max-height: 850px;
}

.images-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-cover .js-qv-product-cover {
    min-width: 23px;
    max-width: 100% !important;
    aspect-ratio: 1.4/1;
    object-fit: cover;
    border-radius: 15px;
}

.js-modal-product-cover.product-cover-modal.js-qv-product-cover {
    aspect-ratio: 1.4/1 !important;
    object-fit: cover;
    height: auto;
}

.image-caption {
    padding: 0 !important;
}

.images-container .product-images > li.thumb-container .thumb {
    margin: 0;
}

.block-category:has(h1) {
    padding: 0;
}

.cat-deta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    align-items: center;
}

.cat-deta .showing {
    width: fit-content;
    padding: 0;
}

.block-category h1 {
    color: var(--cornero-black);
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    text-transform: none;
    margin: 0;
}

.block-category-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-banner img {
    width: 100%;
    border-radius: 16px;
}

#category-description p {
    margin: 0 !important;
}

#product .tabs {
    border-radius: 10px !important;
    padding: 0;
    background: none;
}

#guest-tracking #content,
.page-authentication #content,
.page-registration #content {
    max-width: 1200px;
    margin: 0 auto;
}

#registration .page-header h1 {
    padding-left: 15px;
}

#content div > hr {
    width: 100%;
    height: 2px;
    background-color: #0000002a;
    border: none;
}
#my-modal .modal-dialog {
    width: 100%;
    max-width: 500px;
    position: fixed;
    bottom: 0;
    left: 10px;
}

.wishlist-login .modal-backdrop,
.wishlist-create .modal-backdrop,
.wishlist-add-to .modal-backdrop {
    display: block;
}

.modal-cancel {
    border-radius: 10px;
}

.wishlist-modal .modal-content {
    background: var(--ivory);
    margin: 0 auto;
    box-shadow: 0.125rem 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.2);
}

#my-modal {
    width: fit-content;
    height: fit-content;
    display: block;
}

#my-modal .modal-header {
    background: var(--cornero-green);
    border-bottom: none;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

#my-modal .modal-header:after {
    display: none;
}
#my-modal .modal-header .close .material-icons,
#my-modal .modal-title i.material-icons,
#my-modal .modal-title {
    color: var(--ivory);
    margin: 0;
}

.wishlist-toast {
    color: var(--ivory) !important;
    background: var(--cornero-green) !important;
    border-radius: 10px !important;
    padding: 10px;
    bottom: 25px !important;
    left: 10px;
    max-width: fit-content;
    height: fit-content;
    top: auto !important;
}

.modal,
.modal-open {
    overflow: auto;
}

#myModalLabel {
    display: flex;
    text-align: center;
}

#myModalLabel .material-icons {
    display: grid;
}

.qty_buttons {
    height: 26px;
    min-width: 24px;
}

.info-links {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
}

.thumb.selected {
    border: 2px solid var(--blue-accent);
}

.row.product-container.js-product-container {
    margin: 0;
}

.product-line-grid-right .row {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.owl-dots {
    display: none;
}

.product-miniature .thumbnail-container .product-thumbnail {
    position: relative;
    height: fit-content;
}

.product-images > li.thumb-container {
    display: block;
}

.material-icons svg {
    height: 100%;
    width: 100%;
    fill: var(--cornero-black);
    z-index: 9;
}

.product-line-grid-right .material-icons svg {
    fill: var(--cornero-black) !important;
}

.password-requirements svg {
    fill: none;
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.password-requirements .text-success svg {
    stroke: var(--cornero-green);
}

.add-to-cart svg {
    width: 24px;
    height: 24px;
    fill: var(--ivory);
    margin-right: 0;
}

.product .add-to-cart i {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-accessories .row {
    margin: 0;
}

#header .header-nav .user-info .account {
    margin-left: 0.325rem;
}

.login-hover span {
    margin-left: 3px;
}

#index .owl-nav {
    width: 100%;
    height: 40px;
}

#product .owl-nav {
    position: absolute;
    top: calc(-400px);
    width: 98%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}

#product .owl-nav button {
    height: 40px;
    width: 40px;
    background: var(--ivory) !important;
    color: var(--cornero-black) !important;
    font-size: 20px;
    opacity: 0.7;
}

#product .owl-nav .owl-next,
#product .owl-nav .owl-prev {
    border-radius: 100%;
    padding: 0 !important;
}

#product .owl-nav button:hover {
    cursor: pointer !important;
    opacity: 1;
}

#main .images-container .js-qv-mask.scroll {
    width: 100%;
    overflow: visible;
    margin: 0;
}

.modal .thumb-container {
    max-width: 500px;
}

.custom-checkbox label {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.form-group:has(.required) .custom-checkbox {
    position: relative;
}

.form-group:has(.required) .custom-checkbox:before {
    position: absolute;
    content: "*";
    height: 10px;
    width: 10px;
    top: -2px;
    left: -10px;
    color: red;
    font-size: 20px;
    pointer-events: none;
}

.js-address-form .col-md-9.col-md-offset-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.js-address-form .col-md-9.col-md-offset-3 label {
    width: fit-content;
    margin: 0;
}

.custom-checkbox span i {
    color: green !important;
}

.register-form p a {
    margin-left: 5px;
    color: var(--blue-accent);
}

.register-form p a:hover {
    color: var(--cornero-black);
}

.form-control-submit {
    width: 100%;
}

[data-action="show-password"] {
    border-radius: 10px;
    background: var(--cornero-black) !important;
    width: 70px;
    text-align: center !important;
}

#address .form-control-label {
    padding: 0;
    margin: 0;
    text-align: right;
}

#contact .form-control-label {
    padding-left: 15px;
    width: 130px;
}

.select-title,
#js-active-search-filters {
    border-radius: 10px;
    padding: 0;
    margin: 0 !important;
}

.products-selection,
.active-filter-title {
    margin: 0 !important;
}

.select-title {
    display: flex !important;
    align-items: center;
    border: 1px solid var(--cornero-border-light) !important;
}

.products-sort-order{
    display: flex;
    gap:4px;
    align-items: center
}

.facet-label {
    display: flex;
    align-items: center;
}

#search_filters .facet .facet-label .custom-checkbox,
#search_filters .facet .facet-label .custom-radio {
    top: 0;
    margin-right: 0;
}

.ui-slider-horizontal {
    border: none !important;
    outline: none !important;
    height: 8px !important;
    background: var(--cornero-border-light);
}

#search_filters .ui-widget-header {
    background: #422f28;
}

.ui-slider-handle {
    opacity: 0;
}

.page-list {
    display: flex;
    align-items: center;
    padding: 0 !important;
    height: 35px;
    overflow: hidden;
    gap: 3px;
    justify-content: flex-end;
    max-width: 100vw;
    flex-wrap: wrap;
}

.page-list li {
    height: 100%;
    display: flex !important;
    align-items: center;
    border: 1px solid var(--cornero-black);
    border-radius: 10px;
}

.page-list li.current {
    border-color: var(--cornero-black);
    background: var(--cornero-black);
}

.page-list li:not(:has(.previous)):not(:has(.next)) {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
}

.pagination a:not(.previous):not(.next) {
    letter-spacing: 0;
    padding: 0;
}

.pagination .current a {
    color: var(--ivory) !important;
}

.page-list li:has(.previous) {
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding-right: 10px;
    align-items: center;
}

.page-list li:has(.next) {
    margin: 0;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.filter-block:nth-child(1) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.filter-block:nth-last-child(1) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#delivery-addresses .address-item {
    flex: 1 !important;
    border-radius: 10px;
}

body#checkout section.checkout-step .address-item > header {
    min-height: 0;
}

#field-id_country {
    border-radius: 10px;
    padding: 0 1rem;
    min-height: 48px;
}

#product-modal {
    backdrop-filter: brightness(0.5);
}

.login-hover {
    color: #2b2b2b;
    display: flex;
    align-items: flex-end;
    margin: 0;
    line-height: 19px !important;
}

.user-info:hover #login_svg {
    fill: var(--cornero-black);
}

.user-info:hover .login-hover {
    color: var(--cornero-black) !important;
}

.login-popup a:hover svg {
    fill: var(--cornero-black);
}

#product-modal .modal-content .modal-body {
    display: flex;
    margin-left: 0;
    justify-content: center;
}

#index .product-name a {
    color: var(--cornero-black);
}

.featured-products .product-name {
    justify-content: center !important;
}

.owl-nav {
    pointer-events: none;
}

.owl-theme .owl-nav [class*="owl-"] {
    font-size: 14px;
    margin: 5px;

    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    pointer-events: all;
    background: var(--cornero-black) !important;
    color: var(--ivory) !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    border: none;
    padding: 4px 24px !important;
    font: inherit;
}

.owl-nav button.disabled {
    cursor: no-drop !important;
}

model-viewer {
    position: absolute;
    background: var(--ivory);
    z-index: 1;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.hideModel {
    display: none !important;
}

.facet .facet-label {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.facet .facet-label a {
    margin-top: 0 !important;
    margin-left: 5px;
}

.custom-checkbox span {
    border-radius: 5px;
    height: 20px !important;
    min-width: 20px !important;
    display: grid !important;
    place-items: center;
    margin: 0 !important;
}

#_desktop_search_filters_clear_all button {
    width: 100%;
    border-radius: 10px;
    border: 1px solid transparent;
}

.active_filters {
    background-color: var(--ivory) !important;
}

.products-sort-order .dropdown-menu {
    border-radius: 10px;
    padding: 0;
    z-index: 10;
    overflow: hidden;
    box-shadow: none;
    background: white;
    border: 1px solid var(--cornero-border-light);
    right: 0;
    top: calc(100% + 4px);
    left: auto;
    width: 100%;
    min-width: 240px;
}

#map {
    height: 600px;
    width: 1550px;
    border-radius: 10px;
    max-width: 95vw;
    z-index: 10 !important;
}

.leaflet-bottom.leaflet-right {
    display: none !important;
}

.marker-cluster-small {
    background-color: #4dbcf199 !important;
}

.footer-submenu-item:has(#link-cms-page-9-2) {
    width: 70%;
}

#link-cms-page-9-2 {
    line-height: 10px;
}

.nav-item:has(.details-hide) {
    display: none !important;
}

.nav-tabs {
    display: flex;
    justify-content: center;
}

#overlay {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    height: calc(100% + 1.7rem + 16px);
    background: #00000050;
    transform: translate(0%, -1.563rem);
}

.header-top.sticky {
    top: 0;
    height: 40px;
    border-radius: 0;
    background: var(--ivory);
}

.header-top.sticky .nav-link {
    padding: 5px 0;
    margin: 0;
}

.nav-item:hover > a {
    color: var(--cornero-black) !important;
}

.nav-item > a {
    cursor: pointer;
}

.details-block h1 {
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    text-transform: none;
}

.current-price-value {
    font-size: 34px !important;
    color: var(--blue-accent);
}

#promo-code {
    display: block;
}

#promo-code form {
    display: flex;
    flex-direction: row !important;
    width: 100% !important;
    max-height: 40px;
}

.block-promo .promo-code {
    padding: 0;
    position: relative;
}

.block-promo button {
    position: absolute;
    width: fit-content !important;
    right: 4px;
    border: none !important;
    height: calc(100% - 8px) !important;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px !important;
}

.block-promo .promo-input + button {
    margin: 0;
}

#header .header-nav .blockcart {
    max-height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: transparent;
    padding: 0;
    position: relative;
    margin-left: 0;
    line-height: 0;
    width: fit-content;
}

.custom-home-text-section,
.custom-home-text-section .container {
    padding: 0 !important;
}

.blog-post-full {
    width: 900px;
    max-width: 95%;
    margin: 0 auto;
}

.blog-post-full li {
    list-style: disc;
    margin-left: 20px;
}

#cms .page-header {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.block-categories {
    margin: 0 0 16px 0;
    box-shadow: none;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--cornero-border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-content.page-cms ul,
dl,
ol,
p,
ul {
    margin-bottom: 0;
}

.navbar-toggler {
    width: fit-content;
}

.block-categories li[data-depth="0"] .category-sub-menu {
    padding-left: 15px;
}

.block-categories .category-sub-menu li[data-depth="1"] {
    margin-bottom: 0.2rem;
}

.product-miniature .product-description {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    background: transparent;
}

.product-miniature .product-description .btn {
    font-size: 14px !important;
    max-height: 32px;
}

#footer,
#wrapper {
    position: relative;
}

#footer:after,
#wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000000;
    z-index: 10;
    pointer-events: none;
    transition: background 0.2s;
}

body:has(.desktop-nav .nav-item.has-submenu:hover) #footer:after,
body:has(.desktop-nav .nav-item.has-submenu:hover) #wrapper:after,
body:has(.desktop-nav .nav-item.custom_html:hover) #footer:after,
body:has(.desktop-nav .nav-item.custom_html:hover) #wrapper:after {
    background: #00000070;
}

#product .breadcrumb ol {
    width: var(--page-width) !important;
    margin: 0 auto;
    padding: 0 2px;
    max-width: 100%;
}

.breadcrumb li {
    font-size: 14px;
}

#wrapper .breadcrumb li::after {
    margin: 0.025rem;
    color: #7a7a7a;
    content: ">";
}

h1 .product-description {
    padding: 0;
    margin-top: 5px;
}

.product-prices,
.product-price,
h1 .product-description p {
    margin: 0 !important;
}

.product-price {
    color: var(--cornero-blue);
}

#cart .product-line-grid-left {
    display: flex;
    justify-content: center;
}

#cart .product-line-grid-body {
    display: flex;
    width: 40%;
    padding: 0 10px;
    flex-direction: column;
    gap: 8px;
}

.product-availability--in-stock {
    color: #2e6b4f;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.psblog-container .block-title {
    text-align: center;
    border-bottom: 2px solid transparent;
}

.blog-block {
    margin-top: 0 !important;
    padding-top: 0;
}

.product-name h1 {
    width: 100%;
    text-align: center;
}

.photo-nav-bar {
    max-width: 100%;
}

.footer-container a:hover {
    text-decoration: underline;
    color: var(--cornero-black) !important;
}

.modal-content a:hover {
    text-decoration: none;
    color: var(--ivory) !important;
}

#identity h1 {
    padding-left: 15px;
}

.page-header h1 {
    padding-left: 15px;
    display: none;
}

.input-group {
    border-radius: 10px;
}

.header-top.sticky:before {
    content: "";
    width: 100%;
    position: absolute;
    height: 20px;
    bottom: 100%;
    background: var(--ivory);
}

[name="id_product"],
.alert {
    border-radius: 10px !important;
}

textarea {
    border-radius: 10px 10px 0 10px !important;
}

.block-promo .promo-name .cart-summary-line span {
    color: #2e6b4f;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.block-promo .promo-name .cart-summary-line .label {
    color: #422f28;
    font-weight: 600;
}

.product-line-grid-right.product-line-actions.col-md-5.col-xs-12 > .row {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}

.product-line-grid-right.product-line-actions.col-md-5.col-xs-12 > .row,
.col-md-10.col-xs-6 {
    padding: 0;
}

.product-line-grid-right.product-line-actions.col-md-5.col-xs-12 > .row,
.col-md-10.col-xs-6 > .row {
    width: 100%;
    display: flex !important;
    flex-direction: row-reverse;
}

.input-group-btn-vertical button i {
    transform: rotate(90deg);
    display: grid;
    place-items: center;
    height: 100%;
}

.collapse-button.promo-code-button,
.promo-code-button.display-promo {
    display: none !important;
}

.tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.cart-summary-line .code {
    background: var(--cornero-black);
    color: var(--ivory) !important;
    border-radius: 10px;
    padding: 3px 20px;
}

.block-categories .category-sub-menu li[data-depth="0"] > a {
    width: 90%;
    padding: 0;
    margin: 0;
}

.block-categories .category-sub-menu li[data-depth="0"] {
    padding: 4px 0;

    border-bottom: 1px solid var(--cornero-border-light);
}

.js-product-nav-active {
    cursor: default !important;
}

.store-picture picture {
    width: 100%;
}

.store-picture picture img {
    width: 100%;
    object-fit: contain;
}

.store-main-box {
    width: 70%;
}

.store-item .divide-left {
    width: 100%;
    border: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
}

.store-item .divide-left table {
    width: 100%;
}

.divide-left ul {
    margin-bottom: 2px;
    display: flex;
    flex-direction: row;
}

.store-description {
    padding: 0;
    width: 100%;
}

.product-minimal-quantity {
    display: none;
}

.small-details .product-description p {
    width: fit-content;
    display: flex;
    margin: 0;
}

.small-details .product-description p,
.small-details span {
    color: var(--cornero-black) !important;
    font-size: 16px;
}

.small-details .product-description {
    display: flex !important;
    align-items: flex-end;
}

#product-availability {
    margin: 0;
}

.product-add-to-cart {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    gap: 5px;
}

.add-to-cart,
.add,
.product-quantity {
    width: 100% !important;
    min-width: 100%;
    margin: 0 !important;
    max-height: 44px;
}

.product-available {
    width: 100%;
    text-wrap: nowrap;
    align-items: flex-end;
    gap: 2px;
    display: none;
}

#available_value {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-end;
}

#available_value svg {
    height: 20px;
    margin-left: 6px;
}

#available_value svg .quantityFill {
    fill: var(--cornero-black);
}

.product-manufacturer {
    display: flex;
    border: 1px solid var(--cornero-border-light);
    width: 100%;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: var(--cornero-black);
    max-height: 75px;
}

.product-manufacturer:hover {
    color: var(--cornero-black);
}

.product-manufacturer img {
    margin-bottom: 0 !important;
    height: 70px;
    max-width: 100px;
    object-fit: contain;
}

.product-information .manufacturer-logo {
    border: none !important;
}

.product-details-block {
    display: flex;
    flex-direction: column;
}

.product-inner-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-variants {
    display: flex;
    flex-direction: column;
}

.product-prices div.current-price {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

#cart .current-price {
    align-items: flex-end;
    margin-bottom: 0;
}

#cart .product-price {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.has-discount .discount {
    border-radius: 10px;
    background: var(--blue-accent);
}

.has-discount .page-content.page-cms ul,
.has-discount p,
.has-discount.product-price,
.page-content.page-cms .has-discount ul {
    color: var(--blue-accent);
}

.current-price .discount-amount {
    border-radius: 10px;
}

.coming-soon .add-to-cart {
    display: none;
}

.coming-soon .add-to-cart-wrapper-product {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.coming-soon .product-availability-date {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-end;
}

.coming-soon .product-availability-date span {
    background: var(--cornero-black);
    color: var(--ivory);
    width: 100%;
    border-radius: 10px;
    height: 36px;
    display: grid;
    place-items: center;
}

.mobile-menu-overlay {
    backdrop-filter: blur(1px);
}

#cart .cart-overview {
    padding: 0;
}

.cart-grid-body .cart-container {
    background: transparent !important;
    margin-bottom: 0;
}

.cart-summary-line {
    margin-bottom: 0 !important;
}

.cart-summary-line .value {
    color: #222;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
}

.cart-summary-line .label {
    color: #6b625f;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.cart-voucher span.label {
    font-size: 1rem;
}

.checkout img {
    width: 40px;
}

.cart-detailed-actions .btn {
    display: flex;

    gap: 10px;
}

.qty .input-group {
    min-width: 84px;
    display: flex;
    justify-content: center;
    position: relative;
}

.qty .input-group-btn-vertical {
    position: absolute;
    width: 100% !important;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.qty .btn-touchspin {
    border: 1px solid var(--cornero-border-light) !important;
    height: 100%;
    display: grid;
    place-items: center;
    cursor: pointer;
    width: 28px;
}

.remove-from-cart .material-icons {
    font-size: 28px;
    display: grid;
    place-items: center;
}

.remove-from-cart {
    position: relative;
}

.removing.material-icons {
    opacity: 0;
}

.removing.remove-from-cart:before {
    position: absolute;
    content: "";
    border: 15px solid var(--cornero-black);
    left: 50%;
    top: 50%;
    animation: spinnerAnimate 1s infinite linear;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    border-bottom: 15px solid var(--ivory);
}

.removing.remove-from-cart:after {
    position: absolute;
    content: "";
    border: 8px solid var(--ivory);
    left: 50%;
    top: 50%;
    animation: spinnerAnimate 1s infinite linear;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.cart-grid {
    display: flex;
    gap: 40px;
}

.cart-grid-body.col-lg-8 {
    padding: 0;
    display: flex;
    flex-direction: column;
}

#checkout .cart-grid-body.col-lg-8 {
    gap: 24px;
}

#cart .row {
    margin: 0 !important;
}

.cart-grid:after {
    position: absolute;
}

.cart-grid-right {
    padding: 0;
}

#cart .product-line-grid {
    border: 1px solid var(--cornero-border-light) !important;
    border-radius: 10px;
    display: flex !important;
    flex-direction: row !important;
    background: #fff;
    flex-wrap: wrap;
    align-items: stretch;
}

.cart-item .img {
    min-width: 100%;
}

.cart-summary-totals {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-reassurance {
    color: #2e6b4f;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
}

.cart-summary-totals:after {
    display: none;
}

.cart-detailed-subtotals {
    padding: 0;
}

.cart-detailed-totals > .block-promo-custom {
    margin-bottom: 30px;
    border: 1px solid var(--cornero-border-light);
    border-radius: 10px;
    padding: 10px 0;
}
.card-block.cart-detailed-subtotals + .cart-summary-totals .cart-total {
    border-top: none;
}

#cart .card-block.cart-detailed-subtotals + .cart-summary-totals .cart-total {
    border-top: 1px solid var(--cornero-border-light);
}

.promo-div {
    align-items: center;
    margin-top: 10px;
    padding-left: 1.25rem;
    display: flex;
    justify-content: space-between;
}

.checkout {
    padding: 0;
}

#js-checkout-summary,
.cart-summary {
    position: sticky;
    top: 80px;
    background: white;
    border: 1px solid var(--cornero-border-light) !important;
    padding: 32px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.js-discount {
    padding: 0 !important;
}

.block-promo .promo-input {
    border-color: var(--cornero-border-light);
    width: 100%;
    border-radius: 8px;
}

.block-promo {
    margin-bottom: 0;
}

#selected-gifts-container {
    display: none !important;
}

#prod-quantity {
    height: 30px !important;
    width: 70px !important;
    border-color: var(--cornero-border-light);
}

.input-group-btn-vertical button {
    max-height: 30px !important;
    height: 40px !important;
    width: 20px !important;
    border: 0 !important;
}

.table-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.points-positive {
    color: var(--cornero-green);
    font-weight: 600;
}

.points-negative {
    color: var(--cornero-red);
    font-weight: 600;
}

.info-list {
    color: #666;
    margin: 0;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 5px;
}

.cart-grid.row {
    margin: 0 !important;
}

.js-discount .label {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--cornero-border-light);
    border-radius: 0 0 0 10px;
}

.block-promo.promo-highlighted {
    margin: 10px 0;
    padding: 0;
    text-align: center;
}

.loyalty-card:nth-child(2) {
    animation-delay: 0.1s;
}

.loyalty-card:nth-child(3) {
    animation-delay: 0.2s;
}

.loyalty-card-title {
    transition: color 0.3s ease;
}

.loyalty-card:hover .loyalty-card-title {
    color: var(--cornero-black);
}

.points-value {
    transition: transform 0.2s ease;
    font-size: 1.1rem;
    font-weight: 700;
}

.loyalty-table tbody tr:hover .points-value {
    transform: scale(1.05);
}

.addresses-container {
    background: var(--ivory);
    border-radius: 10px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 5px 5px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cornero-border-light);
}

.addresses-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(
    auto-fit,
    minmax(300px, calc((100% - 50px) / 3))
  );
    gap: 25px;
}

.address-card {
    background: var(--ivory);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.address-card:hover {
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f8ff;
}

.address-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cornero-black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-icon {
    font-size: 1.3rem;
    color: var(--cornero-black);
}

.address-info {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.address-info div {
    margin-bottom: 5px;
    padding: 2px 0;
}

.address-name {
    font-weight: 600 !important;
    color: var(--cornero-black) !important;
    font-size: 1.1rem !important;
}

.addresses-container .btn {
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
}

.addresses-container .btn-edit {
    background: var(--cornero-black);
    color: var(--ivory);
}

.addresses-container .btn-delete:hover {
    background: var(--cornero-red-hover);
}

.addresses-container .btn-edit:hover {
    background: var(--cornero-black-hover);
}

.addresses-container .btn-delete {
    background: var(--cornero-red);
    color: var(--ivory);
}

.empty-addresses {
    background: var(--ivory);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.empty-addresses:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.add-address-section {
    background: var(--ivory);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    border: 2px dashed var(--cornero-black);
    margin-top: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-address-section:hover {
    border-color: #0077b5;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.add-address-btn {
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-address-btn:hover {
    color: var(--ivory);
    text-decoration: none;
    background: var(--cornero-black-hover);
}

.info-title {
    color: var(--cornero-black);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.order-date {
    color: #666;
    font-weight: 500;
}

.order-total .points-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cornero-green);
}

.order-payment {
    color: #666;
    font-style: italic;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ivory) !important;
    display: inline-block;
}

.invoice-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cornero-black), #0077b5);
    color: var(--ivory);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.invoice-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 160, 227, 0.4);
    color: var(--ivory);
    text-decoration: none;
}

.no-invoice {
    color: #ccc;
    font-size: 1.2rem;
    text-align: center;
    display: block;
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn:hover .icon {
    transform: scale(1.1);
}

.orders-mobile {
    display: none;
}

.order-card {
    background: var(--ivory);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 160, 227, 0.15);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f8ff;
}

.order-reference-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-icon {
    font-size: 1.3rem;
    color: var(--cornero-black);
}

.order-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cornero-black);
    text-decoration: none;
}

.order-title:hover {
    color: var(--cornero-black-hover);
    text-decoration: underline;
}

.order-card-body {
    margin-bottom: 20px;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 0;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.info-value {
    color: var(--cornero-black);
    font-weight: 500;
}

.order-total-mobile {
    font-weight: 700;
    color: var(--cornero-green);
    font-size: 1.1rem;
}

.order-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-details-mobile,
.btn-reorder-mobile,
.btn-invoice-mobile {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 10px 15px;
    font-size: 12px;
}

.btn-details-mobile {
    background: var(--cornero-black);
    color: var(--ivory);
}

.btn-reorder-mobile {
    background: var(--cornero-green);
    color: var(--ivory);
}

.btn-invoice-mobile {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--ivory);
}

.empty-orders {
    background: var(--ivory);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.empty-orders:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

.btn-start-shopping {
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-start-shopping:hover {
    background: var(--cornero-black-hover);

    color: var(--ivory);
    text-decoration: none;
}

.info-box {
    background: var(--ivory);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto !important;
    position: relative;
    overflow: hidden;
}

#discount .info-box {
    max-width: 1200px !important;
}

.info-box:before {
    height: 100%;
    width: 4px;
    background: var(--cornero-black);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.info-text {
    color: #666;
    line-height: 1.6;
}

.order-row {
    transition: all 0.3s ease;
}

.order-row:hover .points-value {
    transform: scale(1.05);
}

.order-row:hover .order-reference strong {
    color: var(--cornero-black-hover);
}

.customer-form-modern {
    position: relative;
    margin: 0 !important;
}

.page-footer {
    margin-bottom: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.login-form {
    position: relative;
    margin-top: 0;
}

.address-form {
    position: relative;
}

.address-form:before,
.login-form:before,
.customer-form-modern:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

#checkout .customer-form-content {
    padding: 10px 0 0 0;
}

.form-informations {
    text-align: center;
    margin-bottom: 18px;
}

.customer-form-field-wrapper {
    margin-bottom: 24px;
}

.customer-form-field-wrapper:has([for="field-id_gender"]) {
    display: none;
}

.customer-form-modern .form-group {
    margin-bottom: 35px;
    position: relative;
}

.customer-form-modern .form-control:focus {
    border-color: var(--cornero-black-hover);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.customer-form-modern .form-control:hover {
    border-color: var(--cornero-black-hover);
}

#checkout .form-control-label {
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0;
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0;
    text-align: right;
}

.customer-form-modern .required .form-control-label::after {
    content: " *";
    color: var(--cornero-red);
    font-weight: bold;
}

.customer-field-password-policy {
    margin-bottom: 25px;
}

.progress-container .progress {
    border-radius: 4px !important;
    overflow: hidden;
}

.customer-field-password-policy .form-control:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.customer-form-modern select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 50px;
}

.customer-form-modern .custom-control-label {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    cursor: pointer;
}

.customer-form-modern .custom-control-input:checked,
.custom-control-label::before {
    background-color: var(--cornero-black-hover);
    border-color: var(--cornero-black-hover);
}

.customer-btn-primary {
    background: var(--cornero-black);
    border: none;
    color: var(--ivory);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customer-btn-primary:hover {
    background: var(--cornero-black-hover);
    color: var(--ivory);
    text-decoration: none;
}

.customer-btn-primary:active {
    transform: translateY(0);
}

.customer-btn-text {
    font-weight: 600;
}

.customer-btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.form-check-inline,
.radio-inline,
.custom-radio {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 5px !important;
}

.customer-btn-primary:hover .customer-btn-icon {
    transform: translateX(3px);
}

.customer-form-modern .form-control.is-invalid {
    border-color: var(--cornero-red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.customer-form-modern .invalid-feedback {
    color: var(--cornero-red);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.customer-form-modern .form-control.is-valid {
    border-color: var(--cornero-green);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.customer-form-modern .form-text {
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
    line-height: 1.4;
}

.vouchers-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

#identity .page-header {
    display: none;
}

.vouchers-table-wrapper {
    background: var(--ivory);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.vouchers-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.vouchers-table thead {
    background: linear-gradient(135deg, var(--cornero-black) 0%, #018bc5 100%);
    color: var(--ivory);
}

.vouchers-table th {
    padding: 18px 15px;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.table-header-icon {
    margin-right: 8px;
    font-size: 16px;
}

.vouchers-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.voucher-code {
    font-weight: 600;
}

.code-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ivory);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px dashed var(--cornero-black-hover);
    max-width: fit-content;
    cursor: pointer;
}

.code-text {
    font-weight: bold;
    color: var(--cornero-black-hover);
    font-size: 14px;
    cursor: pointer;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: rgba(0, 124, 186, 0.1);
}

.voucher-name {
    font-weight: 500;
    color: var(--cornero-black);
    max-width: 200px;
}

.quantity-badge {
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    display: inline-block;
}

.value-highlight {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: var(--ivory);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}

.cumulative-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.cumulative-yes {
    background: #d4edda;
    color: var(--cornero-green-hover);
    border: 1px solid #c3e6cb;
}

.cumulative-no {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.date-text {
    color: #666;
    font-size: 13px;
}

.vouchers-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voucher-value-mobile {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.voucher-card {
    background: var(--ivory);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.voucher-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.voucher-card-header {
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voucher-code-mobile {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.code-label {
    font-size: 12px;
    opacity: 0.9;
    display: block;
    font-weight: 500;
}

.code-badge-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.code-text-mobile {
    font-family: "Courier New", monospace;
    font-weight: bold;
    font-size: 16px;
}

.copy-btn-mobile {
    background: rgba(255, 255, 255, 0);
    border: none;
    color: var(--ivory);
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.copy-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.3);
}

.voucher-card-body {
    padding: 20px;
}

.voucher-name-mobile {
    font-size: 18px;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0 0 20px 0;
}

.voucher-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-item,
.info-label,
.info-value {
    font-weight: 500;
    color: var(--cornero-black);
}

.cumulative-badge-mobile {
    background: none;
    border: none;
}

.vouchers-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--ivory);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--cornero-black);
    margin-bottom: 10px;
}

.empty-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-browse-offers {
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-browse-offers:hover {
    background: var(--cornero-black-hover);
    color: var(--ivory);
    text-decoration: none;
}

.wishlist-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wishlist-header {
    background: var(--ivory);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.wishlist-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

.wishlist-header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.wishlist-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cornero-black), #0077b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 160, 227, 0.3);
}

.wishlist-icon {
    font-size: 35px;
    filter: grayscale(1) brightness(10);
}

.wishlist-header-text {
    flex: 1;
}

.wishlist-page-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.wishlist-page-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.wishlist-main-section {
    background: var(--ivory);
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.wishlist-list-item-link {
    padding: 10px 0 !important;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.wishlist-list-item-link:hover {
    border-bottom: 1px solid var(--cornero-border-light);
}

.wishlist-main-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

.modern-wishlist-container {
    min-height: 300px;
    position: relative;
}

.wishlist-loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid var(--cornero-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.add-wishlist-section {
    background: var(--ivory);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    border: 2px dashed var(--cornero-black);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.add-wishlist-section:hover {
    border-color: #0077b5;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.15);
}

.add-wishlist-content {
    max-width: 400px;
    margin: 0 auto;
}

.add-wishlist-icon {
    font-size: 3rem;
    color: var(--cornero-black);
    margin-bottom: 20px;
}

.add-wishlist-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0 0 15px 0;
}

.add-wishlist-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 25px 0;
}

.add-wishlist-btn {
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-wishlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 160, 227, 0.4);
    color: var(--ivory);
    text-decoration: none;
}

.add-wishlist-btn .btn-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.add-wishlist-btn:hover .btn-icon {
    transform: scale(1.1);
}

.add-wishlist-btn .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.add-wishlist-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.wishlist-info-box {
    background: var(--ivory);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.wishlist-info-box:before {
    height: 100%;
    width: 4px;
    background: var(--cornero-black);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.info-box-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--cornero-black);
}

.info-box-content {
    flex: 1;
}

.info-text p {
    margin: 5px 0;
    font-size: 1rem;
}

.wishlist-footer-container {
    background: var(--ivory);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.wishlist-footer-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cornero-black);
}

.wishlist-footer-links {
    display: flex;
    gap: 20px;

    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.footer-link-account {
    background: var(--gray);
    color: var(--ivory);
}

.footer-link-account:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
    color: var(--ivory);
    text-decoration: none;
}

.footer-link-home {
    background: var(--cornero-black);
    color: var(--ivory);
}

.footer-link-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 160, 227, 0.4);
    color: var(--ivory);
    text-decoration: none;
}

.footer-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.footer-link:hover .footer-icon {
    transform: scale(1.1);
}

.footer-text {
    font-weight: 600;
}

.footer-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-link-account:hover .footer-arrow {
    transform: translateX(-3px);
}

.footer-link-home:hover .footer-arrow {
    transform: translateX(3px);
}

.account-page-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--ivory);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.account-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.account-link-tile {
    background: var(--ivory);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.account-link-tile:hover::before {
    transform: scaleX(1);
}

.account-link-tile:hover .tile-icon {
    color: var(--ivory);
}

.tile-icon .material-icons {
    font-size: 32px;
    color: var(--cornero-black);
    transition: color 0.3s ease;
}

.tile-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0;
    line-height: 1.3;
}

.account-links-grid > div,
.account-links-grid > span,
.account-links-grid [id*="module"],
.account-links-grid .module-content,
.account-links-grid .hook-content {
    background: var(--ivory) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    min-height: 180px !important;
    justify-content: center !important;
    gap: 15px !important;
    position: relative !important;
    overflow: hidden !important;
}

.account-links-grid > div::before,
.account-links-grid > span::before,
.account-links-grid [id*="module"]::before,
.account-links-grid .module-content::before,
.account-links-grid .hook-content::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--cornero-black), #00d2f9) !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
}

.account-links-grid [id*="module"] > *,
.account-links-grid .module-content > *,
.account-links-grid .hook-content > *,
.account-links-grid > div > *,
.account-links-grid > span > * {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    height: 100% !important;
}

.account-links-grid .material-icons,
.account-links-grid i[class*="icon"],
.account-links-grid [class*="fa-"],
.account-links-grid svg,
.account-links-grid img {
    margin: 0 auto !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.account-links-grid h3,
.account-links-grid h4,
.account-links-grid .title,
.account-links-grid span:not(.tile-icon),
.account-links-grid p {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.account-links-grid .block-content,
.account-links-grid .module-item,
.account-links-grid .hook-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    width: 100% !important;
}

.account-links-grid a {
    background: var(--ivory) !important;
    border-radius: 10px !important;
    padding: 30px !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    min-height: 180px !important;
    justify-content: center !important;
    gap: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
    animation: none !important;
    opacity: 1 !important;
}

.account-links-grid .material-icons,
.account-links-grid i[class*="icon"],
.account-links-grid [class*="fa-"],
.account-links-grid svg {
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px !important;
    color: var(--cornero-black) !important;
    fill: var(--cornero-black);
}

.account-links-grid h3,
.account-links-grid h4,
.account-links-grid .title,
.account-links-grid span,
.account-links-grid p {
    font-size: 1.1rem !important;
    font-weight: 600 !important;

    margin: 0 !important;
    line-height: 1.3 !important;
}

.account-logout-section {
    padding: 15px 30px;
    text-align: center;
}

.logout-btn {
    background: var(--cornero-red);
    color: var(--ivory);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logout-btn:hover {
    background: var(--cornero-red-hover) !important;

    color: var(--ivory);
    text-decoration: none;
}

.account-links-grid > div:nth-child(7),
.account-links-grid > span:nth-child(7),
.account-links-grid [id*="module"]:nth-child(7) {
    animation-delay: 0.7s !important;
}

.account-links-grid > div:nth-child(8),
.account-links-grid > span:nth-child(8),
.account-links-grid [id*="module"]:nth-child(8) {
    animation-delay: 0.8s !important;
}

.account-links-grid > div:nth-child(9),
.account-links-grid > span:nth-child(9),
.account-links-grid [id*="module"]:nth-child(9) {
    animation-delay: 0.9s !important;
}

.account-links-grid > div:nth-child(10),
.account-links-grid > span:nth-child(10),
.account-links-grid [id*="module"]:nth-child(10) {
    animation-delay: 1s !important;
}

.element-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.element-section {
    display: flex;
    flex-direction: column;
    min-width: 355px;
    flex: 1;
    text-align: center;
    background-color: var(--ivory);
    padding: 30px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
    gap: 10px;
}

.element-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.element-icon-place img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    display: block;
}

.element-section h2 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.o-nas-grafika {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    display: block;
}

.reasons-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.reasons-subtitle {
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.reason-box {
    min-width: 355px;
    text-align: center;
    background-color: var(--ivory);
    padding: 30px 15px;
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.reason-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reason-box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.reason-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.reason-box p {
    font-size: 15px;
    color: var(--cornero-black);
    margin: 0;
}

.account div.row,
.customer-account div.row {
    display: none;
}

#content-wrapper {
    padding-left: 0;
    padding-right: 0;
}

.footer-grid-layout {
    display: flex;
    flex-direction: column;
}

.footer-wrapper-links {
    display: flex;
    width: 1550px;
    margin: 0 auto;
    max-width: 98%;
    gap: 50px;
}

.footer-wrapper-bottom .copyright {
    color: #c5c5c5;
    text-align: center;
}

.footer-wrapper-bottom .social-icon svg {
    color: #c5c5c5;
    width: 50px;
    height: auto;
}

.footer-wrapper-bottom .social-icons {
    display: flex;
    gap: 5px;
    flex-direction: row;
}

.footer-wrapper-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.block-contact-title {
    font-size: 20px !important;
}

.footer-link-block {
    padding: 0;
}

.footer-grid-layout .div1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-grid-layout .footer-main-content {
    flex: 3;
    padding: 0;
}

.footer-grid-layout .footer-main-content > .row {
    display: flex;
}

.footer-links-section {
    flex: 2;
    padding-right: 25px !important;
}

.footer-container .footer-account-block {
    flex: 1;
    padding: 0 0 0 25px;
}

.footer-links-row {
    display: flex;
    gap: 50px;
}

.footer-links-row:after {
    display: none;
}

.footer-grid-layout .store-info {
    grid-area: 2 / 1 / 3 / 2;
    align-content: center;
    padding-left: 20%;
    width: 100%;
}

.footer-grid-layout .div5 {
    display: flex;
}

.footer-grid-layout .div6 {
    grid-area: 3 / 1 / 4 / 4;
}

.footer-logo img {
    max-width: 150px;
    object-fit: contain;
    padding: 0 0 20px 0;
}

.footer-container .store-info .store-info-title {
    color: #c5c5c5;
    font-size: 20px;
}

.footer-container .store-info .store-info-content {
    font-size: 14px;
    line-height: 30px;
    color: #9f9f9f;
}

.footer-container .footer-links-section .footer-link-block {
    width: 100%;
}

.block-contact-title,
.footer-account-title-link,
.footer-container .footer-links-section .footer-link-block .footer-link-title {
    color: var(--cornero-black) !important;
    font-size: 20px;
}

.footer-submenu-link {
    color: var(--cornero-black) !important;
}

.footer-container,
.footer-links-section,
.footer-link-block,
.footer-submenu-link {
    color: var(--cornero-black);
    font-size: 14px;
    line-height: 30px;
}

.contact-content {
    color: var(--cornero-black);
}

.footer-container .footer-account-block .footer-account-title-link {
    font-size: 20px;
}

.footer-container,
.footer-account-block,
.footer-account-menu,
.footer-account-link {
    color: var(--cornero-black);
    font-size: 14px;
    line-height: 30px;
}

.footer-container .footer-account-block .footer-account-menu a {
    color: var(--cornero-black);
    font-size: 14px;
    line-height: 30px;
}

.cart-items .product-thumbnail {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-items .product-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: none;
}

.cart-items .product-line-grid {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 0;
}

.cart-items .input-group {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    width: auto !important;
}

.input-group-btn-vertical {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    width: auto !important;
}

.cart-items input[type="number"],
.cart-items input.form-control,
.cart-items input.js-cart-line-product-quantity {
    width: 36px !important;
    text-align: center !important;
    padding: 0.175rem 0.5rem !important;
    height: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    margin: 0 !important;
    border-color: var(--cornero-border-light) !important;
}

.blue {
    color: var(--cornero-black) !important;
    font-weight: bold;
}

.cart-items .bootstrap-touchspin-down,
.cart-items .js-decrease-product-quantity,
.cart-items button.btn-touchspin.js-touchspin.bootstrap-touchspin-down {
    border-radius: 4px 0 0 4px !important;
    padding: 0.375rem 0.75rem !important;
    height: 100% !important;
    line-height: 1.5 !important;
    order: 1 !important;
    margin: 0 !important;
    width: auto !important;
    display: block !important;
    max-height: 100% !important;
}

.cart-items .bootstrap-touchspin-up,
.cart-items .js-increase-product-quantity,
.cart-items button.btn-touchspin.js-touchspin.bootstrap-touchspin-up {
    border-radius: 0 4px 4px 0 !important;
    padding: 0.375rem 0.75rem !important;
    height: 100% !important;
    line-height: 1.5 !important;
    order: 3 !important;
    margin: 0 !important;
    width: auto !important;
    display: block !important;
    max-height: 100% !important;
}

.cart-items .bootstrap-touchspin input {
    order: 2 !important;
}

.material-icons.touchspin-up,
.material-icons.touchspin-down {
    font-size: 14px !important;
    line-height: 1 !important;
}

.input-group-addon,
.bootstrap-touchspin-postfix {
    display: none !important;
}

#cms #wrapper > .container {
    width: 1200px;
}

.page-content.page-cms .container,
.page-content.page-cms .element-container,
.page-content.page-cms .col-xs-12,
.page-content.page-cms {
    padding: 0;
}

#address .form-group {
    margin-bottom: 25px !important;
}

.form-group .btn:hover {
    background: var(--cornero-black-hover) !important;
}

#order-infos .row > div,
.page-customer-account #content {
    padding: 0;
}

.form-footer {
    padding: 15px 0;
    text-align: right;
    display: flex;
    justify-content: center;
    align-content: center;
}

#footer a:focus {
    color: var(--ivory);
    text-decoration: none;
}

#discount .page-footer {
    width: 1200px;
    margin: 0 auto 10px;
    max-width: 100%;
}

#order-detail .page-content {
    background: var(--ivory);
    border-radius: 12px;
    box-shadow: var(--cornero-box-shadow);
    overflow: hidden;
    border: 1px solid #e9ecef;
    position: relative;
    margin: 0 auto;
    width: 1200px;
    max-width: 100%;
}

#order-detail .order-message-form.box {
    margin: 0;
    padding: 0;
}

#order-detail .order-message-form.box header {
    padding: 0 1rem;
}

#order-detail .form-control-label {
    padding: 0;
    margin: 0;
    width: fit-content;
}

#order-detail .form-group div {
    padding: 0 !important;
}

#order-detail .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px !important;
}

#order-detail .form-group:last-child {
    margin: 0 !important;
}

#order-detail .form-group .col-md-9 {
    width: 100%;
}

#order-detail .form-group textarea {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    background: var(--ivory);
    box-sizing: border-box;
}

#order-detail .form-group .form-control-select {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--ivory);
    box-sizing: border-box;
    margin-left: 15px;
}

#order-detail .form-fields {
    padding: 10px 1rem 30px 1rem;
}

.label-pill {
    padding: 6px 15px !important;
    border-radius: 20px !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ivory) !important;
    display: inline-block;
}

#order-detail table {
    width: 100%;
    border-collapse: collapse !important;
    background: var(--ivory);
    border-radius: 10px;
    overflow: hidden;
}

#order-detail table tbody tr {
    background: var(--ivory);
    transition: all 0.3s;
}

#order-detail table tbody tr td {
    padding: 20px 15px;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    vertical-align: middle;
}

#order-detail table tbody tr:last-child td {
    border-bottom: none;
}

#order-detail table tbody tr:hover {
    background: var(--ivory);
}

#order-detail th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background: transparent;
    border: 0;
    color: var(--ivory);
}

#order-detail .thead-default {
    background: linear-gradient(90deg, var(--cornero-black), #00a2f9) !important;
    color: var(--ivory);
}

#order-detail table .line-total {
    font-weight: 600;
    font-size: 16px;
    color: var(--cornero-green);
}

#order-detail .addresses {
    padding: 0 1rem;
}

#order-detail .addresses article {
    border: 1px solid #e9ecef;
    border-radius: 10px;
}

#order-detail .breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
}

#order-detail .page-footer {
    max-width: 1200px;
    margin: 25px auto;
}

#cms h1 {
    font-weight: 700;
    color: var(--cornero-black);
    margin: 0;
    font-size: 2rem;
}

.wishlist-list-item-link:hover button i,
.wishlist-list-item:hover .wishlist-list-item-title,
.wishlist-list-item-right:hover > button i {
    color: var(--cornero-black) !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: var(--cornero-black-hover) !important;
}

.modal-body .form-control-label {
    padding: 0;
    margin-bottom: 5px;
}

.modal-header {
    padding-left: 15px !important;
}

.wishlist-modal .modal-body .form-group .form-control {
    border-radius: 10px;
}

#module-blockwishlist-lists .modal-backdrop.in {
    display: block;
}

#my-account .breadcrumb {
    max-width: 1200px;
    margin: 0 auto 1rem;
}

.input-group .input-group-btn > .btn[data-action="show-password"] {
    width: fit-content;
    background: none !important;
}

.passwd {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    aspect-ratio: 1/1;

    z-index: 10;
}

#field-password {
    border-radius: 10px;
}

.account-link:hover {
    color: var(--cornero-black-hover);
}

#module-psgdpr-gdpr .breadcrumb,
#module-psgdpr-gdpr .page-footer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gdpr-section {
    border-radius: 10px;
}
.footer-payment-logo img {
    height: 24px;
    width: auto;
    display: block;
    object-fit: contain;
}

.contact-us-main-form {
    background: var(--ivory);
}

.contact-us-input-container .form-control {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--ivory);
    box-sizing: border-box;
}

#id-order,
#id_contact {
    height: auto;
}

.contact-us-attachment-section .btn.btn-default {
    border-radius: 0 10px 10px 0;
}

.contact-rich {
    color: var(--cornero-black);
}

.contact-rich .block {
    margin-bottom: 40px;
}

.account-link {
    margin: 0 !important;
}

.removing svg {
    opacity: 0 !important;
}

a.label {
    display: flex;
    align-items: center;
}

.card.cart-container .card-block {
    padding: 0;
}

#module-autogroupassignment-autoassigngroup .row {
    margin: 0;
}

.rank-header .card-title {
    align-items: center !important;
}

.product-line-grid[data-id-product="9928"] .input-group .bootstrap-touchspin-up,
.product-line-grid[data-id-product="9928"] .input-group .bootstrap-touchspin-down,
.product-line-grid[data-id-product="9928"] .input-group .btn-touchspin {
    display: none;
}

.product-line-grid[data-id-product="9928"] .qty input {
    pointer-events: none;

    border: none;
}

.product-line-grid[data-id-product="9928"] .label a[href*="darmowy-liquid"],
.product-line-grid[data-id-product="9928"] .product-line-info a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

#left-column {
    padding-left: 0;
}

.contact-form.contact-us-page-wrapper,
.page-content.card.card-block {
    padding: 0 !important;
    background: var(--ivory);
}

#index #main #content .product-name h4,
#index #main #content .only-categories h4 {
    margin-bottom: 20px;
}

#index h4 {
    font-size: 22px;
}

.benefit-container h4 {
    font-size: 18px !important;
}

.block-category {
    margin-bottom: 8px;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: fit-content !important;
    min-height: 1px !important;
}
.block-category:after {
    display: none;
}

.pagination .page-list {
    background: var(--ivory);
}

.col-md-6.offset-md-2.pr-0 {
    padding: 0;
}

.filter-button {
    padding: 0;
    margin: 0 0 0 auto;
}

.js-search-filters-clear-all,
#search_filter_controls .ok,
.up .btn,
.filter-button .js-search-toggler {
    border: none;
    border-radius: 10px;
    color: var(--ivory);
    background-color: var(--cornero-black);
    text-transform: none;
}

#search_filter_controls .ok:focus,
.filter-button .js-search-toggle:focus {
    background-color: var(--cornero-black-hover) !important;
    color: var(--ivory);
}

.up .btn {
    display: inline-flex;
    align-items: center;
}

.filter-button .js-search-toggler {
    width: 100%;
}

#stores #wrapper > .container {
    max-width: 1550px;
    margin: 0 auto;
}

.store-img {
    max-height: 220px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.store-img img {
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

#stores .store-details {
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.divide-left tr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
}

.stores-title {
    margin: 30px 0 20px;
    font-size: 28px;
}

.leaflet-popup-content {
    font-size: 14px !important;
    width: 200px !important;
}

.leaflet-popup-content a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 10px;
    color: var(--ivory) !important;
    background: var(--cornero-black);
    border-radius: 10px;
    margin-top: 10px;
}

.error-content-container {
    display: flex;
    gap: 20px;
    align-items: center;
    width: fit-content;
}

.error-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.error-content-container h4 {
    font-size: 32px !important;
    color: var(--cornero-black);
    margin: 0 !important;
    text-align: center;
}

.error-content-container p {
    color: var(--cornero-black);
    font-size: 16px;
}

.error-icon {
    height: 150px;
    width: 150px;
    transform: rotateY(180deg);
}

.error-icon svg {
    height: 100%;
    width: 100%;
}

.page-not-found {
    margin-bottom: 0 !important;
    padding: 40px 0 !important;
    height: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background: var(--ivory) !important;
}

.category-sub-menu {
    margin: 5px 0 10px 0 !important;
    position: relative;
}

.breadcrumb {
    margin-bottom: 16px;
}

.product-price.has-discount .current-price {
    gap: 10px;
}

#content .wishlist-products-list {
    padding: 0;
    margin: 0;
}

#content .wishlist-products-list .wishlist-products-item {
    margin: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
}

#content .wishlist-products-list .wishlist-products-item:hover {
    border-color: var(--cornero-border-light);
}

.wishlist-product-bottom,
.wishlist-product-right {
    padding: 4px;
}

.login-popup a:hover {
    color: var(--cornero-black) !important;
}

.wishlist-footer-links > a:not(:first-child) {
    margin-left: 0;
}

#view .btn-unstyle.select-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body#checkout .address-item {
    border: 1px solid var(--cornero-border-light) !important;
    border-radius: 10px 10px 10px 10px;
    background-color: var(--ivory) !important;
    position: relative;
    flex: 1;

    min-height: 100%;
    max-width: calc((100% - 20px) / 3);
    min-width: calc((100% - 20px) / 3);
    margin: 0;
}

body#checkout .selected-label {
    position: relative;
    background: var(--blue-accent);
    color: var(--ivory);
    padding: 4px 12px 4px 12px;
    border-radius: 10px 10px 0 0;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin-bottom: -3px;
    margin-left: -20px;
    z-index: 1;
}

body#checkout .address-item.selected {
    position: relative;
    border: 1px solid var(--blue-accent) !important;
    outline: 1px solid var(--blue-accent) !important;
    background-color: var(--ivory);
    z-index: 0;
    box-shadow: var(--cornero-box-shadow);
}

body#checkout .address-item.selected .selected-label i {
    font-size: 16px;
}

body#checkout .address-item .custom-radio {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
}

body#checkout .address-item.selected .custom-radio,
body#checkout .address-item .custom-radio {
    display: none !important;
}

body#checkout .address-item .radio-block {
    display: block;
    width: 100%;
    cursor: pointer;
}

body#checkout .address-item .address {
    font-size: 16px;
    line-height: 1.4;
    color: var(--cornero-black);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

body#checkout .address-item .edit-address {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--cornero-black);
    margin: 0 !important;
    color: var(--ivory);
    padding: 8px;
    border-radius: 0 10px 0;
    text-decoration: none;
    transition: background 0.3s ease;
}

body#checkout .address-item.selected .edit-address {
    background: var(--blue-accent);
}

body#checkout .address-item .edit-address:hover {
    background: var(--cornero-black);
}

body#checkout .address-item.selected .edit-address:hover {
    background: var(--blue-accent);
}

body#checkout .address-item:hover {
    border-color: var(--blue-accent);
}

body#checkout .address-item.selected:hover {
    border-color: #0078b3;
}

body#checkout .address-item .edit-address i {
    color: var(--ivory);
    font-size: 18px;
}

body#checkout section.checkout-step .address {
    margin: 0 0 0 1.8rem;
    font-size: 18px;
    padding: 10px;
}

body#checkout section.checkout-step #delivery-addresses {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 16px;
}

body#checkout section#checkout-addresses-step .content .js-address-form p {
    text-align: center;
    color: var(--cornero-black);
    padding-top: 10px;
}

body#checkout section.checkout-step .content {
    padding: 0;
    position: relative;
}

body#checkout #delivery-addresses {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: stretch;
}

body#checkout .address-item.add-new-address {
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

body#checkout .address-item.add-new-address .radio-block {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

body#checkout .address-item.add-new-address .add-new-icon i {
    font-size: 48px;
    color: var(--blue-accent);
    margin-bottom: 10px;
}

body#checkout .address-item.add-new-address .add-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--cornero-black);
    margin: 0;
}

body#checkout .address-item.add-new-address .add-description {
    font-size: 12px;
    color: #666;
    margin: 5px 0 0 0;
}

body#checkout section.checkout-step .radio-block {
    padding: 0;
}

.product-line-grid-right .cart-line-product-actions,
.product-line-grid-right .product-price {
    line-height: 22px;
}

.product-discount .regular-price {
    margin: 0;
}

body#checkout section.checkout-step.-current .step-title,
body#checkout section.checkout-step.-complete .step-title {
    font-weight: 400;
    color: var(--cornero-black);
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
    border: 0;
    border: none !important;
}

body#checkout section.checkout-step .step-title .step-edit {
    margin: 0 !important;
    height: fit-content;
    width: fit-content;
    line-height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

body#checkout section.checkout-step.-unreachable .step-title {
    padding: 0 !important;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none !important;
}

#checkout #content > .row {
    display: flex;
    gap: 40px;
    max-width: 95vw;
    margin: 0 auto;
}

#checkout #content > .row:after {
    display: none;
}

body#checkout section.checkout-step.-reachable.-complete h1 .done {
    color: var(--cornero-black);
    padding-left: 10px;
    margin-right: 28px;
}

body#checkout section.checkout-step .step-number {
    border: none;
    margin: 0 !important;
}

body#checkout .delivery-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body#checkout .delivery-option-tile {
    flex: 0 0 calc(50% - 10px);
    border: 1px solid var(--cornero-border-light);
    border-radius: 10px;
    background: var(--ivory);
    position: relative;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

body#checkout .delivery-radio {
    display: none;
}

body#checkout .delivery-label {
    display: flex;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
    align-items: stretch;
}

body#checkout .delivery-option-tile:has(.delivery-radio:checked) {
    border: 1px solid var(--blue-accent);
    outline: 1px solid var(--blue-accent);
}

body#checkout .delivery-option-tile:has(.delivery-radio:checked) .carrier-extra-content {
    display: block !important;
}

body#checkout .delivery-option-tile.has-extra-content {
    transition: margin-bottom 0.3s ease;
}

body#checkout .form-fields {
    padding: 0;
    width: 70%;
    margin: 0 auto;
}

#checkout #js-delivery .form-fields {
    width: 100%;
}

.order-options {
    padding: 8px 0;
}

.carrier-extra-content {
    display: none;
    min-height: 40px;
}

.carrier-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-width: 100%;
}

.carrier-logo {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
}

.carrier-logo img {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carrier-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carrier-name {
    font-weight: bold;
    font-size: 16px;
    color: var(--cornero-black);
    margin-bottom: 8px;
    line-height: 1.2;
}

.carrier-delay {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carrier-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--blue-accent);
    text-align: right;
    flex-shrink: 0;
}

.carrier-content {
    min-width: 100%;
}

body#checkout .payment-options {
    display: flex;
    flex-direction: column;
}

.payment-option-content img {
    max-height: 30px;
}

.tpay-wrapper {
    margin: 0;
    font-size: 14px;
}

body#checkout .payment-option:has(input:checked) {
    border-color: var(--blue-accent);
    outline: 1px solid var(--blue-accent);
}

body#checkout .payment-option label {
    margin: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;

    font-weight: bold;
    font-size: 16px;
    color: var(--cornero-black);
}

body#checkout .payment-option span.custom-radio {
    margin-right: 10px;
}

body#checkout .additional-information {
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    margin: 0;
}

body#checkout #payment-confirmation .btn-primary {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
}

body#checkout .payment-option {
    border: 1px solid var(--cornero-border-light);
    border-radius: 10px;
    background: var(--ivory);
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px 15px;
    max-width: 50%;
    cursor: pointer;
    margin-bottom: 0 !important;
}

body#checkout section.checkout-step .payment-options label {
    display: flex;
    margin-top: 16px;
}

body#checkout section.checkout-step .payment-options .custom-radio {
    display: none !important;
}

.payment-option-content {
    font-size: 16px;
}

body#checkout section.checkout-step {
    padding: 24px !important;
    border-radius: 10px;
    border: 1px solid var(--cornero-border-light) !important;
}

body#checkout section.checkout-step:has(#checkout-login-form.active) .fpsc-hook-buttons {
    display: none;
}

body#checkout section.checkout-step:has(#checkout-login-form.active) button {
    min-width: 100% !important;
}

.section-title-custom {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

section.checkout-step.-current .section-title-custom {
    display: flex;
    border-bottom: 1px solid var(--cornero-border-light);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

#checkout-payment-step .section-title-custom {
    margin: 0 !important;
}

.step-number {
    border: 1px solid var(--cornero-border-light) !important;
    background-color: none !important;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 600;
}

.-current .step-number,
.-complete .step-number {
    min-width: 32px !important;
    height: 32px !important;
    background-color: var(--blue-accent) !important;
    color: white;
    border: none !important;
}

.step-text {
    width: 100%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.address-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.address-actions p a {
    text-decoration: underline !important;
}

.address-actions p {
    padding: 0 !important;
}

#checkout #js-checkout-summary > .card-block {
    padding: 0;
}

body#checkout .cart-grid-right .card {
    border-radius: 10px;
    top: 10px;
    gap: 0;
}

body#checkout .cart-grid-right .card .cart-summary-subtotals-container {
    border: none;
    padding-bottom: 0;
    border-top: 1px solid var(--cornero-border-light);
    margin: 20px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body#checkout .cart-grid-right .card .cart-summary-subtotals-container:after {
    display: none;
}

#checkout .card-block.cart-summary-totals .cart-summary-line.cart-total {
    border-top: 1px solid #ccc;
}

.promo-name.card-block {
    border: 1px solid var(--cornero-border-light);
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--ivory);
    margin-bottom: 20px;
}

#dpdshippingPudoCodModal .modal-body {
    max-height: 100% !important;
    overflow-y: auto;
}

#dpdshipping-widget-pudo-cod-iframe {
    height: 730px !important;
    min-height: 300px !important;
}

.dropdown-backdrop {
    display: none !important;
}

.custom-text-item h1,
.custom-text-item h2 {
    font-size: 1.1rem;
}

body#checkout .delivery-option-tile:nth-child(4):has(.delivery-radio:checked) .carrier-extra-content,
body#checkout .delivery-option-tile:nth-child(2):has(.delivery-radio:checked) .carrier-extra-content {
    display: none !important;
}

.inpost-shipping-container {
    padding: 0;
    background-color: var(--ivory);
}

.dpdshipping-pudo-open-map-btn,
.inpost-shipping-container .inpost-shipping-button,
.inpost-shipping-container .js-select-closest-machine {
    border-radius: 10px;
}

#checkout .modal-backdrop.in {
    display: block;
}

html .modal .inpost-shipping-map-modal {
    margin: auto;
}

.modal.fade.js-inpost-shipping-map-modal.in {
    display: flex !important;
    align-items: center;
}

body#checkout .modal-content {
    border-radius: 10px;
}

#dpdshippingPudoModal .modal-dialog {
    display: flex;
    align-items: center;
    margin: 0 auto;
    height: 100vh;
}

.modal-dpd-content {
    max-height: 100vh;
    top: 0 !important;
    width: 90vw;
    left: 50% !important;
    transform: translateX(-50%);
}

#dpdshipping-widget-pudo-iframe {
    max-height: 90lvh !important;
}

.nav-inline.my-2 {
    display: flex;
    margin: 8px 0 !important;
    justify-content: flex-end;
}

.nav-inline.my-2 .nav-item {
    padding: 0;
    margin: 0;
    text-align: center;
}
.nav-inline.my-2 .nav-item .nav-link {
    padding: 4px 8px;
    border: 1px solid var(--cornero-border-light);
}

.nav-inline.my-2 .nav-item:nth-child(1) .nav-link {
    border-radius: 8px 0 0 8px;
    border-right: 0;
}

.nav-inline.my-2 .nav-item:nth-child(2) {
    display: none;
}

.nav-inline.my-2 .nav-item:nth-child(3) .nav-link {
    border-radius: 0 8px 8px 0;
}

.nav-inline.my-2 .nav-item .nav-link.active {
    background: var(--blue-accent);
    color: white !important;
    border-color: var(--blue-accent);
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-up::after {
    content: "+";
    text-align: center;
    font-size: 20px;
    color: #7a7a7a;
    display: flex;
    transform: translatey(-4px);
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-down::after {
    content: "-";
    text-align: center;
    font-size: 20px;
    color: #7a7a7a;
    display: flex;
    align-items: center;
    transform: translate(5px, -3px) rotateZ(90deg);
}

#products .up .btn-secondary,
#products .up .btn-tertiary {
    color: var(--ivory);
}

#content > section.custom-home-text-section {
    margin-bottom: 0 !important;
}

#index .custom-price {
    flex-direction: row;
    gap: 5px;
}

#main .page-content #notifications {
    margin: 0;
}

.product-miniature.js-product-miniature {
    width: 100%;
}

.confirmation-title-text,
.confirmation-details-title {
    color: var(--cornero-black);
    min-width: 100%;
}

#order-details ul {
    margin-bottom: 0;
}

.confirmation-header-wrapper {
    width: 66.67%;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    border: 1px solid var(--cornero-border-light);
}

.confirmation-main-title {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 24px;
}

.confirmation-email-info {
    display: flex;
    margin-top: 10px;
    font-style: italic;
    padding-top: 10px;
    width: calc(66.67% - 15px);
    justify-content: center;
}

.confirmation-table-section {
    border: 1px solid var(--cornero-border-light);
    padding: 10px;
    margin-right: 30px;
    border-radius: 10px;
}

#order-items > div.order-confirmation-table > div > div.col-sm-6.col-xs-12.qty {
    display: block;
}

#order-items {
    border: none;
}

.confirmation-hook-column {
    padding: 0;
}

#content > div > div > div:nth-child(3) > div > div.order-summary {
    display: flex;
    flex-direction: column;
    line-height: 30px;
}

#order-items > div.order-confirmation-table > table,
#order-items > div.order-confirmation-table > hr {
    display: none;
}

.confirmation-payment-return-section {
    width: 66.6666667%;
}

.confirmation-payment-return-wrapper {
    padding: 0 10px 10px 10px;
}

#content-hook_payment_return dt,
#content-hook_payment_return dd,
#content-hook_payment_return dl,
.confirmation-payment-return-content {
    background: var(--ivory);
}

.definition-list dl dt {
    flex: 0 0 50%;
    background: var(--ivory);
    border-right: solid 1px var(--cornero-border-light);
}

#content-hook_payment_return dl {
    border: solid 1px var(--cornero-border-light);
    border-radius: 10px;
    margin: 8px 0;
}

.contact-details {
    display: flex;
    width: 1000px;
    gap: 20px;
    margin: 0 auto 50px;
    max-width: 100%;
}

#contact #wrapper .container > .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
    max-width: 100%;
}

#contact #wrapper .container #content-wrapper {
    width: 100%;
    padding: 0 !important;
    max-width: 100%;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-hours {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid var(--cornero-border-light);
    flex: 1;
}

.contact-hours-hour {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 8px 5px;
}

.contact-day {
    font-weight: bold;
}

.contact-info-company {
    flex: 1;
    border: 1px solid var(--cornero-border-light);
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--cornero-box-shadow);
}

.contact-info-details {
    flex: 1;
    border: 1px solid var(--cornero-border-light);
    box-shadow: var(--cornero-box-shadow);
    padding: 10px;
    border-radius: 10px;
}

.contact-info-details h4 {
    margin: 0;
}

.shop-contact {
    display: flex;
    flex-direction: column;
}

.shop-contact h5 {
    padding-top: 20px;
}

.confirmation-hook-content,
.confirmation-content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.confirmation-hook-row,
.confirmation-content-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.confirmation-header-wrapper,
.confirmation-email-info,
.confirmation-table-section,
.confirmation-payment-return-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.confirmation-details-section {
    margin: 10px auto !important;
    width: 100%;
    max-width: 1200px;
    padding: 20px 10px !important;
    border-radius: 10px;
    border: 1px solid var(--cornero-border-light);
}
.custom-contact {
    display: flex;
}

.custom-contact .contact-us-field-label {
    text-align: left;
    width: 10%;
}

.custom-contact .contact-us-input-container {
    width: 80%;
}

.custom-contact .form-control-comment {
    width: 10%;
    padding: 0;
    text-align: right;
}

#contact .form-fields {
    padding: 15px 30px 0 30px;
    background: var(--ivory);
}

.contact-us-form-footer {
    padding-top: 0;
}

.contact-us-header-section {
    margin-bottom: 30px;
}

.shop-details {
    line-height: 22px;
}

.product-description .price .custom-price {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.bannerButton .cls-1 {
    fill: var(--ivory) !important;
    stroke: var(--ivory) !important;
}

.onas-sekret-title,
.onas-poznaj-nas-title {
    display: flex;
    justify-content: center;
}

.onas-sekret-subtitle,
.onas-poznaj-nas-subtitle {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.onas-sekret-subtitle p,
.onas-poznaj-nas-subtitle p {
    color: var(--cornero-black);

    text-align: center;
}

.onas-poznaj-nas-elements {
    display: flex;
    flex: 1;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    flex-wrap: wrap;
}

.onas-poznaj-nas-element {
    display: flex;
    flex-direction: column;

    justify-content: center;
    margin-bottom: 10px;
}

.onas-poznaj-nas-element-img {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.onas-sekret-block-img img,
.onas-poznaj-nas-element-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.onas-poznaj-nas-element-text {
    width: 200px;
    display: flex;
    justify-content: center;
    padding: 2px;

    height: 100px;
}

.onas-poznaj-nas-element-text p {
    color: var(--cornero-black);
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    align-content: center;
}

.onas-poznaj-nas-line {
    height: 2px;
    background-color: var(--cornero-black);
    width: 50%;
    margin: 10px auto;
}

.onas-sekret-block {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 95%;
    height: 150px;
}

.onas-sekret-block:nth-child(4) {
    display: flex;
    flex-direction: row-reverse;
    width: 95%;
    height: 150px;
    margin-left: auto;
}

.onas-sekret-block-img {
    display: flex;
    min-width: 100px;
    height: 100px;
}

.onas-sekret-content-title p {
    color: var(--cornero-black);
    font-weight: bold;
    font-size: 16px;
}

.onas-sekret-block:nth-of-type(4) .onas-sekret-content-text p,
.onas-sekret-block:nth-of-type(4) .onas-sekret-content-title p {
    text-align: end;
}
.onas-firma-line,
.onas-sekret-line {
    height: 2px;
    background-color: var(--cornero-black);
    width: 100%;
    margin: 10px auto;
}

.social-icon:hover svg {
    color: var(--cornero-black) !important;
}

.why-us-wrapper {
    max-width: 95vw;
    margin: 0 auto;
}

.why-us-wrapper .why-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.why-us-wrapper .why-hero p {
    text-align: center;
    width: 80%;
}

.why-us-wrapper > hr {
    background-color: var(--cornero-black) !important;
    opacity: 1;
    width: 70% !important;
    margin: 20px auto 40px;
}

.why-tiles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-tiles-row {
    display: flex;
    gap: 20px;
}

.why-tile {
    border-radius: 10px;
    border: 1px solid var(--cornero-border-light);
    padding: 10px;
    flex: 1;
}

.why-tile h3,
.why-tile p {
    margin: 0;
}

.why-tile hr {
    background-color: var(--cornero-black) !important;
    opacity: 1;
    width: 70% !important;
    margin: 10px 0;
}

.why-tile.text {
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.why-tile.text h3 {
    font-size: 1.4rem;
}

.cart-item {
    padding: 0;
    margin: 16px 0;
}

.cart-item:last-child {
    margin-bottom: 0 !important;
}

.cart-item:nth-child(1) {
    margin: 0 0 16px 0;
}

#module-psblog-view .blog-post-single ul {
    list-style: disc;
}

.onas-firma {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 50px;
    justify-content: center;
    height: 200px;
}
.onas-firma-img {
    width: 400px;
    height: auto;
}
.onas-firma-img img {
    width: 100%;
}
.onas-firma-content {
    border-left: solid var(--cornero-border-light) 2px;

    padding-left: 50px;

    line-height: 20px;
    width: 20%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.onas-firma-content-title {
    font-weight: bold;
    margin-bottom: 5px;
}
.onas-firma-content-text ul {
    list-style: none !important;
}
.onas-container {
    padding: 0 10px;
}
.onas-sekret-content-text p {
    color: var(--cornero-black);
}
.onas-firma-line {
    margin-bottom: 40px;
}

body#guest-tracking input[name="email"],
body#guest-tracking input[name="order_reference"] {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--cornero-border-light);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--ivory);
}
body#guest-tracking label.form-control-label.required,
body#guest-tracking label[for="email"] {
    font-weight: 600;
    color: var(--cornero-black);
    margin-bottom: 2px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
body#guest-tracking table#order-products th {
    background: var(--cornero-black);
    color: var(--ivory);
}
body#guest-tracking table#order-products th:first-child {
    border-radius: 10px 0 0 0;
}
body#guest-tracking table#order-products th:last-child {
    border-radius: 0 10px 0 0;
}
body#guest-tracking .line-total {
    font-weight: bold;
    color: var(--cornero-black);
}
body#guest-tracking #invoice-address address,
body#guest-tracking #delivery-address address,
body#guest-tracking table#order-products td {
    color: var(--cornero-black);
}

body#guest-tracking #invoice-address h4,
body#guest-tracking #delivery-address h4 {
    color: var(--cornero-black);
}
body#guest-tracking #invoice-address,
body#guest-tracking #delivery-address {
    border: solid 1px var(--cornero-border-light);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
body#guest-tracking .col-lg-6.col-md-6.col-sm-6 {
    padding: 0;
}
body#guest-tracking #delivery-address {
    margin-right: 10px;
}
body#guest-tracking #invoice-address {
    margin-left: 10px;
}

body#guest-tracking .addresses {
    display: flex;
    justify-content: center;
}
body#guest-tracking .thead-default th {
    background: var(--cornero-black);
    color: var(--ivory);
}

body#guest-tracking .thead-default th:first-child {
    border-radius: 10px 0 0 0;
}
body#guest-tracking .thead-default th:last-child {
    border-radius: 0 10px 0 0;
}
body#guest-tracking #order-history td {
    background: var(--ivory);
}
body#guest-tracking #order-history h3 {
    color: var(--cornero-black);
    text-align: center;
    font-size: 24px;
    padding: 10px;
}
body#guest-tracking #order-infos {
    border: solid var(--cornero-border-light) 1px;
    max-width: 1550px;
    padding: 10px;
    border-radius: 10px;
}
body#guest-tracking #order-infos li,
body#guest-tracking #order-infos .row {
    margin: 0;
    color: var(--cornero-black);
}
body#order-slip h6 {
    color: var(--cornero-black);
    text-align: center;
    font-size: 18px;
}
body#order-slip .thead-default th {
    background: var(--cornero-black);
    color: var(--ivory);
}
body#order-slip .thead-default th:first-child {
    border-radius: 10px 0 0 0;
}
body#order-slip .thead-default th:last-child {
    border-radius: 0 10px 0 0;
}
body#order-slip td {
    background: var(--ivory);
    color: var(--cornero-black);
}

.question-wrap {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--ivory);
    margin-bottom: 10px;
    border: 3px solid #e5e5e5;
    transition: border-color 0.3s ease;
}

.question-title {
    display: flex;
    align-items: center;
    border-radius: 7px;
    padding: 10px 12px;
    gap: 12px;
    background-color: var(--ivory);
    user-select: none;
    cursor: pointer;
}

.question-wrap .text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--cornero-black);
}
.icon {
    height: 30px;
    width: 30px;
}
.icon img {
    height: 100%;
    width: 100%;
    display: block;
}

.arrow {
    height: 20px;
    width: 20px;
    display: grid;
    place-items: center;
}
.arrow img {
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.question-answer {
    height: 0;
    overflow: hidden;
    background: var(--blue-accent);
    color: var(--ivory);
    transition: height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: height;
    padding: 0 10px;
}
.question-answer-inner {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.question-wrap.uncollapsed {
    border-color: var(--blue-accent);
    background-color: var(--blue-accent);
}
.question-wrap.uncollapsed .arrow img {
    transform: rotate(270deg);
}

.question-answer::before,
.question-answer::after {
    content: "";
    display: block;
    height: 10px;
}

.faq-main-wrap {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.faq-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 10%;
    justify-content: space-between;
    min-width: 100px;
}

.faq-icon p {
    color: var(--cornero-black);
    text-align: center;
}

.faq-icon img {
    object-fit: contain;
    max-width: 80%;
    max-height: 200px;
    opacity: 0.8;
}

.faq-hr {
    background-color: var(--cornero-black);
    height: 3px;
    border-radius: 10px;
    opacity: 1;
}
#js-checkout-summary .koszyk-info-container {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    justify-content: center;
    overflow: visible;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.koszyk-info-text {
    display: flex;
    align-items: center;
    overflow: visible;
}

.koszyk-info-text p {
    color: #000;
    font-size: 16px;
    margin: 0;
}

.koszyk-info-img {
    width: 35px;
    height: 35px;
}

.koszyk-info-img svg {
    min-width: 100%;
    height: 100%;
}

.koszyk-info-tooltip {
    color: var(--cornero-black);
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    overflow: visible;
    z-index: 999999999999999 !important;
}

.koszyk-info-tooltip svg {
    width: 24px;
    height: 24px;
}

.koszyk-info-tooltip .tooltip-text {
    visibility: hidden;
    opacity: 0;
    white-space: pre-line;
    width: max-content;
    max-width: 373px;
    background-color: var(--cornero-black);
    color: var(--ivory);
    text-align: center;

    padding: 8px 14px;
    font-size: 13px;
    line-height: 1.35;
    position: absolute;
    top: calc(100% + 10px);
    left: -120px;
    transform: translateX(-50%);
    z-index: 999999999999999 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: opacity 0.18s ease-in-out;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    text-wrap: wrap;
}

.koszyk-info-tooltip .tooltip-text::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;

    top: -11px;
    left: 85.5%;
    transform: translateX(-50%) rotate(360deg);

    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent var(--cornero-black) transparent;
}

.koszyk-info-tooltip:hover .tooltip-text,
.koszyk-info-tooltip:focus-within .tooltip-text {
    visibility: visible;
    opacity: 1;
    height: fit-content;
    z-index: 999999999999999 !important;
}

.koszyk-info-container,
.koszyk-info-container * {
    overflow: visible !important;
}

.delivery-information.unavailable {
    font-weight: 600;
    color: var(--cornero-red-hover) !important;
}

.small-details.unavailable {
    display: flex;
    justify-content: center !important;
}

.small-details.unavailable .product-description {
    display: none !important;
}

a.select-list.js-search-link[href*="product.reference.asc"],
a.select-list.js-search-link[href*="product.reference.desc"],
.select-list.js-search-link:nth-last-child(2),
.select-list.js-search-link:nth-last-child(1) {
    display: none;
}

.page-content.page-cms {
    text-align: left;
    background: var(--ivory);
}

#fi_1828166 {
    width: 30px;
    height: auto;
    fill: var(--cornero-black);
    transform: translateY(30px) rotate(320deg);
    align-self: center;
    margin-bottom: 10px;
}

form.forgotten-password input#email.form-control {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    background: var(--ivory);
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: auto;
}

.forgotten-password .form-fields .center-email-fields {
    gap: 10px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}
form.forgotten-password label.form-control-label.required {
    font-weight: 600;
    color: var(--cornero-black);
    margin-bottom: 2px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-wrap: nowrap;
    padding: 0;
    align-content: center;
}

.js-product.max-amount:before {
    position: absolute;
    width: 100%;
    content: "max";
    top: 0;
    left: 0;
    text-align: center;
    color: var(--cornero-red);
    z-index: 100;
}

.js-product.max-amount {
    border-color: var(--cornero-red) !important;
    position: relative;
    transition: all 0.2s;
}

.product-modal-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
}

.product-modal-details .product-name {
    width: 100%;
    height: fit-content;
    margin: 0;
    justify-content: flex-start !important;
}

.product-modal-details .product-price {
    width: fit-content;
}

.product-modal-details .product-quantity {
    min-width: 0 !important;
    max-width: fit-content;
    justify-content: flex-end;
}
.modal-product-part {
    --open: 100px;
    overflow: hidden;
    max-height: 0;
    animation: modalUp 6s linear infinite;
}

@keyframes modalUp {
    0%,
    16.667% {
        max-height: 0;
    }

    16.667% {
        animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        max-height: 0;
    }

    25% {
        max-height: var(--open);
    }

    25.001%,
    91.667% {
        max-height: var(--open);
    }

    91.667% {
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        max-height: var(--open);
    }

    100% {
        max-height: 0;
    }
}

#language-changer {
    border: 1px solid var(--cornero-border-light);
    padding: 3px 20px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.mobile-menu-header #language-changer {
    padding: 3px 40px;
}

#language-changer .language-list.opened {
    display: flex;
}

#language-changer .language-list {
    position: absolute;
    background: var(--ivory);
    width: 100%;
    border: inherit;
    border-radius: inherit;
    top: 100%;
    left: 0;
    z-index: 10;
    text-align: center;
    display: none;
    flex-direction: column;
    gap: 5px;
    transform: translateY(2px);
    overflow: hidden;
}

#language-changer .language-list > div {
    padding: 3px 0;
    cursor: pointer;
    user-select: none;
}

#language-changer .language-list > div:hover {
    background: #ccc;
}

.newsletter-container {
    display: none !important;
}
.custom-checkbox input {
    left: 0;
}

#js-checkout-summary .cart-voucher.js-cart-voucher {
    display: none !important;
}

.filter-block {
    display: inline-flex !important;
    flex-direction: row;
    margin-right: 0 !important;
}

.btn-social > :first-child {
    position: static;
    height: fit-content;
    margin: 0;
    width: fit-content;
    line-height: 20px;
}

#fbpsc.authentication {
    display: inline-block;
    width: 100%;
    padding: 0 10px;
    margin: 0 0 0 0;
    color: #069cdb;
    font-size: 15px;
    background: var(--ivory);
    border: 10px solid var(--ivory);
    text-align: center;
}
#blockEmailSubscription_displayHome {
    display: none;
}

.newsletter-container.block_newsletter {
    background: var(--ivory);
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    display: contents;
}

.newsletter-container.block_newsletter .row {
    margin: 0;
    display: block;
}

.newsletter-container.block_newsletter .col-md-5,
.newsletter-container.block_newsletter .col-md-7,
.newsletter-container.block_newsletter .col-xs-12 {
    padding: 0;
    width: 100%;
    float: none;
}

.newsletter-container #block-newsletter-label {
    display: none;
}

.newsletter-title > span {
    color: var(--cornero-black);
    font-size: clamp(45px, 10vw, 80px);
    vertical-align: -0.1em;
}

.newsletter-text > span {
    color: var(--blue-accent);
}

.newsletter-form-title {
    text-align: center;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: bold;
    color: var(--cornero-black);
    margin: 20px 0;
    font-family: "Unbounded", sans-serif;
}

.newsletter-container form {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    padding: 10px;
}

.newsletter-container .form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    flex-direction: row;
    margin: 15px auto;
}

.newsletter-container .form-group {
    display: flex;
    flex: 1;
    height: 50px;
}

.newsletter-container .form-group.full-width {
    width: 100%;
    max-width: 500px;
    margin: 15px auto;
    height: 50px;
}

.newsletter-container input[type="email"],
.newsletter-container input[type="text"],
.newsletter-container input[type="date"],
.newsletter-container input[name="email"] {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: clamp(14px, 2.5vw, 16px) !important;
    background: var(--ivory) !important;
    box-sizing: border-box !important;
    height: 50px !important;
    float: none !important;
    margin: 0 !important;
}

.newsletter-container input::placeholder {
    color: var(--gray) !important;
}

.newsletter-button-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    align-items: center;
    gap: 15px;
}

.newsletter-container .btn.btn-primary.float-xs-right {
    display: none !important;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px auto;
    font-size: clamp(7px, 1.5vw, 8px);
    color: #666;
    width: 100%;
    max-width: 500px;
    line-height: 1.4;
    font-family: "Unbounded", sans-serif;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 2px !important;
    margin-right: 0 !important;
    width: auto !important;
    height: auto !important;
}

.checkbox-container.prestashop-conditions {
    font-size: clamp(8px, 1.8vw, 10px);
}

.privacy-link {
    color: #00bfff;
    text-decoration: none;
}

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

.js-search-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.input-container label,
.input-container p {
    text-align: left;
    display: flex;
}

.input-container p {
    gap: 4px;
}

label .color {
    border: 1px solid #ccc !important;
}

.custom-dropdown {
    top: 110%;
    border: 1px solid var(--cornero-border-light);
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 140%;
    flex-direction: column;
    text-align: left;
    padding: 10px 20px;
    border-radius: 10px;
    gap: 10px;
    background: var(--ivory);
    z-index: 1;
}

.custom-dropdown .dropdown-item:hover {
    color: var(--cornero-black) !important;
}

.custom-dropdown .dropdown-item {
    padding: 0;
    width: fit-content;
}

.nav2 .dropdown.js-dropdown {
    margin: 0 !important;
    font-size: 0.9375rem;
}

#_desktop_language_selector {
    height: 100%;
    display: flex !important;
    align-items: flex-end;
}

.nav2 .btn-unstyle {
    height: 100%;
    display: flex !important;
    align-items: flex-end;
    gap: 5px;
}

.expand-more {
    width: fit-content;
    height: fit-content;
}

#bt_sl-link .material-icons {
    font-size: 70px !important;
}

.js-address-form .form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-control-label {
    border: 1px solid var(--cornero-border-light);
    border-radius: 6px;
    width: fit-content;
    position: absolute;
    z-index: 10;
    left: 14px;
    top: -12px;
    padding: 1px 4px !important;
    background: white;
}

.form-group.row {
    position: relative;
    margin: 0;
}
#login-form .form-group {
    margin-bottom: 25px !important;
}

.form-fields .form-group {
    margin-bottom: 25px;
    width: 100%;
}

.js-input-column {
    padding: 0;
    width: 100%;
}

.form-control-comment {
    width: 100%;
    padding: 0;
}

.form-group:has(.custom-checkbox) .form-control-label {
    border: none;
}

.active_filters .filter-block {
    text-wrap: nowrap;
    margin: 0;
    background: var(--ivory);
}

.cart-summary-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.js-show-details {
    border: 1px solid var(--cornero-border-light);
    display: flex;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-products > p {
    width: fit-content;
}

.mobile-menu #language-selector-label {
    display: none;
}

.mobile-menu #_desktop_currency_selector .link,
.mobile-menu #_desktop_language_selector .link {
    border: 1px solid var(--cornero-border-light);
    border-radius: 10px;
    padding: 4px 8px;
}

#submit-login {
    margin: 0 auto !important;
    display: block;
}

#fbpsc .authentication {
    margin: 0;
    padding: 0;
}

#fbpsc .btn-google-default {
    padding: 7px 8px;
    color: var(--gray);
    font-family: Manrope, sans-serif;
    background-color: var(--ivory);
    box-shadow: none;
    border: solid 1px var(--cornero-border-light);
    border-radius: 10px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

#fbpsc .btn-connect {
    border: 2px solid #b9b9b9;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    margin: 0;
}

#fbpsc .btn-social > :first-child {
    position: static;
    width: 30px;
    height: 20px;
    line-height: 30px;
    margin-left: 0;
}

#fbpsc .btn-connect .btn-title-connect {
    padding: 0;
}

.small-details.tpd {
    height: fit-content;
}

.small-details.tpd p {
    margin: 0 auto;
    text-align: center;
}

#product-modal .modal-content {
    overflow: visible;
}

.product-miniature .thumbnail-container .product-thumbnail img {
    border-radius: 12px;

    display: grid;
    place-items: center;
    position: relative;
    text-align: center;
    color: var(--cornero-black);
    aspect-ratio: 1.4/1;
}

.dostawa {
    border: 1px solid;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

#lb-recommend-element-basket {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

#lb-recommend-element-basket .reco-border {
    margin-bottom: 0;
}

.black-banner {
    border-radius: 10px;
    margin: 0 0 0.5rem 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.order-status-bar {
    position: relative;
    border: none !important;
}

#order-history tr .order-status-bar:before {
    position: absolute;
    height: 50%;
    width: 50%;
    content: "";
    background: var(--cornero-border-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 2;
    display: grid;
    place-items: center;
    color: var(--gray);
    font-size: 20px;
}

#order-history tr .order-status-bar:after {
    position: absolute;
    height: 60%;
    width: 3px;
    content: "";
    background: var(--cornero-border-light);
    left: 50%;
    transform: translate(-50%, 20px);
    z-index: 1;
}

#order-history tr:nth-last-child(1) .order-status-bar:after {
    display: none;
}

#order-history tr:nth-child(1) .order-status-bar:before {
    color: var(--ivory);
    background: var(--cornero-black);
    height: 60%;
    width: 60%;
}

.history-line {
    display: flex;
    border: 1px solid red;
}

.history-status {
    display: flex;
    height: 50px;
    width: 50px;
    margin-left: 8px;
    position: relative;
}

.history-state {
    display: flex;
    flex-direction: column-reverse;
    padding-right: 8px;
}

.history-state .date {
    text-align: right;
}

.history-status:before {
    position: absolute;
    height: 90%;
    width: 90%;
    content: "Ã¢Å“â€";
    background: var(--cornero-border-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 2;
    display: grid;
    place-items: center;
    color: var(--gray);
    font-size: 20px;
}

#order-history tr td:nth-child(2) {
    border-left: 1px solid #f0f0f0;
}

.history-status:after {
    position: absolute;
    height: 100%;
    width: 3px;
    content: "";
    background: var(--cornero-border-light);
    left: 50%;
    transform: translate(-50%, 50px);
    z-index: 1;
}

.history-lines .history-line:nth-last-child(1) .history-status:after {
    display: none;
}

.history-lines .history-line:nth-child(1) .history-status:before {
    color: var(--ivory);
    background: var(--cornero-black);
    height: 100%;
    width: 100%;
}

.page-order-detail #order-history .history-lines .history-line {
    border-bottom: 1px solid #e9ecef !important;
}

#order-dettail .breadcrumb {
    padding-bottom: 16px !important;
}

#order-infos .box {
    background: var(--ivory);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 16px;
}

#order-infos .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 !important;
}

#order-infos .col-xs-9 {
    flex: 1;
    min-width: 200px;
}

#order-infos .col-xs-3 {
    flex-shrink: 0;
}

#order-infos strong {
    color: var(--cornero-black);
    font-size: 18px;
    line-height: 1.5;
}

#order-infos .button-primary {
    display: inline-block;
    background: var(--cornero-black);
    color: var(--ivory);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

#order-infos .button-primary:hover {
    background: var(--cornero-black-hover);
    color: var(--ivory);
}

#order-infos ul {
    list-style: none;
}

#order-infos ul li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--gray);
    font-size: 16px;
}

#order-infos ul li:last-child {
    border-bottom: none;
}

#order-infos ul li strong {
    color: var(--cornero-black);
    font-size: 16px;
    margin-right: 8px;
}

#product .add-to-cart[disabled] {
    background: transparent;
    border: 1px solid var(--cornero-black);
    color: var(--cornero-black);
}

#product .add-to-cart[disabled] svg {
    fill: var(--cornero-black);
}

#product .add-to-cart[disabled]:hover {
    background: var(--cornero-black-hover);
    border: 1px solid var(--cornero-black-hover);
    color: var(--ivory);
}

#product .add-to-cart[disabled]:hover svg {
    fill: var(--ivory);
}

.product-variants-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid var(--cornero-border-light);
}

.input-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--cornero-border-light);
    border-radius: 8px;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    align-items: center;
    background: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.input-container:has(input[checked]) {
    border: 2px solid var(--blue-accent);
    outline: 1px solid #422f2880;
    outline-offset: 2px
}

.input-container label {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.input-container label span {
    margin: 0;
    width: 100%;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    border: none;
}

.attribute-price-impact {
    height: fit-content !important;
    color: var(--blue-accent) !important;
}

.input-container input {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    left: 0;
}

.input-container:has(input.input-radio) {
    padding: 8px !important;
}

.product-variants-item ul {
    --cornGap: 8px;
    --tiles: 6;

    width: 100%;
    display: grid;
    grid-template-columns: repeat(
    var(--tiles),1fr);
    gap: var(--cornGap);
}

.product-variants-item ul#group_6 {
    display: flex;
}

.product-variants-item ul#group_6 .input-container label span {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.input-color,
.input-radio,
.input-color:checked + span,
.input-color:hover + span,
.input-radio:checked + span,
.input-radio:hover + span {
    border: none;
}

.input-container .color {
    width: 100%;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    aspect-ratio: 1.33/1;
}

.subcategories-list {
    gap: 16px;
    margin: 0 !important;
    display: none !important;
}

#subcategories {
    margin: 0;
    padding: 0;
    border: none;
}

#subcategories ul li .subcategory-image a img {
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid var(--cornero-border-light);
    border-radius: 24px;
}

#subcategories ul li h5 a {
    color: var(--cornero-black) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
}

#subcategories ul li {
    width: auto;
    min-width: 0;
    margin: 0;
    text-align: center;
}

#subcategories ul li .subcategory-image a {
    padding: 0;
    border: none;
}

#subcategories ul li:hover .subcategory-image a {
    padding: 0 !important;
    border: 0 solid #24b9d7;
}

.blog-posts-preview-container.owl-carousel .owl-stage {
    display: flex;
}

.blog-posts-preview-container.owl-carousel .owl-item {
    display: flex;
    padding-left: 2px;
}

.blog-posts-preview-container.owl-carousel .blog-post-preview {
    height: 100%;
}

.product-customization .product-customization-item,
.product-variants > .product-variants-item {
    margin: 0;
}

#variant-button-bedante .input-container input {
    padding: 8px !important;
}

.product-variants-item:after {
    display: none;
}

#product .form-control-select {
    border-radius: 8px;
    min-width: 100%;
    color: var(--cornero-black);
    font-weight: 600;
    border: 2px solid var(--cornero-border-light);
}

#product .product-color-variants {
    display: none;
    outline-color: var(--blue-accent);
}

#product .product-color-variants:focus {
    outline-color: 2px solid var(--blue-accent) !important;
}

.form-control:focus {
    outline: 1px solid var(--blue-accent) !important;
    border-color: var(--blue-accent);
}

.form-control.input-invalid,
.form-control.input-required {
    border-color: var(--cornero-red);
}

#product .product-prices.js-product-prices {
    border-bottom: 1px solid var(--cornero-border-light);
    padding: 8px 0 16px;
}

.product-discounts {
    margin-bottom: 0;
}

.photo-width {
    position: sticky;
    top:70px;
}

#product #wrapper #product-comments-list .product-comment-list-item.row {
    background: var(--ivory);
    border-radius: 16px;
    padding: 16px 0 !important;
    margin-bottom: 16px;
    border: 1px solid var(--cornero-border-light);
}

#product-comments-list .comment-infos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#product-comments-list .grade-stars .star-on,
#product-comments-list .grade-stars .star {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: none;
    margin: 0;
}

#product-comments-list .grade-stars .star-on::before {
    content: "Ã¢Ëœâ€¦";
    color: #ffc107;
    font-size: 26px;
}

#product-comments-list .grade-stars .star::before {
    content: "Ã¢Ëœâ€¦";
    color: var(--ivory);
    font-size: 26px;
}

#product-comments-list .comment-date {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
}

#product-comments-list .comment-author {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

#product-comments-list .comment-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#product-comments-list .comment-content .h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0;
}

#product-comments-list .comment-content > p:not(.h4) {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

#product-comments-list .comment-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}

#product-comments-list .comment-buttons a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--ivory);
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

#product-comments-list .comment-buttons a:hover {
    background: var(--ivory);
    color: var(--gray);
}

#product-comments-list .comment-buttons .useful-review:hover {
    background: var(--ivory);
    color: #2e7d32;
}

#product-comments-list .comment-buttons .not-useful-review:hover {
    background: var(--ivory);
    color: #c62828;
}

#product-comments-list .comment-buttons .report-abuse:hover {
    background: #fff3e0;
    color: #ef6c00;
}

#product-comments-list .comment-buttons .material-icons {
    font-size: 18px;
}

#product-comments-list .comment-buttons span {
    font-weight: 500;
    min-width: 16px;
    text-align: center;
}

#product-comments-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

#product-comments-list-header .comments-nb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--cornero-black);
}

#product-comments-list-header .comments-nb .material-icons {
    font-size: 24px;
    color: var(--cornero-black);
}

#product-comments-list-header .comments-note {
    display: flex;
    align-items: center;
    gap: 4px;
}

#product-comments-list-header .comments-note span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
}

#product-comments-list-header .grade-stars .star-content {
    top: 0 !important;
}

#product-comments-list-header .grade-stars .star-on,
#product-comments-list-header .grade-stars .star {
    width: 20px;
    height: 20px;
    display: inline-block;
    color: #ffc107 !important;
    background: none;
    margin: 0;
}

#product-comments-list-header .grade-stars .star-on::before {
    content: ">";
    color: #ffc107;
    font-size: 26px;
}

#product-comments-list-header .grade-stars .star::before {
    content: ">";
    color: var(--ivory);
    font-size: 26px;
}

.btn-comment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ivory);
    background: var(--blue-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-comment .material-icons {
    font-size: 20px;
}

.btn-comment-big .material-icons {
    font-size: 22px;
}

.tabs {
    margin: 40px 0;
}

.tabs .nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--cornero-border-light);
    padding: 0;
    margin: 0;
    list-style: none;
}

.tabs .nav-item {
    margin: 0;
}

.tabs .nav-link {
    display: block;
    padding: 8px 24px !important;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    border: none;
    border-bottom: 1px solid var(--cornero-border-light);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tabs .nav-tabs .nav-link.active {
    color: var(--blue-accent);
    border-bottom-color: var(--blue-accent);
    background: none !important;
}

.tabs .tab-pane {
    display: none;
    padding: 16px 0;
}

.tabs .tab-pane.active,
.tabs .tab-pane.in {
    display: block;
}

.tabs .product-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.tabs .product-description p {
    margin-bottom: 16px;
}

.tabs .product-description strong {
    font-weight: 600;
    color: var(--cornero-black);
}

.tabs .product-quantities {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--ivory);
    border-radius: 8px;
    margin-bottom: 16px;
}

.tabs .product-quantities .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin: 0;
}

.tabs .product-quantities span {
    font-size: 15px;
    color: var(--gray);
}

.tabs .product-out-of-stock {
    padding: 12px 20px;
    background: var(--ivory);
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    font-size: 14px;
    color: #e65100;
}
.dostawa-img {
    display: flex;
    flex-direction: column;
    width: 75%;
    padding: 24px;
    margin: 0 auto;
    justify-content: center;
}
.dostawa-subcontent,
.dostawa-content {
    line-height: 28px;
    font-size: 18px;
}
.dostawa-img img {
    border-radius: 24px;
}

.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-content .modal-header {
    padding: 24px 32px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-content .modal-header .h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0;
}

.modal-content .modal-header .close {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.modal-content .modal-header .close:hover {
    color: var(--cornero-black);
}

.modal-content .product-flags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0;
    list-style: none;
}

.modal-content .product-flag {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.modal-content .product-flag.new {
    background: var(--blue-accent);
    color: var(--ivory);
}

.modal-content .product-cover {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.modal-content .product-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.modal-content .h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.modal-content #criterions_list {
    padding: 0;
    margin: 0 0 24px 0;
    list-style: none;
}

.modal-content #criterions_list li {
    margin-bottom: 16px;
}

.modal-content .criterion-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-content .criterion-rating label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    margin: 0;
    min-width: 80px;
}

.modal-content .criterion-rating .grade-stars {
    display: flex;
    gap: 4px;
    cursor: pointer;
}

.modal-content .criterion-rating .grade-stars .star-content {
    position: relative;
    display: flex;
    gap: 2px;
}

.modal-content .criterion-rating .grade-stars .star,
.modal-content .criterion-rating .grade-stars .star-on {
    background: none;
}

.modal-content .criterion-rating .grade-stars .star::before {
    content: "Ã¢Ëœâ€¦";
    color: var(--ivory);
    font-size: 24px;
}

.modal-content .criterion-rating .grade-stars .star-hover:before,
.modal-content .criterion-rating .grade-stars .star-on::before {
    content: "Ã¢Ëœâ€¦";
    color: #ffc107;
    font-size: 24px;
}

.modal-content #ratingNotChosen {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 8px;
}

.modal-content .form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    margin: 20px 0 8px 0;
}

.modal-content .form-label .required {
    color: #d32f2f;
    margin-left: 4px;
}

.modal-content input[type="text"],
.modal-content textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--gray);
    background: var(--ivory);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.modal-content input[type="text"]:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.modal-content textarea {
    min-height: 120px;
    resize: vertical;
}

.modal-content .required {
    font-size: 13px;
    color: var(--gray);
    margin: 20px 0 0 0;
}

.modal-content .post-comment-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-content .btn-comment-inverse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    background: var(--ivory);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content .btn-comment-inverse.btn-comment-big {
    padding: 16px 32px;
    font-size: 16px;
}

#footer .footer-main-content {
    padding: 48px 15px;
}

#footer .links .h3,
#footer .links .h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer .links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#footer .links ul li {
    margin-bottom: 12px;
}

#footer .links ul li a {
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

#footer .links ul li a:hover {
    color: var(--blue-accent);
}

#footer .wrapper {
    margin-bottom: 32px;
}

#footer .block-contact-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ivory);
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

#footer .contact-content {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

#footer .contact-content a {
    color: var(--blue-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

#footer .contact-content a:hover {
    opacity: 0.8;
}

#footer .footer-wrapper-bottom {
    background: var(--cornero-black);
    padding: 24px 0;
}

#footer .copyright {
    text-align: center;

    font-size: 13px;
}

#footer .title {
    display: none;
}

#footer .title:after {
    display: none;
}

#footer .wishlist-modal .modal-content {
    border-radius: 12px;
    border: none;
}

#footer .wishlist-modal .modal-header {
    padding: 24px 32px;
    border-bottom: 2px solid #f0f0f0;
}

#footer .wishlist-modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--cornero-black);
}

#footer .wishlist-modal .modal-body {
    padding: 32px;
}

#footer .wishlist-modal .modal-footer {
    padding: 20px 32px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

#footer .wishlist-modal .btn-primary {
    background: var(--blue-accent);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

#footer .wishlist-modal .btn-secondary {
    background: var(--ivory);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: var(--gray);
    font-weight: 600;
}

#footer .wishlist-add-to-new {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

#footer .wishlist-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

#footer .wishlist-list-item {
    padding: 16px;
    background: var(--ivory);
    border-radius: 8px;
    margin-bottom: 12px;
}

#footer .wishlist-list-item p {
    margin: 0;
    font-weight: 500;
    color: var(--gray);
}

#blockcart-modal .modal-dialog {
    max-width: 1000px;
    width: 100vw;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#blockcart-modal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-height: 100%;
}

#blockcart-modal .modal-header {
    padding: 12px 32px;

    align-items: center;
}

#blockcart-modal .modal-header .close {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.2s ease;
}

#blockcart-modal .modal-header .close span {
    display: flex;
    align-items: center;
}

#blockcart-modal .modal-header .close:hover {
    color: var(--cornero-black);
}

#blockcart-modal .modal-header .material-icons {
    font-size: 24px;
}

#blockcart-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

#blockcart-modal .modal-body {
    padding: 32px;
}

#blockcart-modal .divide-right {
    border-right: 2px solid #f0f0f0;
}

#blockcart-modal .divide-right > .row {
    display: flex;
    flex-direction: column;
}

#blockcart-modal .divide-right > .row > div {
    width: 100%;
}

#blockcart-modal .divide-right > .row > div .product-image {
    min-width: 100%;
    height: auto;
    margin: 0 auto;
}

#blockcart-modal .product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

#blockcart-modal .product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--cornero-black);
    margin: 0;
    line-height: 1.4;
}

#blockcart-modal .product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-accent);
    margin: 0 0 16px 0;
}

#blockcart-modal .modal-body span:not(.value):not(.label):not(.material-icons) {
    font-size: 14px;
    color: var(--gray);
    display: inline-block;
    margin-bottom: 8px;
}

#blockcart-modal .modal-body span strong {
    color: var(--cornero-black);
    font-weight: 600;
}

#blockcart-modal .cart-content {
    padding-left: 0;
}

#blockcart-modal .cart-products-count {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 20px;
}

#blockcart-modal .cart-content p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--cornero-black) !important;
    border: none;
    padding: 0;
    border-radius: 5px;
}

#blockcart-modal .cart-content .label {
    font-weight: 500;
}

#blockcart-modal .cart-content .value {
    font-weight: 600;
    color: var(--cornero-black);
}

#blockcart-modal .product-total {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px solid #f0f0f0;
    font-size: 16px;
}

#blockcart-modal .product-total .label {
    font-weight: 600;
    color: var(--cornero-black);
}

#blockcart-modal .product-total .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-accent);
}

#blockcart-modal .cart-content-btn {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-direction: column-reverse;
    width: 100%;
}

#blockcart-modal .cart-content-btn .btn {
    flex: 1;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 !important;
}

#blockcart-modal .cart-content-btn .btn-secondary {
    background: var(--ivory);
    color: var(--gray);
}

#blockcart-modal .cart-content-btn .btn-primary {
    background: var(--blue-accent);
    color: var(--ivory);
}

#blockcart-modal .cart-content-btn .material-icons {
    font-size: 20px;
}

.product-line-grid {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    padding: 24px;
    background: var(--ivory);
    border-radius: 12px;
    position: relative;
}

.product-line-grid-left .product-image {
    display: block;
    height: 120px;
    width: auto;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ivory);
    aspect-ratio: 14 / 11;
}

.product-line-grid-left .product-image img {
    width: 100%;
    object-fit: cover;
}

.product-line-grid-body .product-line-info .label {
    font-size: 16px;
    font-weight: 600;
    color: var(--cornero-black);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: inline-block;
}

.product-line-grid-body .product-line-info .label:hover {
    color: var(--blue-accent);
}

.product-line-grid-body .customization-link {
    font-size: 14px;
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 500;
}

.product-attributes-table {
    display: inline-block;
}

.product-attributes-table .attribute-value {
    text-transform: none;
    position: relative;
    opacity: 0.9;
    color: var(--gray);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-attributes-table .attribute-value:not(:last-child):after {
    content: "·";
    margin: 0 4px;
}

.product-line-grid-right .product-price {
    text-align: right;
    margin: 0;
}

.product-line-grid-right .product-discount {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.product-line-grid-right .regular-price {
    font-size: 14px;
    color: #9e9e9e;
    text-decoration: line-through;
}

.product-line-grid-right .discount-percentage {
    display: inline-block;
    padding: 2px 8px;
    background: #ff5252;
    color: var(--ivory);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.product-line-grid-right .current-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.product-line-grid-right .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--cornero-black);
}

.product-line-grid-right .unit-price-cart {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

.product-line-grid-right .qty {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.product-line-grid-right .atc_qty {
    width: 80px;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    background: var(--ivory);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.product-line-grid-right .atc_qty:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.product-line-grid-right .remove-from-cart {
    color: var(--gray);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 0 4px 4px;
}

.product-line-grid-right .remove-from-cart:hover {
    color: #ff5252;
}

.product-line-grid-right .remove-from-cart svg {
    width: 22px;
    height: 22px;
    fill: #c62828;
    transition: fill 0.3s ease;
}

.product-line-grid-right .remove-from-cart:hover svg {
    fill: var(--ivory);
}

.product-line-grid .clearfix {
    display: none;
}

.customization-modal .modal-content {
    border-radius: 12px;
    border: none;
}

.customization-modal .modal-header {
    padding: 24px 32px;
    border-bottom: 2px solid #f0f0f0;
}

.customization-modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--cornero-black);
}

.customization-modal .modal-body {
    padding: 32px;
}

.product-customization-line {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-customization-line:last-child {
    border-bottom: none;
}

.customization-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

.customization-value {
    color: var(--gray);
    font-size: 14px;
}

.customization-value img {
    max-width: 200px;
    border-radius: 8px;
}

.cart-title {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    padding: 0 0 28px;
}

.cart-title h1 {
    color: var(--cornero-black);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    text-transform: none;
    margin: 0;
}

.total-cart-products {
    color: var(--gray);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    white-space: nowrap;
}

.trust-badge svg {
    flex-shrink: 0;
    color: var(--blue-accent);
}

.trust-badge small {
    font-size: 13px;
    font-weight: 500;
}

#checkout #content-wrapper > .row {
    margin: 0;
    display: flex;
    gap: 50px;
}

#checkout #content-wrapper > .row:after {
    display: none;
}

.forgot-password {
    width: fit-content;
    margin: 0 !important;
}

.no-account a,
.forgot-password a {
    color: var(--blue-accent);
}

.no-account a:hover,
.forgot-password a:hover {
    color: var(--cornero-black) !important;
}

#checkout .btn-primary {
    width: fit-content;
    min-width: 170px;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0;
    width: var(--page-width);
}

#cart #notifications {
    margin: 0;
}

#checkout #_desktop_logo {
    display: flex;
    justify-content: center;
}

.confirmation-header {
    background-color: var(--ivory);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.confirmation-icon {
    width: 60px;
    height: 60px;
    background-color: #4caf50;
    color: var(--ivory);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.confirmation-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--cornero-black);
}

.confirmation-email {
    color: #666;
    font-size: 15px;
}

.order-details {
    background-color: var(--ivory);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.details-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cornero-black);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: var(--cornero-black);
    font-weight: 500;
}

.products-section {
    background-color: var(--ivory);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--cornero-black);
}

.product-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.product-item:last-child {
    border-bottom: none;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--ivory);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details {
    flex: 1;
}

.product-name {
    font-weight: 500;
    color: var(--cornero-black);
    margin-bottom: 5px;
}

.product-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: right;
    min-width: 300px;
}

.price-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-weight: 600;
    color: var(--cornero-black);
}

.order-summary {
    border-radius: 6px;
    padding: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0 0;
    margin-top: 15px;
    border-top: 2px solid #e0e0e0;
    font-size: 20px;
    font-weight: 600;
    color: var(--cornero-black);
}

.free-shipping {
    color: #4caf50;
    font-weight: 600;
}

.payment-info {
    background-color: var(--ivory);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.payment-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.payment-details {
    background-color: var(--ivory);
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.payment-detail {
    display: flex;
    padding: 8px 0;
}

.payment-detail dt {
    font-weight: 600;
    color: #666;
    min-width: 150px;
}

.payment-detail dd {
    color: var(--cornero-black);
    font-weight: 500;
}

.order-number {
    background-color: var(--ivory);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 600;
}

.contact-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
}

.alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    font-weight: 500;
}

#guestOrderTrackingForm {
    width: 70%;
    margin: 0 auto !important;
    padding: 10px 0 0 0;
}

.js-product.product.item {
    position: relative;
}

.product-miniature {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-bottom: 0;
    background: transparent !important;
}

.thumbnail-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 4px;
    justify-content: space-between;
}

.thumbnail-top {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.thumbnail.product-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-price-and-shipping .price {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.miniature-delivery-time,
.product-dimensions-info {
    font-size: 13px;
    color: #666;
    padding: 0;
    margin: auto 0 0;
}

.miniature-delivery-time {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.product-dimensions-info .dimension-value {
    font-weight: 600;
    color: #0b0b0b;
}

.product-actions:has(.btn) {
    margin-top: auto;
}
.small-details {
    margin-top: 12px;
}

.tax-shipping-delivery-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toggle-product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    background: var(--ivory);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: #0b0b0b;
    font-weight: 500;
}

.toggle-product-info:hover {
    background: var(--ivory);
}

.toggle-product-info.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: var(--ivory);
}

.toggle-text {
    flex: 1;
    text-align: left;
}

.toggle-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.toggle-product-info.active .toggle-icon {
    transform: rotate(180deg);
}

.product-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transition:
            max-height 0.3s ease-out,
            padding 0.3s ease-out;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.product-info-content.collapsed {
    max-height: 0;
    padding: 0 12px;
    border-color: transparent;
}

.product-info-content.expanded {
    max-height: 300px;
    padding: 12px;
    border-color: #e0e0e0;
}

.delivery-info-block,
.shipping-cost-info,
.installments-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--ivory);
    color: #666;
}

.delivery-info-block .material-icons,
.shipping-cost-info .material-icons,
.installments-info .material-icons {
    font-size: 18px;
    color: #0b0b0b;
    flex-shrink: 0;
}

.delivery-time.available {
    color: #27ae60;
    font-weight: 500;
}

.delivery-time.out-of-stock {
    color: #e67e22;
    font-weight: 500;
}

.shipping-cost-info {
    background: #fff3cd;
    color: #856404;
}

.shipping-cost-info .material-icons {
    color: #ffc107;
}

.installments-info {
    background: #d1ecf1;
    color: #0c5460;
}

.installments-info .material-icons {
    color: #17a2b8;
}

.accordion-card {
    overflow: hidden;
}

.accordion-header {
    background: transparent;
    border: none;
    padding: 0;
    border-bottom: 1px solid var(--cornero-border-light);
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    text-decoration: none;
    color: #0b0b0b;
    background: transparent;
    border: none;
    transition: background 0.2s;
    cursor: pointer;
}

.accordion-button:hover {
    background: var(--ivory);
}

.accordion-button:not(.collapsed) {
    background: var(--ivory);
}

.accordion-content-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.accordion-content-wrapper svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #0b0b0b;
}

.accordion-label {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.accordion-badge {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.accordion-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #666;
}

.accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-collapse {
    transition: height 0.3s ease;
}

.accordion-body-content {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cornero-black);
    background: var(--ivory);
}

.accordion-body-content p {
    margin-bottom: 12px;
}

.accordion-body-content p:last-child {
    margin-bottom: 0;
}

.accordion-subtitle {
    font-size: 15px;
    font-weight: 600;
    margin: 16px 0 12px 0;
    text-decoration: underline;
}

.accordion-list {
    margin: 16px 0;
    padding-left: 20px;
}

.accordion-list li {
    margin-bottom: 12px;
}

.accordion-list li strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.accordion-list li p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.accordion-benefits {
    margin: 12px 0;
    padding-left: 20px;
    list-style: auto;
}

.accordion-benefits li {
    margin-bottom: 8px;
    color: #666;
}

.accordion-success {
    color: #27ae60;
    font-weight: 500;
}

.accordion-body-content a {
    color: #0b0b0b;
    text-decoration: underline;
}

.accordion-body-content a:hover {
    color: #666;
}

.installments-button {
    width: 100%;
    align-items: center !important;
    gap: 16px !important;
    background: white !important;
    border: 1px solid var(--cornero-black) !important;
    display: flex !important;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    margin: 20px 0 0 !important;
    height: 44px;
}

.installments-button img {
    width: fit-content;
}

.mobile-bottom-bar {
    display: none;
}
#header a:hover {
    color: #232323;
}

#ui-id-1 {
    position: fixed;
}

#sticky-header.sticky ~ * .ui-autocomplete.searchbar-autocomplete,
body:has(#sticky-header.sticky) .ui-autocomplete.searchbar-autocomplete {
    top: 60px !important;
}

.cart-summary-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
}

.cart-summary-cell {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.cart-summary-cell.value {
    color: var(--cornero-black);
    font-size: 14px;
    font-weight: 600;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total:after {
    display: none;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total .label {
    color: var(--cornero-black);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.card-block.cart-summary-totals .cart-summary-line.cart-total .value {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
}

.cart-detailed-totals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#cms #main .about__title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 24px;
    font-weight: 600;
}

#cms #main .about__intro {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

#cms #main .about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

#cms #main .about__content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

#cms #main .about__content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

#cms #main .about__cta {
    text-align: center;
    padding: 60px 20px;
    background: var(--ivory);
    border-radius: 16px;
}

#cms #main .about__cta h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

#cms #main .about__cta p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #555;
    line-height: 1.7;
}

#cms #main .about__intro a {
    color: var(--blue-accent);
}

#cms #main .cms-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

#cms #main .cms-lead {
    text-align: center;
    margin-bottom: 48px;
    color: #666;
}

#cms #main h2 {
    font-size: 1.4rem;
    margin: 48px 0 16px;
    padding-left: 12px;
    border-left: 4px solid var(--blue-accent);
}

#cms #main h3 {
    font-size: 1.1rem;
    margin: 24px 0 8px;
}

#cms #main ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

#cms #main ul li {
    margin-bottom: 8px;
}

#cms #main p {
    margin-bottom: 16px;
}

#cms #main a {
    color: var(--blue-accent);
    text-decoration: none;
}

#cms #main a:hover {
    text-decoration: underline;
}

#index .featured-products {
    overflow: visible;
}

.featured-products .products-embla-wrapper {
    position: relative;
}

.featured-products .products-embla {
    overflow: hidden;
}

.featured-products .products-embla__container {
    display: flex;
    gap: 16px;
    user-select: none;
    -webkit-user-select: none;
}

.featured-products .products-embla__slide {
    flex: 0 0 25%;
    min-width: 0;
}

.featured-products .products-embla__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: var(--cornero-border-light);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition:
            background 0.2s,
            box-shadow 0.2s;
}

.featured-products .products-embla__btn:hover {
    background: var(--ivory);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.featured-products .products-embla__btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.featured-products .products-embla__btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--cornero-black);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.featured-products .products-embla__btn--prev {
    left: -20px;
}

.featured-products .products-embla__btn--next {
    right: -20px;
}

.featured-products .products-embla__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.featured-products .products-embla__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}

.featured-products .products-embla__dot.is-active {
    background: #232323;
}

.block-categories #category-collapse-button,
.block-categories .h6 {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #111;
}

.block-categories #category-collapse-button::before,
.block-categories .h6::before {
    content: "";
    width: 22px;
    height: 22px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='8' y1='6' x2='21' y2='6'/><line x1='8' y1='12' x2='21' y2='12'/><line x1='8' y1='18' x2='21' y2='18'/><line x1='3' y1='6' x2='3.01' y2='6'/><line x1='3' y1='12' x2='3.01' y2='12'/><line x1='3' y1='18' x2='3.01' y2='18'/></svg>")
    center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='8' y1='6' x2='21' y2='6'/><line x1='8' y1='12' x2='21' y2='12'/><line x1='8' y1='18' x2='21' y2='18'/><line x1='3' y1='6' x2='3.01' y2='6'/><line x1='3' y1='12' x2='3.01' y2='12'/><line x1='3' y1='18' x2='3.01' y2='18'/></svg>")
    center / contain no-repeat;
}

.block-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.block-categories .category-top-menu > li > .category-sub-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.block-categories li {
    position: relative;
}

.block-categories li[data-depth="0"] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    transition: background 0.2s ease;
}

.block-categories li[data-depth="0"] > a::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: #7a7a7a;
    opacity: 0.95;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h18'/><path d='M5 7v10'/><path d='M19 7v10'/><path d='M7 11h10'/><path d='M7 17h10'/></svg>")
    center / contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7h18'/><path d='M5 7v10'/><path d='M19 7v10'/><path d='M7 11h10'/><path d='M7 17h10'/></svg>")
    center / contain no-repeat;
}

.block-categories .collapse-icons .remove,
.block-categories .arrows .arrow-down {
    display: none;
}

.block-categories .collapse-icons[aria-expanded="true"] .add,
.block-categories .collapse-icons:not(.collapsed) .add,
.block-categories .arrows[aria-expanded="true"] .arrow-right,
.block-categories .arrows:not(.collapsed) .arrow-right {
    display: none;
}

.block-categories .collapse-icons[aria-expanded="true"] .remove,
.block-categories .collapse-icons:not(.collapsed) .remove,
.block-categories .arrows[aria-expanded="true"] .arrow-down,
.block-categories .arrows:not(.collapsed) .arrow-down {
    display: inline-block;
}

.block-categories .collapse,
.block-categories .collapsing {
    width: 100%;
    flex: 0 0 100%;
}

.block-categories .category-sub-menu .category-sub-menu {
    margin-left: 22px;
    padding-left: 16px;
    position: relative;
}

.block-categories .category-sub-menu .category-sub-menu::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 8px;
    left: 6px;
    width: 1px;
    background: var(--ivory);
}

.block-categories .category-sub-menu .category-sub-menu > li {
    position: relative;
}

.block-categories .category-sub-menu .category-sub-menu > li::before {
    content: "";
    position: absolute;
    top: 17px;
    left: -8px;
    width: 10px;
    height: 1px;
    background: var(--ivory);
}

.block-categories li[data-depth="1"],
.block-categories li[data-depth="2"] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.block-categories li[data-depth="1"] > a,
.block-categories li[data-depth="2"] > a {
    flex: 1;
    min-width: 0;
    display: block;
    padding: 8px 36px 8px 4px;
    color: #4b4b4b;
    text-decoration: none;
    line-height: 1.35;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
}

.block-categories li[data-depth="2"] > a {
    color: #2f2f2f;
}

.block-categories li[data-depth="1"] > a:hover,
.block-categories li[data-depth="2"] > a:hover {
    color: #111;
}

.block-categories li[data-depth="1"] > .arrows,
.block-categories li[data-depth="2"] > .arrows {
    top: 3px;
    right: 0;
    width: 30px;
    height: 30px;
}

.block-categories li.current,
.block-categories li.current-category,
.block-categories li.active-category {
    background: #bfd5c2;
    border-radius: 8px;
}

.block-categories li.current > a,
.block-categories li.current-category > a,
.block-categories li.active-category > a {
    color: #111;
    font-weight: 700;
}

.block-categories li.current::after,
.block-categories li.current-category::after,
.block-categories li.active-category::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 6px;
    bottom: 6px;
    width: 4px;
    border-radius: 4px;
    background: #8fbc96;
}

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"])::before {
    display: none;
    content: "";
}

.footer-container {
    background: var(--ivory);
    width: 100%;
    padding: 0;

}

.top-footer-container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 60px 0 80px 0;
    max-width: 95vw
}

.upper-footer-container {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: start;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    font-size: 14px;
    color: var(--gray);
    display: flex;
}

.footer-desc-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.footer-section-container {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 32px;
}

.footer-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cornero-black);
    margin-bottom: 18px;
    line-height: 18px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-nav-list a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.2 !important;
}
.footer-nav-list li {
    line-height: 1.2 !important;
    margin-bottom: 20px;
}

.footer-nav-list a:hover {
    color: var(--cornero-black);
}

.middle-footer-container {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 16px;
}

.footer-contact-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--cornero-black);
    text-decoration: none;
}

.footer-contact-item:hover {
    color: #000;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--cornero-black);
}

.footer-dane-container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    justify-content: center;
}

.footer-dane-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--cornero-black);
    white-space: nowrap;
}

.footer-dane-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

hr {
    border: none;
    border-top: 1px solid #e0dbd5;
    margin-bottom: 40px;
    width: 90%;
    opacity: 0.3;
}

.lower-footer-container {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 59px;
    align-items: center;
    padding-bottom: 32px;
}

.footer-newsletter-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cornero-black);
    margin-bottom: 8px;
}

.footer-newsletter-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter-container form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-container input[type="email"],
.footer-newsletter-container input[name="email"] {
    flex: 1;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 22px 0 0 22px;
    font-size: 13px;
    color: var(--cornero-black);
    background: var(--ivory);
    outline: none;
}

.footer-newsletter-container input[type="email"]::placeholder,
.footer-newsletter-container input[name="email"]::placeholder {
    color: #bbb;
}

.footer-newsletter-container input[type="submit"],
.footer-newsletter-container button[type="submit"] {
    height: 44px;
    padding: 0 28px;
    background: var(--cornero-black);
    color: var(--ivory);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter-container input[type="submit"]:hover,
.footer-newsletter-container button[type="submit"]:hover {
    background: #000;
}

.footer-payment-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-payment {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.footer-payment-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--cornero-black);
}
#guestOrderTrackingForm header {
    margin-bottom: 30px;
}
.wishlist-button-add {
    display: none !important;
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-payment-logo {
    height: 36px;
    min-width: 56px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #444;
}

.bottom-footer-container {
    background: var(--cornero-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 80px;
}

.copyright p {
    font-size: 13px;
    color: #a0a0a0;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #a0a0a0;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: var(--ivory);
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 13px;
    color: var(--cornero-black);
    background: var(--ivory);
    outline: none;
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: #bbb;
}

.footer-newsletter-form button {
    height: 44px;
    padding: 0 28px;
    background: #2d2d2d;
    color: var(--ivory);
    border: none;
    border-radius: 0 22px 22px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background: #000;
}

.footer-newsletter-success {
    display: none;
    font-size: 14px;
    color: #2d2d2d;
    font-weight: 600;
    margin-top: 8px;
}

.product-img-hover {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease !important;
}

.product-miniature:hover .product-img-hover {
    opacity: 1;
}

.cornero-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cornero-swatch[data-active="true"],
.cornero-swatch:hover {
    border-color: var(--cornero-black);
}

.cornero-swatch:hover span {
    opacity: 1;
}
.page-customer-account #content {
    background: var(--ivory);
}

.omniversepricing-notice {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #b3a700;
    width: fit-content;
    display: flex;
}

.omniversepricing-pricing-table table {
    border-collapse: collapse;
    margin-top: 20px;
}

.omniversepricing-pricing-table th,
td {
    padding: 10px;
    text-align: left;
}

.omniversepricing-pricing-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: var(--cornero-black);
}

.omniversepricing-pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.omni-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.omni-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
}

.omni-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

a.omni-chart-link {
    color: #24b9d7;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
}

a.omni-chart-link:hover {
    text-decoration: underline;
}

#priceHistoryChart {
    width: 100%;
    height: 400px;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

#index h4.products-header__title {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.16px;
}

.products-header__title a {
    color: inherit;
    text-decoration: none;
}

.products-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.products-header__link {
    font-size: 14px;
}

.products-header__nav {
    display: flex;
    gap: 8px;
}

.products-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--cornero-border-light);
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
            background 0.15s ease,
            border-color 0.15s ease,
            opacity 0.15s ease;
}

.products-nav-btn:hover:not(:disabled) {
    background: var(--ivory);
}

.products-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.products-nav-btn svg {
    display: block;
}

.cm-product-page {
    margin-bottom: 20px;
}

.products-embla__progress {
    margin-top: 24px;
}

.products-embla__progress-track {
    position: relative;
    width: 100%;
    height: 3px;
    background: #e5ded6;
    border-radius: 2px;
    overflow: hidden;
}

.products-embla__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #422f28;
    border-radius: 2px;
    transition:
            left 0.35s ease,
            width 0.35s ease;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0;
    align-items: start;
}

#checkout .login-grid {
    display: flex;
    padding: 10px 0 0 0 !important;
}

.login-welcome {
    padding: 24px;
    background: white;
    border: 1px solid var(--cornero-border-light);
    border-radius: 16px;
}

#checkout .login-welcome {
    display: none;
}

.login-welcome h2,
.login-welcome strong,
.login-welcome p {
    color: var(--cornero-black);
}

.login-benefits {
    list-style: disc;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    list-style: disc;
}

.login-benefits .dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    background: var(--cornero-black);
}

.login-benefits strong {
    display: block;
}

.login-benefits p {
    margin: 4px 0 0;
}

.login-card {
    padding: 24px;
    background: white;
    border: 1px solid var(--cornero-border-light);
    border-radius: 16px;
}

#checkout .login-card {
    width: 100%;
    border: 0;
    padding: 0;
}

#checkout .login-card #login-form {
    margin: 0 !important;
}

.login-card h1 {
    color: var(--cornero-black);
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
}

.login-subtitle {
    margin: 4px 0 24px;
}

.login-form .form-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.fpsc-hook-buttons p {
    height: 40px;
    border-radius: 10px;
    color: var(--cornero-black);
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cornero-border-light);
}

#checkout .fpsc-hook-buttons {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
}

#checkout .fpsc-hook-buttons p {
    gap: 4px;
    width: fit-content;
    min-width: 200px;
    justify-self: flex-end;
}

.login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.login-remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-register {
    margin-top: 8px;
    text-align: left;
}

.login-privacy {
    margin-top: 16px;
}

.password-toggle-btn .icon-eye-open,
.password-toggle-btn .icon-eye-closed {
    display: none;
}

.password-toggle-btn .icon-eye-open {
    display: inline-flex;
}

.password-toggle-btn.is-visible .icon-eye-open {
    display: none;
}

.password-toggle-btn.is-visible .icon-eye-closed {
    display: inline-flex;
}

.password-strength-meter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0 8px;
}

.password-strength-meter > span {
    height: 4px;
    border-radius: 999px;
    background: #dedbd8;
    transition: background-color 0.2s ease;
}

.password-strength-meter[data-state="weak"] > .is-active {
    background: #c94b4b;
}

.password-strength-meter[data-state="medium"] > .is-active {
    background: #c48b37;
}

.password-strength-meter[data-state="strong"] > .is-active {
    background: #3d8c54;
}

.password-strength-text {
    margin-bottom: 12px;
    font-size: 14px;
}

.password-requirements p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    min-height: 20px;
}

.password-requirements i {
    display: flex;
    flex: 0 0 20px;
    color: #9b9997;
}

.password-requirements p.is-valid i {
    color: #3d8c54;
}

#wrapper .cart-empty {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-empty__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 480px;
}

.cart-empty__icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.cart-empty__icon {
    width: 56px;
    height: 56px;
}

.cart-empty__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
}

.cart-empty__subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cart-empty__actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.cart-empty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
}

.customer-summary-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--ivory);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.customer-summary-avatar {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ebddc9;
    color: #3b2a1d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.customer-summary-info {
    flex: 1 1 auto;
    min-width: 0;
}

.customer-summary-name {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: #211611;
}

.customer-summary-email {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    color: #8a7a6a;
}

.customer-summary-logout {
    flex: 0 0 auto;
    font-size: 0.9rem;
    color: #8a7a6a;
    text-align: right;
    white-space: nowrap;
}

.customer-summary-logout a {
    color: #211611;
    text-decoration: underline;
    font-weight: 600;
}

.customer-summary-note {
    color: #8a7a6a;
    margin-bottom: 1rem;
}

.customer-summary-form {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.continue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #3b2a1d;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
    transition: background 0.15s ease;
}

.continue-btn:hover,
.continue-btn:focus {
    background: #2a1d13;
    color: #fff;
}

.continue-btn-icon {
    font-size: 1.2rem;
}

.customer-summary-lock {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #8a7a6a;
    font-size: 0.85rem;
    margin: 0;
}

.customer-summary-lock i {
    font-size: 1rem;
}

.product-miniature:has(.color-swatches > :not(:first-child):is(.active)) .product-img-hover {
    display: none !important;
}

.fabric-video-preview[hidden],
.fabric-video-modal[hidden] {
    display: none !important;
}

.fabric-video-preview {
    margin: 16px 0 20px;
}

.fabric-video-preview__button {
    width: 100%;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    padding: 8px;
    color: inherit;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--cornero-border-light);
    border-radius: 8px;
}

.fabric-video-preview__button:hover,
.fabric-video-preview__button:focus-visible {
    border-color: #422f28;
    outline: 0;
}

.fabric-video-preview__thumbnail {
    position: relative;
    display: block;
    width: 88px;
    height: 52px;
    overflow: hidden;
    border-radius: 4px;
}

.fabric-video-preview__thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fabric-video-preview__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 28px;
    height: 28px;
    color: #fff;
    font-size: 11px;
    place-items: center;
    background: rgba(34, 34, 34, 0.78);
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.fabric-video-preview__content strong,
.fabric-video-preview__content span {
    display: block;
}

.fabric-video-preview__content strong {
    font-size: 14px;
}

.fabric-video-preview__content span {
    margin-top: 4px;
    color: #76706d;
    font-size: 13px;
}

.fabric-video-preview__arrow {
    font-size: 24px;
    line-height: 1;
}

.fabric-video-modal {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: grid;
    padding: 24px;
    background: rgba(0, 0, 0, 0.62);
    place-items: center;
}

.fabric-video-modal__dialog {
    width: min(880px, 100%);
    padding: 12px;
    background: #fff;
}

.fabric-video-modal__close {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: auto;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.fabric-video-modal__frame {
    width: 100%;
    margin-top: 12px;
    aspect-ratio: 16 / 9;
}

.fabric-video-modal__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 1400px) {
    #product .product-accessories,
    #product #wrapper .container .details-my {
        width: 1200px;
        margin: 0 auto;
    }
    #main .images-container .js-qv-mask.scroll {
        width: 400px !important;
        overflow: visible;
    }

    #product .owl-nav {
        top: -320px;
    }
    .photo-container,
    .details-block {
        width: 550px;
    }

    .js-qv-product-cover {
        min-width: 400px;
    }
    .row.product-container {
        margin: 0 !important;
    }

    #product .breadcrumb ol {
        width: 1200px;
        margin: 0 auto;
    }

    .photo-container,
    .details-block {
        width: 600px;
    }

    .thumb-container {
        height: fit-content !important;
    }

    #main .images-container .js-qv-mask.scroll {
        width: 200px;
        margin: 0;
    }

    .js-qv-product-cover {
        min-width: 100px;
        max-width: 400px;
    }

    .info-links {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .product-variants-item ul {
        --tiles: 5;
    }
}

@media screen and (max-width: 1200px) {
    .footer-wrapper-links {
        width: 960px;
    }
    .footer-grid-layout .footer-main-content {
        width: 100% !important;
    }
    #product .owl-nav {
        top: -290px;
    }
    #product .product-accessories,
    #product #wrapper .container .details-my {
        width: 960px;
        margin: 0 auto;
    }

    #product .details-block,
    #product .photo-container {
        width: 480px;
    }

    #product #wrapper .row {
        padding: 0 !important;
    }
    .nav-toggle-div {
        width: fit-content;
    }

    .header-top {
        padding: 0 !important;
    }
    .images-container {
        width: 100%;
        flex-direction: column;
        margin: 0 auto;
    }

    .product-flags,
    .photo-width {
        padding-right: 0;
    }

    #product .breadcrumb ol {
        width: 100%;
        margin: 0 auto;
    }

    #main .images-container .js-qv-mask.scroll {
        width: 100%;
        margin: 0;
    }

    .product-images {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        height: fit-content;
    }

    .owl-carousel:not(.owl-loaded) {
        display: none !important;
    }

    .row {
        margin-right: 0;
        margin-left: 0;
    }

    .thumb-container {
        height: fit-content !important;
    }

    .product-flags {
        justify-content: flex-start;
    }
    #product .owl-nav {
        width: 100%;
    }
    .store-item {
        width: 100% !important;
        max-width: 50%;
        min-width: 30%;
    }
    .header-top.sticky {
        max-height: 0 !important;
    }
    .nav2 {
        padding-right: 0;
    }
    #contact .form-group.row {
        flex-direction: row;
        align-items: flex-start;
    }

    #contact .col-md-3.form-control-comment {
        padding: 0;
        width: 100%;
    }

    #contact .form-group.row .label {
        padding: 0;
        width: 10%;
    }

    .group-span-filestyle .label {
        padding: 0;
        width: 100%;
    }

    .form-control-comment {
        padding: 0;
        width: 20%;
    }

    .form-control-valign,
    .form-group.row:has([for="field-id_gender"]) label {
        width: fit-content;
    }

    .custom-checkbox label {
        min-width: 100%;
        display: flex;
        flex-direction: row !important;
    }

    .custom-checkbox {
        width: 100%;
        display: block;
    }

    #category .custom-checkbox {
        width: 100%;
        display: block;
    }

    #search .custom-checkbox,
    #category .custom-checkbox {
        width: fit-content;
    }

    #identity h1 {
        padding-left: 0;
    }

    #customer-form .form-group:has([for="field-id_gender"]) {
        padding-left: 25% !important;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    #customer-form .form-group:has([for="field-id_gender"]) .form-control-label {
        margin: 0;
    }
    .page-header h1 {
        padding-left: 0;
    }
    .header-top {
        top: 0 !important;
    }

    #left-column {
        width: 100%;
        padding: 0;
    }

    #js-product-list-header {
        margin-top: 16px;
    }

    .row.sort-by-row {
        margin: 0;
    }

    #left-column .block-categories {
        display:none;
    }

    .col-lg-5.hidden-sm-down.total-products {
        padding: 0;
    }

    #content-wrapper {
        width: 100%;
        padding: 0;
    }

    .error-text h4 {
        font-size: 18px !important;
    }

    .error-content-container {
        padding: 0 10px;
    }
    .product-line-grid-right {
        width: 100% !important;
    }
    #category-collapse-button {
        user-select: none;
        cursor: pointer;
        margin: 0;
        position: relative;
    }

    #category-collapse-button:after {
        content: "";
        position: absolute;
        top: 0;
        right: 5px;
        display: inline-block;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 1;
        text-transform: none;
        letter-spacing: normal;
        transition: all 0.2s;
        text-align: center;
    }

    #category-collapse-button.arrow-twist:after {
        transform: rotateZ(90deg);
    }

    #category-collapse-button:before {
        width: 100%;
    }

    .category-top-menu.collapsed-custom {
        max-height: 0;
        overflow: hidden;
        display: none;
    }
    .col-xl-3.col-md-4.nav2 #language-changer {
        display: none;
    }
    .order-status-bar {
        width: 67px;
    }
    #my-search-button {
        display: none !important;
    }

    .header-nav .customnav {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-nav .logo {
        width: 100px !important;
        max-width: 100px !important;
        margin: 0 !important;
    }

    .header-nav .search-bar {
        display: flex !important;
        flex: 1;
        width: auto !important;
        padding: 0 !important;
    }

    .header-nav .nav2 .user-info,
    .header-nav .nav2 #_desktop_cart {
        display: none !important;
    }

    #search_widget {
        width: 100% !important;
        display: flex !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background: transparent !important;
        height: auto !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        transition: none !important;
    }

    #search_widget form {
        width: 100%;
    }

    #search_widget .search-inner {
        flex: 1;
    }

    #search_widget form input[type="text"] {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 14px;
        outline: none;
    }

    #search_widget form input::placeholder {
        color: var(--gray);
    }

    #search_widget .search-submit {
        background: transparent;
        border: none;
        padding: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    #search_widget .search-submit svg {
        width: 24px;
        height: 24px;
        transition: fill 0.2s;
    }

    #search_widget .clear-btn {
        background: transparent;
        border: none;
        padding: 4px;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
    }

    #search_widget .clear-btn svg {
        width: 20px;
        height: 20px;
        fill: #7a7a7a;
    }
    .footer-wrapper-bottom {
        position: relative;
        bottom: 40px;
        background: none !important;
    }

    #sticky-header .mobile-nav-toggle {
        display: none !important;
    }

    #sticky-header.sticky #my-search-button {
        display: none !important;
    }

    #sticky-header,
    #sticky-header.sticky {
        height: auto;
        padding: 8px 0 !important;
    }

    #sticky-header.sticky .logo-nav {
        padding: 0;
        display: flex !important;
        width: auto !important;
        height: fit-content;
        line-height: 0
    }

    #sticky-header.sticky .logo {
        max-width: 80px !important;
        margin: 0;
        display: block !important;
    }

    #sticky-header.sticky .customnav {
        justify-content: flex-start;
        gap: 15px;
        align-items: center;
    }

    #sticky-header.sticky .search-bar {
        display: flex !important;
        flex: 1;
    }

    .mobile-bottom-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: var(--ivory);
        border-top: 1px solid var(--cornero-border-light);
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-bottom-bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 4px;
        color: #7a7a7a;
        text-decoration: none;
        position: relative;
        flex: 1;
        transition: color 0.2s;
        background: transparent;
        border: none;
        cursor: pointer;
        font-family: inherit;
    }

    .mobile-bottom-bar-item:hover,
    .mobile-bottom-bar-item:active,
    .mobile-bottom-bar-item:focus {
        color: var(--cornero-black);
        text-decoration: none;
    }

    .mobile-bottom-bar-item svg {
        width: 24px;
        min-height: 24px;
    }

    .mobile-bottom-bar-item span:not(.cart-badge) {
        font-size: 10px;
        font-weight: 500;
        line-height: 1;
        color: var(--cornero-black);
    }

    .mobile-bottom-bar-item .cart-badge {
        position: absolute;
        top: 2px;
        right: calc(50% - 18px);
        background: var(--cornero-black);
        color: var(--ivory);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        border: 2px solid var(--ivory);
    }

    body {
        padding-bottom: 70px !important;
    }

    #product .my-add-to-cart {
        bottom: 60px;
    }
    .koszyk-info-container {
        display: flex;
        padding: 0 20px;
    }

    @media only screen and (min-width: 1200px) {
        .header-nav .nav1 #search_widget {
            display: none !important;
        }
    }
}

@media (max-width: 1200px) {
    .top-footer-container {
        padding: 48px 40px 0;
    }
    .bottom-footer-container {
        padding: 18px 40px;
    }
    #order-detail .page-content {
        width: 95%;
        margin: 0 auto;
        border-radius: 8px;
    }

    #order-detail .breadcrumb,
    #order-detail .page-footer {
        max-width: 95%;
        padding: 0 10px;
    }

    #order-detail th {
        padding: 15px 10px;
        font-size: 0.8rem;
    }

    #order-detail table tbody tr td {
        padding: 15px 10px;
    }
}

@media screen and (max-width: 991px) {
    #checkout #content-wrapper > .row,
    .cart-grid {
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .cart-grid-body.col-lg-8,
    .col-lg-4,
    .col-lg-5 {
        margin-bottom: 0;
        width: 100%;
    }

    #js-checkout-summary,
    .cart-summary {
        padding: 20px 16px;
    }

    .go-to-cart-btn {
        margin: 8px 0;
    }
    body#checkout section.checkout-step {
        padding: 16px !important;
    }

    #checkout .cart-grid-body.col-lg-8 {
        gap: 16px;
    }

    #checkout #content-wrapper > .row {
        gap: 32px;
    }
    .upper-footer-container,
    .middle-footer-container,
    .lower-footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-section-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .footer-payment-container {
        justify-content: flex-start;
    }

    .footer-payment {
        align-items: flex-start;
    }
}

@media screen and (max-width: 991px) {
    .details-photo {
        height: fit-content;
    }

    .details-photo {
        display: flex;
        justify-content: center;
        background: var(--ivory);
        margin: 0 auto;
    }

    model-viewer {
        max-height: 100%;
    }

    .photo-container,
    .details-block {
        width: 100%;
    }

    .thumb-container {
        height: fit-content !important;
    }
}

@media screen and (max-width: 991px) {
    .product-cover {
        width: 100%;
        margin: 0 auto;
        display: grid;
        place-items: center;
    }
    #address .form-group,
    .customer-form-content {
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 991px) {
    #new-products .products .product {
        width: 50%;
    }
    .search-bar {
        display: none;
    }
    #search_widget {
        position: fixed;
        top: calc(0px - 105px);
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }

    .logo-row .logo {
        width: 220px;
        margin-left: 15px;
        margin-bottom: 5px;
    }

    #header .header-top {
        padding: 1rem 0 0;
        border: none;
    }
    .details-photo {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
    }

    #product .details-block,
    #product .photo-container {
        width: 100%;
        padding: 0 !important;
    }

    #product .details-block {
        background: white;
        box-shadow: 0 0 0 100vw white;
        clip-path: inset(0 -100vw);
        padding: 24px 0 !important;
    }
    .element-section {
        width: 45%;
    }
    .reason-box {
        width: 45%;
    }
    .ranks-row {
        flex-wrap: wrap;
    }

    .ranks-row .card {
        min-width: 30%;
    }

    .progress_value {
        width: 100%;
        font-size: 12px;
        text-align: center;
    }
    .product-variants-item ul {
        --tiles: 7;
    }
    .container {
        width: 95%;
        max-width: 100%;
    }
    .vouchers-table th,
    .vouchers-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .code-badge {
        padding: 6px 8px;
    }

    .code-text {
        font-size: 12px;
    }
    .featured-products .products-embla__slide {
        flex: 0 0 33.333%;
        padding-right: 16px;
    }
    .footer-wrapper-links {
        display: flex;
        width: 95%;
        margin: 0 auto;
        max-width: 98%;
        gap: 50px;
        flex-direction: column;
    }

    .footer-grid-layout .div1 {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }
    .featured-products .products {
        gap: 10px;
        justify-content: flex-start;
    }

    .qty_inc svg,
    .qty_dec svg {
        width: 14px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 0.5rem;
    }

    .contact-us-input-container {
        width: 70% !important;
    }

    .custom-contact {
        gap: 20px;
    }
    .carousel {
        background-color: var(--ivory);
        margin-bottom: 0;
    }
    .hidden-md-down {
        display: none !important;
    }
    .block-contact {
        padding-left: 0;
    }
    #search_widget.search-widgets {
        transition: all 0.3s;
        display: flex;
        justify-content: center;
        background: var(--ivory);
        height: 70px;
        align-items: flex-end;
        padding: 10px;
        border: 1px solid var(--cornero-border-light);
        border-radius: 0 0 10px 10px;
        box-shadow: var(--cornero-box-shadow);
        gap: 10px;
        width: fit-content !important;
    }

    #search_widget {
        width: 100%;
    }

    #header .header-nav .blockcart {
        margin-left: 0;
    }
    .row.sort-by-row {
        display: flex;
        justify-content: flex-start;
        margin: 0 auto;
    }

    .row.sort-by-row .col-sm-3.col-md-5.hidden-sm-down.sort-by {
        padding-left: 0;
        margin-left: 0;
        width: fit-content;
    }

    .products-sort-order,
    #js-product-list-top .col-lg-7 {
        padding: 0;
    }

    .products-sort-order .dropdown-menu {
        width: 100% !important;
    }
    #checkout #content-wrapper #content > .row {
        display: flex;
        flex-direction: column;
    }

    #checkout .cart-grid-right {
        padding: 0 10px;
    }
    .nav-inline.my-2 {
        justify-content: center;
    }
    #index .homephoto-main,
    #index #content > section,
    .blog-block {
        width: 100%;
    }

    #product .product-accessories,
    #product #wrapper .container .details-my {
        width: 100% !important;
        margin: 0 auto;
    }

    #product .tabs {
        margin-top: 16px;
    }
    .faq-icon img {
        max-width: 50%;
        max-height: 150px;
    }
    .login-grid {
        grid-template-columns: 1fr;
    }

    .login-welcome {
        display: none;
    }

    .login-card {
        padding: 24px;
    }
    .carrier-name {
        font-weight: bold;
        font-size: 14px;
    }
}

@media screen and (max-width: 850px) {
    #product .owl-nav {
        top: -58vw;
    }

    .products.row {
        --cornGap: 16px;
        --tiles: 2;
    }

    #product .my-add-to-cart .delivery-service-product {
        order: 3;
        padding: 12px 0 0 0 !important;
        margin-top: 0 !important;
        border-top: 1px solid #f0f0f0;
    }

    #product .my-add-to-cart .delivery-service-product > div {
        margin-bottom: 8px !important;
    }

    #product .my-add-to-cart .delivery-service-product strong {
        font-size: 14px !important;
    }

    #product .my-add-to-cart .delivery-service-product span {
        font-size: 13px !important;
    }

    .product-variants {
        margin: 0 !important;
    }
    #index .bestseller_product,
    #index .featured-products,
    #index .new_products,
    .blog-container {
        padding: 0;
    }
}

@media screen and (max-width: 850px) {
    #main-3d-model:after {
        height: 100%;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        content: "";
        z-index: 100;
    }
}

@media (max-width: 850px) {
    body#checkout .payment-option {
        display: flex;
        min-width: 100%;
    }
    body#checkout .payment-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        flex-wrap: wrap;
    }

    body#checkout .delivery-option-tile {
        min-width: 100%;
        margin-bottom: 12px;
    }

    body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
        margin-left: auto;
    }
}

@media screen and (max-width: 767px) {
    .col-md-6.js-input-column {
        width: 100%;
    }

    .product-floating-cart {
        display: none !important;
    }

    .js-address-form .form-fields .form-group,
    #customer-form,
    .form-group:has([for="field-id_gender"]),
    .col-md-6.js-input-column {
        width: 100%;
        padding: 0;
    }

    .js-address-form .form-fields .form-group {
        margin-bottom: 30px !important;
    }

    .form-control-comment {
        padding: 0;
        width: 100%;
    }

    #customer-form .form-group:has([for="field-id_gender"]) {
        padding-left: 0 !important;
    }

    #contact .form-group.row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .contact-us-input-container {
        width: 100% !important;
    }
    body#checkout .address-item {
        min-width: calc((100% - 20px) / 2);
    }
    .skull-logo {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .sticky .logo {
        max-width: 130px !important;
    }
    .logo {
        max-width: 130px !important;
    }

    .login-hover {
        display: none !important;
    }

    .customnav {
        justify-content: space-between;
    }

    .logo-nav {
        padding: 0;
        margin: 0;
    }

    .nav2 {
        gap: 10px;
    }

    .search-bar {
        padding: 0;
    }

    .login-main .login-hover.account {
        display: none !important;
    }

    .login-main {
        border: none;
    }

    .login-main:hover .login-popup {
        display: none !important;
    }

    .cart-popup {
        display: none !important;
    }
    .all-products {
        border: 1px solid var(--cornero-border-light);
        width: 170px;

        height: 250px;
        margin-left: 20px;
    }
    #qty_form {
        width: 100%;
    }

    .atc_qty {
        width: 100%;
    }

    #index #wrapper > .container {
        padding: 0;
    }

    .add-to-cart {
        font-size: 12px;
        height: 38px !important;
    }

    .add-to-cart i {
        font-size: 20px;
    }
    .product-miniature .product-description .btn {
        font-size: 12px !important;
    }

    .product-miniature .product-description .btn svg {
        height: 20px;
    }
    #fbpsc.authentication {
        padding: 0 30px;
    }

    #product .current-price-value,
    .details-block h1 {
        font-size: 28px;
    }
    .product-variants-item ul {
        --tiles: 5;
    }
}

@media screen and (max-width: 767px) {
    .footer-wrapper-links {
        display: flex;
        width: 1550px;
        margin: 0 auto;
        max-width: 98%;
        gap: 10px;
        flex-direction: column;
    }

    .footer-logo img {
        max-width: 200px;
        object-fit: contain;
        margin: 0 auto;
    }

    .footer-grid-layout .div1 {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .footer-links-row {
        gap: 0;
        flex-direction: column;
    }

    .footer-grid-layout .footer-main-content > .row {
        flex-direction: column;
    }

    .footer-links-section {
        flex: 2;
        padding-right: 0 !important;
    }

    .footer-container {
        padding: 0.5rem 0 0.5rem;
    }
    .onas-sekret-block:nth-child(4),
    .onas-sekret-block {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 100%;
        margin-left: 0 !important;
        gap: 15px;
        text-align: center;
    }

    .onas-sekret-block:nth-of-type(4) .onas-sekret-content-text p,
    .onas-sekret-block:nth-of-type(4) .onas-sekret-content-title p {
        text-align: center;
    }

    .onas-sekret-block-img {
        align-self: center;
        min-width: 80px;
        height: 80px;
    }
    .onas-firma {
        flex-direction: column;
        height: auto;
        gap: 20px;
        align-items: center;
        padding: 15px;
    }
    .onas-firma-img {
        width: 100%;
        max-width: 300px;
    }
    .onas-firma-content {
        border-left: none;
        border-top: solid var(--cornero-border-light) 2px;
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }
    .product-img-hover {
        display: none !important;
        opacity: 0 !important;
    }
}

@media (max-width: 767px) {
    .products.row {
        grid-template-columns: repeat(2, 1fr);
    }
    .customer-form-container {
        margin: 20px auto;
        padding: 0;
    }

    .customer-form-content {
        padding: 25px 20px 20px 20px;
    }

    .customer-btn-primary {
        width: 100%;
        padding: 8px 30px;
    }

    .addresses-container {
        padding: 20px;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .address-card {
        padding: 20px;
    }

    .address-actions {
        flex-direction: column;
        gap: 10px;
    }

    .add-address-section {
        padding: 25px;
        margin: 20px 0;
    }

    .info-box {
        padding: 20px;
        margin: 20px 0;
    }
    .wishlist-page-container {
        padding: 15px;
    }

    .wishlist-header,
    .wishlist-main-section,
    .add-wishlist-section,
    .wishlist-footer-container {
        padding: 25px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .wishlist-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .wishlist-page-title {
        font-size: 1.5rem;
    }

    .wishlist-page-description {
        font-size: 1rem;
    }

    .wishlist-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .wishlist-icon {
        font-size: 25px;
    }

    .wishlist-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-link {
        width: 100%;
        max-width: 300px;
    }

    .wishlist-info-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 20px;
    }

    .vouchers-page-container {
        padding: 10px;
    }

    .voucher-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .account-page-container {
        padding: 15px;
        border-radius: 10px;
    }

    .account-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 25px;
    }

    .account-link-tile,
    .account-links-grid > div,
    .account-links-grid > span,
    .account-links-grid a {
        padding: 25px !important;
        min-height: 160px !important;
        border-radius: 12px !important;
    }

    .tile-icon,
    .account-links-grid .material-icons,
    .account-links-grid i[class*="icon"],
    .account-links-grid [class*="fa-"],
    .account-links-grid svg {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
    }

    .tile-title,
    .account-links-grid h3,
    .account-links-grid h4,
    .account-links-grid .title {
        font-size: 1rem !important;
    }
    body#checkout .payment-option {
        flex: 0 0 100%;
    }
    .forgot-boxes {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, auto);
        grid-template-areas:
      "box1"
      "arrow1"
      "box2"
      "arrow2"
      "box3"
      "arrow3"
      "box4";
        gap: 10px;
        max-width: 95%;
    }

    .forgot-box {
        max-width: 100%;
        min-width: 100%;
        min-height: 80px;
    }

    .forgot-title p {
        font-size: 24px;
    }

    .forgot-arrow {
        transform: rotate(90deg);
        justify-self: center;
        display: block;
    }

    .forgot-arrow:nth-child(2) {
        grid-area: arrow1;
    }

    .forgot-arrow:nth-child(4) {
        grid-area: arrow2;
    }

    .forgot-arrow:nth-child(6) {
        grid-area: arrow3;
        display: block;
    }

    .forgot-arrow:nth-child(8) {
        display: none;
    }

    form.forgotten-password .forgot-box.box-second > p,
    form.forgotten-password .forgot-box.box-first > p {
        font-size: 16px;
    }

    form.forgotten-password .forgot-box.box-third > p {
        font-size: 18px;
    }

    form.forgotten-password .forgot-box.box-four > p {
        font-size: 20px;
    }

    form.forgotten-password .forgot-box.box-four > p > span {
        font-size: 16px;
    }
    .newsletter-container {
        padding: 15px 10px;
    }

    .newsletter-subtitle {
        padding: 15px 5px;
    }

    .newsletter-subtitle > span {
        padding: 6px 15px;
        font-size: 14px;
    }

    .newsletter-container .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-container .form-group {
        height: 45px;
    }

    .newsletter-container .form-group.full-width {
        height: 45px;
    }

    .newsletter-container input[type="email"],
    .newsletter-container input[type="text"],
    .newsletter-container input[type="date"],
    .newsletter-container input[name="email"] {
        height: 45px !important;
    }

    .newsletter-button-container {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
    }

    .newsletter-container .unsubscribe {
        text-align: center;
        order: 2;
    }

    .newsletter-container input[name="submitNewsletter"],
    .newsletter-container button[name="submitNewsletter"],
    .newsletter-container .submit-btn {
        width: 100% !important;
        order: 1;
        padding: 15px 20px !important;
    }

    .skull-logo {
        position: fixed;
        top: auto;
        bottom: 10px;
        right: 10px;
        transform: rotate(10deg);
    }

    .skull-logo img {
        width: 60px;
        height: 60px;
    }

    .checkbox-container {
        font-size: 10px;
    }
    .product-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .product-pricing {
        grid-column: 1 / -1;
        margin-top: 15px;
        min-width: unset;
    }

    .confirmation-header {
        padding: 30px 20px;
    }

    .products-section,
    .order-details,
    .payment-info {
        padding: 20px;
    }

    .confirmation-title {
        font-size: 22px;
    }
    .product-miniature {
        border-radius: 12px;
    }

    .product-description {
        padding: 0;
        gap: 6px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price-and-shipping .price {
        font-size: 18px;
    }

    .product-dimensions-info {
        font-size: 12px;
        padding: 0;
    }

    .color-swatch,
    .color-more {
        width: 24px;
        height: 24px;
    }

    .color-swatches {
        gap: 4px;
    }

    .wishlist-button-add {
        width: 36px;
        height: 36px;
        top: 8px;
        right: 8px;
    }

    .wishlist-button-add .material-icons {
        font-size: 18px;
    }
    .toggle-product-info {
        font-size: 12px;
        padding: 8px 10px;
    }

    .toggle-icon {
        font-size: 18px;
    }

    .delivery-info-block .material-icons,
    .shipping-cost-info .material-icons,
    .installments-info .material-icons {
        font-size: 16px;
    }

    .delivery-info-block,
    .shipping-cost-info,
    .installments-info {
        font-size: 12px;
        padding: 6px 10px;
        gap: 6px;
    }

    .delivery-info-block .material-icons,
    .shipping-cost-info .material-icons,
    .installments-info .material-icons {
        font-size: 16px;
    }
    .accordion-button {
        padding: 8px;
    }

    .accordion-content-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .accordion-label {
        font-size: 13px;
    }

    .accordion-badge {
        font-size: 12px;
    }

    .accordion-body-content {
        padding: 14px;
        font-size: 13px;
    }

    .accordion-subtitle {
        font-size: 14px;
    }

    .accordion-list li p {
        font-size: 12px;
    }
    #cms #main .about__title {
        font-size: 2rem;
    }

    #cms #main .about__cta {
        padding: 40px 16px;
    }
    #cms.cms-privacy {
        padding: 40px 16px;
    }

    #cms .cms-title {
        font-size: 1.8rem;
    }
    .featured-products .products-embla__slide {
        flex: 0 0 50%;
        padding-right: 12px;
    }

    .featured-products .products-embla__btn {
        display: none;
    }
    .block-categories {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .block-categories #category-collapse-button,
    .block-categories .h6 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .block-categories li[data-depth="0"] > a {
        font-size: 15px;
        padding: 9px 40px 9px 10px;
    }

    .block-categories li[data-depth="1"] > a,
    .block-categories li[data-depth="2"] > a {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    #dpdshippingPudoCodModal .modal-body {
        max-height: 700px !important;
        overflow-y: auto;
    }

    #dpdshipping-widget-pudo-cod-iframe {
        height: 790px !important;
        min-height: 300px !important;
    }
    #category #left-column #search_filters_wrapper {
        margin: 0;
        position: fixed;
        inset: 50px 0 55px 0;
        background: white;
        z-index: 2;
        padding: 16px 16px 54px;
        overflow: auto;
    }

    .facet-item-hidden {
        display: block !important;
    }

    .facet-show-more {
        display: none;
    }

    #category #left-column #search_filters .facet .h6 {
        padding: 10px 0;
    }

    #category #left-column #search_filters .facet ul li {
        padding: 2px;
    }

    #category #left-column #search_filters .facet .navbar-toggler {
        padding: 0;
    }
    .sort-by-row {
        width: 100%;
        flex-direction: row-reverse;
        gap: 8px;
    }
    .filter-button,
    .products-sort-order {
        flex: 1;
        height: 100%;
    }
    .products-selection .filter-button {
        padding-left: 0;
        margin-left: 0;
    }

    #wrapper {
        padding-top: 16px;
    }

    #js-product-list-top {
        width: 100%;
    }

    #category #left-column #search_filters {
        border-radius: 0;
        border: none;
    }

    #search_filter_controls .ok {
        margin: 0 !important;
        flex: 2;
    }

    #category #left-column #search_filter_controls button {
        font-size: 1rem;
        font-weight: 600;
    }

    .js-search-filters-clear-all {
        background: none;
        color: var(--cornero-black);
        border: 1px solid var(--cornero-black);
        flex: 1;
        margin: 0 !important;
    }

    #search_filter_controls {
        display: flex;
        gap: 8px;
        margin: 0 !important;
        position: fixed;
        bottom: 60px;
        width: 100%;
        background: white;
        left: 0;
        padding: 8px 16px 8px;
        border-top: 1px solid var(--cornero-border-light);
    }
    body#guest-tracking #content.page-content {
        padding: 10px;
    }
    body#guest-tracking #delivery-address {
        margin-right: 0;
    }
    body#guest-tracking #invoice-address {
        margin-left: 0;
    }
    body#guest-tracking .order-items.hidden-md-up.box {
        border: solid var(--cornero-border-light) 1px;
        border-radius: 10px;
        padding: 10px;
    }
    body#guest-tracking .order-item .qty {
        color: var(--cornero-black);
        margin: 10px 0;
    }
    body#guest-tracking .order-item .desc {
        padding: 0;
        color: var(--cornero-black);
        font-weight: bold;
    }
    body#guest-tracking .order-totals.hidden-md-up.box {
        border: solid 1px var(--cornero-border-light);
        margin-top: 10px;
        border-radius: 10px;
        padding: 10px 0;
        color: var(--cornero-black);
    }
    body#guest-tracking .addresses {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    body#order-slip .credit-slip {
        border: solid 1px var(--cornero-border-light);
        padding: 10px;
        height: 100px;
        border-radius: 10px;
        color: var(--cornero-black);
    }
}

@media (max-width: 767px) {
    .footer-container .links ul > li a {
        opacity: 0.8;
        font-size: 14px;
    }

    .footer-container .links ul > li {
        border-bottom: none;
    }

    .footer-container {
        padding-top: 0.5rem;
    }

    .links .title {
        border-bottom: none;
    }

    .footer-container .links ul > li {
        padding: 0 0.625rem;
        margin-bottom: 0;
    }
    #header .top-logo img {
        width: auto;
        max-height: 20rem;
    }

    .product-miniature .product-title {
        height: 52px;
    }

    .products {
        padding: 0 1px;
    }

    .add-to-cart.out-of-stock i {
        display: none;
    }
    .orders-mobile {
        display: block;
    }

    .order-history-container {
        padding: 20px;
    }

    .order-card {
        margin-left: -10px;
        margin-right: -10px;
    }

    .info-box {
        padding: 20px;
        margin-left: -10px;
        margin-right: -10px;
    }
    #order-detail .page-content {
        width: 98%;
        margin: 10px auto;
        border-radius: 6px;
    }

    #order-infos .box {
        margin-bottom: 15px;
        padding: 15px;
    }

    #order-infos .row {
        flex-direction: column;
    }

    #order-infos .col-xs-9,
    #order-infos .col-xs-3 {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px;
    }

    #order-infos .col-xs-3.text-xs-right {
        text-align: center !important;
    }

    #order-infos .button-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    #order-detail .addresses {
        padding: 0 10px;
    }

    #order-detail .addresses .col-lg-6,
    #order-detail .addresses .col-md-6,
    #order-detail .addresses .col-sm-6 {
        width: 100% !important;
        margin-bottom: 15px;
        padding: 0 !important;
    }

    #order-detail .addresses article {
        padding: 15px;
        margin-bottom: 15px;
    }

    #order-detail .addresses article h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    #order-detail table.hidden-xs-down {
        display: none !important;
    }

    #order-detail .hidden-sm-up {
        display: block !important;
    }

    #order-detail .history-lines .history-line {
        background: var(--ivory);
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    #order-detail .history-lines .date {
        font-weight: 600;
        color: #666;
        margin-bottom: 5px;
        width: 100%;
    }

    #order-detail .history-lines .state {
        width: 100%;
    }

    #order-detail .shipping-lines .shipping-line {
        background: var(--ivory);
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
    }

    #order-detail .shipping-lines .shipping-line ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #order-detail .shipping-lines .shipping-line li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        flex-wrap: wrap;
    }

    #order-detail .shipping-lines .shipping-line li:last-child {
        border-bottom: none;
    }

    #order-detail .shipping-lines .shipping-line strong {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        color: #666;
        font-size: 0.9rem;
    }

    #order-detail .form-fields {
        padding: 15px;
    }

    #order-detail .form-group {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px !important;
    }

    #order-detail .form-control-label {
        margin-bottom: 8px;
        font-weight: 600;
    }

    #order-detail .form-group .form-control-select {
        margin-left: 0;
        margin-top: 5px;
    }

    #order-detail .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
        min-height: 100px;
    }

    .label-pill {
        font-size: 0.75rem !important;
        padding: 4px 12px !important;
        letter-spacing: 1px;
    }

    #order-detail .box {
        margin-bottom: 20px;
        padding: 15px;
    }

    #order-detail .box h3,
    #order-detail .box h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    #order-detail .box ul {
        padding-left: 0;
    }

    #order-detail .box ul li {
        margin-bottom: 8px;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    #order-detail .box ul li:last-child {
        border-bottom: none;
    }
    #order-detail [class*="col-"] {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 15px;
    }

    #order-detail .table-responsive {
        border: none;
    }

    #order-detail .btn,
    #order-detail .button-primary,
    #order-detail input[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
    }

    #order-detail a {
        word-break: break-word;
        hyphens: auto;
    }

    #order-detail address {
        line-height: 1.6;
        font-size: 14px;
    }
    #product-comments-list .product-comment-list-item {
        padding: 16px;
    }

    #product-comments-list .comment-infos {
        margin-bottom: 16px;
    }

    #product-comments-list .comment-buttons {
        flex-wrap: wrap;
    }
    #product-comments-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    .btn-comment {
        width: 100%;
        justify-content: center;
        max-width: 100%;
    }

    .btn-comment-big {
        padding: 16px 24px;
    }
    .tabs .nav-link {
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
        border-left: 3px solid transparent;
    }

    .tabs .nav-link.active {
        border-bottom: 1px solid #f0f0f0;
        border-left-color: var(--blue-accent);
    }
    .modal-content .modal-header {
        padding: 20px;
    }

    .modal-content .modal-body {
        padding: 20px;
    }

    .modal-content .post-comment-buttons {
        flex-direction: column;
    }

    .modal-content .btn-comment,
    .modal-content .btn-comment-inverse {
        width: 100%;
        justify-content: center;
    }

    .modal-content .criterion-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    #footer .footer-main-content {
        padding: 8px 15px;
    }

    #footer .hidden-sm-down {
        display: none;
    }

    #footer .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        cursor: pointer;
        border-bottom: 1px solid #3a3a3a;
    }

    #footer .title .h3 {
        font-size: 15px;
        margin: 0;
    }

    #footer .title .material-icons {
        font-size: 20px;
    }

    #footer .title .material-icons.remove {
        display: none;
    }

    #footer .title[aria-expanded="true"] .material-icons.add {
        display: none;
    }

    #footer .title[aria-expanded="true"] .material-icons.remove {
        display: block;
    }

    #footer .collapse.show {
        padding: 16px 0;
    }

    #footer .wrapper {
        margin-bottom: 0;
    }
    #blockcart-modal .modal-header {
        padding: 8px;
    }

    #blockcart-modal .modal-body {
        padding: 0;
    }

    #blockcart-modal .modal-title i.material-icons {
        margin-right: 10px;
    }

    #blockcart-modal .divide-right {
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        padding: 0 !important;
        margin-bottom: 10px;
    }

    #blockcart-modal .divide-right > .row > div .product-image {
        max-width: 70%;
        min-width: 60%;
    }

    #blockcart-modal .cart-content {
        padding-left: 0;
    }

    #blockcart-modal .cart-content-btn {
        flex-direction: column;
    }

    #blockcart-modal .product-image {
        max-width: 150px;
        margin: 0 auto 16px;
        display: block;
    }
    .product-line-grid {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 16px;
    }

    .product-line-grid-left {
        width: 80px;
    }

    .product-line-grid-right {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: auto;
    }

    .product-line-grid-right .row {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .product-line-grid-right .product-price {
        text-align: left;
    }

    .product-line-grid-right .remove-from-cart{
        padding:12px 0 12px 12px
    }

    .product-line-grid-right .product-discount {
        justify-content: flex-start;
    }

    .product-line-grid-right .current-price {
        align-items: flex-start;
    }

    .product-line-grid-right .atc_qty {
        width: 70px;
        padding: 8px 10px;
    }

    .product-attributes-table {
        display: block;
    }

    .product-customization-line {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .trust-badges {
        gap: 16px;
        padding: 12px 0;
    }

    .trust-badge {
        flex: 1 1 auto;
        min-width: 140px;
        justify-content: center;
    }

    .trust-badge small {
        font-size: 12px;
    }
    .fabric-video-preview__button {
        grid-template-columns: 64px minmax(0, 1fr) 18px;
        gap: 10px;
    }

    .fabric-video-preview__thumbnail {
        width: 64px;
        height: 40px;
    }

    .fabric-video-preview__content strong {
        font-size: 13px;
    }

    .fabric-video-preview__content span {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .element-section {
        width: 100%;
    }

    .element-icon-place img {
        width: 80px;
        height: 80px;
    }

    .tooltip-content {
        font-size: 13px;
        bottom: -55px;
    }

    .element-section h2 {
        font-size: 17px;
    }

    .o-nas-grafika {
        max-width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .reason-box {
        width: 100%;
    }

    .reason-box img {
        width: 80px;
        height: 80px;
    }

    .reason-box h3 {
        font-size: 17px;
    }

    .reasons-title {
        font-size: 26px;
    }

    .reasons-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .footer-container {
        display: grid;
    }

    .footer-logo img {
        max-width: 150px;
        justify-self: center;
    }

    .footer-container .copyright {
        color: #c5c5c5;
    }

    .footer-container .social-icon {
        background: none;
        color: var(--ivory);
    }

    .footer-container .social-icons {
        justify-content: center;
        display: flex;
        gap: 15px 30px;
        flex-wrap: wrap;
        padding-top: 20px;
    }

    .footer-container .social-icons .social-icon svg {
        width: 50px;
        height: 50px;
    }

    .footer-container .block-contact-title {
        font-size: 16px !important;
    }

    .footer-container .block-contact {
        margin: 10px 0;
        font-size: 16px;
        padding: 10px 0;
    }

    .footer-container .contact-content {
        font-size: 14px;
        margin-left: 10px;
        line-height: 25px;
    }

    .footer-container .col-md-6.links .footer-mobile-title {
        color: #c5c5c5;
        font-size: 16px;
    }

    .footer-container .footer-submenu,
    .footer-container .footer-submenu.collapse,
    .footer-container .footer-submenu.collapsing,
    .footer-container .footer-submenu.collapse.in {
        background: none;
        padding-left: 10px;
    }

    .footer-container .footer-links-section .footer-submenu-link {
        color: #ccc;
        font-size: 16px;
    }

    .footer-container,
    .col-md-3.links.wrapper.footer-account-block,
    .footer-account-mobile-title {
        color: #c5c5c5;
        font-size: 16px;
    }

    .footer-container .footer-account-menu,
    .footer-container .footer-account-menu.collapse,
    .footer-container .footer-account-menu.collapsing,
    .footer-container .footer-account-menu.collapse.in {
        background: none;
        padding-left: 10px;
    }

    .footer-container .footer-account-block .footer-account-link {
        color: #ccc;
        font-size: 16px;
    }

    .footer-container #block_myaccount_infos ul li a {
        font-size: 16px;
    }

    .footer-container .store-info {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .store-wrapper {
        flex-direction: column;
    }

    .store-item {
        width: 100% !important;
        max-width: 50%;
        min-width: 40%;
    }
}

@media screen and (max-width: 700px) {
    .why-tiles-row {
        flex-direction: column;
    }
}

@media screen and (max-width: 700px) {
    #cart .product-line-grid-right {
        min-width: 100%;
        justify-content: flex-start !important;
    }

    .product-line-grid-right > .row {
        width: 100%;
        justify-content: space-between !important;
        gap: 0;
        flex-wrap: wrap-reverse;
    }

    .product-line-grid-right > .row:after {
        position: absolute;
    }

    #cart .product-line-grid-body {
        width: 74%;
    }
    .ranks-row {
        justify-content: space-evenly;
    }

    .ranks-row .card {
        min-width: 45%;
        max-width: 45%;
    }

    .current-stats {
        flex-direction: column !important;
        align-items: center;
        gap: 5px !important;
    }
    .page-footer {
        justify-content: center;
    }
}

@media screen and (max-width: 700px) {
    #my-modal {
        width: 100%;
    }

    #my-modal .modal-dialog {
        min-width: 100%;
        position: fixed;
        left: 0 !important;
        margin: 0;
        bottom: 0;
    }
    .modal-content {
        border-radius: 0 !important;
        overflow-y: scroll;
        height: 100dvh;
    }
    .modal-content .modal-header {
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 700px) {
    .top-footer-container {
        padding: 40px 20px 0;
    }

    .footer-contact-container {
        flex-direction: column;
        gap: 12px;
    }

    .footer-dane-container {
        flex-direction: column;
        gap: 4px;
    }

    .footer-section-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-payment-logos {
        flex-wrap: wrap;
    }

    .bottom-footer-container {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        text-align: center;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 575px) {
    .links > a {
        width: 50%;
        padding: 0 !important;
    }
}

@media (max-width: 600px) {
    .products-header__link {
        display: none;
    }
    .products-header__title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .text-sm-center {
        text-align: center !important;
    }
    #order-infos .row {
        flex-direction: column;
        align-items: flex-start;
    }

    #order-infos .col-xs-3 {
        width: 100%;
    }

    #order-infos .button-primary {
        width: 100%;
        text-align: center;
    }

    #order-infos strong {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .order-history-container {
        padding: 15px;
    }

    .order-card {
        padding: 15px;
        margin-left: -5px;
        margin-right: -5px;
    }

    .order-card-actions {
        flex-direction: column;
    }

    .btn-details-mobile,
    .btn-reorder-mobile,
    .btn-invoice-mobile {
        flex: none;
        min-width: 100%;
    }

    .info-box {
        padding: 15px;
        margin: 0 !important;
    }

    .empty-orders {
        padding: 30px 15px;
    }
    #order-detail .page-content {
        width: 100%;
        margin: 5px auto;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    #order-detail .breadcrumb,
    #order-detail .page-footer {
        max-width: 100%;
        padding: 0 15px;
    }

    #order-detail .box {
        padding: 12px;
    }

    #order-detail .form-fields {
        padding: 12px;
    }

    #order-detail .addresses {
        padding: 0 5px;
    }

    #order-detail .addresses article {
        padding: 12px;
    }

    #order-detail .box h3,
    #order-detail .box h4 {
        font-size: 1rem;
    }

    .label-pill {
        font-size: 0.7rem !important;
        padding: 3px 10px !important;
    }

    #order-detail .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    #order-detail .button-primary {
        padding: 10px 15px;
        font-size: 14px;
    }

    #order-detail .history-lines .history-line,
    #order-detail .shipping-lines .shipping-line {
        padding: 12px;
        margin-bottom: 8px;
    }

    #order-detail .shipping-lines .shipping-line li {
        padding: 6px 0;
    }
    .cart-item {
        border-bottom: none;
    }
    .customer-summary-card {
        flex-wrap: wrap;
    }
    .customer-summary-logout {
        flex: 1 0 100%;
        text-align: left;
        margin-top: 0.5rem;
    }
}

@media screen and (max-width: 575px) {
    .contact-details {
        flex-direction: column;
    }
}

@media screen and (max-width: 575px) {
    .product-variants-item {
        width: 100%;
        max-width: 100%;
    }

    #product #qty_form {
        display: flex;
        height: fit-content;
        max-width: 40%;
        width: fit-content;
    }

    .delivery-service-info {
        align-self: flex-start;
    }

    .product-manufacturer {
        justify-content: center;
        height: 75px;
    }

    .manufacturer-logo {
        display: none;
    }
    .product-variants-item ul {
        --tiles: 3;
    }
}

@media screen and (max-width: 480px) {
    body#checkout .address-item {
        min-width: 100%;
    }

    body#checkout .address-item.selected {
        margin-top: 10px;
    }

    .products.row {
        --cornGap: 16px;
        --tiles: 1;

        gap:var(--cornGap)
    }

    body#checkout .address-item {
        margin-top: 0;
    }

    #login-form {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 10px 0 0 0;
    }
    body#checkout .form-fields {
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }
    #delivery-address {
        margin-left: 0 !important;
    }

    .form-footer {
        padding: 8px 0;
    }
    .cart-grid-body,
    .cart-grid-right {
        padding: 10px;
    }
    #checkout #checkout-personal-information-step .btn-primary {
        min-width: 100px !important;
    }

    #checkout .btn-primary {
        width: fit-content;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .carrier-logo {
        display: none;
    }

    .carrier-logo img {
        height: 100%;
        width: 100%;
    }

    .carrier-main {
        justify-content: space-between;
        gap: 0;
    }
}

@media screen and (max-width: 480px) {
    #product .my-add-to-cart {
        padding: 0;
    }

    #product .my-add-to-cart .delivery-service-product strong {
        font-size: 13px !important;
    }

    #product .my-add-to-cart .delivery-service-product span {
        font-size: 12px !important;
    }

    #product .product-variants-item .control-label {
        font-size: 16px;
    }
    .onas-firma {
        padding: 10px;
        gap: 15px;
    }
    .onas-firma-content {
        padding-top: 15px;
    }
    .onas-container {
        padding: 0 5px;
    }

    .onas-sekret-subtitle,
    .onas-poznaj-nas-subtitle {
        padding: 15px 0;
    }

    .onas-poznaj-nas-elements {
        gap: 15px;
    }

    .onas-poznaj-nas-element-img {
        width: 80px;
        height: 80px;
    }

    .onas-poznaj-nas-element-text {
        width: 150px;
        height: auto;
        min-height: 80px;
    }

    .onas-sekret-block {
        gap: 15px;
    }
    .header-nav .logo {
        width: 80px !important;
        max-width: 80px !important;
    }

    #search_widget form input[type="text"] {
        font-size: 13px;
        padding: 6px 8px;
    }

    #search_widget .search-submit svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .products.row {
        grid-template-columns: 1fr;
    }
    .addresses-container {
        padding: 15px;
        margin: 0 !important;
    }

    .address-card {
        padding: 15px;
    }

    .add-address-section,
    .info-box {
        padding: 15px;
    }

    .add-address-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    .customer-form-content {
        padding: 20px 0;
    }
    .vouchers-cards {
        gap: 15px;
    }

    .voucher-card-header,
    .voucher-card-body {
        padding: 10px;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
    }

    .code-label {
        display: none;
    }

    .voucher-name-mobile {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .voucher-value-mobile {
        width: 100%;
        text-align: center;
    }
    .wishlist-page-container {
        padding: 0;
    }

    .wishlist-header,
    .wishlist-main-section,
    .add-wishlist-section,
    .wishlist-footer-container {
        padding: 20px;
        border-radius: 0;
        margin-bottom: 15px;
    }

    .wishlist-page-title {
        font-size: 1.3rem;
    }

    .wishlist-page-description {
        font-size: 0.9rem;
    }

    .add-wishlist-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .footer-link {
        padding: 12px 20px;
        font-size: 12px;
        min-width: auto;
    }

    .wishlist-info-box {
        padding: 15px;
        border-radius: 15px;
    }

    .info-title {
        font-size: 1.1rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }
    .account-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0;
    }

    .account-link-tile,
    .account-links-grid > div,
    .account-links-grid > span,
    .account-links-grid a {
        padding: 20px !important;
        min-height: 140px !important;
        gap: 10px !important;
    }

    .tile-icon,
    .account-links-grid .material-icons,
    .account-links-grid i[class*="icon"],
    .account-links-grid [class*="fa-"],
    .account-links-grid svg {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }

    .link-item span,
    #psgdpr-link .link-item,
    #wishlist-link .link-item,
    .tile-title,
    .account-links-grid h3,
    .account-links-grid h4,
    .account-links-grid .title {
        font-size: 0.9rem !important;
    }

    .logout-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
    .forgot-container {
        padding: 10px;
    }

    .forgot-box {
        padding: 15px 8px;
        min-height: 70px;
    }

    .forgot-title p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    form.forgotten-password .forgot-box.box-second > p,
    form.forgotten-password .forgot-box.box-first > p {
        font-size: 14px;
    }

    form.forgotten-password .forgot-box.box-third > p {
        font-size: 16px;
    }

    form.forgotten-password .forgot-box.box-four > p {
        font-size: 18px;
    }

    form.forgotten-password .forgot-box.box-four > p > span {
        font-size: 14px;
    }
    .newsletter-container {
        padding: 10px 5px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-title > span {
        font-size: 38px;
    }

    .newsletter-subtitle > span {
        padding: 5px 12px;
        font-size: 12px;
    }

    .newsletter-container .form-group,
    .newsletter-container .form-group.full-width {
        height: 40px;
    }

    .newsletter-container input[type="email"],
    .newsletter-container input[type="text"],
    .newsletter-container input[type="date"],
    .newsletter-container input[name="email"] {
        padding: 10px 12px !important;
        font-size: 14px !important;
        height: 40px !important;
    }

    .newsletter-container input[name="submitNewsletter"],
    .newsletter-container button[name="submitNewsletter"],
    .newsletter-container .submit-btn {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }

    .skull-logo img {
        width: 50px;
        height: 50px;
    }

    .checkbox-container {
        font-size: 9px;
    }
    .product-title {
        font-size: 13px;
    }

    .product-price-and-shipping .price {
        font-size: 16px;
    }

    .product-dimensions-info {
        font-size: 11px;
        gap: 0;
        margin-top: auto;
        margin-bottom: 0;
    }
    .featured-products .products-embla__slide {
        flex: 0 0 100%;
        padding-right: 0;
    }
}

@media screen and (max-width: 480px) {
    #fbpsc.authentication {
        padding: 0 5px;
    }
}

@media screen and (max-width: 480px) {
    .product-variants-item {
        width: 100%;
        justify-content: center;
    }

    .row.sort-by-row {
        max-width: 95vw;
        margin: 0 auto !important;
    }

    .variant-modal {
        max-width: 100% !important;
    }
    #contact #left-column {
        padding: 0 15px;
    }
    .contact-us-form-container {
        border-radius: 0;
    }

    #contact #wrapper > .container > .row {
        align-items: center;
    }
    #content-hook_order_confirmation {
        margin: 0 10px;
    }

    .confirmation-content-wrapper {
        padding: 0 10px;
    }
    body#order-slip .credit-slip {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    #identity #wrapper .container {
        max-width: 95vw;
        margin: 0 auto !important;
    }

    .products.row.owl-carousel {
        max-width: 100%;
    }

    .products-selection .showing {
        padding-top: 8px;
    }

    .account-page-container {
        padding: 0;
        border-radius: 0;
    }

    #wrapper .breadcrumb {
        max-width: 95vw;
        margin: 0 auto 8px;
    }

    .gdpr-section,
    .rank-header,
    .order-history-container,
    .addresses-container,
    .customer-form-modern {
        border-radius: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .variant-product i {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .logo-row .logo {
        width: 180px;
    }
    .koszyk-info-tooltip .tooltip-text {
        visibility: hidden;
        opacity: 0;

        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;

        width: auto;
        max-width: 373px;
        min-width: 200px;

        background-color: var(--cornero-black);
        color: var(--ivory);
        text-align: center;

        padding: 8px 14px;
        font-size: 13px;
        line-height: 1.35;

        position: absolute;
        top: calc(100% + 10px);
        left: -59px;
        transform: translateX(-50%);

        z-index: 10000;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        transition: opacity 0.18s ease-in-out;

        pointer-events: none;

        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 400px) {
    .product-flag {
        font-size: 9px !important;
    }
    .add-to-cart.out-of-stock {
        font-size: 14px;
        gap: 0;
    }
    .add-to-cart i {
        font-size: 20px;
        margin: 0 !important;
    }
    .store-item {
        max-width: 100%;
        min-width: 60%;
    }
    .element-section {
        padding: 20px 8px;
    }

    .element-icon-place img {
        width: 60px;
        height: 60px;
    }

    .tooltip-content {
        font-size: 12px;
        bottom: -50px;
    }

    .element-section h2 {
        font-size: 16px;
    }

    .account div.row,
    .customer-account div.row {
        display: none;
    }
    .reason-box {
        padding: 20px 12px;
    }

    .reason-box img {
        width: 60px;
        height: 60px;
    }

    .reason-box h3 {
        font-size: 16px;
    }

    .reason-box p {
        font-size: 14px;
    }
    .form-inline {
        flex-direction: column;
    }
    .product-variants-item ul {
        --tiles: 3;
    }
}

@media screen and (max-width: 380px) {
    .header-nav .logo {
        width: 70px !important;
        max-width: 70px !important;
    }
    .mobile-bottom-bar-item span:not(.cart-badge) {
        font-size: 9px;
    }

    .mobile-bottom-bar-item svg {
        width: 22px;
        height: 22px;
    }

    #sticky-header.sticky .logo {
        max-width: 70px !important;
    }
}

@media screen and (max-width: 370px) {
    .add-to-cart i {
        display: none !important;
    }
}

@media screen and (max-width: 370px) {
    #cart .product-price {
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 10px;
        width: fit-content !important;
        padding: 0;
    }

    .product-line-info.product-price {
        width: 100% !important;
        height: fit-content;
        padding-bottom: 10px;
    }
}

@media (max-width: 320px) {
    .newsletter-container {
        padding: 8px 3px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-title > span {
        font-size: 32px;
    }

    .newsletter-subtitle > span {
        padding: 4px 10px;
        font-size: 11px;
    }

    .skull-logo img {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (min-width: 548px) {
    #fbpsc .btn-google-default,
    #submit-login {
        width: 100%;
    }
}

@media screen and (min-width: 575px) and (max-width: 767px) {
    body#guest-tracking .addresses {
        display: flex;

        flex-direction: row;
    }
    body#guest-tracking #delivery-address {
        margin-right: 10px;
    }
    body#guest-tracking #invoice-address {
        margin-left: 10px;
    }
}

@media (min-width: 576px) {
    #my-modal .modal-dialog {
        max-width: 600px;
        margin: 0;
    }
    #my-modal .modal-dialog {
        max-width: 450px;
        margin: 30px auto;
        width: fit-content;
    }
}

@media screen and (min-width: 991px) {
    #my-search-button {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    #fbpsc .bt-btn-sl {
        width: 215px;
    }
}

@media screen and (min-width: 1200px) {
    .nav-toggle-div {
        display: none;
    }

    .mobile-bottom-bar {
        display: none !important;
    }

    body {
        padding-bottom: 0 !important;
    }
}

@media screen and (min-width: 1600px) {
    .blog-block {
        max-width: 100%;
    }
}


body:has(#fbpsc) #wrapper .container,
body:has(.wishlist-container) #wrapper .container,
.page-addresses #wrapper .container,
.page-my-account #wrapper .container,
.page-customer-account #wrapper .container{
    width:1000px
}























/* =========================================================
   Floating add-to-cart
   ========================================================= */

.product-floating-cart {
    position: fixed;
    z-index: 99;
    left: 24px;
    right: 24px;
    bottom:0;

    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto auto;
    align-items: center;
    gap: 40px;

    max-width: 1660px;
    min-height: 108px;
    margin: 0 auto;
    padding: 16px 20px;

    color: #211d1b;
    background: rgba(255, 253, 251, 0.98);
    border: 1px solid var(--cornero-border-light);
    border-radius: 12px 12px 0 0;
    box-shadow:
            0 16px 50px rgba(46, 30, 24, 0.14),
            0 3px 10px rgba(46, 30, 24, 0.06);

}



.product-floating-cart__summary {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 16px;
}

.product-floating-cart__image {
    flex: 0 0 76px;
    width: 76px;
    height: 68px;

    object-fit: contain;
    border-radius: 10px;
}

.product-floating-cart__summary > div {
    min-width: 0;
}

.product-floating-cart__variants {
    overflow: hidden;

    color: #675e5a;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.product-floating-cart__delivery {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #675e5a;
    font-size: 14px;
    white-space: nowrap;
}


.product-floating-cart__delivery strong {
    color: #211d1b;
    font-weight: 600;
}

.product-floating-cart__purchase {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.product-floating-cart__price {
    min-width: 190px;
    text-align: right;
}



@media (max-width: 1199px) {
    .product-floating-cart {
        grid-template-columns: minmax(220px, 1fr) auto;
        gap: 24px;
    }

    .product-floating-cart__delivery {
        display: none;
    }

}

@media (max-width: 767px) {
    .product-floating-cart {
        left: 10px;
        right: 10px;
        bottom: calc(64px + env(safe-area-inset-bottom));

        display: flex;
        min-height: 74px;
        padding: 10px;

        border-radius: 12px;
    }

    .product-floating-cart__summary,
    .product-floating-cart__delivery {
        display: none;
    }

    .product-floating-cart__purchase {
        width: 100%;
        gap: 24px;
    }

    .product-floating-cart__price {
        flex: 0 0 auto;
        min-width: 0;
        text-align: left;
    }

    .product-floating-cart__price small {
        display: none;
    }

    .product-floating-cart__price strong {
        font-size: 20px;
    }

}


@media (max-width: 374px) {
    .product-floating-cart__price strong {
        font-size: 18px;
    }

    .product-floating-cart__button {
        padding-inline: 12px;
        font-size: 13px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .product-floating-cart,
    .product-floating-cart__button {
        transition: none;
    }
}








.card:has(.category-additional-description){
    background: none;
}

.category-additional-description{
    border-top: 1px solid #e4ded9;
    padding: 24px 0 0 !important;
}

.category-description {
    color: #292421;
    font-size: 16px;
    line-height: 1.75;
}

.category-description__intro {
    max-width: 900px;
    margin-bottom: 56px;
    font-size: 18px;
    line-height: 1.7;
}

.category-description h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.category-description h3 {
    margin: 32px 0 12px;
    font-size: 21px;
    line-height: 1.35;
}

.category-description p {
    max-width: 900px;
    margin: 0 0 18px;
}

.category-description ul {
    max-width: 900px;
    margin: 24px 0;
    padding-left: 24px;
    list-style:disc
}

.category-description li {
    margin-bottom: 4px;
}

.category-description strong {
    font-weight: 600;
}

@media (max-width: 767px) {
    .category-description {
        margin-top: 40px;
        font-size: 15px;
        line-height: 1.65;
    }

    .category-description__intro {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .category-description__section {
        padding: 32px 0;
    }

    .category-description h2 {
        margin-bottom: 18px;
        font-size: 26px;
    }

    .category-description h3 {
        margin-top: 26px;
        font-size: 19px;
    }
}






/* ==================================================
   FABRIC SELECTOR — DESKTOP
   ================================================== */

.fabric-selector {
    width: 100%;
}

.fabric-selector__trigger {
    display: none;
}

.fabric-drawer {
    display: block;
    width: 100%;
}

.fabric-drawer__backdrop,
.fabric-drawer__header,
.fabric-drawer__selected,
.fabric-drawer__search,
.fabric-drawer__families,
.fabric-drawer__footer {
    display: none;
}

.fabric-drawer__panel {
    width: 100%;
}

.fabric-drawer__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 12px 0 24px;
    padding: 0;
    list-style: none;
}

.fabric-option {
    position: relative;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
}

.fabric-option .input-color {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.fabric-option label {
    display: block;
    width: 100%;
    margin: 0;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition:
            border-color 160ms ease,
            box-shadow 160ms ease;
}

.fabric-option__texture {
    display: block;
    width: 100%;
    height: 72px;
    border-radius: 6px;
    background-color: #eee;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fabric-option__name {
    display: none;
}

.fabric-option .input-color:checked + label {
    border-color: #4b3027;
    box-shadow: 0 0 0 1px #4b3027;
}

.fabric-option .input-color:focus-visible + label {
    outline: 2px solid #4b3027;
    outline-offset: 3px;
}

/* Filtrowanie przez JS */
.fabric-option[hidden] {
    display: none !important;
}


/* ==================================================
   FABRIC DRAWER — MOBILE
   ================================================== */

@media (max-width: 767px) {
    .fabric-selector > .control-label {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 600;
    }

    .fabric-selector__trigger {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 92px;
        padding: 10px;
        border: 1px solid #ded8d4;
        border-radius: 10px;
        background: #fff;
        color: #292421;
        text-align: left;
        cursor: pointer;
    }

    .fabric-selector__preview {
        display: block;
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
        border-radius: 7px;
        background-color: #eee;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .fabric-selector__content {
        display: flex;
        flex: 1;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
        padding: 0 14px;
    }

    .fabric-selector__content strong {
        overflow: hidden;
        font-size: 16px;
        font-weight: 600;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fabric-selector__content > span {
        color: #625a56;
        font-size: 14px;
    }

    .fabric-selector__arrow {
        flex: 0 0 auto;
        padding-right: 4px;
        font-size: 25px;
        line-height: 1;
    }

    .fabric-drawer {
        position: fixed;
        top:39px;
        left:0;
        right:0;
        bottom:60px;
        z-index: 999999;
        display: block;
        visibility: hidden;
        pointer-events: none;
    }

    .fabric-drawer.is-open {
        visibility: visible;
        pointer-events: auto;
    }

    .fabric-drawer__backdrop {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.58);
        opacity: 0;
        cursor: pointer;
        transition: opacity 250ms ease;
    }

    .fabric-drawer.is-open .fabric-drawer__backdrop {
        opacity: 1;
    }

    .fabric-drawer__panel {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        width: min(88vw, 430px);
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
        border-radius: 20px 0 0 20px;
        background: #fbfaf9;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 300ms ease;
    }

    .fabric-drawer.is-open .fabric-drawer__panel {
        transform: translateX(0);
    }

    .fabric-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
        padding: 20px 18px 14px;
    }

    .fabric-drawer__header h2 {
        margin: 0;
        font-size: 22px;
        line-height: 1.2;
        font-weight: 600;
    }

    .fabric-drawer__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #292421;
        font-size: 36px;
        font-weight: 300;
        line-height: 1;
        cursor: pointer;
    }

    .fabric-drawer__selected {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
        margin: 0 18px 14px;
        padding: 10px;
        border: 1px solid #ded8d4;
        border-radius: 10px;
        background: #fff;
    }

    .fabric-drawer__selected-preview {
        display: block;
        width: 68px;
        height: 68px;
        flex: 0 0 68px;
        border-radius: 7px;
        background-color: #eee;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .fabric-drawer__selected strong {
        overflow: hidden;
        font-size: 16px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fabric-drawer__search {
        display: block;
        flex: 0 0 auto;
        padding: 0 18px 12px;
    }

    .fabric-drawer__search input {
        width: 100%;
        height: 48px;
        padding: 0 14px;
        border: 1px solid #ded8d4;
        border-radius: 9px;
        background: #fff;
        color: #292421;
        font-size: 15px;
        outline: none;
    }

    .fabric-drawer__search input:focus {
        border-color: #4b3027;
        box-shadow: 0 0 0 1px #4b3027;
    }

    .fabric-drawer__families {
        display: flex;
        flex: 0 0 auto;
        gap: 6px;
        margin: 0 18px 14px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .fabric-drawer__families::-webkit-scrollbar {
        display: none;
    }

    .fabric-family-button {
        min-width: max-content;
        height: 40px;
        padding: 0 16px;
        border: 1px solid #ded8d4;
        border-radius: 8px;
        background: transparent;
        color: #292421;
        font-size: 14px;
        cursor: pointer;
    }

    .fabric-family-button.is-active {
        border-color: #4b3027;
        background: #4b3027;
        color: #fff;
    }

    .fabric-drawer__body {
        flex: 1 1 auto;
        min-height: 0;
        padding: 0 18px 18px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .fabric-drawer__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 0;
    }

    .fabric-option label {
        padding: 3px;
        border-color: #ded8d4;
        border-radius: 9px;
    }

    .fabric-option__texture {
        height: 112px;
        border-radius: 6px 6px 0 0;
    }

    .fabric-option__name {
        display: flex;
        flex-direction: column;
        min-height: 40px;
        padding: 9px 7px 6px;
        overflow: hidden;
        font-size: 13px;
        font-weight: 500;
        /*! line-height: 1.2; */
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: center
    }

    .fabric-option .attribute-price-impact {
        margin: 3px 0 0;
        font-size: 11px;
    }

    .fabric-option .input-color:checked + label {
        position: relative;
    }

    .fabric-option .input-color:checked + label::after {
        content: "✓";
        position: absolute;
        top: 9px;
        right: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #4b3027;
        color: #fff;
        font-size: 15px;
    }

    .fabric-drawer__footer {
        display: block;
        flex: 0 0 auto;
        padding: 12px 18px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        border-top: 1px solid #ded8d4;
        background: #fbfaf9;
    }

    .fabric-drawer__confirm {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
        min-height: 52px;
        padding: 10px 16px;
        border: 0;
        border-radius: 8px;
        background: #4b3027;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }

    body.fabric-drawer-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fabric-drawer__panel,
    .fabric-drawer__backdrop {
        transition: none;
    }
}

#content-wrapper:has(.fabric-drawer.is-open) .product-floating-cart{
    display: none
}