.snk-header {
    background: #ffffff;
    border-top: 4px solid #d7b2b4;
    position: relative;
    z-index: 20;
}

.snk-header__top {
    background: #f6f2f0;
}

.snk-header__top-row {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 86px;
}

.snk-header__search,
.snk-header__actions a,
.snk-header__menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: #111111;
    display: inline-flex;
    font-size: 16px;
    gap: 10px;
    padding: 0;
}

.snk-header__brand img {
    display: block;
    max-height: 48px;
    width: auto;
}

.snk-header__actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.snk-header__actions a {
    font-size: 17px;
    position: relative;
}

.snk-header__actions .snk-header__action {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e6dcda;
    border-radius: 8px;
    color: #111111;
    display: inline-flex;
    gap: 8px;
    height: 42px;
    justify-content: center;
    min-width: 42px;
    padding: 0 13px;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.snk-header__actions .snk-header__action:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    transform: translateY(-1px);
}

.snk-header__actions .snk-header__action-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.snk-header__actions a.is-loading,
.product__hover a.is-loading,
.featured__item__pic__hover a.is-loading,
.product__item__pic__hover a.is-loading,
.cart-btn.is-loading {
    opacity: .55;
    pointer-events: none;
}

.wishlist-btn.is-active,
.wishlist-btn.is-active span,
.wishlist-btn.is-active i {
    color: #c7929a;
}

.snk-header__count {
    background: #b39091;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #ffffff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    height: 19px;
    line-height: 19px;
    min-width: 19px;
    padding: 0 5px;
    position: absolute;
    right: -7px;
    text-align: center;
    top: -7px;
}

.snk-header__nav {
    background: #f6f2f0;
    border-top: 1px solid #ded8d5;
}

.snk-header__menu {
    padding: 24px 0 25px;
    text-align: center;
}

.snk-header__menu ul {
    margin: 0;
    padding: 0;
}

.snk-header__menu ul li {
    display: inline-block;
    list-style: none;
    margin-right: 38px;
}

.snk-header__menu ul li:last-child {
    margin-right: 0;
}

.snk-header__menu ul li a {
    color: #111111;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.snk-header__menu ul li.active a,
.snk-header__menu ul li a:hover {
    color: #b39091;
}

.snk-header__menu ul li.active a {
    border-bottom: 1px solid #b39091;
}

.snk-header__menu-toggle {
    display: none;
}

.snk-header-search-form {
    max-width: 680px;
    position: relative;
    width: min(680px, 92vw);
}

.snk-header-search-form__field {
    align-items: center;
    border-bottom: 2px solid #d7b2b4;
    display: flex;
    gap: 12px;
}

.snk-header-search-form__field input {
    border: 0;
    border-bottom: 0;
    color: #111111;
    flex: 1;
    font-size: 34px;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.snk-header-search-form__field button {
    align-items: center;
    background: #111111;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 54px;
}

.snk-header-search-results {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(17, 17, 17, .12);
    display: none;
    left: 0;
    margin-top: 18px;
    max-height: min(56vh, 520px);
    overflow-y: auto;
    position: absolute;
    right: 0;
    z-index: 100000;
}

.snk-header-search-results.is-visible {
    display: block;
}

.snk-header-search-result {
    align-items: center;
    border-bottom: 1px solid #f0e7e5;
    display: grid;
    gap: 14px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 12px 14px;
}

.snk-header-search-result:hover {
    background: #f7f4f2;
}

.snk-header-search-result img {
    background: #f7f4f2;
    border-radius: 8px;
    height: 58px;
    object-fit: cover;
    width: 58px;
}

.snk-header-search-result strong {
    color: #111111;
    display: block;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.snk-header-search-result small {
    color: #777777;
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

.snk-header-search-empty,
.snk-header-search-all {
    color: #111111;
    display: block;
    font-size: 14px;
    font-weight: 800;
    padding: 14px;
    text-align: center;
    width: 100%;
}

.snk-header-search-all {
    background: #f7f4f2;
    border: 0;
    cursor: pointer;
}

.snk-header-search-all:hover {
    background: #111111;
    color: #ffffff;
}

.snk-drawer-overlay {
    background: rgba(17, 17, 17, .42);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .25s ease;
    z-index: 1998;
}

.snk-side-drawer {
    background: #ffffff;
    box-shadow: -18px 0 45px rgba(17, 17, 17, .14);
    height: 100vh;
    max-width: 430px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform .28s ease;
    width: min(430px, 100vw);
    z-index: 1999;
}

.snk-drawer-open .snk-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

.snk-drawer-open .snk-side-drawer {
    transform: translateX(0);
}

.snk-side-drawer__content {
    height: 100%;
}

.snk-side-drawer .mini-cart,
.snk-side-drawer .mini-wishlist,
.snk-side-drawer .mini-cart-empty,
.snk-side-drawer .mini-wishlist-empty {
    box-shadow: none;
    height: 100%;
    position: static;
    width: 100%;
}

.snk-drawer-loading,
.snk-drawer-error {
    align-items: center;
    color: #666666;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 32px;
}

.snk-hero {
    height: min(660px, calc(100vh - 156px));
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.snk-hero__slide {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 1s ease;
    z-index: 1;
}

.snk-hero__slide::before {
    background: rgba(0, 0, 0, .46);
    content: "";
    inset: 0;
    position: absolute;
}

.snk-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
}

.snk-hero__content {
    color: #ffffff;
    margin-left: max(24px, calc((100vw - 1140px) / 2));
    max-width: 720px;
    position: relative;
    z-index: 3;
}

.snk-hero__content span {
    color: #d7b2b4;
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.snk-hero__content h1 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 22px;
}

.snk-hero__content p {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 34px;
}

.snk-hero__button {
    background: #000000;
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 12px;
    letter-spacing: 0;
    padding: 15px 34px;
    text-transform: uppercase;
}

.snk-hero__button:hover {
    background: #d7b2b4;
    color: #111111;
}

.snk-hero__dots {
    bottom: 28px;
    display: flex;
    gap: 12px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 4;
}

.snk-hero__dots button {
    background: #d7b2b4;
    border: 0;
    border-radius: 50%;
    height: 8px;
    opacity: .45;
    padding: 0;
    width: 8px;
}

.snk-hero__dots button.is-active {
    opacity: 1;
    outline: 2px solid #d7b2b4;
    outline-offset: 4px;
}

.snk-toast {
    background: #111111;
    border-radius: 8px;
    bottom: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    left: 50%;
    max-width: calc(100vw - 40px);
    opacity: 0;
    padding: 12px 18px;
    position: fixed;
    transform: translate(-50%, 12px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 9999;
}

.snk-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.snk-toast--error {
    background: #8f3f45;
}

.account-dashboard {
    background: linear-gradient(180deg, #fcfaf9 0%, #f7f2ef 100%);
}

.account-dashboard__hero {
    align-items: flex-end;
    background: #ffffff;
    border: 1px solid #eadedd;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .06);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 32px;
}

.account-dashboard__eyebrow {
    color: #b39091;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.account-dashboard__hero h2 {
    color: #111111;
    font-size: 32px;
    margin-bottom: 12px;
}

.account-dashboard__hero p {
    color: #666666;
    font-size: 15px;
    margin: 0;
    max-width: 620px;
}

.account-dashboard__hero-actions {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

.account-dashboard__ghost-btn,
.account-dashboard__logout-btn {
    background: transparent;
    border: 1px solid #d7c3c3;
    border-radius: 999px;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 24px;
    text-transform: uppercase;
    transition: all .2s ease;
}

.account-dashboard__ghost-btn:hover,
.account-dashboard__logout-btn:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.account-dashboard__summary-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 28px;
}

.account-dashboard__summary-card {
    background: #ffffff;
    border: 1px solid #eadedd;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, .05);
    padding: 24px;
}

.account-dashboard__summary-card span {
    color: #777777;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.account-dashboard__summary-card strong {
    color: #111111;
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
}

.account-dashboard__summary-card small {
    color: #8a8a8a;
    display: block;
    font-size: 13px;
    line-height: 1.6;
}

.account-dashboard__summary-card.is-pending {
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.account-dashboard__summary-card.is-shipping {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.account-dashboard__summary-card.is-delivered {
    background: linear-gradient(180deg, #f7fcf7 0%, #ffffff 100%);
}

.account-panel {
    background: #ffffff;
    border: 1px solid #eadedd;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .06);
    margin-bottom: 24px;
    padding: 28px;
}

.account-panel--compact {
    padding: 24px;
}

.account-panel--danger {
    background: linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
}

.account-panel__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.account-panel__head h4 {
    color: #111111;
    margin-bottom: 8px;
}

.account-panel__head p {
    color: #777777;
    font-size: 14px;
    margin: 0;
}

.account-dashboard__empty-state {
    border: 1px dashed #d9c8c7;
    border-radius: 18px;
    padding: 36px;
    text-align: center;
}

.account-dashboard__empty-state h5 {
    margin-bottom: 10px;
}

.account-dashboard__empty-state p {
    color: #777777;
    margin-bottom: 20px;
}

.account-order-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.account-order-card {
    background: #fcfaf9;
    border: 1px solid #efe3e1;
    border-radius: 18px;
    padding: 22px;
}

.account-order-card__top {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.account-order-card__top h5 {
    color: #111111;
    margin-bottom: 4px;
}

.account-order-card__top p {
    color: #7b7b7b;
    font-size: 13px;
    margin: 0;
}

.account-status-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.account-status-badge.is-pending {
    background: #fff0cb;
    color: #9a6a00;
}

.account-status-badge.is-shipping {
    background: #dceeff;
    color: #0d5cab;
}

.account-status-badge.is-delivered {
    background: #daf3de;
    color: #277941;
}

.account-status-badge.is-cancelled {
    background: #ffe0e0;
    color: #a73737;
}

.account-order-card__meta {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.account-order-card__meta span,
.account-order-card__address span,
.account-order-card__item span {
    color: #8a8a8a;
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.account-order-card__meta strong,
.account-order-card__item strong {
    color: #111111;
    font-size: 14px;
}

.account-order-card__items {
    border-top: 1px solid #ebdfdd;
    margin-top: 2px;
    padding-top: 16px;
}

.account-order-card__item {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 8px 0;
}

.account-order-card__item span {
    margin-bottom: 0;
    text-transform: none;
}

.account-order-card__more {
    color: #777777;
    font-size: 13px;
    padding-top: 8px;
}

.account-order-card__address {
    border-top: 1px solid #ebdfdd;
    margin-top: 16px;
    padding-top: 16px;
}

.account-order-card__address p {
    color: #555555;
    margin: 0;
}

.account-profile-list {
    margin: 0;
}

.account-profile-list div {
    border-bottom: 1px solid #efe3e1;
    padding: 14px 0;
}

.account-profile-list div:first-child {
    padding-top: 0;
}

.account-profile-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.account-profile-list dt {
    color: #888888;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.account-profile-list dd {
    color: #111111;
    font-size: 15px;
    margin: 0;
}

.account-form label {
    color: #111111;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.account-form input {
    border: 1px solid #e5d8d6;
    border-radius: 14px;
    color: #111111;
    display: block;
    font-size: 14px;
    height: 50px;
    margin-bottom: 16px;
    padding: 0 16px;
    width: 100%;
}

.account-form input:focus {
    border-color: #b39091;
}

.account-form__error {
    color: #bb3d4a;
    font-size: 13px;
    margin: -8px 0 12px;
}

.account-form__success {
    background: #eef8ef;
    border: 1px solid #cfe8d3;
    border-radius: 14px;
    color: #2e6b3a;
    font-size: 14px;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.snk-order-success-page {
    background: linear-gradient(180deg, #fcfaf9 0%, #f8f4f1 100%);
}

.snk-order-success__hero {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .06);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr);
    margin-bottom: 28px;
    overflow: hidden;
    padding: 30px;
}

.snk-order-success__hero-copy h2 {
    color: #111111;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.snk-order-success__hero-copy p {
    color: #666666;
    font-size: 15px;
    margin-bottom: 0;
    max-width: 620px;
}

.snk-order-success__hero-actions {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-top: 26px;
}

.snk-order-success__secondary-link {
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    position: relative;
    text-transform: uppercase;
}

.snk-order-success__secondary-link:after {
    background: #b39091;
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.snk-order-success__hero-panel {
    align-items: center;
    background: linear-gradient(180deg, #111111 0%, #2b2021 100%);
    border-radius: 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 30px 24px;
    text-align: center;
}

.snk-order-success__icon {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    display: inline-flex;
    font-size: 22px;
    height: 70px;
    justify-content: center;
    margin-bottom: 16px;
    width: 70px;
}

.snk-order-success__order-label {
    color: rgba(255, 255, 255, .78);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.snk-order-success__hero-panel strong {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.snk-order-success__hero-panel p {
    color: rgba(255, 255, 255, .72);
    margin: 0;
}

.snk-order-success__summary-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 28px;
}

.snk-order-success__mini-card,
.snk-order-success__card {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .05);
}

.snk-order-success__mini-card {
    padding: 22px;
}

.snk-order-success__mini-card span {
    color: #8d8d8d;
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.snk-order-success__mini-card strong {
    color: #111111;
    display: block;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.snk-order-success__mini-card small {
    color: #777777;
    display: block;
    font-size: 13px;
}

.snk-order-success__card {
    padding: 26px;
}

.snk-order-success__card--accent {
    background: linear-gradient(180deg, #fff9f7 0%, #ffffff 100%);
}

.snk-order-success__card-head {
    align-items: flex-end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.snk-order-success__card h5,
.snk-order-success__card-head h5 {
    color: #111111;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.snk-order-success__card-head b {
    color: #111111;
    font-size: 14px;
    font-weight: 800;
}

.snk-order-success__table-wrap {
    overflow-x: auto;
}

.snk-order-success__table {
    margin: 0;
    width: 100%;
}

.snk-order-success__table th,
.snk-order-success__table td {
    border-bottom: 1px solid #f0e7e5;
    color: #555555;
    padding: 16px 10px;
}

.snk-order-success__table th {
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.snk-order-success__table td {
    font-size: 14px;
}

.snk-order-success__table th:nth-child(2),
.snk-order-success__table td:nth-child(2) {
    text-align: center;
    width: 90px;
}

.snk-order-success__table th:last-child,
.snk-order-success__table td:last-child {
    text-align: right;
    width: 150px;
}

.snk-order-success__table tbody tr:last-child td {
    border-bottom: 0;
}

.snk-order-success__totals,
.snk-order-success__details {
    margin: 18px 0 0;
}

.snk-order-success__totals li,
.snk-order-success__details li {
    align-items: flex-start;
    border-bottom: 1px solid #f0e7e5;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 15px 0;
}

.snk-order-success__totals li:first-child,
.snk-order-success__details li:first-child {
    padding-top: 0;
}

.snk-order-success__totals li:last-child,
.snk-order-success__details li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.snk-order-success__totals span,
.snk-order-success__details span {
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.snk-order-success__totals strong,
.snk-order-success__details strong {
    color: #111111;
    font-size: 15px;
    max-width: 60%;
    text-align: right;
}

.snk-wishlist-page {
    padding: 56px 0 72px;
}

.snk-wishlist-page__hero {
    align-items: stretch;
    background:
        radial-gradient(circle at top left, rgba(201, 170, 168, .22), transparent 42%),
        linear-gradient(135deg, #f8f3f1 0%, #ffffff 100%);
    border: 1px solid #f0e7e5;
    border-radius: 28px;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .9fr);
    margin-bottom: 34px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.snk-wishlist-page__hero:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(201, 170, 168, .18));
    border-radius: 50%;
    content: '';
    height: 260px;
    position: absolute;
    right: -80px;
    top: -110px;
    width: 260px;
}

.snk-wishlist-page__hero-copy,
.snk-wishlist-page__hero-panel {
    position: relative;
    z-index: 1;
}

.snk-wishlist-page__eyebrow,
.snk-mini-wishlist__eyebrow {
    color: #b39091;
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.snk-wishlist-page__hero-copy h2 {
    color: #111111;
    font-size: 38px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.snk-wishlist-page__hero-copy p {
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    max-width: 620px;
}

.snk-wishlist-page__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.snk-wishlist-page__primary-link,
.snk-wishlist-page__secondary-link,
.snk-wishlist-card__primary-btn,
.snk-wishlist-card__ghost-btn,
.snk-mini-wishlist__view-all,
.snk-mini-wishlist__cart-btn,
.snk-mini-wishlist-empty__link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .04em;
    min-height: 46px;
    padding: 0 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.snk-wishlist-page__primary-link,
.snk-wishlist-card__primary-btn,
.snk-mini-wishlist__cart-btn,
.snk-mini-wishlist-empty__link {
    background: #111111;
    border: 1px solid #111111;
    color: #ffffff;
}

.snk-wishlist-page__primary-link:hover,
.snk-wishlist-card__primary-btn:hover,
.snk-mini-wishlist__cart-btn:hover,
.snk-mini-wishlist-empty__link:hover {
    background: #b39091;
    border-color: #b39091;
    box-shadow: 0 16px 30px rgba(179, 144, 145, .2);
    color: #ffffff;
    transform: translateY(-1px);
}

.snk-wishlist-page__secondary-link,
.snk-wishlist-card__ghost-btn,
.snk-mini-wishlist__view-all {
    background: rgba(255, 255, 255, .75);
    border: 1px solid #d9c8c5;
    color: #111111;
}

.snk-wishlist-page__secondary-link:hover,
.snk-wishlist-card__ghost-btn:hover,
.snk-mini-wishlist__view-all:hover {
    background: #fff4f0;
    border-color: #b39091;
    color: #b39091;
    transform: translateY(-1px);
}

.snk-wishlist-page__hero-panel {
    display: grid;
    gap: 14px;
}

.snk-wishlist-page__stat-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid #efe4e2;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(17, 17, 17, .05);
    padding: 22px 24px;
}

.snk-wishlist-page__stat-card.is-highlighted {
    background: linear-gradient(135deg, #b39091 0%, #c9aaa8 100%);
    border-color: transparent;
}

.snk-wishlist-page__stat-card span {
    color: #8a8a8a;
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.snk-wishlist-page__stat-card strong {
    color: #111111;
    display: block;
    font-size: 32px;
    line-height: 1;
}

.snk-wishlist-page__stat-card small {
    color: #6a6a6a;
    display: block;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 8px;
}

.snk-wishlist-page__stat-card.is-highlighted span,
.snk-wishlist-page__stat-card.is-highlighted strong,
.snk-wishlist-page__stat-card.is-highlighted small {
    color: #ffffff;
}

.snk-wishlist-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.snk-wishlist-card {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(17, 17, 17, .05);
    display: grid;
    grid-template-rows: 250px auto;
    overflow: hidden;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.snk-wishlist-card:hover {
    box-shadow: 0 24px 48px rgba(17, 17, 17, .08);
    transform: translateY(-4px);
}

.snk-wishlist-card__remove {
    align-items: center;
    background: rgba(17, 17, 17, .72);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 16px;
    transition: background .2s ease, transform .2s ease;
    width: 40px;
    z-index: 2;
}

.snk-wishlist-card__remove:hover,
.snk-mini-wishlist__remove:hover,
.snk-mini-wishlist__close:hover {
    background: #b39091;
    color: #ffffff;
    transform: translateY(-1px);
}

.snk-wishlist-card__media {
    background: linear-gradient(180deg, #f9f4f2 0%, #f2e7e4 100%);
    overflow: hidden;
    position: relative;
}

.snk-wishlist-card__image-link,
.snk-wishlist-card__image-link img {
    display: block;
    height: 100%;
    width: 100%;
}

.snk-wishlist-card__image-link img {
    object-fit: cover;
}

.snk-wishlist-card__badge {
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(17, 17, 17, .08);
    color: #b39091;
    font-size: 11px;
    font-weight: 800;
    left: 18px;
    letter-spacing: .14em;
    padding: 10px 14px;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
}

.snk-wishlist-card__placeholder {
    align-items: center;
    color: #8a8a8a;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.snk-wishlist-card__body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.snk-wishlist-card__meta {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.snk-wishlist-card__status,
.snk-wishlist-card__label {
    border-radius: 999px;
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.snk-wishlist-card__status.is-available {
    background: #edf6ef;
    color: #3e8154;
}

.snk-wishlist-card__status.is-unavailable {
    background: #fce9e7;
    color: #c34f4f;
}

.snk-wishlist-card__label {
    background: #f8f3f1;
    color: #8d6b6b;
}

.snk-wishlist-card__body h3 {
    font-size: 20px;
    line-height: 1.35;
    margin: 0;
}

.snk-wishlist-card__body h3 a,
.snk-wishlist-card__body h3 span {
    color: #111111;
}

.snk-wishlist-card__body p {
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.snk-wishlist-card__price-row {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.snk-wishlist-card__price-row strong {
    color: #111111;
    font-size: 24px;
    line-height: 1;
}

.snk-wishlist-card__price-row del {
    color: #a0a0a0;
    font-size: 14px;
}

.snk-wishlist-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.snk-wishlist-empty {
    background: linear-gradient(180deg, #fbf7f5 0%, #ffffff 100%);
    border: 1px solid #f0e7e5;
    border-radius: 28px;
    padding: 72px 24px;
    text-align: center;
}

.snk-wishlist-empty__icon,
.snk-mini-wishlist-empty__icon {
    align-items: center;
    background: #fff1ec;
    border-radius: 50%;
    color: #b39091;
    display: inline-flex;
    height: 94px;
    justify-content: center;
    margin-bottom: 24px;
    width: 94px;
}

.snk-wishlist-empty__icon i,
.snk-mini-wishlist-empty__icon i {
    font-size: 38px;
}

.snk-wishlist-empty h3 {
    color: #111111;
    font-size: 30px;
    margin: 0 0 12px;
}

.snk-wishlist-empty p {
    color: #6d6d6d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 28px;
}

.snk-mini-wishlist,
.snk-mini-wishlist-empty {
    animation: slideInRight .3s ease;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(17, 17, 17, .12);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 380px;
    z-index: 9999;
}

.snk-mini-wishlist__header {
    align-items: flex-start;
    border-bottom: 1px solid #f0e7e5;
    display: flex;
    justify-content: space-between;
    padding: 24px 22px 18px;
}

.snk-mini-wishlist__header h5 {
    color: #111111;
    font-size: 22px;
    margin: 0;
}

.snk-mini-wishlist__header .item-count {
    color: #8a8a8a;
    font-size: 13px;
    font-weight: 500;
}

.snk-mini-wishlist__close,
.snk-mini-wishlist__remove {
    align-items: center;
    background: #f8f3f1;
    border: 0;
    border-radius: 999px;
    color: #6d6d6d;
    cursor: pointer;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    width: 38px;
}

.snk-mini-wishlist__items {
    background: linear-gradient(180deg, #faf6f4 0%, #ffffff 100%);
    flex: 1;
    overflow-y: auto;
    padding: 18px;
}

.snk-mini-wishlist__item {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(17, 17, 17, .04);
    display: grid;
    gap: 14px;
    grid-template-columns: 88px minmax(0, 1fr);
    margin-bottom: 14px;
    padding: 14px;
    position: relative;
}

.snk-mini-wishlist__image {
    border-radius: 16px;
    height: 88px;
    overflow: hidden;
}

.snk-mini-wishlist__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.snk-mini-wishlist__details {
    min-width: 0;
    padding-right: 28px;
}

.snk-mini-wishlist__details h6 {
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 8px;
}

.snk-mini-wishlist__details h6 a {
    color: #111111;
}

.snk-mini-wishlist__price {
    color: #b39091;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.snk-mini-wishlist__cart-btn {
    min-height: 42px;
    padding: 0 16px;
}

.snk-mini-wishlist__remove {
    position: absolute;
    right: 12px;
    top: 12px;
}

.snk-mini-wishlist__footer {
    border-top: 1px solid #f0e7e5;
    padding: 18px;
}

.snk-mini-wishlist__view-all {
    display: flex;
    width: 100%;
}

.snk-mini-wishlist-empty {
    align-items: center;
    justify-content: center;
}

.snk-mini-wishlist-empty__content {
    max-width: 280px;
    padding: 20px;
    text-align: center;
}

.snk-mini-wishlist-empty__content h4 {
    color: #111111;
    font-size: 24px;
    margin: 0 0 10px;
}

.snk-mini-wishlist-empty__content p {
    color: #6d6d6d;
    line-height: 1.8;
    margin: 0 0 24px;
}

.snk-mini-wishlist__items::-webkit-scrollbar {
    width: 6px;
}

.snk-mini-wishlist__items::-webkit-scrollbar-track {
    background: #efe6e4;
}

.snk-mini-wishlist__items::-webkit-scrollbar-thumb {
    background: #c9aaa8;
    border-radius: 999px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 1199px) {
    .snk-wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .snk-wishlist-page {
        padding: 44px 0 60px;
    }

    .snk-wishlist-page__hero {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .snk-wishlist-page__hero-copy h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .snk-wishlist-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .snk-wishlist-card {
        grid-template-rows: 220px auto;
    }

    .snk-wishlist-card__meta,
    .snk-wishlist-card__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .snk-mini-wishlist,
    .snk-mini-wishlist-empty {
        width: min(100vw, 420px);
    }
}

@media (max-width: 575px) {
    .snk-wishlist-page__hero {
        border-radius: 22px;
        padding: 22px 18px;
    }

    .snk-wishlist-page__hero-copy h2 {
        font-size: 28px;
    }

    .snk-wishlist-page__hero-copy p {
        font-size: 15px;
    }

    .snk-wishlist-card__body {
        padding: 20px;
    }

    .snk-wishlist-empty {
        border-radius: 22px;
        padding: 56px 18px;
    }

    .snk-mini-wishlist,
    .snk-mini-wishlist-empty {
        width: 100%;
    }

    .snk-mini-wishlist__item {
        grid-template-columns: 1fr;
    }

    .snk-mini-wishlist__image {
        height: 180px;
    }

    .snk-mini-wishlist__details {
        padding-right: 0;
    }
}

.product.spad {
    padding-bottom: 56px;
    padding-top: 64px;
}

.product .section-title {
    margin-bottom: 34px;
}

.product .section-title h4 {
    color: #111111;
    font-size: 24px;
    letter-spacing: 0;
}

.filter__controls {
    margin-bottom: 34px;
}

.filter__controls li {
    color: #5f5f5f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-right: 24px;
    text-transform: uppercase;
}

.filter__controls li.active,
.filter__controls li:hover {
    color: #b39091;
}

.filter__controls li:after {
    background: #c9aaa8;
}

.snk-home-products {
    padding-top: 54px;
}

.snk-home-products__title {
    margin-bottom: 34px;
    text-align: center;
}

.snk-home-products__title h4 {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
    padding-bottom: 0;
    text-transform: uppercase;
}

.snk-home-products__title h4::after {
    display: none;
}

.snk-home-products__grid {
    justify-content: flex-start;
}

.snk-product-grid {
    align-items: stretch;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.snk-shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.snk-product-grid__item {
    display: block;
    height: 352px;
    min-height: 352px;
    width: 100%;
}

.snk-product-grid__item.is-hidden {
    display: none !important;
}

.property__gallery > [class*="col-"],
.shop .col-lg-9 .row > [class*="col-"],
.shop .col-md-9 .row > [class*="col-"] {
    margin-bottom: 30px;
}

.property__gallery .product__item {
    margin-bottom: 0;
}

.snk-product-card {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, .04);
    display: grid;
    grid-template-rows: 220px 132px;
    height: 352px !important;
    margin-bottom: 0 !important;
    max-height: 352px !important;
    min-height: 352px !important;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    width: 100%;
}

.snk-product-card:hover {
    box-shadow: 0 18px 42px rgba(17, 17, 17, .08);
    transform: translateY(-3px);
}

.snk-product-card__media {
    background: #f7f4f2;
    box-sizing: border-box;
    height: 220px !important;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.snk-product-card__image-link {
    display: block;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.snk-product-card__image-link img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.snk-product-card .product__item__pic .label {
    border-radius: 8px;
    font-size: 11px;
    left: 14px;
    padding: 4px 10px;
    top: 14px;
}

.snk-discount-ribbon {
    background: #c9aaa8;
    border-radius: 0 8px 0 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 9px 12px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.snk-shop-filter-form {
    position: sticky;
    top: 18px;
}

.snk-shop-filter-form.is-loading {
    opacity: .76;
}

.snk-shop-filter-panel {
    border-bottom: 1px solid #f0e7e5;
    margin-bottom: 24px;
    padding-bottom: 22px;
}

.snk-filter-list {
    display: grid;
    gap: 10px;
}

.snk-filter-choice {
    align-items: center;
    border: 1px solid #eadedd;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    margin: 0;
    padding: 10px 12px;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.snk-filter-choice input {
    margin-right: 10px;
}

.snk-filter-choice.is-active,
.snk-filter-choice:hover {
    background: #f6f2f0;
    border-color: #c9aaa8;
    color: #111111;
}

.snk-price-filter__values {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.snk-price-filter__values label {
    color: #666666;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.snk-price-filter__values input,
.snk-shop-sort {
    border: 1px solid #eadedd;
    border-radius: 8px;
    color: #111111;
    height: 42px;
    margin-top: 8px;
    padding: 0 12px;
    width: 100%;
}

.snk-price-filter__track {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.snk-price-filter__track input {
    accent-color: #b39091;
    width: 100%;
}

.snk-price-filter__caption,
.snk-shop-results__summary {
    align-items: center;
    color: #666666;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin-top: 10px;
}

.snk-shop-filter-actions {
    align-items: center;
    display: flex;
    gap: 14px;
}

.snk-shop-reset {
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.snk-shop-results {
    min-height: 420px;
    transition: opacity .2s ease;
}

.snk-shop-results.is-loading {
    opacity: .45;
    pointer-events: none;
}

.snk-shop-results__summary {
    margin-bottom: 20px;
    margin-top: 0;
}

.snk-shop-pagination {
    margin-top: 34px;
    text-align: center;
}

.snk-shop-empty {
    background: #f7f4f2;
    border-radius: 8px;
    grid-column: 1 / -1;
    padding: 50px 24px;
    text-align: center;
}

.snk-mini-qty {
    align-items: center;
    display: inline-flex;
    margin: 8px 0;
}

.snk-mini-qty button,
.snk-mini-qty input {
    border: 1px solid #eadedd;
    height: 30px;
    text-align: center;
}

.snk-mini-qty button {
    background: #f6f2f0;
    color: #111111;
    cursor: pointer;
    width: 30px;
}

.snk-mini-qty input {
    border-left: 0;
    border-right: 0;
    width: 46px;
}

.snk-product-card .product__hover {
    bottom: 18px;
}

.snk-product-card .product__hover li a {
    border: 1px solid #eadedd;
    height: 40px;
    line-height: 43px;
    width: 40px;
}

.snk-product-card .product__hover li:hover a {
    background: #c9aaa8;
}

.snk-product-card.sale .product__item__pic .label {
    background: #ca1515;
}

.snk-product-card.sale .product__item__text .product__price {
    color: #111111 !important;
}

.snk-product-card .product__item__text {
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 42px 18px 24px;
    height: 132px !important;
    max-height: 132px !important;
    min-height: 132px !important;
    padding: 14px 16px 18px;
    row-gap: 6px;
}

.snk-product-card .product__item__text h6 {
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 1.45;
    margin-bottom: 0;
    min-height: 42px;
    overflow: hidden;
}

.snk-product-card .product__item__text .rating {
    line-height: 18px;
    margin-bottom: 0;
    min-height: 18px;
}

.snk-product-card .product__item__text h6 a {
    color: #111111;
    font-size: 15px;
    font-weight: 600;
}

.snk-product-card .product__item__text h6 a:hover {
    color: #b39091;
}

.snk-product-card .product__item__text .product__price {
    color: #111111 !important;
    font-size: 16px;
    line-height: 22px;
    margin-top: 0;
    min-height: 24px;
    overflow: hidden;
    white-space: nowrap;
}

.snk-product-card .product__item__text .product__price span {
    display: inline-block;
}

.primary-btn,
.site-btn,
.cart-btn,
.product__details__button .cart-btn {
    background: #111111;
    border: 1px solid #111111;
    border-radius: 8px;
    color: #ffffff;
    letter-spacing: 0;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.primary-btn:hover,
.site-btn:hover,
.cart-btn:hover,
.product__details__button .cart-btn:hover {
    background: #b39091;
    border-color: #b39091;
    color: #ffffff;
    transform: translateY(-1px);
}

.product-details.spad {
    padding-top: 64px;
}

.product__details__pic {
    background: #f7f4f2;
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: 88px minmax(0, 1fr);
    overflow: hidden;
    padding: 18px;
}

.product__details__pic__left {
    float: none;
    margin-right: 16px;
    width: 88px;
}

.product__details__pic__left .pt {
    border: 1px solid #eadedd;
    border-radius: 8px;
    height: 88px;
    margin-bottom: 12px;
    overflow: hidden;
}

.product__details__pic__left .pt.active {
    border-color: #b39091;
}

.product__details__pic__left .pt::after {
    display: none;
}

.product__details__pic__left .pt img,
.product__details__pic__slider .product__big__img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.product__details__slider__content {
    float: none;
    margin-left: 0;
    width: 100%;
}

.product__details__pic__slider .product__big__img {
    background: #ffffff;
    border-radius: 8px;
    height: 560px;
}

.product__details__slider__content .snk-product-main-image {
    background: #ffffff;
    border-radius: 8px;
    display: block;
    height: 560px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.product__details__pic__slider.owl-carousel .owl-item img.product__big__img {
    display: block;
    height: 560px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.product__details__text {
    padding-left: 28px;
}

.product__details__text h3 {
    color: #111111;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
}

.product__details__text h3 span {
    color: #b39091;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.product__details__text .rating i,
.snk-review-score .rating i,
.snk-product-card .product__item__text .rating i {
    color: #e2b51b;
}

.product__details__price {
    color: #111111;
    font-size: 28px;
    font-weight: 800;
}

.product__details__price span {
    color: #9a8f8f;
    font-size: 18px;
}

.product__details__button {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product__details__button .quantity {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    margin-right: 0;
}

.product__details__button .quantity span {
    color: #111111;
    font-weight: 700;
}

.product__details__button .pro-qty {
    align-items: center;
    border: 1px solid #eadedd;
    border-radius: 8px;
    display: inline-flex;
    height: 46px;
    overflow: hidden;
    padding: 0;
    width: 136px;
}

.product__details__button .pro-qty .qtybtn {
    float: none;
    line-height: 46px;
    text-align: center;
    width: 40px;
}

.product__details__button .pro-qty input {
    color: #111111;
    float: none;
    font-weight: 800;
    height: 44px;
    width: 54px;
}

.product__details__button .cart-btn.disabled {
    opacity: .5;
    pointer-events: none;
}

.product__details__button ul {
    display: inline-flex;
    gap: 10px;
    margin: 0;
}

.product__details__button ul li {
    margin-right: 0;
}

.product__details__button ul li a {
    align-items: center;
    border: 1px solid #eadedd;
    border-radius: 8px;
    color: #111111;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.product__details__button ul li a:hover {
    background: #f6f2f0;
    border-color: #b39091;
    color: #b39091;
}

.product__details__widget {
    border-top: 1px solid #f0e7e5;
    margin-top: 28px;
    padding-top: 22px;
}

.product__details__widget ul li span {
    color: #111111;
    font-weight: 800;
}

.product__details__widget ul li p {
    color: #666666;
}

.product__details__tab {
    margin-top: 60px;
}

.product__details__tab .nav-tabs .nav-link {
    color: #666666;
    font-weight: 800;
    letter-spacing: 0;
}

.product__details__tab .nav-tabs .nav-link.active {
    color: #111111;
}

.product__details__tab .tab-content {
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    margin-top: 26px;
    padding: 30px;
}

.snk-review-summary {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: 240px minmax(0, 1fr);
}

.snk-review-score {
    background: #f7f4f2;
    border-radius: 8px;
    padding: 26px;
    text-align: center;
}

.snk-review-score strong {
    color: #111111;
    display: block;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.snk-review-score span {
    color: #666666;
    display: block;
    font-size: 13px;
    margin-top: 10px;
}

.snk-review-bars {
    display: grid;
    gap: 13px;
}

.snk-review-bar {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 62px minmax(0, 1fr) 44px;
}

.snk-review-bar span,
.snk-review-bar em {
    color: #666666;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.snk-review-bar div {
    background: #f0e7e5;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.snk-review-bar b {
    background: #b39091;
    display: block;
    height: 100%;
}

.snk-review-bar__fill--5 { width: 76%; }
.snk-review-bar__fill--4 { width: 18%; }
.snk-review-bar__fill--3 { width: 4%; }
.snk-review-bar__fill--2 { width: 1%; }
.snk-review-bar__fill--1 { width: 1%; }

.snk-review-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.snk-review-list article {
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    padding: 18px 20px;
}

.snk-review-list strong {
    color: #111111;
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.snk-review-list p {
    color: #666666;
    margin-bottom: 0;
}

.snk-alert {
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 22px;
    padding: 14px 18px;
}

.snk-alert--error {
    background: #fff1f1;
    border: 1px solid #f3c7c7;
    color: #9d2424;
}

.snk-checkout-page .checkout__form h5,
.snk-checkout-order h5,
.shoping__checkout h5,
.shoping__discount h5 {
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-transform: none;
}

.snk-section-eyebrow {
    color: #b39091;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.snk-checkout-card,
.snk-checkout-order,
.shoping__checkout,
.snk-cart-note {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .05);
    padding: 28px;
}

.snk-checkout-order {
    position: sticky;
    top: 20px;
}

.checkout__form .checkout__form__input p,
.snk-payment-methods p {
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.checkout__form .checkout__form__input input,
.checkout__form .checkout__form__input textarea,
.checkout__form .checkout__form__input select {
    border: 1px solid #eadedd;
    border-radius: 8px;
    color: #111111;
    margin-bottom: 18px;
    min-height: 48px;
    padding: 0 14px;
    width: 100%;
}

.checkout__form .checkout__form__input textarea {
    min-height: 116px;
    padding: 14px;
    resize: vertical;
}

.checkout__form .checkout__form__input select {
    background: #ffffff;
}

.checkout__form .checkout__form__input input:focus,
.checkout__form .checkout__form__input textarea:focus,
.checkout__form .checkout__form__input select:focus {
    border-color: #b39091;
    box-shadow: 0 0 0 3px rgba(179, 144, 145, .16);
    outline: 0;
}

.checkout__form small,
.snk-payment-methods small {
    color: #ca1515;
    display: block;
    margin: -12px 0 14px;
}

.snk-checkout-items {
    display: grid;
    gap: 16px;
    margin: 22px 0;
}

.snk-checkout-item {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 64px minmax(0, 1fr) auto;
}

.snk-checkout-item img {
    background: #f7f4f2;
    border-radius: 8px;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.snk-checkout-item strong {
    color: #111111;
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

.snk-checkout-item span {
    color: #777777;
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

.snk-checkout-item b {
    color: #111111;
    font-size: 14px;
    white-space: nowrap;
}

.snk-checkout-total ul li {
    color: #111111;
    font-size: 15px;
    font-weight: 800;
}

.snk-checkout-total ul li:last-child {
    border-top: 1px solid #f0e7e5;
    font-size: 18px;
    margin-top: 8px;
    padding-top: 14px;
}

.snk-payment-methods {
    border-top: 1px solid #f0e7e5;
    margin-top: 22px;
    padding-top: 20px;
}

.snk-payment-methods label {
    align-items: center;
    border: 1px solid #eadedd;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 14px;
}

.snk-payment-methods input {
    accent-color: #b39091;
}

.snk-checkout-submit {
    margin-top: 14px;
    width: 100%;
}

.snk-cart-table {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .05);
    overflow: hidden;
}

.snk-cart-table table {
    margin-bottom: 0;
    table-layout: fixed;
    width: 100%;
}

.snk-cart-table thead th {
    background: #f7f4f2;
    color: #111111;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    padding: 18px 20px;
    text-transform: uppercase;
}

.snk-cart-table tbody tr {
    border-bottom: 1px solid #f0e7e5;
}

.snk-cart-table tbody tr:last-child {
    border-bottom: 0;
}

.snk-cart-table td {
    padding: 22px 20px;
    vertical-align: middle;
}

.snk-cart-table .shoping__product {
    width: 45%;
}

.snk-cart-table th:nth-child(2),
.snk-cart-table th:nth-child(4) {
    width: 16%;
}

.snk-cart-table th:nth-child(3) {
    width: 17%;
}

.snk-cart-table th:nth-child(5) {
    width: 6%;
}

.snk-cart-product {
    align-items: center;
    display: flex;
    gap: 18px;
    min-width: 0;
}

.snk-cart-thumb {
    background: #f7f4f2;
    border-radius: 8px;
    height: 104px;
    object-fit: cover;
    width: 104px;
}

.snk-cart-product h5 {
    color: #111111;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 6px;
    overflow-wrap: anywhere;
}

.snk-cart-product span {
    color: #777777;
    font-size: 13px;
}

.snk-cart-remove {
    align-items: center;
    background: #f7f4f2;
    border: 1px solid #eadedd;
    border-radius: 8px;
    color: #111111;
    cursor: pointer;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.snk-cart-remove:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.shoping__cart__price,
.shoping__cart__total {
    color: #111111;
    font-weight: 800;
    white-space: nowrap;
}

.shoping__cart__quantity .quantity {
    display: inline-flex;
    margin: 0;
}

.shoping__cart__quantity .pro-qty {
    align-items: center;
    border: 1px solid #eadedd;
    border-radius: 8px;
    display: inline-flex;
    height: 44px;
    overflow: hidden;
    padding: 0;
    width: 128px;
}

.shoping__cart__quantity .pro-qty .qtybtn {
    color: #111111;
    float: none;
    font-weight: 800;
    height: 44px;
    line-height: 44px;
    text-align: center;
    width: 38px;
}

.shoping__cart__quantity .pro-qty input {
    color: #111111;
    float: none;
    font-weight: 800;
    height: 42px;
    width: 52px;
}

.snk-cart-note {
    margin-top: 34px;
}

.snk-cart-note p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

.shoping__checkout {
    margin-top: 34px;
}

.shoping__cart__btns {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

.shoping__cart__btns .cart-btn {
    border-radius: 8px;
}

.shoping__checkout .primary-btn {
    border-radius: 8px;
    display: block;
    text-align: center;
    width: 100%;
}

.shoping__checkout ul li {
    align-items: center;
    border-bottom: 1px solid #f0e7e5;
    color: #111111;
    display: flex;
    font-weight: 800;
    justify-content: space-between;
    padding: 12px 0;
}

.shoping__checkout ul li:last-child {
    border-bottom: 0;
    font-size: 18px;
}

.shoping__checkout ul li span {
    text-align: right;
    white-space: nowrap;
}

.snk-empty-state {
    background: #ffffff;
    border: 1px solid #f0e7e5;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .05);
    padding: 70px 24px;
}

.snk-empty-state i {
    color: #c9aaa8;
    display: block;
    font-size: 70px;
    margin-bottom: 20px;
}

.snk-empty-state h3 {
    color: #111111;
    font-weight: 800;
    margin-bottom: 12px;
}

.snk-empty-state p {
    color: #777777;
    margin-bottom: 28px;
}

@media only screen and (max-width: 991px) {
    .snk-order-success__hero {
        grid-template-columns: 1fr;
    }

    .snk-order-success__summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-dashboard__hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-dashboard__summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-order-card__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .snk-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .snk-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product__details__text {
        padding-left: 0;
        padding-top: 34px;
    }

    .product__details__pic__slider .product__big__img {
        height: 460px;
    }

    .product__details__slider__content .snk-product-main-image {
        height: 460px;
    }

    .product__details__pic__slider.owl-carousel .owl-item img.product__big__img {
        height: 460px;
    }

    .snk-review-summary {
        grid-template-columns: 1fr;
    }

    .snk-checkout-order {
        margin-top: 28px;
        position: static;
    }
}

@media only screen and (max-width: 767px) {
    .snk-order-success__hero,
    .snk-order-success__card,
    .snk-order-success__mini-card {
        padding: 22px;
    }

    .snk-order-success__hero-copy h2 {
        font-size: 28px;
    }

    .snk-order-success__hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .snk-order-success__summary-grid {
        grid-template-columns: 1fr;
    }

    .snk-order-success__card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .snk-order-success__totals strong,
    .snk-order-success__details strong {
        max-width: none;
        text-align: left;
    }

    .account-dashboard__hero,
    .account-panel,
    .account-panel--compact {
        padding: 22px;
    }

    .account-dashboard__summary-grid {
        grid-template-columns: 1fr;
    }

    .account-order-card__top,
    .account-order-card__item {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-order-card__meta {
        grid-template-columns: 1fr;
    }

    .account-dashboard__hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .account-dashboard__hero-actions form,
    .account-dashboard__hero-actions .primary-btn,
    .account-dashboard__ghost-btn,
    .account-dashboard__logout-btn {
        width: 100%;
    }

    .snk-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .snk-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-details.spad {
        padding-top: 42px;
    }

    .product__details__pic {
        display: block;
        padding: 12px;
    }

    .product__details__pic__left {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        margin-right: 0;
        overflow-x: auto;
        width: 100%;
    }

    .product__details__pic__left .pt {
        flex: 0 0 76px;
        height: 76px;
        margin-bottom: 0;
    }

    .product__details__slider__content {
        width: 100%;
    }

    .product__details__pic__slider .product__big__img {
        height: 360px;
    }

    .product__details__slider__content .snk-product-main-image {
        height: 360px;
    }

    .product__details__pic__slider.owl-carousel .owl-item img.product__big__img {
        height: 360px;
    }

    .product__details__text h3 {
        font-size: 26px;
    }

    .product__details__button {
        align-items: stretch;
        flex-direction: column;
    }

    .product__details__button .quantity,
    .product__details__button .cart-btn,
    .product__details__button ul {
        width: 100%;
    }

    .product__details__button ul li,
    .product__details__button ul li a {
        flex: 1;
        width: 100%;
    }

    .product__details__tab .tab-content {
        padding: 22px 18px;
    }

    .snk-review-bar {
        grid-template-columns: 54px minmax(0, 1fr) 40px;
    }

    .snk-checkout-card,
    .snk-checkout-order,
    .shoping__checkout,
    .snk-cart-note {
        padding: 22px 18px;
    }

    .snk-checkout-page .checkout__form h5,
    .snk-checkout-order h5 {
        font-size: 19px;
        line-height: 1.35;
    }

    .snk-checkout-item {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .snk-checkout-item b {
        grid-column: 2;
    }

    .snk-cart-table {
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }

    .snk-cart-table table,
    .snk-cart-table tbody,
    .snk-cart-table tr,
    .snk-cart-table td {
        display: block;
        width: 100%;
    }

    .snk-cart-table table {
        table-layout: auto;
    }

    .snk-cart-table thead {
        display: none;
    }

    .snk-cart-table tbody tr {
        background: #ffffff;
        border: 1px solid #f0e7e5;
        border-radius: 8px;
        box-shadow: 0 14px 34px rgba(17, 17, 17, .05);
        margin-bottom: 16px;
        overflow: hidden;
        padding: 16px;
    }

    .snk-cart-table td {
        padding: 10px 0;
    }

    .snk-cart-table .shoping__cart__item {
        padding-top: 0;
    }

    .shoping__cart__price,
    .shoping__cart__quantity,
    .shoping__cart__total {
        align-items: center;
        border-top: 1px solid #f0e7e5;
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }

    .shoping__cart__price::before,
    .shoping__cart__quantity::before,
    .shoping__cart__total::before {
        color: #777777;
        content: attr(data-label);
        font-size: 13px;
        font-weight: 800;
    }

    .shoping__cart__item__close {
        display: flex !important;
        justify-content: flex-end;
        padding-bottom: 0;
    }

    .shoping__cart__btns,
    .shoping__cart__btns .cart-btn {
        width: 100%;
    }

    .shoping__cart__btns .cart-btn {
        text-align: center;
    }

    .snk-cart-thumb {
        height: 82px;
        width: 82px;
    }
}

@media only screen and (max-width: 480px) {
    .snk-product-grid {
        grid-template-columns: 1fr;
    }

    .snk-shop-product-grid {
        grid-template-columns: 1fr;
    }
}

.trend {
    padding-top: 68px;
}

.trend__item {
    align-items: center;
    border-bottom: 1px solid #f0e7e5;
    display: flex;
    margin-bottom: 22px;
    padding-bottom: 22px;
}

.trend__item:last-child {
    border-bottom: 0;
}

.trend__item__pic {
    background: #f7f4f2;
    border-radius: 8px;
    float: none;
    flex: 0 0 82px;
    height: 82px;
    margin-right: 18px;
    overflow: hidden;
    width: 82px;
}

.trend__item__pic img {
    height: 100%;
    object-fit: contain;
    padding: 8px;
    width: 100%;
}

.trend__item__text h6 a {
    color: #111111;
    font-weight: 600;
}

.trend__item__text h6 a:hover {
    color: #b39091;
}

.discount {
    padding: 18px 0 72px;
}

.discount__pic {
    background: #f7f4f2;
    height: 330px;
    overflow: hidden;
}

.discount__pic img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.discount__text {
    height: 330px;
    padding: 48px 72px 42px;
}

.discount__text__title {
    margin-bottom: 34px;
}

.discount__text__title h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    line-height: 1.2;
}

.discount__text__title:after {
    height: 150px;
    margin-left: -75px;
    top: -24px;
    width: 150px;
}

.snk-spin {
    left: 0;
    position: fixed;
    top: 46%;
    z-index: 60;
}

.snk-spin__tab {
    background: #c9aaa8;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    display: block;
    font-weight: 700;
    letter-spacing: 0;
    min-height: 126px;
    padding: 14px 11px;
    text-transform: none;
    writing-mode: vertical-rl;
}

.snk-spin__hide {
    background: #ffffff;
    border: 1px solid #e4d5d4;
    border-radius: 50%;
    color: #7f6d6d;
    font-size: 18px;
    height: 22px;
    line-height: 18px;
    padding: 0;
    position: absolute;
    right: -11px;
    top: -11px;
    width: 22px;
    z-index: 2;
}

.snk-spin.is-hidden {
    display: none;
}

.snk-spin__panel {
    background: #ffffff;
    border: 1px solid #eadedd;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(17, 17, 17, .18);
    left: 56px;
    opacity: 0;
    padding: 26px;
    pointer-events: none;
    position: absolute;
    top: -116px;
    transform: translateX(-18px);
    transition: opacity .25s ease, transform .25s ease;
    width: 280px;
}

.snk-spin.is-open .snk-spin__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.snk-spin__close {
    background: #f6f2f0;
    border: 0;
    border-radius: 50%;
    color: #111111;
    height: 26px;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 26px;
}

.snk-spin__eyebrow {
    color: #b39091;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.snk-spin__panel h3 {
    color: #111111;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.snk-spin__wheel {
    align-items: center;
    background: conic-gradient(#d7b2b4 0 25%, #111111 0 50%, #f6f2f0 0 75%, #b39091 0 100%);
    border: 8px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #eadedd;
    color: #ffffff;
    display: grid;
    font-size: 12px;
    font-weight: 800;
    height: 150px;
    justify-items: center;
    margin: 0 auto 20px;
    position: relative;
    transition: transform 1.05s cubic-bezier(.14, .72, .18, 1);
    width: 150px;
}

.snk-spin__wheel::after {
    background: #ffffff;
    border-radius: 50%;
    content: "";
    height: 24px;
    position: absolute;
    width: 24px;
}

.snk-spin__wheel span {
    position: absolute;
}

.snk-spin__wheel span:nth-child(1) { top: 26px; }
.snk-spin__wheel span:nth-child(2) { right: 18px; top: 68px; }
.snk-spin__wheel span:nth-child(3) { bottom: 26px; color: #111111; }
.snk-spin__wheel span:nth-child(4) { left: 18px; top: 68px; }

.snk-spin__wheel.is-spinning {
    transition: transform 1.05s cubic-bezier(.14, .72, .18, 1);
}

.snk-spin__button {
    background: #111111;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 18px;
    text-transform: uppercase;
    width: 100%;
}

.snk-spin__result {
    color: #666666;
    font-size: 13px;
    margin: 14px 0 0;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .snk-header__top-row {
        grid-template-columns: 1fr auto auto;
    }

    .snk-header__actions {
        gap: 8px;
    }

    .snk-header__actions .snk-header__action {
        height: 38px;
        min-width: 38px;
        padding: 0 11px;
    }

    .snk-header__actions .snk-header__action-text {
        display: none;
    }

    .snk-header__menu ul li {
        margin-right: 20px;
    }

    .snk-hero {
        height: 560px;
    }

    .snk-hero__content h1 {
        font-size: 42px;
    }

    .product__item__pic {
        height: 240px;
    }

    .snk-product-card__media {
        height: 240px;
    }

    .discount__pic,
    .discount__text {
        height: auto;
        min-height: 300px;
    }
}

@media only screen and (max-width: 767px) {
    .snk-header__search span:last-child {
        display: none;
    }

    .snk-header-search-form__field input {
        font-size: 24px;
    }

    .snk-header-search-form__field button {
        height: 42px;
        width: 48px;
    }

    .snk-header-search-result {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .snk-header-search-result img {
        height: 52px;
        width: 52px;
    }

    .snk-header__top-row {
        min-height: 72px;
    }

    .snk-header__brand img {
        max-height: 38px;
    }

    .snk-header__nav {
        overflow-x: auto;
    }

    .snk-header__menu {
        min-width: 560px;
        padding: 18px 0;
    }

    .snk-hero {
        height: 520px;
        min-height: 520px;
    }

    .snk-hero__content {
        margin-left: 22px;
        max-width: calc(100vw - 44px);
    }

    .snk-hero__content h1 {
        font-size: 34px;
    }

    .snk-hero__content p {
        font-size: 17px;
    }

    .product.spad {
        padding-top: 44px;
    }

    .filter__controls {
        text-align: left;
    }

    .filter__controls li {
        margin-bottom: 10px;
        margin-right: 18px;
    }

    .product__item__pic {
        height: 200px;
    }

    .snk-product-card__media {
        height: 200px;
    }

    .discount__text {
        padding: 42px 28px 36px;
    }

    .discount__text__title h2 {
        font-size: 28px;
    }

    .snk-spin {
        top: 58%;
    }

    .snk-spin__panel {
        left: 48px;
        width: 250px;
    }
}
