/* Tab Sistemi */
.product-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.product-tab {
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-tab:hover {
    color: var(--text);
    background: var(--bg);
}

.product-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

.tab-badge {
    background: var(--accent);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(6px);
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    position: relative;
    background: #ffffff !important;
    color: #1b1b18 !important;
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.review-modal-content h2,
.review-modal-content label,
.review-modal-content p,
.review-modal-content input,
.review-modal-content textarea {
    color: #1b1b18 !important;
}

.review-modal-content input,
.review-modal-content textarea {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

.review-modal-content input:focus,
.review-modal-content textarea:focus {
    border-color: var(--accent) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.review-modal-close {
    color: #1b1b18 !important;
}

.review-modal-close:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #1b1b18 !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.review-modal-close:hover {
    background: var(--bg);
    color: var(--text);
    transform: rotate(90deg);
}

.rating-star-modal {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.3;
    padding: 0;
    line-height: 1;
    filter: grayscale(100%);
}

.rating-star-modal:hover {
    opacity: 0.7;
    transform: scale(1.2);
    filter: grayscale(0%);
}

.rating-star-modal.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-tab {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .review-modal-content {
        padding: 24px;
        max-width: 100%;
    }
    
    .rating-star-modal {
        font-size: 32px;
    }
}

