/* استایل کاور */
.bb-customer-cover-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f2f5;
}

.bb-customer-cover {
    position: relative;
    width: 100%;
    height: 350px;
    background: #d1d8dd;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #65676b;
    background: #d1d8dd;
}

.cover-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.cover-placeholder span {
    font-size: 16px;
    font-weight: 500;
}

/* دکمه آپلود کاور */
.cover-upload-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.cover-upload-btn input[type="file"] {
    display: none;
}

.cover-upload-btn label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #050505;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cover-upload-btn label:hover {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.cover-upload-btn label i {
    font-size: 18px;
}

.cover-upload-btn label .ti-loader {
    animation: cover-spin 1s linear infinite;
}

/* استایل لودینگ کاور */
.cover-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 8px;
}

.cover-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
}

.cover-loading-spinner i {
    font-size: 48px;
    animation: cover-spin 1s linear infinite;
}

.cover-loading-spinner span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes cover-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .bb-customer-cover {
        height: 200px;
    }

    .cover-upload-btn label span {
        display: none;
    }

    .cover-upload-btn label {
        padding: 8px 12px;
    }

    .cover-loading-spinner i {
        font-size: 32px;
    }

    .cover-loading-spinner span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .bb-customer-cover {
        height: 150px;
    }
}
.btn-glass {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.btn-glass:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: scale(1.1);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 6px 30px rgba(239, 68, 68, 0.2);
}

.btn-glass:active {
    transform: scale(0.9);
}

.btn-glass svg {
    fill: rgba(255, 255, 255, 0.9);
    width: 16px;
    height: 16px;
    transition: fill 0.3s;
}

.btn-glass:hover svg {
    fill: #ffffff;
}
.bb-product-gallery { 
    height: 400px; 
}
.bb-product-gallery-images img {
    width: 100%;
    height: 400px;
    object-fit: contain;

}
.bb-quick-view-gallery-images img {
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}