/**
 * BS Customer Feedback - Frontend Widget Styles
 */

/* ==========================================================================
   Widget Container
   ========================================================================== */

.bscf-widget {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.bscf-widget__title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
    font-weight: 700;
}

/* ==========================================================================
   Carousel
   ========================================================================== */

.bscf-widget__carousel {
    position: relative;
    padding: 0 50px;
}

.bscf-widget__track {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.bscf-widget__card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: 12px;
    padding: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #111827;
    border: 1px solid #1f2937;
    color: #e5e7eb;
}

.bscf-widget__card-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.bscf-widget__product-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bscf-widget__product-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.bscf-widget__product-title {
    font-weight: 600;
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bscf-widget__rating {
    color: #f59e0b;
    font-size: 1em;
    margin-bottom: 8px;
}

.bscf-widget__star--empty {
    color: #6b7280;
}

.bscf-widget__text {
    font-size: 0.9em;
    line-height: 1.5;
    flex-grow: 1;
}

.bscf-widget__text p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bscf-widget__text[aria-expanded="true"] p {
    -webkit-line-clamp: unset;
    display: block;
}

.bscf-widget__meta {
    font-size: 0.8em;
    margin-top: 12px;
    opacity: 0.7;
}

.bscf-widget__author {
    margin-right: 8px;
}

/* ==========================================================================
   Arrow Buttons
   ========================================================================== */

.bscf-widget__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    z-index: 2;
    transition: background 0.15s ease, opacity 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.bscf-widget__arrow--left {
    left: 0;
}

.bscf-widget__arrow--right {
    right: 0;
}

.bscf-widget__arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */

[data-theme="dark"] .bscf-widget__title {
    color: #ffffff;
}

[data-theme="dark"] .bscf-widget__card {
    background: #111827;
    border: 1px solid #1f2937;
}

[data-theme="dark"] .bscf-widget__text {
    color: #e5e7eb;
}

[data-theme="dark"] .bscf-widget__product-title {
    color: #ffffff;
}

[data-theme="dark"] .bscf-widget__meta {
    color: #9ca3af;
}

[data-theme="dark"] .bscf-widget__product-image--placeholder {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #9ca3af;
}

[data-theme="dark"] .bscf-widget__arrow {
    background: #1f2937;
    color: #e5e7eb;
}

[data-theme="dark"] .bscf-widget__arrow:hover:not(:disabled) {
    background: #374151;
}

/* ==========================================================================
   Light Theme
   ========================================================================== */

[data-theme="light"] .bscf-widget__title {
    color: #111827;
}

[data-theme="light"] .bscf-widget__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .bscf-widget__text {
    color: #374151;
}

[data-theme="light"] .bscf-widget__product-title {
    color: #111827;
}

[data-theme="light"] .bscf-widget__meta {
    color: #6b7280;
}

[data-theme="light"] .bscf-widget__product-image--placeholder {
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    color: #6b7280;
}

[data-theme="light"] .bscf-widget__arrow {
    background: #f3f4f6;
    color: #374151;
}

[data-theme="light"] .bscf-widget__arrow:hover:not(:disabled) {
    background: #e5e7eb;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .bscf-widget__card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .bscf-widget__card {
        flex: 0 0 100%;
    }

    .bscf-widget__carousel {
        padding: 0 40px;
    }

    .bscf-widget__arrow {
        width: 34px;
        height: 34px;
        font-size: 1em;
    }
}
