.nt-drawer-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    color: var(--theme-color);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 34px;
    font-size: 16px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: all 0.3s ease-in-out;
    width: 34px;
}

.nt-drawer-toggle:hover,
.nt-drawer-toggle:focus {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
    outline: none;
}

.nt-drawer-overlay {
    background: rgba(0, 0, 0, 0.55);
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9998;
}

.nt-store-drawer {
    background: #ffffff;
    bottom: 0;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.16);
    color: #555555;
    max-width: 90vw;
    overflow-y: auto;
    padding: 38px 34px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;
    width: 390px;
    z-index: 9999;
}

body.nt-drawer-open {
    overflow: hidden;
}

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

body.nt-drawer-open .nt-store-drawer {
    transform: translateX(0);
}

.nt-drawer-close {
    align-items: center;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    height: 38px;
    justify-content: center;
    margin-bottom: 28px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    width: 38px;
}

.nt-drawer-close:hover {
    background: transparent;
    color: var(--theme-color);
}

.nt-drawer-section + .nt-drawer-section {
    border-top: 1px solid #eeeeee;
    margin-top: 34px;
    padding-top: 32px;
}

.nt-store-drawer h3 {
    color: #222222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 18px;
}

.nt-store-drawer p {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 22px;
}

.nt-drawer-contact,
.nt-drawer-social,
.nt-drawer-products {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nt-drawer-contact {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.nt-drawer-contact li {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}

.nt-drawer-contact i {
    color: var(--theme-color);
    line-height: 24px;
    min-width: 16px;
}

.nt-drawer-contact a,
.nt-drawer-contact span {
    color: #555555;
    font-size: 15px;
    line-height: 24px;
}

.nt-drawer-contact a:hover {
    color: var(--theme-color);
}

.nt-drawer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nt-drawer-social a {
    align-items: center;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    color: #555555;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    width: 36px;
}

.nt-drawer-social a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}

.nt-drawer-products {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.nt-drawer-products a {
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    display: block;
    overflow: hidden;
}

.nt-drawer-products img {
    aspect-ratio: 1;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.nt-drawer-products a:hover img {
    transform: scale(1.06);
}

.nt-drawer-shop-btn {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 13px 24px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.nt-drawer-shop-btn:hover,
.nt-drawer-shop-btn:focus {
    background: transparent;
    color: var(--theme-color);
}

html[dir="rtl"] .nt-store-drawer {
    box-shadow: 12px 0 32px rgba(0, 0, 0, 0.16);
    left: 0;
    right: auto;
    transform: translateX(-100%);
}

html[dir="rtl"] body.nt-drawer-open .nt-store-drawer {
    transform: translateX(0);
}

html[dir="rtl"] .nt-drawer-contact li {
    text-align: right;
}

@media (max-width: 767px) {
    .nt-store-drawer {
        padding: 30px 24px;
        width: 340px;
    }

    .nt-drawer-toggle {
        flex-basis: 32px;
        height: 32px;
        width: 32px;
    }
}
