
/* JS (IntersectionObserver / stickyColumn in main.min.js) dynamically adds sticky-top */
.pr-product-tabs,
.pr-product-tabs.sticky-top {
    position: relative !important;
    top: unset !important;
}

/* Header sticky too tall with logo on desktop — keep disabled there, restore native sticky on mobile */
@media (min-width: 992px) {
    .pr-header,
    .pr-header.sticky-top {
        position: relative !important;
        top: unset !important;
    }
}

/* Override JS inline top on all .pr-sticky-column (set dynamically based on header height) */
.pr-checkout.oct-checkout .pr-sticky-column,
.pr-product-sticky-block .pr-sticky-column
{
    top: 20px !important;
}

.pr-slideshow-plus-item-fullimg img,
.pr-slideshow-plus-item-fullimg source{
    width: 100%!important;
}
.snk-blockquote {
    background: #faf7f2;
    border-left: 2px solid #b8902a;
    padding: 20px 28px 20px;
    margin: 28px 0;
    border-radius: 0 4px 4px 0;
    width: 600px;
    max-width: 100%;
}
.snk-blockquote::before {
    content: '\201C';
    display: block;
    color: #b8902a;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}
.snk-blockquote p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
    color: #1a1a1a;
}


#logo img, .pr-footer-logo{
    content: none!important;
}
#logo img{
    width: auto!important;
    height: 82px!important;
}
@media screen and (max-width: 768px) {
    #logo img{
        max-height: 40px;
        width: auto;
    }
}

/* ===================== Instagram Widget ===================== */
.snk-inst-widget {
    font-family: inherit;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 50px;
}

/* --- Header / Profile --- */
.snk-inst-header {
    background: #fff;
    color: #1a1a1a;
    padding: 20px 24px;
    border-radius: 8px 8px 0 0;
    border: 1px solid #eee;
    border-bottom: none;
}
.snk-inst-header-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 14px;
}
@media (max-width: 575px) {
    .snk-inst-header-top {
        align-items: flex-start;
    }
    .snk-inst-identity {
        flex-basis: 0;
    }
    .snk-inst-follow-btn {
        width: 100%;
        text-align: center;
    }
}
.snk-inst-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8e8e8;
    display: block;
    flex-shrink: 0;
}
.snk-inst-identity {
    flex: 1;
    min-width: 0;
}
.snk-inst-username {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
}
.snk-inst-username:hover { color: var(--pr-primary-dark-color); }
.snk-inst-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.snk-inst-fullname {
    color: #666;
    font-size: .82rem;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.snk-inst-follow-btn {
    display: inline-block;
    padding: 7px 18px;
    background: var(--pr-primary-dark-color);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .2s;
}
.snk-inst-follow-btn:hover { opacity: .85; color: #fff; }
.snk-inst-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid #eee;
    padding-top: 14px;
}
.snk-inst-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border-right: 1px solid #eee;
}
.snk-inst-stat:last-child { border-right: none; }
.snk-inst-stat-num {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
}
.snk-inst-stat-label {
    font-size: .75rem;
    color: #888;
}

/* --- Grid (type1) --- */
.snk-inst-grid {
    display: grid;
    grid-template-columns: repeat(var(--snk-cols, 3), 1fr);
    gap: 4px;
}
@media (max-width: 767px) {
    .snk-inst-grid {
        grid-template-columns: repeat(var(--snk-mob-cols, 2), 1fr);
    }
    /*Mobile menu button catalog*/
    #top .pr-mobile-menu-content-catalog > button[data-sidebar="catalog"]{
        display: none!important;

    }
    #top .pr-mobile-menu-content-catalog .pr-mobile-menu-content-catalog-horizontal > ul{
        margin: 0!important;
    }
    #top .pr-mobile-menu-content-catalog .pr-mobile-menu-content-catalog-horizontal .pr-header-main-categories-list{
        border-top: none!important;
    }
    .pr-mobile-menu-content-links.content-block.br-16{
        margin-bottom: 100px;
    }
/*    end*/
}
.snk-inst-post {
    display: block;
    position: relative;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
}
.snk-inst-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    opacity: 0;
    transition: opacity .25s;
}
.snk-inst-post:hover .snk-inst-post-overlay { opacity: 1; }
.snk-inst-post-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #fff;
    font-size: .8rem;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

/* --- Feed (type2) --- */
.snk-inst-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 4px 0;
}
.snk-inst-feed-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}
.snk-inst-feed-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
}
.snk-inst-feed-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.snk-inst-feed-uname {
    font-weight: 700;
    font-size: .85rem;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
}
.snk-inst-feed-uname:hover { color: var(--pr-primary-dark-color); }
.snk-inst-feed-time {
    font-size: .75rem;
    color: #888;
}
.snk-inst-feed-img {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
}
.snk-inst-feed-meta {
    display: flex;
    gap: 14px;
    padding: 10px 14px 6px;
    color: #555;
    font-size: .85rem;
}
.snk-inst-feed-text {
    padding: 0 14px 12px;
    font-size: .85rem;
    color: #333;
    line-height: 1.4;
}

/* --- Slider (type3) --- */
.snk-inst-carousel {
    position: relative;
}
.snk-inst-carousel .snk-inst-post {
    padding-bottom: 120%;
}

/* --- AJAX loader --- */
.snk-inst-widget-shell {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.snk-inst-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.snk-inst-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0,0,0,.1);
    border-top-color: var(--pr-primary-dark-color);
    border-radius: 50%;
    animation: snk-spin .7s linear infinite;
}
@keyframes snk-spin { to { transform: rotate(360deg); } }


.pr-module-item .pr-module-attributes{
    display: none !important;
}
