/**
 * Checkout Drawer - Side Tab Reviews
 * Plugin: checkout-local-reviews
 */

/* ================================
   SIDE TAB
   ================================ */

.clr-drawer-tab {
    position: fixed !important;
    right: 0 !important;
    top: 30% !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 99998;
    background: #2B513B !important;
    color: #ffffff !important;
    border: none;
    border-radius: 8px 0 0 8px !important;
    padding: 18px 8px !important;
    cursor: grab;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) translateX(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.2s ease;
    font-family: inherit;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    float: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    box-sizing: border-box !important;
}

.clr-drawer-tab.clr-tab-visible {
    transform: translateY(-50%) translateX(0);
}

.clr-drawer-tab::after {
    content: '';
    position: absolute;
    top: 0;
    right: -3px;
    width: 3px;
    height: 100%;
    background: #2B513B;
}

.clr-drawer-tab:hover {
    transform: translateY(-50%) translateX(-3px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
}

.clr-drawer-tab.clr-tab-hidden {
    transform: translateY(-50%) translateX(110%);
    pointer-events: none;
}

/* Dragged position: remove vertical centering offset */
.clr-drawer-tab.clr-tab-dragged {
    transform: translateX(110%);
}

.clr-drawer-tab.clr-tab-dragged.clr-tab-visible {
    transform: translateX(0);
}

.clr-drawer-tab.clr-tab-dragged:hover {
    transform: translateX(-3px);
}

.clr-drawer-tab.clr-tab-dragged.clr-tab-hidden {
    transform: translateX(110%);
}

.clr-tab-icon {
    font-size: 18px;
    line-height: 1;
    color: var(--clr-stars-color, #fbbf24);
}

.clr-tab-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-top: 2px;
    color: #ffffff !important;
}

/* Subtle star glow after tab appears */
@keyframes clr-star-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}

.clr-drawer-tab.clr-tab-visible .clr-tab-icon {
    animation: clr-star-glow 2s ease-in-out 1.5s 3;
}

/* ================================
   OVERLAY
   ================================ */

.clr-drawer-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.clr-drawer-overlay.clr-open {
    opacity: 1;
    visibility: visible;
}

/* ================================
   DRAWER PANEL
   ================================ */

.clr-drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 520px;
    max-width: 100%;
    z-index: 100000;
    background: rgba(235, 235, 235, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.clr-drawer-panel.clr-open {
    transform: translateX(0);
}

/* ================================
   HEADER
   ================================ */

.clr-drawer-header {
    flex-shrink: 0;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clr-drawer-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clr-drawer-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    text-align: center;
}

.clr-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none;
    border-radius: 8px;
    color: #333;
    font-size: 36px !important;
    cursor: pointer;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    font-family: inherit;
}

.clr-drawer-close:hover {
    opacity: 0.7;
    background: none !important;
    color: #111;
}

.clr-drawer-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 20px;
    color: #555;
}

.clr-drawer-stats-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 20px;
    line-height: 1;
}

.clr-drawer-stats-stars .clr-star-filled {
    color: var(--clr-stars-color, #fbbf24);
}

.clr-drawer-stats-stars .clr-star-empty {
    color: #4b5563;
}

.clr-drawer-stats-avg {
    font-weight: 700;
    color: #000000;
    font-size: 20px;
    line-height: 1;
}

.clr-drawer-stats-count {
    color: #000000;
    font-size: 16px;
    line-height: 1;
    align-self: center;
}

/* ================================
   BODY (scrollable)
   ================================ */

.clr-drawer-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #374151 transparent;
}

.clr-drawer-body::-webkit-scrollbar {
    width: 6px;
}

.clr-drawer-body::-webkit-scrollbar-track {
    background: transparent;
}

.clr-drawer-body::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 3px;
}

/* ================================
   GRID (2 columns)
   ================================ */

.clr-drawer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

/* ================================
   REVIEW CARD (inside drawer)
   ================================ */

.clr-drawer-card {
    background: var(--clr-card-bg, #1f2937);
    color: var(--clr-card-text, #ffffff);
    border: var(--clr-card-border-width, 0px) solid var(--clr-card-border-color, #374151);
    border-radius: var(--clr-card-radius, 8px);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(12px);
    animation: clr-card-in 0.3s ease forwards;
    overflow: hidden;
}

@keyframes clr-card-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger entrance for first batch */
.clr-drawer-card:nth-child(1) { animation-delay: 0s; }
.clr-drawer-card:nth-child(2) { animation-delay: 0.04s; }
.clr-drawer-card:nth-child(3) { animation-delay: 0.06s; }
.clr-drawer-card:nth-child(4) { animation-delay: 0.1s; }
.clr-drawer-card:nth-child(5) { animation-delay: 0.14s; }
.clr-drawer-card:nth-child(6) { animation-delay: 0.18s; }

.clr-drawer-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 0;
}

.clr-drawer-card-author {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.clr-drawer-card-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    vertical-align: middle;
}

.clr-drawer-card-verified svg {
    display: block;
}

.clr-drawer-card-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.clr-drawer-card-stars {
    display: inline-flex;
    gap: 1px;
    font-size: 12px;
    line-height: 1;
}

.clr-drawer-card-stars .clr-star-filled {
    color: var(--clr-stars-color, #fbbf24);
}

.clr-drawer-card-stars .clr-star-empty {
    color: #4b5563;
}

.clr-drawer-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--clr-meta-color, #9ca3af);
    flex-wrap: wrap;
}

.clr-drawer-card-meta span:not(:last-child)::after {
    content: "\00b7";
    margin-left: 6px;
}

.clr-drawer-card-flag {
    width: 14px;
    height: 10px;
    border-radius: 1px;
    vertical-align: middle;
    margin-right: 3px;
}

/* Product link in global drawer mode */
/* Global mode - 2-line text clamp (no View more) */
.clr-global-clamp {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product info card (Ryviu-style) - used in mini cards and lightbox */
.clr-drawer-product-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    margin-top: 8px;
    background: #f6f6f6 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    box-sizing: border-box !important;
    min-height: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.clr-drawer-product-info:hover {
    background: #ebebeb !important;
}

.clr-drawer-product-info-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.clr-drawer-product-thumb {
    width: 42px !important;
    height: 28px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.clr-drawer-product-name {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #333 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal !important;
    line-height: 1.3 !important;
}

.clr-drawer-card-body {
    flex: 1;
    padding: 4px 12px 0 12px;
}

.clr-drawer-card-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px;
    padding: 0;
    line-height: 1.4;
    color: inherit;
}

.clr-drawer-card-text {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--clr-card-text, #ffffff);
    opacity: 0.85;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.clr-drawer-card-text.clr-expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.clr-drawer-card-toggle {
    background: none;
    border: none;
    color: var(--clr-meta-color, #9ca3af);
    font-size: 11px;
    padding: 0 !important;
    margin: 4px 0 0;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    display: block;
    text-align: center;
    width: 100%;
}

.clr-drawer-card-toggle:hover {
    opacity: 0.7;
}

/* Images inside card - hero position */
.clr-drawer-card-images {
    display: flex;
    gap: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.clr-drawer-card-img {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
    position: relative;
}

.clr-drawer-card-img:hover {
    border-color: var(--clr-stars-color, #fbbf24);
}

.clr-drawer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================================
   INFINITE SCROLL SENTINEL
   ================================ */

.clr-drawer-scroll-sentinel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0 8px;
}

.clr-drawer-spinner {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: #d1d5db;
    border-radius: 50%;
    animation: clrSpin 0.6s linear infinite;
}

@keyframes clrSpin {
    to { transform: rotate(360deg); }
}

/* ================================
   LIGHTBOX
   ================================ */

.clr-drawer-lightbox {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100001;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.clr-drawer-lightbox.clr-active {
    display: flex;
}

.clr-drawer-lb-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.clr-drawer-lb-image-wrap {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.clr-drawer-lb-img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    display: block;
    transition: opacity 0.15s ease;
}

/* Desktop: contain portrait images instead of stretching full width */
@media (min-width: 900px) {
    .clr-drawer-lb-content {
        max-width: 480px;
        margin: 0 auto;
    }

    .clr-drawer-lb-img {
        width: auto;
        max-width: 100%;
        max-height: 65vh;
        object-fit: contain;
        margin: 0 auto;
    }
}

.clr-drawer-lb-img.clr-lb-fade {
    opacity: 0;
}

/* Fade the holder (img + watermark) together */
.clr-drawer-lb-img-holder {
    transition: opacity 0.15s ease;
}

.clr-drawer-lb-img-holder.clr-lb-fade {
    opacity: 0;
}

.clr-drawer-lb-close {
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    left: auto !important;
    bottom: auto !important;
    display: block !important;
    color: #fff !important;
    font-size: 44px !important;
    cursor: pointer;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: unset !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    opacity: 0.85;
    transition: opacity 0.15s;
    z-index: 100002 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    text-align: right !important;
    border-radius: 0 !important;
    gap: 0 !important;
    vertical-align: baseline !important;
    outline: none !important;
}

.clr-drawer-lb-close:hover {
    opacity: 1;
    background: none !important;
    color: #fff !important;
}

.clr-drawer-lb-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: block !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 52px !important;
    cursor: pointer;
    background: none !important;
    border: none !important;
    padding: 12px 16px !important;
    border-radius: 0 !important;
    transition: color 0.15s;
    line-height: 1 !important;
    z-index: 2 !important;
    min-height: unset !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-shadow: none !important;
    text-align: center !important;
    gap: 0 !important;
    vertical-align: baseline !important;
    outline: none !important;
}

.clr-drawer-lb-nav:hover {
    color: #fff !important;
    background: none !important;
}

.clr-drawer-lb-prev {
    left: 8px !important;
    right: auto !important;
}

.clr-drawer-lb-next {
    right: 8px !important;
    left: auto !important;
}

.clr-drawer-lb-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
    padding: 6px 0;
}

/* Lightbox - Review card below image */
.clr-drawer-lb-review {
    width: 100%;
    padding: 0 16px 16px;
    transition: opacity 0.15s ease;
}

.clr-drawer-lb-review.clr-lb-fade {
    opacity: 0;
}

.clr-lb-review-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    width: 100%;
    height: 137px;
    overflow: hidden;
    box-sizing: border-box;
}

.clr-lb-review-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.clr-lb-review-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clr-lb-verified-label {
    color: #10b981;
    font-size: 12px;
    font-weight: 500;
    margin-left: 4px;
}

.clr-lb-review-stars {
    font-size: 16px;
    margin-left: auto;
}

.clr-lb-review-stars .clr-star-filled {
    color: var(--clr-stars-color, #fbbf24);
}

.clr-lb-review-stars .clr-star-empty {
    color: rgba(255, 255, 255, 0.3);
}

.clr-lb-review-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clr-lb-review-title {
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0 4px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clr-lb-review-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product link between image and review card in lightbox */
.clr-drawer-lb-product-wrap {
    padding: 0 16px 8px;
    width: 100%;
    box-sizing: border-box;
}

/* Override product info card styles inside lightbox for dark theme */
.clr-drawer-lb-product-wrap .clr-drawer-product-info {
    margin-top: 0 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
}

.clr-drawer-lb-product-wrap .clr-drawer-product-info:hover {
    background: rgba(255, 255, 255, 0.14) !important;
}

.clr-drawer-lb-product-wrap .clr-drawer-product-name {
    color: #fff !important;
    font-size: 13px !important;
}

.clr-drawer-lb-product-wrap .clr-drawer-product-thumb {
    width: 42px !important;
    height: 28px !important;
    border-radius: 6px !important;
}

/* ================================
   DESKTOP MODAL MODE
   ================================ */

.clr-drawer-panel.clr-desktop-mode {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 1100px;
    max-width: 90vw;
    max-height: 85vh;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                visibility 0.3s ease;
    border-radius: 16px;
    border-left: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.clr-drawer-panel.clr-desktop-mode.clr-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Desktop modal: 4-column grid */
.clr-desktop-mode .clr-drawer-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Desktop modal: ensure body scrolls within max-height */
.clr-desktop-mode .clr-drawer-body {
    min-height: 0;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 600px) {
    .clr-drawer-panel {
        width: 100%;
    }

    .clr-drawer-header {
        padding: 16px 16px 12px;
    }

    .clr-drawer-body {
        padding: 16px;
    }

    .clr-drawer-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .clr-drawer-tab {
        top: auto !important;
        bottom: 37% !important;
        transform: translateX(110%);
    }

    .clr-drawer-tab.clr-tab-visible {
        transform: translateX(0);
    }

    .clr-drawer-tab:hover {
        transform: translateX(0);
    }

    .clr-drawer-tab.clr-tab-hidden {
        transform: translateX(110%);
    }

    .clr-drawer-lb-prev {
        left: 4px;
    }

    .clr-drawer-lb-next {
        right: 4px;
    }

    .clr-drawer-lb-nav {
        font-size: 38px;
        padding: 8px 10px !important;
    }

    .clr-drawer-lb-close {
        right: 10px;
        top: 8px;
    }

    .clr-drawer-lb-review {
        padding: 0 10px 10px;
    }

    .clr-drawer-lb-product-wrap {
        padding: 6px 10px 10px;
    }
}

/* ================================
   PRINT
   ================================ */

/* ================================
   IMAGE PROTECTION & WATERMARK
   ================================ */

/* Prevent save / long-press on images */
.clr-drawer-card-img img,
.clr-drawer-lb-img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Watermark overlay on card images */
.clr-drawer-card-img::after {
    content: '';
    position: absolute;
    inset: -50%;
    background-image: var(--clr-watermark-url, none);
    background-size: 120px auto;
    background-repeat: space;
    opacity: 0.18;
    pointer-events: none;
    z-index: 2;
    transform: rotate(-30deg);
}

/* Lightbox: watermark only on image, not nav buttons */
.clr-drawer-lb-img-holder {
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.clr-drawer-lb-img-holder::after {
    content: '';
    position: absolute;
    inset: -50%;
    background-image: var(--clr-watermark-url, none);
    background-size: 140px auto;
    background-repeat: space;
    opacity: 0.18;
    pointer-events: none;
    z-index: 2;
    transform: rotate(-30deg);
}

/* ================================
   PRINT
   ================================ */

@media print {
    .clr-drawer-tab,
    .clr-drawer-overlay,
    .clr-drawer-panel,
    .clr-drawer-lightbox {
        display: none !important;
    }
}

/* ================================
   VIDEO CARD (inside drawer)
   ================================ */

.clr-drawer-video-card {
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--clr-card-bg, #1f2937), var(--clr-card-bg, #1f2937)), linear-gradient(135deg, #10b981, #065f46);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.clr-drawer-video-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    background: #000;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.clr-drawer-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Play button overlay on video card */
.clr-drawer-video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease;
}
.clr-drawer-video-play:hover {
    background: rgba(0, 0, 0, 0.4);
}
.clr-drawer-video-play svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}
.clr-drawer-video-play:hover svg {
    transform: scale(1.1);
}

/* Video lightbox (expanded mode) */
.clr-drawer-lb-video-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.clr-drawer-lb-video-wrap video {
    display: block;
    width: 100%;
    max-height: 70vh;
    outline: none;
}


