:root {
  --font38: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --red38: #d81f26;
  --text38: #1a1a1a;
  --muted38: #666;
  --border38: #e5e5e5;
  --bg38: #ffffff;
  --accent38: #f6f6f6;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font38);
  color: var(--text38);
  background: var(--bg38);
}

/* Top Bar38*/

/* Topbar38 styles */
.topbar38 {
  background: #1b1f20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  padding: 10px 10px;
  font-family: var(--font38);
  font-size: 14px;
  font-weight: 500;
}

.topbar-message38 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

.topbar-arrow38 {
  background: none;
  border: none;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
}

.topbar-arrow38:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Search icon adjustment: remove background */
.search-submit38 {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  color: #000;
}
.search-submit38:hover {
  background: none;
}


/* Generic38 */
.header38 { 
    width: 100%;
 }
.icon-btn38 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text38);
  padding: 8px;
  cursor: pointer;
}
.icon38 {
  width: 22px;
  height: 22px;
  display: block;
}
.icon-btn38.labeled38 .label38 {
  font-weight: 600;
  font-size: 14px;
}
.icon-btn38.cart38 .label38 { min-width: 64px; text-align: right; }

/* Brand mark (red with white text) */
.brand-mark38 {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  user-select: none;
}
.brand-mark38 img {
	width: 150px;
	height: auto;
}
.brand-text38 {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
}

/* Mobile38 */
.header--mobile38 {
  display: none;
  border-bottom: 1px solid var(--border38);
  background: var(--bg38);
}
.header-mobile-top38 {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}
.header-title38 {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.header-actions38 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header-mobile-logo38 {
  display: flex;
  justify-content: center;
  padding: 8px 10px 10px;
}

.mobile-panels38 {
  position: relative;
}
.mobile-search-panel38 {
  padding: 10px;
  border-top: 1px solid var(--border38);
  background: var(--accent38);
}
.search-box38 {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #000000;
    border-radius: 20px;
    background: #fff;
    padding: 10px 20px;
}
.search-box38 input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}


.mobile-menu38 {
  display: none;
  border-top: 1px solid var(--border38);
  background: #fff;
}
.nav-list38 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.mobile-menu38 .nav-list38 {
  flex-direction: column;
  padding: 10px;
  gap: 10px;
}
.nav-list38 a {
  text-decoration: none;
  color: var(--text38);
  text-transform: lowercase;
  font-weight: 500;
}

/* Desktop38 */
.header--desktop38 {
  display: block;
  background: var(--bg38);
  border-bottom: 1px solid var(--border38);
}
.top-strip38 {
  background: var(--accent38);
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border38);
}
.top-message38 {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted38);
}

.main-bar38 {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}
.brand-wrap38 { display: flex; align-items: center; }
.search-wrap38 {align-items: center; }
.search-wrap38 .search-box38 { max-width: 480px; margin: 0 auto; }

.actions-wrap38 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.currency38 {
  position: relative;
}
.currency-btn38 {
  border: 1px solid var(--border38);
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
.currency-list38 {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border38);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 6px;
  display: none;
  min-width: 120px;
  z-index: 10;
}
.currency-list38 li {
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.currency-list38 li:hover {
  background: var(--accent38);
}

.nav-bar38 {
  padding: 25px;
}
.nav-bar38 .nav-list38 {
  justify-content: left;
  flex-wrap: wrap;
}

/* Responsive switches */
@media (max-width: 768px) {
	.brand-mark38 img {
	width: 100px;
	height: auto;
}
  .header--desktop38 { display: none; }
  .header--mobile38 { display: block; }
}

/* Focus styles */
.icon-btn38:focus,
.currency-btn38:focus,
.search-submit38:focus,
.nav-list38 a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}


aside,
footer,
header,
nav,
section {
    display: block;
}
b,
strong {
    font-weight: 700;
}
img {
    border: 0;
}
button,
input,
select {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    border-radius: 5px;
}
button,
input {
    line-height: normal;
}
button {
    -webkit-appearance: button;
    cursor: pointer;
}
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}
[class^="icon-"] {
    font-family: FontAwesome;
    font-weight: 400;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
}
[class^="icon-"]:before {
    text-decoration: inherit;
    display: inline-block;
    speak: none;
    src: url(/data/designs/smarty/10_151/gfx/eng/config.json);
}
.icon-user:before {
    content: "\f007";
}
.icon-lock:before {
    content: "\f023";
}
.icon-globe:before {
    content: "\f0ac";
}
.icon-x:before {
    content: "\E880";
}
.icon-heart-1:before {
    content: "\e8a3";
}
.icon-user-1:before {
    content: "\E8B3";
}
.icon-left:before {
    content: "\e8a6";
}
.icon-right:before {
    content: "\f0e0";
}
.icon-facebook-1:before {
    content: "\e8aa";
}
.icon-instagram:before {
    content: "\e8ab";
}
.icon-up:before {
    content: "\e8ad";
}
.icon-down:before{content:'\e8ae';}
.icon-cosi-menu:before {
    content: "\E8BE";
}
.--cleanList {
    list-style-type: none;
}
*,
::after,
::before {
    box-sizing: inherit;
}
html {
    font-size: 10px;
    overflow-y: visible;
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}
body {
    margin: 0;
    width: 100%;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
    color: #1c1f20;
    background: #fff;
    overflow-x: hidden;
    overflow-y: visible;
}
@media (min-width: 979px) {
    body {
        padding: 0;
    }
}
body:after {
    position: fixed;
    left: 0;
    bottom: -50px;
    top: 0;
    background: #000;
    z-index: 599;
    right: 0;
    opacity: 0;
    pointer-events: none;
    content: "";
}
input {
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: inherit;
    filter: none;
}
input[type="text"] {
    height: 35px;
    padding: 5px;
    font-size: 1em;
    box-shadow: none;
    -webkit-appearance: none;
    color: #1c1f20;
    border: 1px solid #ebebeb;
    background: #fff;
    border-radius: 5px;
}
@media (min-width: 757px) {
    input[type="text"] {
        height: 40px;
    }
}
button {
    outline: 0;
    -webkit-appearance: none;
    border-radius: 0;
    cursor: pointer;
    border: none;
    background: 0 0;
}
select {
    padding: 5px;
    font-size: 1em;
    color: #1c1f20;
    border: 1px solid #ebebeb;
    background: #fff;
    box-shadow: none;
    border-radius: 5px;
}
h2 {
    font-size: 3.8rem;
    font-weight: 700;
    color: #1c1f20;
}
a {
    outline: 0;
    text-decoration: none;
    color: #000;
    transition: background-color 0.2s, color 0.2s, border 0.2s;
}
a:hover {
    outline: 0;
    text-decoration: underline;
    color: #1c1f20;
}
a:active,
a:focus {
    outline: 0;
}
img {
    border: none;
    max-width: 100%;
    height: auto;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 757px) {
    .container {
        max-width: 749px;
    }
}
@media (min-width: 979px) {
    .container {
        max-width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 1280px;
    }
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-12,
.col-3,
.col-6,
.col-md-3,
.col-sm-3 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.order-first {
    order: -1;
}
.order-0 {
    order: 0;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}
.order-3 {
    order: 3;
}
.order-4 {
    order: 4;
}
@media (min-width: 757px) {
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (min-width: 979px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .order-md-0 {
        order: 0;
    }
    .order-md-2 {
        order: 2;
    }
    .order-md-3 {
        order: 3;
    }
    .order-md-4 {
        order: 4;
    }
}
.d-none {
    display: none !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
@media (min-width: 979px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-flex {
        display: flex !important;
    }
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-fill {
    flex: 1 1 auto !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-evenly {
    justify-content: space-evenly !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-center {
    align-items: center !important;
}
@media (min-width: 979px) {
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
    .align-items-md-center {
        align-items: center !important;
    }
}
@media (min-width: 1200px) {
    .flex-lg-row {
        flex-direction: row !important;
    }
}
.m-0 {
    margin: 0 !important;
}
.mb-1 {
    margin-bottom: 0.5rem !important;
}
.mb-2 {
    margin-bottom: 1rem !important;
}
.mb-3 {
    margin-bottom: 1.5rem !important;
}
.mr-4 {
    margin-right: 2rem !important;
}
.mb-4 {
    margin-bottom: 2rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.py-1 {
    padding-top: 0.5rem !important;
}
.py-1 {
    padding-bottom: 0.5rem !important;
}
.py-2 {
    padding-top: 1rem !important;
}
.px-2 {
    padding-right: 1rem !important;
}
.py-2 {
    padding-bottom: 1rem !important;
}
.px-2 {
    padding-left: 1rem !important;
}
.py-3 {
    padding-top: 1.5rem !important;
}
.px-3 {
    padding-right: 1.5rem !important;
}
.py-3 {
    padding-bottom: 1.5rem !important;
}
.px-3 {
    padding-left: 1.5rem !important;
}
.pb-5 {
    padding-bottom: 3rem !important;
}
.mx-n3 {
    margin-right: -1.5rem !important;
}
.mx-n3 {
    margin-left: -1.5rem !important;
}
@media (min-width: 979px) {
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .mb-md-1 {
        margin-bottom: 0.5rem !important;
    }
    .mb-md-4 {
        margin-bottom: 2rem !important;
    }
    .mb-md-5 {
        margin-bottom: 3rem !important;
    }
    .py-md-2 {
        padding-top: 1rem !important;
    }
    .py-md-2 {
        padding-bottom: 1rem !important;
    }
    .pl-md-5 {
        padding-left: 3rem !important;
    }
}
.slick-slider {
    display: block !important;
    position: relative;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: 0;
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:after {
    clear: both;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img {
    display: inline-block;
    outline: 0;
    vertical-align: top;
}
.slick-initialized .slick-slide {
    display: block;
    z-index: 50 !important;
}
.slick-initialized .slick-slide.slick-active {
    z-index: 51 !important;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    outline: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 50px;
}
.slick-dots {
    position: absolute;
    bottom: -30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 4px;
    padding: 0;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 9px;
    height: 9px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0;
}
.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0;
}
.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    content: "";
    text-align: center;
    opacity: 0.25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #1c1f20;
    border-radius: 100%;
}
.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: #000;
}
.slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    background: #fff;
    color: #000;
    border: 1px solid #eee;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.slider__arrow:hover {
    border: 1px solid #fccdc7;
    text-decoration: none;
}
.slider__arrow.--prev {
    left: 1rem;
}
.slider__arrow.--next {
    right: 1rem;
}
.btn.aside-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2.8rem;
    background: #fff;
    border-radius: 50%;
}
button.btn {
    padding: 0.95rem 1rem;
}
button.btn.--large {
    padding: 1.5rem 2rem;
}
.btn {
    background: 0 0;
    padding: 0;
    border: 1px solid transparent;
    font-family: Montserrat, Arial, sans-serif;
    display: inline-block;
    text-decoration: none;
    color: #000;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    font-weight: 400;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    border-radius: 25px;
}
@media (min-width: 757px) {
    .btn {
        width: auto;
    }
}
.btn:hover {
    color: #1c1f20;
    text-decoration: none;
}
.btn.--large {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.5rem 3rem;
    font-weight: 700;
    border-radius: 30px;
}
.btn.--large.--solid {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}
.btn.--large.--solid:hover {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.btn.--solid {
    background: #fff;
    border: 1px solid #fff;
    color: #000;
}
.btn.--solid:hover {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.btn.--secondary {
    color: #1c1f20;
}
.btn.--secondary:hover {
    color: #fff;
}
.btn.--secondary.--solid {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.btn.--secondary.--solid:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}
.form-group {
    margin-bottom: 15px;
}
@media (min-width: 757px) {
    .form-group {
        margin-bottom: 20px;
    }
}
.form-group label {
    display: inline-block;
}
.form-group .form-control option {
    padding: 6px 10px;
    cursor: pointer;
}
label {
    display: inline-block;
    max-width: 100%;
}
.form-control.form-control {
    display: block;
    width: 100%;
    height: 50px;
    text-align: left;
    padding: 6px 20px 6px 20px;
    font-size: 1em;
    line-height: 1.42857143;
    color: #1c1f20;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ebebeb;
    box-shadow: none;
    transition: border-color ease-in-out 0.15s;
    border-radius: 5px;
}
.form-control:focus {
    border-color: #1c1f20;
    outline: 0;
}
.clearfix:after,
.clearfix:before {
    clear: both;
}
.clearfix:after {
    content: " ";
    display: table;
}
.f-group {
    position: relative;
    margin-bottom: 1rem;
}
@media (min-width: 757px) {
    .f-group {
        margin-bottom: 1.5rem;
    }
}
.f-group .f-control {
    display: block;
    width: 100%;
    height: 50px;
    text-align: left;
    padding: 0.6rem 1.3rem;
    font-size: 1.4rem;
    color: #1c1f20;
    background: #fff;
    border: 1px solid #ebebeb;
    transition: border-color ease-in-out 0.15s;
    box-shadow: none;
    border-radius: 5px;
}
.f-group .f-control + .f-label {
    white-space: nowrap;
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
}
.f-group .f-control:focus {
    border-color: #1c1f20;
    outline: 0;
}
.f-group .f-control:focus + .f-label {
    transform: scale(0.95) translateY(-27px);
    left: 15px;
    padding: 0 5px;
    color: #1c1f20;
}
.f-group .f-label {
    pointer-events: none;
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #1c1f20;
    transition: transform 0.15s, left 0.15s;
    transform-origin: bottom left;
    padding: 0 5px;
    font-size: 1.4rem;
}
.f-group .f-feedback {
    position: relative;
}
.f-group .f-feedback .f-control {
    padding-right: 30px;
}
.f-group .f-feedback .f-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom_checkbox {
    padding-left: 5rem;
    cursor: pointer;
}
.custom_checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 15px;
    top: 0;
    width: 20px;
    height: 20px;
}
.custom_checkbox input[type="checkbox"] ~ span.custom_checkmark {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.custom_checkbox input[type="checkbox"] ~ span.custom_checkmark:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: 0 0;
    border: 1px solid #000;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
}
.custom_checkbox input[type="checkbox"] ~ span.custom_checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.custom_checkbox input[type="checkbox"]:checked ~ .custom_checkmark:after {
    display: block;
}
#viewType {
    width: 1px;
}
@media (min-width: 757px) {
    #viewType {
        width: 2px;
    }
}
@media (min-width: 979px) {
    #viewType {
        width: 3px;
    }
}
@media (min-width: 1200px) {
    #viewType {
        width: 4px;
    }
}
.bg_alter {
    background: #f5f5f5;
    color: #000;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}
img.b-lazy {
    min-width: 20px;
    min-height: 20px;
}
.headline {
    font-family: Montserrat, Arial, sans-serif;
    color: #1c1f20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 10px 0;
    text-decoration: none;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}
@media (min-width: 979px) {
    .headline {
        font-size: 3.2rem;
        font-weight: 700;
    }
}
@media (min-width: 1200px) {
    .headline {
        font-size: 3.8rem;
        margin-bottom: 2rem;
    }
}
.hotspot {
    max-width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden;
}
@media (min-width: 757px) {
    .hotspot {
        max-width: unset;
        margin-left: 0;
        margin-right: 0;
        overflow: initial;
    }
}
.hotspot.skeleton > * {
    opacity: 0.2;
}
.hotspot.skeleton .headline:before {
    content: "";
    display: block;
    width: 160px;
    background: #f5f5f5;
    height: 18px;
}
.hotspot.skeleton .product__icon {
    background: #eee;
}
.hotspot.skeleton .product__name {
    height: 20px;
    background: #eee;
    max-width: 80%;
}
.hotspot.skeleton .product__prices {
    height: 20px;
    background: #eee;
    max-width: 60%;
}
.hotspot .product__name {
    text-align: center;
}
.badge {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    height: 25px;
    line-height: 23px;
    min-width: 25px;
    padding: 0 5px;
    vertical-align: baseline;
    white-space: nowrap;
}
aside[class*="col-"] {
    display: none;
    background: #fff;
    font-size: 0.93em;
    display: block;
    position: fixed !important;
    font-size: 1em;
    z-index: 1000;
    top: 0;
    bottom: 0;
    overflow: auto;
    max-width: 100%;
    right: -100%;
    padding: 4rem;
}
@media (min-width: 979px) {
    aside[class*="col-"] {
        display: none;
        position: relative !important;
        max-width: 25%;
        top: initial;
        bottom: initial;
        left: initial;
        right: initial;
        overflow: visible;
        z-index: 0;
        padding: 0 15px !important;
    }
}
@media (min-width: 1200px) {
    aside[class*="col-"] {
        font-size: 1em;
    }
}


footer {
    position: relative;
    color: #fff;
}
footer:before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    margin-left: -50vw;
    left: 50%;
    top: 0;
    background: #1c1f20;
    z-index: -1;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #fccdc7;
}
#container {
    margin: 0 auto;
    text-align: left;
    font-size: 1.3rem;
    position: relative;
}
@media (min-width: 757px) {
    #container {
        font-size: 1.4rem;
    }
}
#content {
    margin-top: 10px;
}
@media (min-width: 979px) {
    #content {
        margin-top: 0;
    }
}
#layout {
    margin-bottom: 30px;
}

.main_page #content {
    margin-top: 0;
}
.main_page #layout {
    margin-bottom: 0;
}
.product {
    background: #fff;
    color: #1c1f20;
}
.product:first-child {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 757px) {
    .product:first-child {
        margin-left: 0;
        margin-right: 0;
    }
}
.product__icon {
    height: 30rem;
    margin-bottom: 2rem;
    position: relative;
}
.product__name {
    display: block;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1c1f20;
    font-size: 1.5rem;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product__name:hover {
    color: #1c1f20;
}
.product__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
@media (min-width: 979px) and (min-width: 979px) {
    .no-touch .hotspot .product__prices {
        margin-bottom: 7rem;
    }
}
#backTop {
    background: #fff;
    border: 1px solid #eee;
    bottom: 120px;
    line-height: 37px;
    cursor: pointer;
    display: none;
    font-size: 14px;
    height: 40px;
    position: fixed;
    right: 10px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    z-index: 999;
    font-family: fontawesome;
    border-radius: 50%;
}
@media (max-width: 756px) {
    #backTop {
        right: 15px !important;
    }
}
#backTop:hover {
    border: 1px solid #fccdc7;
    background: #fccdc7;
}
#backTop i {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}
.copyrights {
    text-align: center;
}
@media (min-width: 979px) {
    #footer_contact {
        width: 20%;
    }
}
.logo_iai {
    width: 100%;
}
@media (min-width: 979px) {
    .logo_iai {
        width: unset;
    }
}
@media (min-width: 979px) {
    .logo_iai a {
        min-width: 100px;
        display: block;
    }
}
.footer_menu {
    width: 100%;
}
@media (min-width: 979px) {
    .footer_menu {
        width: 80%;
        padding-right: 2.5rem;
    }
}
.footer_menu__label {
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    border-top: 1px solid #464646;
    padding-right: 3rem;
}
@media (min-width: 979px) {
    .footer_menu__label {
        border: none;
    }
}
.footer_menu__label:not(:only-child) {
    cursor: pointer;
}
@media (min-width: 979px) {
    .footer_menu__label:not(:only-child) {
        cursor: initial;
    }
    .footer_menu__label:not(:only-child)[href] {
        cursor: pointer;
    }
}
.footer_menu__label:not(:only-child):before {
    display: flex;
}
@media (min-width: 979px) {
    .footer_menu__label:not(:only-child):before {
        display: none;
    }
}
.footer_menu__label:hover {
    text-decoration: none;
}
.footer_menu__label:before {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 0.75rem;
    font-weight: 400;
    display: none;
    align-content: center;
    justify-content: center;
    line-height: 24px;
    width: 24px;
    height: 24px;
    background: #464646;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.footer_menu__list {
    display: none;
    transition: height 0.5s ease;
    overflow: hidden;
}
@media (min-width: 979px) {
    .footer_menu__list {
        display: block;
        height: auto !important;
    }
}
.footer_menu__item:last-of-type {
    margin-bottom: 2.5rem !important;
}
.footer_menu__item a:hover {
    text-decoration: none;
}
@media (min-width: 979px) {
    #footer_socials {
        width: 20%;
    }
}
#footer_socials .footer_menu__label {
    border-top: 0;
    padding-right: 0;
    text-align: center;
}
@media (min-width: 979px) {
    #footer_socials .footer_menu__label {
        text-align: left;
    }
}
#footer_socials .footer_menu__label:before {
    display: none;
}
#footer_socials .footer_menu__item:last-of-type {
    margin-right: 0 !important;
    margin-bottom: 2rem !important;
}
#footer_socials .footer_menu__item a {
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #000;
}
#footer_socials .footer_menu__item a:hover {
    background: #fccdc7;
    color: #1c1f20;
}
#logo {
    flex: 1;
    min-width: 10px;
    height: 50px;
}
@media (min-width: 979px) {
    #logo {
        height: 90px;
    }
}
#logo img {
    max-height: 40px;
    max-width: 140px;
    width: 100%;
}
@media (min-width: 979px) {
    #logo img {
        max-height: 80px;
        max-width: unset;
        height: auto;
    }
}
#login_menu_block a {
    color: #1c1f20;
    display: block;
    font-size: 1.8rem;
    padding: 1rem 0;
    font-weight: 400;
}
#login_menu_block a i {
    display: none;
}
.UVP {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width: 979px) {
    .UVP {
        padding: 1rem 0;
    }
}
.UVP__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 50%;
    margin-bottom: 4rem;
}
.UVP__wrapper:last-of-type {
    margin-bottom: 0;
}
@media (min-width: 757px) {
    .UVP__wrapper {
        flex: 0 0 190px;
        padding: 0 1.2rem;
        margin-bottom: 0;
    }
}
.UVP--icon {
    margin-bottom: 1rem;
    display: block;
    width: 100%;
    text-align: center;
}
.UVP--text {
    line-height: 24px;
    font-size: 1.2rem;
    color: #1c1f20;
    text-transform: uppercase;
    font-weight: 700;
}
.UVP--text span {
    display: block;
    text-align: center;
}
.topBasket {
    width: 45px;
}
@media (min-width: 979px) {
    .topBasket {
        width: auto;
    }
}
.topBasket__sub {
    font-weight: 700;
    display: block;
    position: relative;
    font-size: 2.4em;
    height: 5rem;
    text-align: center;
    line-height: 3.7rem;
    width: 4.5rem;
    color: #1c1f20;
}
@media (min-width: 979px) {
    .topBasket__sub {
        width: auto;
        height: unset;
        font-size: 1.4rem;
        line-height: normal;
        display: flex;
        align-items: center;
        color: #1c1f20;
        border-radius: 5px;
        margin-left: 1rem;
    }
}
@media (min-width: 979px) and (min-width: 979px) {
    .topBasket__sub:hover {
        text-decoration: none;
    }
    .topBasket__sub:hover:before {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background: #1c1f20;
        position: absolute;
        bottom: -0.9rem;
        right: 0;
    }
}
.topBasket__sub:after {
    content: "\e8a2";
    font-family: FontAwesome;
    font-weight: 400;
    margin: 0;
    color: inherit;
    font-size: 2.1rem;
    color: #1c1f20;
    position: relative;
    top: 1px;
    left: -2px;
}
@media (min-width: 979px) {
    .topBasket__sub:after {
        order: 1;
        margin-right: 2.3rem;
        top: -2px;
        left: auto;
    }
}
.topBasket__sub strong {
    display: none;
}
@media (min-width: 979px) {
    .topBasket__sub strong {
        display: initial;
        line-height: 1.2;
        min-width: unset;
        order: 2;
        white-space: nowrap;
        margin-right: 1rem;
        color: #1c1f20;
    }
}
.topBasket .badge {
    height: unset;
    min-width: unset;
    padding: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c1f20;
    line-height: normal;
}
@media (min-width: 979px) {
    .topBasket .badge {
        order: 0;
        margin-right: 0.75rem;
    }
}
.topBasket .badge:empty {
    display: none;
}

.menu_links__link {
    position: relative;
    min-width: 25px;
    height: 25px;
    line-height: 17px;
    padding: 0.5rem;
    margin: 0 0.7rem;
    color: #000;
    display: flex;
}
@media (min-width: 757px) {
    .menu_links__link {
        margin: 0 0.9rem;
    }
}
@media (min-width: 979px) {
    .menu_links__link {
        line-height: initial;
    }
}
.menu_links__link:hover {
    color: #1c1f20;
    text-decoration: none;
}
.menu_links__link:hover:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #1c1f20;
    position: absolute;
    bottom: -0.8rem;
    right: 0;
}
.menu_links__link i {
    font-size: 1.8rem;
}
.menu_links__link--account i {
    font-size: 2.1rem;
    position: relative;
    top: -2px;
}
.menu_links__link--wishlist span {
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 0.75rem;
}
.menu_links__link--wishlist span:empty {
    display: none;
}
.menu_links__link--wishlist i {
    position: relative;
    top: -1px;
    left: -2px;
}
@media (min-width: 979px) {
    .menu_links__link--wishlist i {
        left: auto;
    }
}
#menu_links_wishlist {
    width: 44px;
}
@media (min-width: 979px) {
    #menu_links_wishlist {
        width: unset;
    }
}
.nav-producers__label {
    font-size: 1.6rem;
    color: grey;
}
.nav-producers > * {
    padding: 0 1.5rem;
}
.nav-producers__selected {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 5%;
}
.nav-producers__selected ul {
    display: flex;
    flex-wrap: wrap;
}
.nav-producers__selected ul li {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding: 1.5rem;
}
.nav-producers__groups {
    flex: 0 0 35%;
    max-width: 35%;
    padding-right: 5%;
}
.nav-producers__groups-sub {
    max-height: 360px;
    max-height: 300px;
    overflow: auto;
    scrollbar-color: #1c1f20 #e5e5e5;
    scrollbar-width: thin;
}
.nav-producers__groups-sub::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}
.nav-producers__groups-sub::-webkit-scrollbar {
    width: 6px;
    background-color: #e5e5e5;
    height: 6px;
}
.nav-producers__groups-sub::-webkit-scrollbar-thumb {
    background-color: #1c1f20;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}
.nav-producers__group-name {
    font-size: 1.4rem;
    font-weight: 700;
}
.nav-producers__link {
    font-size: 1.3rem;
    text-transform: uppercase;
}
.nav-producers__letters {
    flex: 0 0 25%;
    max-width: 25%;
}
.nav-producers .nav-letters__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.nav-producers .nav-letters__item {
    flex: 0 0 16.665%;
    max-width: 16.665%;
    text-align: center;
}
.nav-producers .nav-letters__link {
    display: block;
}
.nav-producers .nav-letters__link:hover {
    font-weight: 700;
}
.nav-producers .nav-letters__button {
    padding-left: 0;
    font-size: 1.6rem;
    text-transform: initial;
}
.nav-producers .nav-letters__button:hover {
    text-decoration: underline;
}
.nav-producers .nav-letters__button i {
    margin-left: 0.5rem;
    text-decoration: none;
}
#menu_search {
    width: auto;
}
@media (min-width: 979px) {
    #menu_search {
        width: 45px;
        height: 45px;
        margin-right: 20px;
    }
}
#menu_search .menu_search__mobile,
#menu_search .menu_search__submit {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1f20;
    text-decoration: none;
}
@media (min-width: 979px) {
    #menu_search .menu_search__mobile,
    #menu_search .menu_search__submit {
        width: 45px;
        height: 45px;
    }
}
#menu_search .menu_search__mobile:hover,
#menu_search .menu_search__submit:hover {
    color: #1c1f20;
}
#menu_search .menu_search__mobile:before,
#menu_search .menu_search__submit:before {
    content: "\E8BF";
    font-family: FontAwesome;
}
#menu_search .menu_search__mobile {
    width: 45px;
    font-size: 2rem;
    opacity: 1;
    transition: 0.3s opacity;
    color: #1c1f20;
}
@media (min-width: 979px) {
    #menu_search .menu_search__mobile {
        display: none;
    }
}
#menu_search .menu_search__mobile:hover {
    color: #1c1f20;
}
#menu_search .menu_search__mobile:before {
    position: relative;
    left: 2px;
}
#menu_search .menu_search__submit {
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 2rem;
}
@media (min-width: 979px) {
    #menu_search .menu_search__submit {
        position: relative;
        font-size: 1.95rem;
        top: 0;
        left: auto;
        right: 0;
    }
}
#menu_search .menu_search__clear {
    display: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1f20;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 2.6rem;
}
@media (min-width: 979px) {
    #menu_search .menu_search__clear {
        display: none;
    }
}
#menu_search .menu_search__block {
    display: none;
    background: #fff;
    color: #1c1f20;
}
@media (min-width: 979px) {
    #menu_search .menu_search__block {
        display: block;
        border-radius: 5px;
    }
}
@media (min-width: 979px) {
    #menu_search .menu_search__item.--input {
        position: relative;
    }
}
#menu_search .menu_search__input {
    font-size: 1.4rem;
    border: none;
    height: 35px;
    box-shadow: none;
    background: #fff;
    color: #1c1f20;
    width: 100%;
    padding-right: 5rem;
    padding-left: 5rem;
}
@media (min-width: 979px) {
    #menu_search .menu_search__input {
        display: block;
        position: absolute;
        top: 2px;
        right: -10px;
        width: 400px;
        height: 40px;
        border: 1px solid #000;
        border-radius: 20px;
        font-size: 1.2rem;
        padding-left: 1.5rem;
        padding-right: 6rem;
    }
}
#menu_search .search_result {
    display: none;
}
span.menu_settings_language {
    text-transform: uppercase;
    margin-right: 3px;
    display: none;
}
span.menu_settings_currency {
    margin-left: 3px;
}
#menu_settings {
    margin: 0 0 150px;
    border-left: none;
    border-right: none;
    border-top: none;
}
@media (min-width: 979px) {
    #menu_settings {
        position: relative;
        top: 0;
        margin: 0 1rem;
        font-size: 1.4rem;
        z-index: 1000;
    }
}
#menu_settings form {
    width: 100vw;
    display: block;
    position: fixed;
    border: none;
    overflow: auto;
    top: 0;
    bottom: 0;
    left: 100%;
    background: #fff;
    transition: left 0.3s;
}
@media (min-width: 979px) {
    #menu_settings form {
        position: absolute;
        top: 100%;
        width: 250px;
        left: auto;
        right: 0;
        bottom: initial;
        display: none;
        background: 0 0;
    }
}
#menu_settings form > ul {
    list-style: none;
    border: none;
    background: #fff;
}
@media (min-width: 979px) {
    #menu_settings form > ul {
        background: #f5f5f5;
        color: #000;
        border: 1px solid #ebebeb;
        padding: 20px 0;
        border-radius: 5px;
    }
}
@media (min-width: 979px) {
    #menu_settings form > ul > li {
        padding: 0 20px;
    }
}
#menu_settings form > ul > li:nth-last-child(2) {
    margin-bottom: 60px;
}
@media (min-width: 979px) {
    #menu_settings form > ul > li:nth-last-child(2) {
        margin-bottom: 0;
    }
}
#menu_settings form > ul > li.buttons {
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 100%;
    transition: left 0.3s;
}
@media (min-width: 979px) {
    #menu_settings form > ul > li.buttons {
        width: auto;
        position: static;
        padding-top: 10px;
    }
}
#menu_settings form > ul > li.buttons button {
    width: 100%;
}
@media (max-width: 978px) {
    #menu_settings form > ul > li.buttons button {
        border-radius: 0;
    }
}
@media (min-width: 979px) {
    #menu_settings form > ul > li.buttons button {
        font-size: 1.4rem;
        padding: 1rem 2rem;
        font-weight: 400;
        padding: 0.95rem 1rem;
    }
}
#menu_settings form select {
    border: 1px solid transparent;
    box-shadow: none;
    border-bottom: 1px solid #ebebeb;
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 20px;
    border-radius: 0 !important;
}
@media (min-width: 979px) {
    #menu_settings form select {
        -webkit-appearance: menulist;
        -moz-appearance: menulist;
        appearance: menulist;
        height: 40px;
        border: 1px solid #ebebeb;
        box-shadow: none;
    }
}
#menu_settings .form-group {
    margin: 0;
}
@media (min-width: 979px) {
    #menu_settings .form-group {
        margin-bottom: 10px;
    }
}
#menu_settings .form-group > label {
    display: block;
    line-height: 60px;
    position: relative;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
@media (min-width: 979px) {
    #menu_settings .form-group > label {
        font-size: 1em;
        line-height: inherit;
        border: none;
        text-align: left;
        display: inline-block;
        font-weight: 400;
    }
}
#menu_settings li:first-child .form-group:first-child > label:after {
    content: "\f104";
    font-family: FontAwesome;
    position: absolute;
    left: 20px;
    font-size: 22px;
    font-weight: 400;
}
@media (min-width: 979px) {
    #menu_settings li:first-child .form-group:first-child > label:after {
        display: none;
    }
}
#menu_settings .open_trigger {
    white-space: nowrap;
    cursor: pointer;
    text-align: right;
    display: block;
    padding: 0;
    width: 100%;
    text-transform: uppercase;
}
@media (min-width: 979px) {
    #menu_settings .open_trigger {
        width: auto;
        height: 25px;
    }
}
#menu_settings .menu_settings_wrapper {
    padding: 17px 20px;
    text-align: left;
    align-items: center;
    position: relative;
    display: flex;
}
@media (min-width: 979px) {
    #menu_settings .menu_settings_wrapper {
        border-bottom: 1px solid #ebebeb;
    }
}
#menu_settings .menu_settings_wrapper:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 20px;
    font-size: 22px;
}
#menu_settings .menu_settings_inline:first-child {
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #ebebeb;
}
#menu_settings .menu_settings_header {
    font-size: 12px;
    opacity: 0.75;
}
#menu_settings .select-after {
    position: relative;
}
#menu_settings .select-after:before {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 24px;
    pointer-events: none;
}
@media (min-width: 979px) {
    #menu_settings .select-after:before {
        display: none;
    }
}
.flag {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
}
.flag_eng {
    background: url(/data/designs/smarty/10_151/gfx/eng/eng.png) no-repeat scroll center;
    background-size: cover;
}
.flag_txt {
    font-size: 1.1em;
    font-weight: 700;
    vertical-align: middle;
}
.newsletter {
    position: relative;
    padding: 2.4rem 0;
    color: #1c1f20;
}
.newsletter:before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    margin-left: -50vw;
    left: 50%;
    top: 0;
    background: #e0cfc1;
    z-index: -1;
}
.newsletter a {
    color: #000;
}
.newsletter a:hover {
    color: #1c1f20;
}
@media (min-width: 979px) {
    .newsletter {
        width: 100%;
        padding: 4rem 0;
        margin-bottom: 7rem !important;
    }
}
.newsletter .headline {
    position: relative;
    z-index: 1;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0;
    margin-bottom: 1.6rem !important;
}
@media (min-width: 979px) {
    .newsletter .headline {
        font-size: 2.1rem;
    }
}
@media (min-width: 979px) {
    .newsletter__inputs {
        min-width: 41rem;
    }
}
.newsletter__form {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 295px;
}
.newsletter .f-group {
    position: relative;
    width: 100%;
    margin: 0;
}
.newsletter .f-group .f-control {
    height: 44px;
    padding: 0.6rem 8rem 0.6rem 2rem;
    border-radius: 30px;
    border: none;
}
.newsletter .f-group .f-control:focus {
    border: 1px solid #000;
}
@media (min-width: 979px) {
    .newsletter .f-group .f-control {
        padding-right: 5rem;
    }
}
.newsletter .f-group .f-control:focus + .f-label {
    transform: scale(0.75) translateY(-31px);
    background-color: #e0cfc1;
    font-size: 12px;
}
@media (min-width: 979px) {
    .newsletter .f-group .f-control:focus + .f-label {
        font-size: 10px;
    }
}
.newsletter .f-group .f-control:focus + .f-label:before {
    content: "";
    width: 100%;
    background-color: #fff;
    display: block;
    position: absolute;
    height: 40%;
    border-top-left-radius: 0.4rem;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.newsletter .f-group .f-label {
    color: #898989;
    font-size: 1.2rem;
}
.newsletter .f-group .f-control-feedback {
    width: 30px;
    height: 48px;
    right: 50px;
}
@media (min-width: 979px) {
    .newsletter .f-group .f-control-feedback {
        right: 0;
        width: 50px;
    }
}
.newsletter__submit {
    position: absolute;
    top: 7px;
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    padding: 0;
    background: #1c1f20;
    border: 1px solid #1c1f20;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s background-color ease, 0.3s color ease;
}
.newsletter__submit:hover {
    background: 0 0;
    border-color: #000;
    color: #000;
}
@media (min-width: 979px) {
    .newsletter__submit {
        position: static;
        width: auto;
        height: auto;
        line-height: unset;
        border-radius: 30px;
        margin-left: 2rem;
        white-space: nowrap;
        padding: 1.4rem 0;
        min-width: 143px;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        background: 0 0;
        border: 1px solid #000;
        color: #000;
        top: 10px;
    }
    .newsletter__submit:hover {
        background: #000;
        color: #fff;
    }
}
.newsletter .custom_checkbox {
    padding-left: 3rem !important;
}
.newsletter .custom_checkmark {
    left: 1rem !important;
}
.newsletter .custom_checkmark:before {
    width: 16px !important;
    height: 16px !important;
    top: 5px !important;
}
.newsletter .custom_checkmark:after {
    left: 5px !important;
    top: 7px !important;
}
.newsletter__pp {
    font-size: 1.4rem;
    line-height: 20px;
    padding-top: 0.7rem;
}
.newsletter__pp a {
    text-decoration: underline;
}

.hotspot.skeleton .headline {
    min-height: 200px;
}
#main_banner1 {
    margin-left: -15px;
    margin-right: -15px;
}
@media (min-width: 979px) {
    #main_banner1 {
        margin-left: -40px;
        margin-right: -40px;
    }
}
@media (min-width: 1480px) {
    #main_banner1 {
        margin-left: -80px;
        margin-right: -80px;
    }
}
#main_banner1 img {
    display: block;
    max-width: 100%;
    margin: auto;
}
#main_banner1 .main_slider {
    margin-bottom: 0;
}
#main_banner1 .main_slider__item {
    text-align: center;
    height: inherit !important;
}
#main_banner1 .main_slider__item a {
    display: block;
    height: 100%;
}
#main_banner1 a {
    display: inline-block;
}
#main_banner1 .slick-dots {
    bottom: 40px;
}
#main_banner1 .slick-dots li {
    width: 11px;
    height: 11px;
    margin: 0 11px;
}
#main_banner1 .slick-dots li button {
    width: 11px;
    height: 11px;
}
#main_banner1 .slick-dots li button:before {
    width: 11px;
    height: 11px;
    opacity: 0.5;
}
#main_banner1 .slick-dots li.slick-active button:before {
    background: #fff;
    opacity: 1;
}
#main_banner1 .slider__arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: 0 0;
    color: #fff;
    border: 4px solid rgba(255, 255, 255, 0.3);
}
#main_banner1 .slider__arrow:hover {
    color: #1c1f20;
    border-color: #fccdc7;
    text-decoration: none;
}
#main_banner1 .slider__arrow.--prev {
    left: 2.5rem;
}
@media (min-width: 1300px) {
    #main_banner1 .slider__arrow.--prev {
        left: calc(50% - 1440px / 2 + 60px);
        transform: translateX(50%) translateY(-50%);
    }
}
#main_banner1 .slider__arrow.--next {
    right: 2.5rem;
}
@media (min-width: 1300px) {
    #main_banner1 .slider__arrow.--next {
        right: calc(50% - 1440px / 2 + 100px);
        transform: translateX(50%) translateY(-50%);
    }
}
#main_banner1 a.loading {
    display: block;
    position: relative;
}
#main_banner1 a.loading img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 979px) {
    #footer_menu {
        width: 60% !important;
    }
    #footer_contact {
        width: 27%;
    }
    .col-12.col-md-3.mb-md-4.footer_menu__menu {
        flex: 0 0 33%;
        max-width: 33%;
    }
}

#menu_banners3 .slider__arrow.--next {
    right: 0;
}

#logo img {
    width: auto !important;
}

.btn.aside-toggler {
    left: 0px !important;
}

#menu_settings .menu_settings_wrapper {
    padding: 17px 0px !important;
    font-size: 10px;
}
#menu_settings .menu_settings_inline:first-child {
    padding-right: 15px !important;
    margin-right: 15px !important;
}
#menu_settings .menu_settings_wrapper:after {
    right: 0px !important;
}
#menu_settings .menu_settings_header {
    font-size: 10px !important;
}

#menu_banners3 .menu_button_wrapper a img {
    max-height: 5.5rem;
    width: auto;
}
@media (min-width: 767px) {
    #menu_banners3 .menu_button_wrapper a img {
        max-height: 8.5rem;
    }
}

#main_banner1 .main_slider__item > a.loading {
    padding-top: calc(1724 / 1124 * 100%);
}
@media (min-width: 757px) {
    #main_banner1 .main_slider__item > a.loading {
        padding-top: calc(984 / 2880 * 100%);
    }
}
@media (min-width: 979px) {
    #main_banner1 .main_slider__item > a.loading {
        padding-top: calc(984 / 2880 * 100%);
    }
}

.cms-payment-methods-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.payment-methods-footer-text {
    margin-bottom: 14px;
}
.payment-methods-footer-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.payment-methods-footer-images img {
    max-height: 30px;
    width: auto;
    padding: 4px;
    border-radius: 6px;
    background-color: #fff;
}
@media (max-width: 768px) {
    .cms-payment-methods-footer {
        align-items: center;
        margin-bottom: 22px;
    }
    .payment-methods-footer-images {
        s: center;
    }
}

.flag_eng {
    background: url(https://cosibella.pl/data/include/cms/CMS/cosibella-hurt/UE_flag.svg?v=1706534700651) no-repeat scroll 50% !important;
    background-size: cover !important;
}

.hairtry--photo {
    max-height: 27rem;
    max-width: 27rem;
    margin: 2.4rem 2.4rem 0 2.4rem;
    border-radius: 0.5rem;
}
.lp-text-19 {
    font-size: 1.9rem !important;
    line-height: 130% !important;
}
.lp-text-14 {
    font-size: 1.4rem !important;
    line-height: 140% !important;
}
.gp-16 {
    gap: 1.6rem !important;
}
.gp-40 {
    gap: 4rem !important;
}
.special__offer__container {
    margin: 5rem 0;
}
.special__offer__slider__item {
    display: flex !important;
    background-color: #f9f9f9;
    box-shadow: 0 9px 21px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.special__offer__slider__container {
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.box__elememnt__description {
    max-width: 25rem;
}
.special__offer__button {
    background-color: transparent;
    text-align: center;
    color: #1f1c20;
    border: 1px solid #1f1c20;
    font-size: 1.4rem !important;
    font-weight: 700;
    padding: 1rem;
    border-radius: 2.4rem;
    width: 100%;
    max-width: 14rem;
    margin: 0 0 1.6rem 0;
}
.special__offer__button:hover {
    background-color: #1f1c20;
    color: #f9f9f9;
    text-decoration: none;
    cursor: pointer;
}

.our-brands {
    display: flex;
    flex-direction: column-reverse;
    margin: 0rem -1.5rem;
}
.our-brands__block {
    flex: 1 1 100%;
    padding: 4.4rem 5.6rem 4.4rem 3.2rem;
}
.our-brands__block--hairtry {
    background: #f2e9d2;
    color: #461a0f;
    position: relative;
}
.our-brands__block--skintra {
    background: #2c2c2c;
    color: #fff;
    position: relative;
}
.our-brands__logo {
    padding-bottom: 1.6rem;
}
.our-brands__logo img {
    height: 4rem;
    width: auto;
}
.our-brands__discriptions {
    padding-bottom: 3.2rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
}
.our-brands__button {
    width: 15rem;
    padding: 1.6rem 2.2rem !important;
    border: 0.1rem solid #000000 !important;
}
.our-brands__button:hover {
    border: 0.1rem solid #fff !important;
    background: transparent !important;
}
.our-brands__block--hairtry .our-brands__button:hover {
    border: 0.1rem solid #000000 !important;
    color: #000 !important;
    background: transparent !important;
}
.our-brands__discriptions--desktop {
    display: none;
}
.our-brands__discriptions--mobile {
    display: block;
}
@media (min-width: 768px) {
    .our-brands__discriptions--mobile {
        display: none;
    }
    .our-brands__discriptions--desktop {
        display: block;
    }
    .our-brands {
        flex-direction: row;
        margin: 0rem;
    }
    .our-brands__block {
        flex: 1 1 50%;
    }
    .our-brands__block--hairtry {
        padding: 8rem 8rem 4.6rem 4rem;
    }
    .our-brands__block--skintra {
        padding: 8rem 4rem 4.6rem 8rem;
    }
    .our-brands__logo {
        padding-bottom: 5rem;
    }
    .our-brands__logo img {
        height: 7rem;
    }
    .our-brands__discriptions {
        padding-bottom: 4.8rem;
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .our-brands__block.our-brands__block--skintra:before {
        content: "";
        background: #2c2c2c;
        position: absolute;
        width: 200%;
        height: 100%;
        top: 0;
        z-index: -1;
    }
    .our-brands__block.our-brands__block--hairtry:before {
        content: "";
        background: #f2e9d2;
        position: absolute;
        width: 200%;
        height: 100%;
        top: 0;
        z-index: -1;
        left: -100%;
    }
}

.why-us {
    display: flex;
    width: 100%;
    position: relative;
    flex-direction: column;
}
.why-us__block {
    padding: 4rem 4rem 0 4rem;
    position: relative;
}
.why-us__block.--whyus:before {
    content: "";
    background-color: #bb9d86;
    position: absolute;
    width: 100vw;
    height: 100%;
    position: absolute;
    margin-left: -50vw;
    left: 50%;
    top: 0;
    z-index: -1;
}
.why-us__block.--wholesaler:before {
    content: "";
    background: #ebebeb;
    position: absolute;
    width: 100vw;
    height: 100%;
    position: absolute;
    margin-left: -50vw;
    left: 50%;
    top: 0;
    z-index: -1;
}
.why-us__block.--whyus::after {
    content: "";
    display: block;
    background: url(/data/include/cms/why-us-mobile.png) no-repeat bottom;
    position: absolute;
    width: 100%;
    background-size: cover;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.why-us__block.--whyus {
    min-height: 624px;
}
.why-us__block.--wholesaler {
    padding: 2.4rem 4rem 5rem 4rem;
}
.why-us__block.--wholesaler .why-us__subtitle {
    line-height: 4rem;
    padding-bottom: 2rem;
}
.why-us__subtitle {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 4rem;
    padding-bottom: 2rem;
}
.why-us__discription {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.6rem;
}
.why-us__button {
    margin-top: 3.5rem;
    width: 100%;
    text-transform: lowercase;
    font-weight: 700;
}
@media (min-width: 979px) {
    .why-us__block {
        flex: 1 1 50%;
        width: 50%;
        padding: 6rem 4rem 9rem 4rem;
        position: relative;
    }
    .why-us {
        display: flex;
        flex-direction: row;
        width: 120%;
        position: relative;
        min-height: 716px;
    }
    .why-us__block.--whyus {
        padding: 8rem 8rem 8rem 0;
    }
    .why-us__block.--wholesaler {
        padding: 8rem 0 8rem 8rem;
    }
    .why-us__block.--wholesaler .why-us__subtitle {
        font-size: 6.1rem;
        padding-bottom: 5.5rem;
        line-height: 6.5rem;
    }
    .why-us__block.--whyus::after {
        content: "";
        display: block;
        background: url(/data/include/cms/why-us.png) no-repeat right;
        position: absolute;
        background-size: cover;
        height: 100%;
        top: 0;
        z-index: -1;
    }
    .why-us__subtitle {
        font-size: 6.8rem;
        font-weight: 700;
        line-height: 6.8rem;
        padding-bottom: 5.5rem;
    }
    .why-us__discription {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2.6rem;
    }
    .why-us__button {
        margin-top: 8.5rem;
        width: 100%;
        text-transform: lowercase;
        font-weight: 700;
    }
    .why-us__block.--whyus:before {
        content: "";
        background-color: #bb9d86;
        position: absolute;
        width: 200%;
        height: 100%;
        top: 0;
        z-index: -1;
        left: -100%;
        margin-left: 0;
    }
    .why-us__block.--wholesaler:before {
        content: "";
        background: #ebebeb;
        position: absolute;
        width: 200%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        margin-left: 0;
    }
}

.UVP {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8rem 0rem;
    gap: 2.4rem;
}
.UVP__wrapper {
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 2.4rem;
    flex-direction: column;
    align-items: center;
    flex: 0 0 15.8rem;
    height: 15rem;
    justify-content: space-around;
}
.UVP--icon {
    display: block;
    width: 100%;
    text-align: center;
}
.UVP--text span {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.4rem;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .UVP {
        gap: 4rem;
    }
}

#usercom-widget * {
    box-sizing: border-box !important;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.site-main {
    padding: 20px;
}








/*# home css */

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 2880px;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.hero-track {
  display: flex;
  width: 100%;
  transition: transform 600ms cubic-bezier(.22,.9,.32,1);
  will-change: transform;
}

.hero-slider .slide {
  flex: 0 0 100%;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slider .slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

/* Desktop arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s, transform 0.18s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover { transform: translateY(-50%) scale(1.06); color:#1c1f20; border-color:#fccdc7; }

.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

/* Mobile dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-dots button.active { background: #000; transform: scale(1.15); }

/* Responsive visibility */
@media (max-width: 767px) {
  .slider-arrow { display: none; }
  .slider-dots { display: flex; }
}

@media (min-width: 768px) {
  .slider-arrow { display: flex; }
  .slider-dots { display: none; }
}


/* Icon fonts */
        [class^=icon-] {
            font-family: FontAwesome;
            font-weight: 400;
            font-style: normal;
            text-decoration: inherit;
            -webkit-font-smoothing: antialiased;
        }

        [class^=icon-]:before {
            text-decoration: inherit;
            display: inline-block;
            speak: none;
        }

        .icon-left:before {
            content: '‹';
            font-size: 18px;
            font-weight: bold;
        }

        .icon-right:before {
            content: '›';
            font-size: 18px;
            font-weight: bold;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .d-flex {
            display: flex !important;
        }

        .justify-content-center {
            justify-content: center !important;
        }

        .align-items-center {
            align-items: center !important;
        }

        /* Slider Container */
        #menu_banners3 {
            position: relative;
            margin: 0 auto;
            padding: 0 60px;
        }

        .menu_buttons_sub {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .slick-list {
            position: relative;
            display: block;
            overflow: hidden;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        .slick-track {
            position: relative;
            top: 0;
            left: 0;
            display: flex;
            margin: 0;
            transition: transform 0.3s ease;
            width: max-content;
        }

        .menu_button_wrapper {
            flex: 0 0 auto;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
        }

        /* Desktop: 4 slides visible */
        @media (min-width: 768px) {
            .menu_button_wrapper {
                width: calc(100% / 4);
            }
            
            .menu_button_wrapper a img {
                max-height: 8.5rem;
                width: auto;
                max-width: 100%;
                object-fit: contain;
            }
        }

        /* Mobile: 3 slides visible */
        @media (max-width: 767px) {
            .menu_button_wrapper {
                width: calc(100% / 3);
            }
            
            .menu_button_wrapper a img {
                max-height: 5.5rem;
                width: auto;
                max-width: 100%;
                object-fit: contain;
            }
            
            #menu_banners3 {
                padding: 0 50px;
            }
        }

        .menu_button_wrapper a {
            display: block;
            text-decoration: none;
            color: #000;
            transition: transform 0.2s ease;
        }

        .menu_button_wrapper a:hover {
            transform: scale(1.05);
            text-decoration: none;
        }

        .menu_button_wrapper img {
            border: none;
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Arrow Styles */
        .slider__arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 39px;
            height: 39px;
            background: #fff;
            color: #000;
            border: 1px solid #eee;
            border-radius: 50%;
            z-index: 10;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .slider__arrow:hover {
            border: 1px solid #fccdc7;
            background: 0 0;
            transform: translateY(-50%) scale(1.1);
        }

        .slider__arrow.--prev {
            left: 1px;
        }

        .slider__arrow.--next {
            right: 1px;
        }

        .slider__arrow.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .slider__arrow.disabled:hover {
            transform: translateY(-50%);
            border: 1px solid #eee;
            background: #fff;
        }

        /* Demo brand logos placeholder */
        .demo-logo {
            width: 120px;
            height: 60px;
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: bold;
            color: #666;
            font-size: 12px;
            text-align: center;
        }



/* laterly added css */


section{display:block;}
strong{font-weight:700;}
img{border:0;}
[class^=icon-]{font-family:FontAwesome;font-weight:400;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;}
[class^=icon-]:before{text-decoration:inherit;display:inline-block;speak:none;src:url(https://cosibella-wholesale.com/data/designs/smarty/10_157/gfx/eng/config.json);}
.icon-heart-1:before{content:'\e8a3';}
.icon-left:before{content:'\e8a6';}
.icon-right:before{content:'\e8a7';}
*,::after,::before{box-sizing:inherit;}
h2{font-size:3.8rem;font-weight:700;color:#1c1f20;}
h3{font-size:3.2em;font-weight:700;color:#1c1f20;}
a{outline:0;text-decoration:none;color:#000;transition:background-color .2s,color .2s,border .2s;}
a:hover{outline:0;text-decoration:underline;color:#1c1f20;}
a:active,a:focus{outline:0;}
img{border:none;max-width:100%;height:auto;}
*{margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.col-12,.col-sm-3{position:relative;width:100%;padding-right:15px;padding-left:15px;}
.col-12{flex:0 0 100%;max-width:100%;}
@media (min-width:757px){
.col-sm-3{flex:0 0 25%;max-width:25%;}
}
.d-none{display:none!important;}
.d-flex{display:flex!important;}
.flex-wrap{flex-wrap:wrap!important;}
.justify-content-center{justify-content:center!important;}
.align-items-center{align-items:center!important;}
.py-3{padding-top:1.5rem!important;}
.py-3{padding-bottom:1.5rem!important;}
.slick-slider{display:block!important;position:relative;}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0;}
.slick-list:focus{outline:0;}
.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto;}
.slick-track:after{clear:both;}
.slick-slide{display:none;float:left;height:100%;min-height:1px;}
.slick-slide img{display:inline-block;outline:0;vertical-align:top;}
.slick-initialized .slick-slide{display:block;z-index:50!important;}
.slick-initialized .slick-slide.slick-active{z-index:51!important;}
.slider__arrow{display:flex;align-items:center;justify-content:center;width:39px;height:39px;background:#fff;color:#000;border:1px solid #eee;border-radius:50%;z-index:1;position:absolute;top:50%;transform:translateY(-50%);}
.slider__arrow:hover{border:1px solid #fccdc7;text-decoration:none;}
.slider__arrow.--prev{left:1rem;}
.slider__arrow.--next{right:1rem;}
.btn{background:0 0;padding:0;border:1px solid transparent;font-family:Montserrat,Arial,sans-serif;display:inline-block;text-decoration:none;color:#000;width:100%;text-align:center;text-transform:uppercase;cursor:pointer;font-size:1.4rem;padding:1rem 2rem;font-weight:400;transition:background-color .2s,color .2s,border-color .2s;border-radius:25px;}
@media (min-width:757px){
.btn{width:auto;}
}
.btn:hover{color:#1c1f20;text-decoration:none;}
.btn.--medium{font-size:1.4rem;font-weight:600;padding:1rem 2.5rem;border-radius:25px;}
.btn.--medium.--solid{background:#fff;border:1px solid #000;color:#000;}
.btn.--medium.--solid:hover{background:#000;border:1px solid #000;color:#fff;}
.btn.--solid{background:#fff;border:1px solid #fff;color:#000;}
.btn.--solid:hover{background:#000;border:1px solid #000;color:#fff;}
img.b-lazy{min-width:20px;min-height:20px;}
img.b-loaded{opacity:1;-webkit-transition:opacity .5s ease-in-out .1s;-moz-transition:opacity .5s ease-in-out .1s;-o-transitaion:opacity .5s ease-in-out .1s;transition:opacity .5s ease-in-out .1s;min-height:0;min-width:0;}
.headline{font-family:Montserrat,Arial,sans-serif;color:#1c1f20;display:flex;align-items:center;justify-content:center;font-size:2.4rem;font-weight:500;padding:10px 0;text-decoration:none;text-align:left;line-height:1.3;margin-bottom:1rem;text-align:center;}
@media (min-width:979px){
.headline{font-size:3.2rem;font-weight:700;}
}
@media (min-width:1200px){
.headline{font-size:3.8rem;margin-bottom:2rem;}
}
.hotspot{max-width:calc(100% + 30px);margin-left:-15px;margin-right:-15px;overflow:hidden;}
@media (min-width:757px){
.hotspot{max-width:unset;margin-left:0;margin-right:0;overflow:initial;}
}
.hotspot.--slider .slick-list{order:1;width:100%;background:#fff;overflow:initial;}
@media (min-width:757px){
.hotspot.--slider .slick-list{overflow:hidden;}
}
.hotspot.--slider .slick-track{display:flex;overflow:hidden;}
@media (min-width:757px){
.hotspot.--slider .slick-track{display:block;}
}
.hotspot.--slider .slick-initialized .product{padding:0;margin:0;outline:0;max-width:none;height:inherit;border:none;flex:none;}
@media (min-width:757px){
.hotspot.--slider .slick-initialized .product{margin:0 15px;}
}
.hotspot.--slider .slick-initialized .product>*{margin-left:15px;margin-right:15px;}
@media (min-width:757px){
.hotspot.--slider .slick-initialized .product>*{margin-left:0;margin-right:0;}
}
.hotspot.--slider .headline{margin-left:15px;margin-right:15px;}
@media (min-width:757px){
.hotspot.--slider .headline{margin-left:0;margin-right:0;}
}
.hotspot__arrow{position:absolute;top:25rem;transform:unset;}
.hotspot__arrow.--prev{left:-2.5rem;}
.hotspot__arrow.--next{right:-2.5rem;}
.hotspot .product__name{text-align:center;}
.hotspot .product__sign-in{position:absolute;bottom:2rem;text-align:center;width:100%;text-transform:uppercase;font-weight:600;}
@media (min-width:757px){
.hotspot .product__sign-in{bottom:5rem;}
}
.hotspot .product__sign-in::after{content:url(https://cosibella.pl/data/include/cms/icons/padlock_icon.svg);padding-left:.7rem;}
.label_icons>*{display:inline-block;font-size:1rem;font-weight:700;line-height:24px;margin-right:8px;margin-top:5px;padding:0 10px;text-transform:uppercase;white-space:nowrap;}
.label.--bestseller{color:#000;background:#fbc97c;}
.label.--ourChoice{display:none;color:#000;background:#fad2d1;}
.product{background:#fff;color:#1c1f20;}
.product:first-child{margin-left:auto;margin-right:auto;}
@media (min-width:757px){
.product:first-child{margin-left:0;margin-right:0;}
}
.product__icon{height:30rem;margin-bottom:2rem;position:relative;}
.product__icon img{max-height:28rem;}
.product .label_icons{position:absolute;left:10px;bottom:0;}
.product__name{display:block;margin-bottom:2rem;font-weight:400;color:#1c1f20;font-size:1.5rem;line-height:22px;overflow:hidden;text-overflow:ellipsis;}
.product__name:hover{color:#1c1f20;}
.wishlist{display:none;align-items:center;justify-content:center;position:absolute;right:55px;top:15px;width:30px;height:30px;background:#f2f2f2;border-radius:50%;}
@media (min-width:979px){
.wishlist{right:13px;}
}
.wishlist__link{display:flex;align-items:center;justify-content:center;width:100%;height:100%;text-decoration:none;font-size:1.5rem;color:#000;}
.wishlist__link:hover{opacity:.5;text-decoration:none;}
.hotspot.--extended .slick-list{background:0 0;}
.hotspot.--extended .slick-initialized .product{margin:0 10px;}
.hotspot.--extended .slider__arrow{top:15.4rem;}
@media (min-width:979px){
.hotspot.--extended .slider__arrow{top:18rem;}
}
.hotspot.--extended .slider__arrow.--prev{left:-1rem;}
.hotspot.--extended .slider__arrow.--next{right:-1rem;}
.hotspot.--extended .headline{flex-direction:column;align-items:flex-start;margin:0 0 2rem;padding:0;}
@media (min-width:979px){
.hotspot.--extended .headline{margin:0;}
}
.hotspot.--extended .headline__name{font-size:2.4rem;}
@media (min-width:979px){
.hotspot.--extended .headline__name{font-size:3.8rem;}
}
.hotspot.--extended .headline__btn.btn{width:auto;font-size:1.4rem;padding:1rem 4rem;background:0 0;}
@media (min-width:979px){
.hotspot.--extended .headline__btn.btn{padding:1.4rem 4rem 1.3rem;}
}
.hotspot.--extended .headline__btn.btn:hover{background:#000;}
.hotspot.--extended .headline__btn.btn:after{font-family:FontAwesome;content:'\e8a7';margin-left:.5rem;font-size:1.3rem;}
.hotspot.--extended .headline__background{display:block;background:#f5f5f5;left:0;width:100vw;height:356px;position:absolute;margin-left:-50vw;left:50%;top:0;z-index:-1;}
.hotspot__heading{display:flex;flex-direction:column;align-items:flex-start;position:relative;padding:3rem 2rem;}
@media (min-width:979px){
.hotspot__heading{flex-direction:row;justify-content:space-between;align-items:flex-end;}
}







/* Laterly added css for last home banners */
.container74 {
  display: flex;
  min-height: 100vh;
  margin: 0 auto;
}

.why-us-section74 {
  flex: 1;
  background-image: url('/wp-content/uploads/why-us.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #2c2c2c;
}

.why-us-section74 .content74 {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 8px;
}

.image-container74 {
  display: none;
}

.wholesale-section74 {
  flex: 1;
  background-color: #e8e8e8;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-section74 h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 30px;
  line-height: 1.2;
}

.wholesale-section74 h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 30px;
  line-height: 1.2;
}

.why-us-section74 p {
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.5;
}

.wholesale-section74 p {
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 40px;
  line-height: 1.6;
}

.image-container74 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.image-container74 img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cta-button74 {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-transform: lowercase;
}

.cta-button74:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.cta-button74:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .why-us-section74 {
    min-height: 80vh;
  }

  .special__offer__slider__container {
    flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  .container74 {
    flex-direction: column;
  }

  .why-us-section74,
  .wholesale-section74 {
    padding: 40px 20px;
  }

  .why-us-section74 h2,
  .wholesale-section74 h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .why-us-section74 p,
  .wholesale-section74 p {
    font-size: 13px;
  }

  .image-container74 {
    margin-top: 30px;
  }

  .cta-button74 {
    padding: 14px 32px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .why-us-section74,
  .wholesale-section74 {
    padding: 30px 15px;
  }

  .why-us-section74 h2,
  .wholesale-section74 h2 {
    font-size: 28px;
  }

  .why-us-section74 p,
  .wholesale-section74 p {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .why-us-section74,
  .wholesale-section74 {
    padding: 80px 60px;
  }
}

@media (min-width: 1440px) {
  .why-us-section74,
  .wholesale-section74 {
    padding: 100px 80px;
  }
}


/* Header search form CSS */

/* Search Results Styling for Header38 */

/* Desktop Search Results */
.desktop-search-results38 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

/* Mobile Search Results */
.mobile-search-results38 {
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

/* Search Result Items */
.search-result-item38 {
    display: none !important;	
}

.search-result-item38:last-child {
    border-bottom: none;
}

.search-result-item38:hover {
    background-color: #f8f9fa;
}

.search-result-link38 {
    display: none !important;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.search-result-link38:hover {
    text-decoration: none;
    color: #333;
}

/* Search Result Image */
.search-result-image38 {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-result-image38 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Search Result Content */
.search-result-content38 {
    flex: 1;
    min-width: 0;
}

.search-result-title38 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-price38 {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.search-result-price38 .woocommerce-Price-amount {
    color: #2c5aa0;
    font-weight: 600;
}

/* Search States */
.search-loading38 {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
	display: none !important;
}

.no-results38 {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
	display: none !important;
}

.search-error38 {
    padding: 15px;
    text-align: center;
    color: #d32f2f;
    font-size: 14px;
	display: none !important;
}

/* Cart Count Badge */
.cart-count38 {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* Show search results when they have content */
.desktop-search-results38:not(:empty),
.mobile-search-results38:not(:empty) {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-result-link38 {
        padding: 10px 12px;
    }
    
    .search-result-image38 {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .search-result-title38 {
        font-size: 13px;
    }
    
    .search-result-price38 {
        font-size: 12px;
    }
}

.mobile-search-panel38 {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-search-panel38.active38 {
    max-height: 500px; /* large enough */
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar styling for search results */
.desktop-search-results38::-webkit-scrollbar,
.mobile-search-results38::-webkit-scrollbar {
    width: 6px;
}

.desktop-search-results38::-webkit-scrollbar-track,
.mobile-search-results38::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.desktop-search-results38::-webkit-scrollbar-thumb,
.mobile-search-results38::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.desktop-search-results38::-webkit-scrollbar-thumb:hover,
.mobile-search-results38::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Korean Beauty Products Grid Layout CSS */

/* Reset and Base Styles */
#primary.content-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 100vh;
}

#main.site-main {
  width: 100%;
}

/* Grid Container for Products */
#main.site-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Individual Product Article Styles */
article.post {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border: 1px solid rgba(255, 182, 193, 0.15);
  height: fit-content;
}

article.post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b9d, #c44569, #f8b500);
  opacity: 0;
  transition: opacity 0.3s ease;
}

article.post:hover {
  transform: translateY(-8px) scale(1.02);
}

article.post:hover::before {
  opacity: 1;
}

/* Product Thumbnail Styling */
.post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(45deg, #ffeef4, #fff0f8);
}

.post-thumbnail a {
  display: block;
  height: 100%;
  position: relative;
}

.post-thumbnail img.post-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}

.post-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.1) 0%,
    rgba(196, 69, 105, 0.05) 50%,
    rgba(248, 181, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

article.post:hover .post-thumbnail img.post-thumb {
  transform: scale(1.1) rotate(1deg);
}

article.post:hover .post-thumbnail::after {
  opacity: 1;
}

/* Product Content Area */
.post-content {
  padding: 1.5rem;
  position: relative;
  background: #ffffff;
}

/* Product Title Styling */
.post-content h2.entry-title {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
  color: #2c3e50;
}

.post-content h2.entry-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-content h2.entry-title a:hover {
  color: black;
  text-decoration: none;
}

/* Meta Information */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.entry-meta span {
  font-size: 0.85rem;
  color: #7f8c8d;
  font-weight: 500;
}

.entry-meta .posted-on {
  position: relative;
  padding-left: 1.2rem;
}

.entry-meta .posted-on::before {
  content: '📅';
  position: absolute;
  left: 0;
  top: 0;
}

.entry-meta .comments {
  position: relative;
  padding-left: 1.2rem;
  color: #bdc3c7;
}

.entry-meta .comments::before {
  content: '💬';
  position: absolute;
  left: 0;
  top: 0;
}

/* Product Summary/Description */
.entry-summary {
  margin-top: 1rem;
}

.entry-summary p {
  margin: 0;
  font-size: 0.95rem;
  color: #5d6d7e;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
}

/* Pagination Styles */
.pagination {
  grid-column: 1 / -1;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid rgba(255, 182, 193, 0.2);
}

.navigation.pagination {
  text-align: center;
}

.navigation.pagination h2.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #ffffff;
  color: #5d6d7e;
  border: 2px solid rgba(255, 182, 193, 0.2);
}

.page-numbers:hover {
  background: black;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px black;
  border-color: transparent;
}

.page-numbers.current {
  background: black;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px black;
}

.page-numbers.dots {
  background: transparent;
  border: none;
  color: #bdc3c7;
  cursor: default;
}

.page-numbers.dots:hover {
  background: transparent;
  color: #bdc3c7;
  transform: none;
  box-shadow: none;
}

/* Tablet Styles (768px to 1024px) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  #primary.content-area {
    padding: 1.5rem;
  }
  
  #main.site-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .post-thumbnail {
    height: 250px;
  }
  
  .post-content h2.entry-title {
    font-size: 1.05rem;
  }
}

/* Mobile Styles (320px to 768px) */
@media screen and (max-width: 768px) {
  #primary.content-area {
    padding: 1rem 0.75rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
  }
  
  #main.site-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  article.post {
    border-radius: 16px;
  }
  
  .post-thumbnail {
    height: 200px;
  }
  
  .post-content {
    padding: 1rem;
  }
  
  .post-content h2.entry-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .post-content h2.entry-title a {
    -webkit-line-clamp: 3;
  }
  
  .entry-meta {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
  }
  
  .entry-meta span {
    font-size: 0.8rem;
  }
  
  .entry-summary p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* Pagination Mobile Adjustments */
  .pagination {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }
  
  .nav-links {
    gap: 0.25rem;
  }
  
  .page-numbers {
    min-width: 35px;
    height: 35px;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Extra Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  #primary.content-area {
    padding: 0.75rem 0.5rem;
  }
  
  #main.site-main {
    gap: 0.75rem;
  }
  
  .post-thumbnail {
    height: 180px;
  }
  
  .post-content {
    padding: 0.75rem;
  }
  
  .post-content h2.entry-title {
    font-size: 0.9rem;
  }
  
  .entry-summary p {
    font-size: 0.8rem;
  }
}

/* Loading Animation for Images */
.post-thumbnail img.post-thumb {
  animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Focus States for Accessibility */
.post-content h2.entry-title a:focus,
.page-numbers:focus {
  outline: 3px solid black;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  article.post {
    border: 2px solid #333;
  }
  
  .post-content h2.entry-title a {
    color: #000;
  }
  
  .entry-meta span {
    color: #333;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  article.post:hover {
    transform: none;
  }
  
  .post-thumbnail img.post-thumb:hover {
    transform: none;
  }
}