/* Sticky social icons at bottom */
.sidebar-social-wrapper {
    position: sticky;
    bottom: 0;
    background: #242424;
    padding: 12px 0;
    border-top: 1px solid #2f2f2f;
    z-index: 10;
}

.sidebar-social .social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background-color: #2f2f2f;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sidebar-social .social-icon:hover {
    background-color: #a8741a;
    color: #fff;
}

.sidebar-social .col-3 {
    padding: 0px;
}

.sidebar-social .row {
    margin-left: 0;
    margin-right: 0;
}

/* Ensure parent flex layout allows sticky bottom */
#shopify-section-sidebar-header {
    display: flex;
    flex-direction: column;
}