/**
 * As Seen On Social Frontend Styles
 */

/* Ana Widget Container */
.as-seen-social-widget {
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.as-seen-social-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.as-seen-social-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Slider Container */
.as-seen-social-container {
    position: relative;
    overflow: hidden;
}

.as-seen-social-swiper {
    padding: 1rem 0;
    --slides-per-view: 6;
}

/* Responsive Slide Sayısı */
@media (max-width: 1023px) {
    .as-seen-social-swiper {
        --slides-per-view: 4;
    }
}

@media (max-width: 767px) {
    .as-seen-social-swiper {
        --slides-per-view: 2;
    }
}

@media (max-width: 479px) {
    .as-seen-social-swiper {
        --slides-per-view: 1;
    }
}

/* Elementor Widget Responsive Ayarları */
.elementor-widget-as-seen-social .as-seen-social-swiper {
    --slides-per-view-desktop: 6;
    --slides-per-view-tablet: 4;
    --slides-per-view-mobile: 2;
}

@media (max-width: 1023px) {
    .elementor-widget-as-seen-social .as-seen-social-swiper {
        --slides-per-view: var(--slides-per-view-tablet, 4);
    }
}

@media (max-width: 767px) {
    .elementor-widget-as-seen-social .as-seen-social-swiper {
        --slides-per-view: var(--slides-per-view-mobile, 2);
    }
}

/* Slide Stilleri */
.as-seen-social-slide {
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.as-seen-social-slide:hover {
    transform: translateY(-5px);
}

.as-seen-social-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.as-seen-social-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Video Wrapper */
.as-seen-social-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.5%; /* 9:16 aspect ratio için */
    overflow: hidden;
    background: #000;
    border-radius: 10px;
}

.as-seen-social-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.as-seen-social-video-wrapper.video-loaded .as-seen-social-video {
    opacity: 1;
}

/* Video ve resim stilleri - reelUp örneğine göre */
.as-seen-social-video-wrapper .as-seen-social-video video,
.as-seen-social-video-wrapper .as-seen-social-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video genel stilleri */
video {
    max-width: 100%;
    height: auto;
}

/* Resim, video, svg genel stilleri */
img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
}

/* Box sizing */
[class*="as-seen-social"] {
    box-sizing: border-box !important;
}

/* Play Button */
.as-seen-social-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.as-seen-social-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.as-seen-social-play-button svg {
    width: 24px !important;
    height: 24px !important;
    color: #333 !important;
    margin-left: 2px;
    fill: #333 !important;
}

.as-seen-social-play-button.playing {
    opacity: 0;
    pointer-events: none;
}

/* Discount Badge */
.as-seen-social-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
}

/* Product Info Overlay */
.as-seen-social-product-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
    z-index: 100;
    padding: 40px 12px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.as-seen-social-product-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    border: 2px solid white;
}

.as-seen-social-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.as-seen-social-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.as-seen-social-product-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.as-seen-social-product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.as-seen-social-current-price {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.as-seen-social-regular-price {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1) !important;
}

/* Varsayılan okları gizle */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

/* Özel SVG oklar ekle */
.swiper-button-next::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.swiper-button-prev::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #0d553c;
    opacity: 1;
}

/* Empty State */
.as-seen-social-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
    font-size: 16px;
}

/* Popup Styles */
.as-seen-social-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.as-seen-social-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.as-seen-social-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Close Button - Popup dışında sağ üstte */
.as-seen-social-popup-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.as-seen-social-popup-close:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.1) !important;
}

.as-seen-social-popup-close svg {
    fill: #fff !important;
    width: 20px !important;
    height: 20px !important;
    stroke: none !important;
    display: block !important;
    color: #fff !important;
}

/* Navigation Buttons */
.as-seen-social-popup-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.as-seen-social-popup-nav:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.as-seen-social-popup-prev {
    left: 20px !important;
}

.as-seen-social-popup-next {
    right: 20px !important;
}

.as-seen-social-popup-nav svg {
    fill: none !important;
    stroke: #fff !important;
    stroke-width: 2 !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    color: #fff !important;
}

/* Popup Content */
.as-seen-social-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.as-seen-social-popup-body {
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 80vh;
}

.as-seen-social-popup-video-section {
    flex: 1;
    position: relative;
    background: #000;
    min-height: 0;
}

.as-seen-social-popup-product-section {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

/* Video Section */
.as-seen-social-popup-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.as-seen-social-popup-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Controls */
.as-seen-social-popup-video-controls {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 15px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
}

.as-seen-social-popup-video-play,
.as-seen-social-popup-video-mute {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
    position: relative !important;
}

.as-seen-social-popup-video-play:hover,
.as-seen-social-popup-video-mute:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) !important;
}

.as-seen-social-popup-video-play:hover::after,
.as-seen-social-popup-video-mute:hover::after {
    content: attr(title) !important;
    position: absolute !important;
    bottom: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    z-index: 1000 !important;
}

.as-seen-social-popup-video-play svg,
.as-seen-social-popup-video-mute svg {
    fill: #fff !important;
    stroke: #fff !important;
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    color: #fff !important;
}

.as-seen-social-popup-video-progress {
    flex: 1;
    margin: 0 15px;
}

.as-seen-social-popup-video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

.as-seen-social-popup-video-progress-bar:hover {
    height: 6px;
}

.as-seen-social-popup-video-progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.as-seen-social-popup-video-progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.as-seen-social-popup-video-progress-bar:hover .as-seen-social-popup-video-progress-fill::after {
    opacity: 1;
}

.as-seen-social-popup-video-time {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    font-family: monospace;
}

/* Product Section */
.as-seen-social-popup-product-gallery {
    margin-bottom: 25px;
}

.as-seen-social-popup-product-main-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.as-seen-social-popup-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.as-seen-social-popup-product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.as-seen-social-popup-product-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.as-seen-social-popup-product-thumbnail.active {
    border-color: #007cba;
}

.as-seen-social-popup-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.as-seen-social-popup-product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.as-seen-social-popup-product-price {
    margin-bottom: 20px;
}

.as-seen-social-popup-product-current-price {
    font-size: 20px;
    font-weight: 600;
    color: #007cba;
    margin-right: 10px;
}

.as-seen-social-popup-product-regular-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.as-seen-social-popup-product-description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #007cba;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Product Variations */
.as-seen-social-popup-product-variations {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.as-seen-social-popup-variation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.as-seen-social-popup-variation-label {
    font-weight: 500;
    color: #333;
    min-width: 80px;
}

.as-seen-social-popup-variation-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.as-seen-social-popup-variation-option {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.as-seen-social-popup-variation-option:hover {
    border-color: #007cba;
}

.as-seen-social-popup-variation-option.selected {
    background: #007cba;
    color: #fff;
    border-color: #007cba;
}

/* Product Actions */
.as-seen-social-popup-product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.as-seen-social-popup-product-link {
    flex: 1;
    padding: 12px 20px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.as-seen-social-popup-product-link:hover {
    background: #e5e5e5;
    color: #333;
}

.as-seen-social-popup-add-to-cart {
    flex: 2 !important;
    padding: 12px 20px !important;
    background: #007cba !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    min-height: 44px !important;
}

.as-seen-social-popup-add-to-cart:hover {
    background: #005a8b !important;
    transform: translateY(-1px) !important;
}

.as-seen-social-popup-add-to-cart svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    flex-shrink: 0 !important;
}

/* Related Products */
.as-seen-social-popup-related-products {
    margin-top: auto;
    flex-shrink: 0;
}

.as-seen-social-popup-related-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.as-seen-social-popup-related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.as-seen-social-popup-related-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
}

.as-seen-social-popup-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #007cba;
}

.as-seen-social-popup-related-image {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.as-seen-social-popup-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.as-seen-social-popup-related-title {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin-bottom: 4px;
}

.as-seen-social-popup-related-price {
    font-size: 11px;
    color: #007cba;
    font-weight: 600;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .as-seen-social-popup-content {
        width: 90%;
        max-height: 85vh;
    }
    
    .as-seen-social-popup-product-section {
        padding: 25px;
        max-height: 85vh;
    }
    
    .as-seen-social-popup-product-title {
        font-size: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .as-seen-social-popup-product-current-price {
        font-size: 18px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .as-seen-social-popup-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .as-seen-social-popup-body {
        flex-direction: column;
        max-height: 95vh;
    }
    
    .as-seen-social-popup-video-section {
        min-height: 250px;
        flex-shrink: 0;
    }
    
    .as-seen-social-popup-product-section {
        max-width: none;
        padding: 20px;
        max-height: none;
        overflow-y: visible;
        flex: 1;
    }
    
    .as-seen-social-popup-product-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .as-seen-social-popup-nav {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .as-seen-social-popup-close {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        top: 15px;
        right: 15px;
    }
    
    .as-seen-social-popup-close svg {
        width: 16px;
        height: 16px;
    }
    
    .as-seen-social-popup-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .as-seen-social-popup-prev {
        left: 15px;
    }
    
    .as-seen-social-popup-next {
        right: 15px;
    }
    
    .as-seen-social-popup-product-actions {
        flex-direction: column;
    }
    
    .as-seen-social-popup-video-controls {
        padding: 10px;
        gap: 10px;
    }
    
    .as-seen-social-popup-video-play,
    .as-seen-social-popup-video-mute {
        width: 35px;
        height: 35px;
    }
    
    .as-seen-social-popup-video-play svg,
    .as-seen-social-popup-video-mute svg {
        width: 14px;
        height: 14px;
    }
    
    .as-seen-social-popup-video-time {
        font-size: 11px;
        min-width: 70px;
    }
    
    .as-seen-social-popup-related-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
}

/* Loading States */
.as-seen-social-popup-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
}

.as-seen-social-popup-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Status indicators */
.status-active {
    color: #28a745;
    font-weight: 500;
}

.status-inactive {
    color: #dc3545;
    font-weight: 500;
}

/* Video placeholder */
.as-seen-social-video-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.as-seen-social-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 8px;
} 

/* Custom Scrollbar for Product Section */
.as-seen-social-popup-product-section::-webkit-scrollbar {
    width: 6px;
}

.as-seen-social-popup-product-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.as-seen-social-popup-product-section::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.as-seen-social-popup-product-section::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Firefox scrollbar */
.as-seen-social-popup-product-section {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Product Gallery */ 