/* ========================================
   PRODUCT DETAIL - ULTRA MINIMAL
   ======================================== */

.product-detail {
    margin-left: 260px;
    margin-top: 72px;
    background: #f8f9fa;
    min-height: calc(100vh - 72px);
    padding: 20px 28px;
    transition: margin-left 0.3s ease;
}

.detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   MAIN GRID - Wider Right, Smaller Image
   ======================================== */

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 24px;
    align-items: start;
}

/* ========================================
   LEFT COLUMN - Minimal Image Gallery
   ======================================== */

.detail-left {
    position: sticky;
    top: 92px;
}

/* Breadcrumb - Ultra Minimal */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.breadcrumb-item {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item:hover {
    color: #10b981;
}

.breadcrumb-item.active {
    color: #374151;
    font-weight: 500;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-separator {
    color: #d1d5db;
    font-size: 10px;
}

/* Main Image - Clean & Simple */
.detail-image-main {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.detail-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.detail-image-main:hover img {
    transform: scale(1.02);
}

/* Thumbnails - Minimal Pills */
.detail-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
}

.thumbnail {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.5;
    background: #fff;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: #10b981;
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   RIGHT COLUMN - Wide Product Info
   ======================================== */

.detail-right {
    position: sticky;
    top: 92px;
}

.detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

/* Product Title */
.detail-header {
    margin-bottom: 6px;
}

.detail-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-header h1 .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.detail-header h1 .premium-badge i {
    font-size: 11px;
}

/* Short Description */
.short-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   PRICE SECTION - With Discount Support
   ======================================== */

.price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    letter-spacing: -0.5px;
}

.detail-price.free {
    color: #3b82f6;
}

/* Discount Styles */
.price-with-discount {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-display .current-price {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    letter-spacing: -0.5px;
}

.price-display .old-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.old-price {
    font-size: 18px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.price-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* ========================================
   ACTION BUTTONS
   ======================================== */

.actions-section {
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    gap: 10px;
}

.btn-buy {
    flex: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

/* Sepette durumu */
.btn-buy.in-cart {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

/* Satın alındı - İndir durumu */
.btn-buy.purchased {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.btn-buy.purchased:hover {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.btn-icon {
    width: 52px;
    height: 52px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
}

.btn-icon:hover {
    border-color: #10b981;
    color: #10b981;
    background: #ecfdf5;
}

/* Like Button Special Styles */
.btn-icon.btn-like-header {
    position: relative;
}

.btn-icon.btn-like-header.liked {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

.btn-icon.btn-like-header.liked i {
    animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}


/* ========================================
   STATS - Compact Inline
   ======================================== */

.stats-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.stats-label {
    display: none;
}

.detail-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.meta-item {
    text-align: center;
    flex: 1;
}

.meta-label {
    display: block;
    font-size: 10px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.meta-value {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.meta-value i {
    font-size: 12px;
}

/* ========================================
   PRODUCT INFO - Clean Cards
   ======================================== */

.product-info-section {
    margin-bottom: 20px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    padding: 0;
}

.info-label {
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label i {
    font-size: 10px;
    color: #10b981;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: #059669;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.category-badge:hover {
    background: #10b981;
    color: #fff;
}

.format-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.format-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
}

/* ── Uyumluluk chips (product detail) ── */
.pd-compat-row {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-radius: 8px;
    padding: 8px 0;
}

.pd-compat-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-compat-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #0f172a;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: all 0.2s;
}

.pd-compat-chip:hover {
    background: #1e293b;
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.pd-compat-chip i {
    font-size: 11px;
    color: #10b981;
}


/* ========================================
   AUTHOR CARD - Minimal
   ======================================== */

.author-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.author-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-card-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-card-info {
    flex: 1;
}

.author-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1px 0;
}

.author-card-label {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-card-label i {
    font-size: 10px;
    color: #10b981;
}

.author-card-description,
.author-card-stats {
    display: none;
}

/* ========================================
   SHARE BUTTONS
   ======================================== */

.share-section {
    padding-top: 0;
}

.share-label {
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-share {
    display: flex;
    gap: 6px;
}

.share-btn {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 13px;
}

.share-btn:hover {
    background: #10b981;
    color: #fff;
}

/* ========================================
   DIGITAL PRODUCT INFO BAR
   ======================================== */

.digital-product-info {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 14px;
    padding: 14px 24px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.digital-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
}

.digital-info-item i {
    font-size: 15px;
    opacity: 0.9;
}

/* ========================================
   TABS - Clean & Simple
   ======================================== */

.product-tabs-wrapper {
    background: #fff;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.tab-btn i {
    font-size: 13px;
}

.tab-btn:hover {
    color: #111827;
    background: rgba(16, 185, 129, 0.05);
}

.tab-btn.active {
    color: #10b981;
    background: #fff;
    font-weight: 700;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #10b981;
}

.tabs-content {
    padding: 24px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description */
.description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
}

.description-content p {
    margin-bottom: 14px;
}

.description-content h1,
.description-content h2,
.description-content h3 {
    color: #111827;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ========================================
   COMMENTS SECTION
   ======================================== */

.comments-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-stats {
    background: #f9fafb;
    border-radius: 12px;
    padding: 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
}

.stats-summary {
    text-align: center;
    padding: 14px;
    background: #fff;
    border-radius: 10px;
}

.stats-rating {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 4px;
}

.stats-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 4px;
}

.stats-count {
    font-size: 10px;
    color: #6b7280;
    font-weight: 600;
}

.stats-breakdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    min-width: 42px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.stat-bar-container {
    flex: 1;
    height: 5px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.stat-count-num {
    font-size: 11px;
    font-weight: 700;
    color: #111827;
    min-width: 20px;
    text-align: right;
}

/* Comment Form */
.comment-form-container {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
}

.comment-form-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-form-header h3 i {
    color: #10b981;
    font-size: 13px;
}

.comment-form-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 14px 0;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.rating-label {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star-rating i {
    font-size: 20px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.15s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
    resize: vertical;
    min-height: 90px;
}

.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-submit-comment {
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-submit-comment:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.no-comments i {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.3;
    display: block;
}

.no-comments h3 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

/* Comment Item */
.comment-item {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.comment-info {
    flex: 1;
}

.comment-author {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1px 0;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #6b7280;
}

.comment-rating {
    color: #fbbf24;
    font-size: 11px;
}

.comment-body {
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1280px) {
    .detail-grid {
        grid-template-columns: 1fr 460px;
    }
}

@media (max-width: 1024px) {
    .product-detail {
        margin-left: 0;
        padding: 16px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-left,
    .detail-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 12px;
        margin-top: 60px;
    }

    .detail-card {
        padding: 20px;
        border-radius: 14px;
    }

    .detail-header h1 {
        font-size: 20px;
    }

    .detail-price {
        font-size: 26px;
    }

    .detail-meta {
        flex-wrap: wrap;
    }

    .meta-item {
        flex: 0 0 calc(50% - 4px);
        padding: 8px 0;
    }

    .digital-product-info {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .comment-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-btn {
        padding: 12px 16px;
        border-bottom: 1px solid #e5e7eb;
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tab-btn.active::after {
        display: none;
    }

    .tabs-content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 10px;
    }

    .detail-card {
        padding: 16px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .btn-icon {
        width: 100%;
        height: 46px;
    }

    .thumbnail {
        width: 48px;
        height: 48px;
    }
}

/* ========================================
   DARK THEME
   ======================================== */

body.dark-theme .product-detail {
    background: #181818;
}

body.dark-theme .detail-card,
body.dark-theme .detail-image-main,
body.dark-theme .product-tabs-wrapper {
    background: #252525;
    border-color: #2a2a2a;
}

body.dark-theme .detail-header h1,
body.dark-theme .meta-value,
body.dark-theme .stats-rating,
body.dark-theme .comment-author,
body.dark-theme .author-card-name,
body.dark-theme .rating-label {
    color: #f9fafb;
}

body.dark-theme .short-description,
body.dark-theme .breadcrumb-item,
body.dark-theme .meta-label,
body.dark-theme .info-label,
body.dark-theme .comment-meta,
body.dark-theme .author-card-label,
body.dark-theme .share-label {
    color: #9ca3af;
}

body.dark-theme .breadcrumb-item.active {
    color: #f9fafb;
}

body.dark-theme .old-price,
body.dark-theme .price-display .old-price {
    color: #6b7280;
}

body.dark-theme .stats-section,
body.dark-theme .author-card,
body.dark-theme .comment-stats,
body.dark-theme .comment-form-container,
body.dark-theme .comment-item {
    background: #1f2937;
}

body.dark-theme .tabs-header {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

body.dark-theme .tab-btn {
    color: #9ca3af;
}

body.dark-theme .tab-btn:hover {
    color: #f9fafb;
    background: rgba(16, 185, 129, 0.1);
}

body.dark-theme .tab-btn.active {
    color: #10b981;
    background: #252525;
}

body.dark-theme .description-content,
body.dark-theme .comment-body {
    color: #d1d5db;
}

body.dark-theme .thumbnail {
    background: #2a2a2a;
}

body.dark-theme .thumbnail.active {
    border-color: #10b981;
}

body.dark-theme .btn-icon,
body.dark-theme .share-btn {
    background: #2a2a2a;
    border-color: #374151;
    color: #9ca3af;
}

body.dark-theme .btn-icon:hover,
body.dark-theme .share-btn:hover {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

body.dark-theme .btn-icon.btn-like-header.liked {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ef4444;
}

body.dark-theme .tag {
    background: #374151;
    color: #d1d5db;
}

body.dark-theme .category-badge {
    background: rgba(16, 185, 129, 0.15);
}

body.dark-theme .stats-summary,
body.dark-theme .rating-input {
    background: #252525;
    border-color: #2a2a2a;
}

body.dark-theme .form-group textarea {
    background: #252525;
    border-color: #374151;
    color: #f9fafb;
}

body.dark-theme .stat-bar-container {
    background: #374151;
}

body.dark-theme .star-rating i {
    color: #4b5563;
}

body.dark-theme .breadcrumb-separator {
    color: #4b5563;
}