/**
 * Frontend CSS for WooCommerce Shoppable Videos
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

.wc-sv-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 30px auto;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.wc-sv-carousel-wrapper * {
    box-sizing: border-box;
}

/* Horizontal Scroll Container with Scroll Snap */
.wc-sv-carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 25px 5px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.wc-sv-carousel-container::-webkit-scrollbar {
    display: none;
}
.wc-sv-carousel-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Responsive Grid / Column Widths based on data-cols attribute */
.wc-sv-carousel-wrapper[data-cols="3"] .wc-sv-card { width: calc((100% - 40px) / 3); min-width: 200px; }
.wc-sv-carousel-wrapper[data-cols="4"] .wc-sv-card { width: calc((100% - 60px) / 4); min-width: 170px; }
.wc-sv-carousel-wrapper[data-cols="5"] .wc-sv-card { width: calc((100% - 80px) / 5); min-width: 140px; }
.wc-sv-carousel-wrapper[data-cols="6"] .wc-sv-card { width: calc((100% - 100px) / 6); min-width: 120px; }
.wc-sv-carousel-wrapper[data-cols="7"] .wc-sv-card { width: calc((100% - 120px) / 7); min-width: 100px; }
.wc-sv-carousel-wrapper[data-cols="8"] .wc-sv-card { width: calc((100% - 140px) / 8); min-width: 90px; }

/* 9:16 Video Card Design */
.wc-sv-card {
    position: relative !important;
    aspect-ratio: 9 / 16 !important;
    width: calc(var(--wc-sv-card-height-desktop, 320px) * 9 / 16) !important;
    height: var(--wc-sv-card-height-desktop, 320px) !important;
    max-height: var(--wc-sv-card-height-desktop, 320px) !important;
    background: #111;
    border-radius: 16px;
    overflow: hidden !important;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    cursor: pointer;
}

@supports (aspect-ratio: 9/16) {
    .wc-sv-card {
        height: auto; /* Allow aspect-ratio to compute height up to max-height limit */
    }
}

.wc-sv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Video Containers */
.wc-sv-video-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.wc-sv-video-element,
.wc-sv-youtube-wrapper {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Let clicks pass to the modal trigger overlay */
}

/* YouTube Iframe wrapper and styling */
.wc-sv-youtube-wrapper {
    position: relative;
    background: #000;
}

.wc-sv-youtube-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.wc-sv-youtube-iframe-container {
    width: 100%;
    height: 100%;
    transform: scale(1.05); /* Slight zoom to hide controls/borders without cropping video content */
    transform-origin: center;
}

.wc-sv-youtube-iframe-container iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Overlays - Badge / Tag */
.wc-sv-badge-pill {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--wc-sv-primary, #ff6f61);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
    pointer-events: none;
}

/* Overlays - Views Count */
.wc-sv-views-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 5;
    pointer-events: none;
}

.wc-sv-eye-icon {
    font-size: 13px;
}

/* Mute Toggle Button */
.wc-sv-mute-toggle {
    display: none !important;
}

/* Modal Trigger Hotspot Overlay */
.wc-sv-modal-trigger-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 145px); /* Triggers modal on upper 70% of card click */
    z-index: 4;
}

/* Bottom Product Drawer Styling */
.wc-sv-product-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 6;
}

.wc-sv-product-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Circular Product Thumbnail */
.wc-sv-product-img-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.wc-sv-product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title & Price */
.wc-sv-product-details-text {
    flex-grow: 1;
    overflow: hidden;
}

.wc-sv-product-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 3px 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.woocommerce-price-suffix,
.woocommerce-price-suffix * {
    display: none !important;
}

.wc-sv-product-price,
.wc-sv-product-price * {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.wc-sv-product-price {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.wc-sv-product-price del,
.wc-sv-product-price del .amount {
    color: rgba(255, 255, 255, 0.45) !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    margin-left: 2px !important;
    text-decoration: line-through !important;
}

.wc-sv-product-price ins,
.wc-sv-product-price ins .amount {
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Add to Cart Bar layout */
.wc-sv-cart-action-bar {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wc-sv-add-to-cart-btn {
    flex-grow: 1;
    background: var(--wc-sv-btn-bg, #ff6f61);
    color: var(--wc-sv-btn-text, #ffffff);
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease-in-out, opacity 0.2s;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-sv-add-to-cart-btn:hover {
    opacity: 1 !important;
}

.wc-sv-cart-dropdown-arrow {
    background: var(--wc-sv-btn-bg, #ff6f61);
    color: var(--wc-sv-btn-text, #ffffff);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    width: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.wc-sv-cart-dropdown-arrow:hover {
    opacity: 1 !important;
}

.wc-sv-arrow-down-icon {
    font-size: 8px;
    transform: scale(0.9);
}

/* Navigation Buttons for Carousel */
.wc-sv-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.wc-sv-nav-btn:hover {
    background: var(--wc-sv-primary, #ff6f61);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.wc-sv-prev { left: -15px; }
.wc-sv-next { right: -15px; }

/* Hide arrows if scroll limits reached */
.wc-sv-nav-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ==========================================================================
   Slide-up Variation Selector Drawer (Fallback / Immersive Mode Drawer)
   ========================================================================== */
.wc-sv-quick-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    animation: fadeIn 0.25s ease-out;
}

.wc-sv-quick-drawer-body {
    width: 100%;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 24px;
    max-height: 80%;
    overflow-y: auto;
    font-family: 'Outfit', sans-serif;
    transform: translateY(0);
    animation: slideUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wc-sv-quick-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f1;
    padding-bottom: 12px;
}

.wc-sv-quick-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3338;
}

.wc-sv-quick-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #a7aaad;
    line-height: 1;
}

.wc-sv-quick-drawer-close:hover {
    color: #333;
}

/* Form Options formatting */
.wc-sv-options-list {
    margin-bottom: 20px;
}

.wc-sv-option-row {
    margin-bottom: 15px;
}

.wc-sv-option-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #646970;
}

.wc-sv-attr-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d8dade;
    border-radius: 8px;
    background-color: #f9f9fb;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    color: #2c3338;
}

.wc-sv-attr-select:focus {
    border-color: var(--wc-sv-primary, #ff6f61);
    background-color: #fff;
}

/* Variation Pricing Box */
.wc-sv-variation-price-box {
    margin: 15px 0;
    padding: 12px;
    background: #f7f9fc;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-align: center;
    border: 1px dashed #d8dade;
}

.wc-sv-variation-price-box del {
    color: #777;
    font-weight: 400;
    font-size: 13px;
    margin-right: 5px;
}

.wc-sv-variation-price-box ins {
    text-decoration: none;
}

.wc-sv-confirm-add-btn {
    width: 100%;
    background: var(--wc-sv-btn-bg, #ff6f61);
    color: var(--wc-sv-btn-text, #ffffff);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.wc-sv-confirm-add-btn:hover {
    opacity: 0.95;
}

/* Add to cart loading state animation */
.wc-sv-btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.wc-sv-btn-loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    margin-left: 8px;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

/* Simple Product view fallback styling */
.wc-sv-simple-prod-info {
    text-align: center;
}
.wc-sv-simple-prod-info p {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}
.wc-sv-simple-price-box {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}
.wc-sv-simple-price-box del {
    color: #888;
    font-weight: 400;
    font-size: 14px;
    margin-right: 6px;
}
.wc-sv-simple-price-box ins {
    text-decoration: none;
}

/* ==========================================================================
   Immersive Fullscreen Reels Modal
   ========================================================================== */
.wc-sv-reels-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    animation: fadeIn 0.25s ease-out;
}

.wc-sv-reels-modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 860px;
    height: 85%;
    max-height: 750px;
    background: #111111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc-sv-reels-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 100;
    transition: transform 0.2s;
}

.wc-sv-reels-close-btn:hover {
    transform: rotate(90deg);
}

.wc-sv-reels-content-box {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Left / Center: Video pane */
.wc-sv-reels-video-pane {
    position: relative;
    width: 55%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.wc-sv-reels-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 420px; /* Force 9:16 aspect bound in pane */
    aspect-ratio: 9 / 16;
}

.wc-sv-reels-video-container video,
.wc-sv-reels-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-sv-reels-video-container iframe {
    transform: scale(1.05); /* Hide borders slightly without cropping video content */
}

/* Mobile Play overlays */
.wc-sv-reels-pane-mute {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
}

.wc-sv-reels-pane-mute::before {
    content: '🔇';
    font-size: 13px;
}
.wc-sv-reels-pane-mute.unmuted::before {
    content: '🔊';
}

/* Right / Bottom: Checkout panel */
.wc-sv-reels-product-pane {
    width: 45%;
    height: 100%;
    background: #18181b;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    overflow-y: auto;
}

.wc-sv-reels-product-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.wc-sv-reels-product-thumbnail-box {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.wc-sv-reels-product-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-sv-reels-product-info-box {
    flex-grow: 1;
}

.wc-sv-reels-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #fff;
    line-height: 1.3;
}

.wc-sv-reels-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--wc-sv-primary, #ff6f61);
}

.wc-sv-reels-price del {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 400;
    margin-left: 6px;
}
.wc-sv-reels-price ins {
    text-decoration: none;
    color: var(--wc-sv-primary, #ff6f61);
}

.wc-sv-reels-product-description {
    font-size: 13px;
    line-height: 1.5;
    color: #a1a1aa;
    margin-bottom: 25px;
}

/* Modal Inner Navigation Buttons */
.wc-sv-reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.wc-sv-reels-nav:hover {
    background: var(--wc-sv-primary, #ff6f61);
    transform: translateY(-50%) scale(1.08);
}

.wc-sv-reels-prev { left: 10px; }
.wc-sv-reels-next { right: 10px; }

/* Keep modal options labels styled nicely in dark mode */
.wc-sv-reels-product-pane .wc-sv-option-row label {
    color: #a1a1aa;
}

.wc-sv-reels-product-pane .wc-sv-attr-select {
    background-color: #27272a;
    border-color: #3f3f46;
    color: #fff;
}

.wc-sv-reels-product-pane .wc-sv-attr-select:focus {
    border-color: var(--wc-sv-primary, #ff6f61);
}

.wc-sv-reels-product-pane .wc-sv-variation-price-box {
    background: #27272a;
    border-color: #3f3f46;
    color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Card-localized Select Option overlay */
.wc-sv-card-options-overlay {
    position: absolute !important;
    top: auto !important;
    bottom: 45px !important; /* Move it up to sit exactly on top of Add to Cart bar */
    left: 8px !important;
    width: calc(100% - 16px) !important;
    height: auto !important;
    max-height: 80% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 15;
    display: flex !important;
    flex-direction: column;
    padding: 12px;
    border-radius: 12px !important; /* Fully rounded corners for a premium floating card look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(100%);
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.wc-sv-card-options-overlay.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.wc-sv-card-options-header {
    display: none !important; /* Remove "Select Option" title and close sign */
}

.wc-sv-card-options-body {
    flex-grow: 1;
    overflow-y: auto;
}

.wc-sv-card-options-body::-webkit-scrollbar {
    width: 4px;
}
.wc-sv-card-options-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* Form Styles for Card-Localized Selector */
.wc-sv-card-options-overlay .wc-sv-option-row label {
    color: #333333 !important;
    font-size: 11px;
    margin-bottom: 4px;
    font-weight: 600;
}

.wc-sv-card-options-overlay .wc-sv-attr-select {
    padding: 8px 10px;
    font-size: 13px;
    background-color: #f7f9fc !important;
    border: 1px solid #d8dade !important;
    color: #333333 !important;
    border-radius: 6px;
}

.wc-sv-card-options-overlay .wc-sv-confirm-add-btn {
    display: none !important;
}

.wc-sv-card-options-overlay .wc-sv-variation-price-box {
    padding: 8px;
    font-size: 14px;
    background: #f7f9fc !important;
    border: 1px dashed #d8dade !important;
    color: #333333 !important;
    margin: 10px 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .wc-sv-carousel-container {
        gap: 15px;
    }
    
    .wc-sv-carousel-wrapper .wc-sv-card {
        width: calc(var(--wc-sv-card-height-mobile, 280px) * 9 / 16) !important;
        height: var(--wc-sv-card-height-mobile, 280px) !important;
        max-height: var(--wc-sv-card-height-mobile, 280px) !important;
    }
    
    .wc-sv-nav-btn {
        display: none; /* Hide slide arrows on mobile, rely on native touch swipe */
    }

    /* Reels modal layout transformation */
    .wc-sv-reels-modal-wrapper {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        border: none;
    }

    .wc-sv-reels-content-box {
        flex-direction: column;
    }

    .wc-sv-reels-video-pane {
        width: 100%;
        height: 60%; /* Top 60% is video */
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .wc-sv-reels-video-container {
        max-width: 100%;
    }

    .wc-sv-reels-product-pane {
        width: 100%;
        height: 40%; /* Bottom 40% is checkout drawer */
        padding: 20px;
    }
    
    .wc-sv-reels-product-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .wc-sv-reels-product-description {
        display: none; /* Hide description on mobile to save space */
    }

    .wc-sv-reels-nav {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .wc-sv-reels-prev { left: 5px; }
    .wc-sv-reels-next { right: 5px; }

    /* Compact elements inside mobile card */
    .wc-sv-product-drawer {
        padding: 8px !important;
        gap: 6px !important;
    }
    .wc-sv-product-img-wrapper {
        width: 30px !important;
        height: 30px !important;
    }
    .wc-sv-product-title {
        font-size: 11px !important;
    }
    .wc-sv-product-price {
        font-size: 11px !important;
    }
    .wc-sv-product-price del {
        font-size: 9px !important;
    }
    .wc-sv-add-to-cart-btn {
        height: 30px !important;
        padding: 5px 10px !important;
        font-size: 11px !important;
    }
    .wc-sv-cart-dropdown-arrow {
        width: 30px !important;
    }
    .wc-sv-mute-toggle {
        bottom: 105px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
    }
    .wc-sv-badge-pill {
        top: 8px !important;
        left: 8px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
    }
    .wc-sv-views-pill {
        top: 8px !important;
        right: 8px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
    }
    .wc-sv-modal-trigger-overlay {
        height: calc(100% - 90px) !important;
    }
}
