.reelshv-frontend-player {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    line-height: 0;
    /* Container queries: let child elements scale with player width */
    container-type: inline-size;
    container-name: player;
}

.reelshv-preview-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
}

.reelshv-preview-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* =============================================
   Custom Fullscreen Overlay
   ============================================= */
.reelshv-fullscreen-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    animation: reelshvOverlayFadeIn 0.25s ease;
}

.reelshv-fullscreen-overlay.is-active {
    display: flex;
}

@keyframes reelshvOverlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* The video inside the overlay â€“ portrait, contained, no distortion */
.reelshv-fullscreen-overlay .reelshv-fullscreen-video {
    display: block;
    max-height: 90vh;
    max-width: 100vw;
    /* Maintain 9:16 â€“ let the browser pick the right dimension */
    width: auto;
    height: 90vh;
    object-fit: contain;
    background: #000;
    /* Match inline player card border */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Close button */
.reelshv-fullscreen-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1000000;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.reelshv-fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
}

.reelshv-fullscreen-close svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* Fullscreen progress bar (same look as inline bar) */
.reelshv-fullscreen-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 1000000;
    transition: height 0.2s ease;
}

.reelshv-fullscreen-progress-container:hover {
    height: 8px;
}

.reelshv-fullscreen-progress-container.is-dragging {
    height: 8px;
}

.reelshv-fullscreen-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Fullscreen side action buttons (mute + share) */
.reelshv-fullscreen-actions {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000000;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reelshv-fullscreen-overlay.is-active:hover .reelshv-fullscreen-actions,
.reelshv-fullscreen-actions:focus-within {
    opacity: 1;
}

.reelshv-fullscreen-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.reelshv-fullscreen-action-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
}

.reelshv-fullscreen-action-btn .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

/* CTA overlay inside fullscreen */
.reelshv-fullscreen-overlay .reelshv-cta-overlay {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 1000001;
}

/* Sidebar & Buttons
   â€“ All sizes use cqi (1cqi = 1% of the player's inline/width).
   â€“ Buttons scale naturally as the player grows/shrinks. */
.reelshv-preview-actions-sidebar {
    position: absolute;
    right: 4cqi;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3cqi;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reelshv-preview-wrapper:hover .reelshv-preview-actions-sidebar {
    opacity: 1;
    pointer-events: auto;
}

.reelshv-preview-share-btn,
.reelshv-preview-mute-btn,
.reelshv-preview-fullscreen-btn {
    width: 10cqi;
    height: 10cqi;
    min-width: 28px;
    min-height: 28px;
    max-width: 48px;
    max-height: 48px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;

    /* Hardware-accelerated transitions */
    transition: 
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.reelshv-preview-share-btn:hover,
.reelshv-preview-mute-btn:hover,
.reelshv-preview-fullscreen-btn:hover {
    transform: scale(1.1) translateZ(0);
    background: rgba(0, 0, 0, 0.4);
}

.reelshv-preview-share-btn:active,
.reelshv-preview-mute-btn:active,
.reelshv-preview-fullscreen-btn:active {
    transform: scale(0.95) translateZ(0);
    transition-duration: 0.1s;
}

.reelshv-preview-share-btn .dashicons,
.reelshv-preview-mute-btn .dashicons,
.reelshv-preview-fullscreen-btn .dashicons {
    /* Icon scales: ~6% of player width, clamped for readability */
    font-size: clamp(14px, 6cqi, 26px);
    width: clamp(14px, 6cqi, 26px);
    height: clamp(14px, 6cqi, 26px);
}

/* Progress Bar â€” height scales with player width */
.reelshv-reel-progress-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(3px, 1.2cqi, 5px);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 110;
    opacity: 0;
    transition: all 0.3s ease;
}

.reelshv-preview-wrapper:hover .reelshv-reel-progress-container,
.reelshv-reel-progress-container.is-dragging {
    height: clamp(5px, 2.2cqi, 9px);
    opacity: 1;
}

.reelshv-reel-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Success State for Share */
.reelshv-preview-share-btn.success .dashicons {
    color: #46b450;
}

/* No Video State */
.reelshv-no-video-selected {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #888;
    min-height: 500px;
    background: #111;
}

.reelshv-no-video-selected .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Embed Container */
.reelshv-embed-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.reelshv-embed-container iframe {
    max-width: 100%;
    max-height: 100%;
    border: none;
}

/* CTA Overlay Styles
   bottom position scales with player height (â‰ˆ 16/9 of width) */
.reelshv-cta-overlay {
    position: absolute;
    /* bottom scales: ~11% of player width — matches 40px at 360px width */
    bottom: clamp(20px, 11cqi, 60px);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    pointer-events: none;
    padding: 0 20px;
    box-sizing: border-box;
}

.reelshv-cta-button {
    pointer-events: auto;
    /* 
     * Sizing tuned to match the admin preview (15px font, 14/28 padding) 
     * while remaining responsive to player container size.
     */
    font-size:   clamp(11px, 4.2cqi, 15px);
    line-height: 1.3;
    padding:     clamp(8px, 3.9cqi, 14px) clamp(16px, 7.8cqi, 28px);
    gap:         8px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    text-decoration: none;
    white-space: nowrap;
    
    /* Dedicated property transitions for buttery smoothness */
    transition: 
        background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Anti-aliasing boost for cleaner transforms */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Default: Elegant Pill (White) */
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Base hover matches Elegant Pill level */
.reelshv-cta-button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background-color: #f9f9f9;
    color: #2271b1 !important; /* Blue color on hover */
}

.reelshv-cta-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0); 
}

.reelshv-cta-button:hover .reelshv-cta-inner {
    transform: scale(1.05) translateZ(0);
}

/* Variant 2: Modern Outline (White) */
.reelshv-cta-button.reelshv-outline-white {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.reelshv-cta-button.reelshv-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #2271b1;
}

/* Variant 3: Impactful Dark */
.reelshv-cta-button.reelshv-solid-dark {
    color: #ffffff;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reelshv-cta-button.reelshv-solid-dark:hover {
    background-color: #333333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #2271b1;
}

.reelshv-cta-button:active {
    transform: scale(0.98);
}

/* Remove black border/focus outline on click */
.reelshv-cta-button:focus,
.reelshv-cta-button:active {
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Icon inside CTA — stays in sync with font-size */
.reelshv-cta-button .dashicons {
    font-size: clamp(12px, 4.5cqi, 16px);
    width:     clamp(12px, 4.5cqi, 16px);
    height:    clamp(12px, 4.5cqi, 16px);
    transition: none; /* Transition handled by .reelshv-cta-inner */
    flex-shrink: 0;
}

/* =====================================================================
   SHORTS GALLERY LAYOUTS
   Design principle (matches Swiper / Splide / Slick):
     â€¢ .reelshv-gallery-container  = the "stage" or "viewport"
       Its width & height are set by --gallery-width / --gallery-height.
     â€¢ .reelshv-gallery-inner      = the scrollable track inside
     â€¢ .reelshv-gallery-item       = each slide / card
       Items scale FROM the stage; they do NOT define the stage size.
   ===================================================================== */

/* â”€â”€ 1. BASE CONTAINER (the "stage") â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reelshv-gallery-container {
    /* Responsive: never wider than --gallery-width, never wider than the page */
    width: 100%;
    max-width: var(--gallery-width, 100%);
    margin: 30px auto;
    position: relative;
    box-sizing: border-box;
}

/* Reset player styles when inside a gallery */
.reelshv-gallery-container .reelshv-frontend-player {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: var(--gallery-radius, 12px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Always enforce 9:16 via CSS aspect-ratio on the wrapper */
.reelshv-gallery-container .reelshv-preview-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: unset;
}

.reelshv-gallery-container .reelshv-preview-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* â”€â”€ 2. GRID LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*
   Stage width  = full page width (no container height; videos are 9:16)
   Columns = --gallery-columns (e.g. 3)
   Video card width = --gallery-video-width (e.g. 280px); height auto from 9:16.
*/
.reelshv-layout-grid .reelshv-gallery-inner {
    display: grid;
    /* Default gap if not specified */
    --gallery-gap: 20px;
    
    /* 
       Responsive grid: 
       - repeat(auto-fill, ...) lets it wrap naturally.
       - minmax(min(100%, var(--gallery-video-width)), 1fr) ensures it never overflows narrow screens.
    */
    grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--gallery-video-width, 280px)), 1fr));
    gap: var(--gallery-gap);
    width: 100%;

    /* 
       Limit the max-width of the grid track so it doesn't show more columns 
       than the user-defined --gallery-columns on very wide screens.
    */
    max-width: calc((var(--gallery-video-width, 280px) * var(--gallery-columns, 3)) + (var(--gallery-gap) * (var(--gallery-columns, 3) - 1)));
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.reelshv-layout-grid .reelshv-gallery-item {
    /* Item width is now fluid within the grid's minmax range */
    width: 100%;
    min-width: 0;
}

/* Responsive refinements for Gallery Containers */
@media (max-width: 768px) {
    .reelshv-gallery-container {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .reelshv-gallery-container {
        margin: 15px auto;
        padding: 0 15px; /* Add breathing room on mobile */
    }
    .reelshv-layout-grid .reelshv-gallery-inner {
        --gallery-gap: 15px; /* Slightly tighter gap on small phones */
    }
}

/* Within the grid, player fills the fixed-width card; aspect-ratio drives height */
.reelshv-layout-grid .reelshv-frontend-player {
    width: 100%;
    max-width: 100%;
}

.reelshv-layout-grid .reelshv-preview-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: unset;
}


/* â”€â”€ 3. HORIZONTAL SCROLL LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Centre the horizontal reel */
.reelshv-layout-horizontal {
    display: flex;
    justify-content: center;
}

/* Give the container its dimensions based on ONE video */
.reelshv-gallery-container.reelshv-layout-horizontal {
    width: var(--gallery-video-width, 360px);
    max-width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: 90vh; /* keep it inside screen */
    overflow: hidden;
    border-radius: var(--gallery-radius, 16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.reelshv-layout-horizontal .reelshv-gallery-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 100%;
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reelshv-layout-horizontal .reelshv-gallery-inner::-webkit-scrollbar {
    display: none;
}

.reelshv-layout-horizontal .reelshv-gallery-item {
    flex: 0 0 100%; /* exactly 100% of the container width */
    min-width: 0;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Player fills the item fully */
.reelshv-layout-horizontal .reelshv-frontend-player {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Wrapper also fills fully */
.reelshv-layout-horizontal .reelshv-preview-wrapper {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset !important;
}

.reelshv-layout-horizontal .reelshv-preview-wrapper video {
    object-fit: cover;
}


/* â”€â”€ 4. VERTICAL SCROLL (REELS / TIKTOK) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Centre the narrow reel column */
.reelshv-layout-vertical {
    display: flex;
    justify-content: center;
}

/* The container IS the viewport window â€” give it dimensions based on video width */
.reelshv-gallery-container.reelshv-layout-vertical {
    width: var(--gallery-video-width, 360px);
    max-width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: 90vh;
    overflow: hidden;
    border-radius: var(--gallery-radius, 16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.reelshv-layout-vertical .reelshv-gallery-inner {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100%;
    /* flex: 1 fills the container reliably regardless of height: 100% chain */
    flex: 1;
    min-height: 0;              /* allow flex child to shrink below content */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
}

.reelshv-layout-vertical .reelshv-gallery-inner::-webkit-scrollbar {
    display: none;
}

/* Each slide = exactly one "page" of the viewport */
.reelshv-layout-vertical .reelshv-gallery-item {
    /* flex: 0 0 100% means 100% of the parent's main axis (height in column) */
    flex: 0 0 100%;
    min-height: 0;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Player fills the slide wall-to-wall */
.reelshv-layout-vertical .reelshv-frontend-player {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Wrapper: parent drives height; disable aspect-ratio, use object-fit */
.reelshv-layout-vertical .reelshv-preview-wrapper {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset !important;
}

.reelshv-layout-vertical .reelshv-preview-wrapper video {
    object-fit: cover;
}

/* â”€â”€ 5. NAVIGATION DOTS (SLIDERS) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reelshv-nav-dots {
    position: absolute;
    z-index: 1000;
    display: flex;
    gap: 8px;
    pointer-events: auto;
}

/* Horizontal Slider Navigation Dots */
.reelshv-layout-horizontal .reelshv-nav-dots {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
}

/* Vertical Slider Navigation Dots */
.reelshv-layout-vertical .reelshv-nav-dots {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

/* Dot Styles */
.reelshv-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.reelshv-nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.reelshv-nav-dot.active {
    background: #ffffff;
    transform: scale(1.4);
}

/* =============================================
   Share Modal (DearFlip Style)
   ============================================= */
.reelshv-share-modal {
    position: fixed;
    inset: 0;
    z-index: 2000000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: reelshvModalFadeIn 0.3s ease;
}

.reelshv-share-modal.is-active {
    display: flex;
}

.reelshv-share-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reelshv-share-modal.is-active .reelshv-share-modal-content {
    transform: translateY(0);
}

.reelshv-share-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
    padding: 10px;
}

.reelshv-share-modal-close:hover {
    color: #333;
}

.reelshv-share-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-family: inherit;
}

.reelshv-share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.reelshv-share-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.reelshv-share-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.reelshv-share-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Brand colors */
.reelshv-share-facebook { background: #1877f2; }
.reelshv-share-twitter { background: #000000; }
.reelshv-share-whatsapp { background: #25d366; }
.reelshv-share-email { background: #ea4335; }

.reelshv-share-link-box {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 4px;
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    margin-top: 10px;
}

.reelshv-share-url-input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    color: #555;
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    pointer-events: none;
}

.reelshv-share-copy-btn {
    background: #1a1a1a;
    color: #fff !important;
    border: none;
    padding: 10px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reelshv-share-copy-btn:hover {
    background: #333;
}

@keyframes reelshvModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
