/* Deal Actions */
.deal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding: 0 4px;
}

/* Base Button Styles */
.deal-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.deal-actions .btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* 1. View on Store (Primary CTA) */
.deal-actions .btn-view-store {
    background-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-size: 18px;
    padding: 16px 20px;
}

.deal-actions .btn-view-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

.deal-actions .btn-view-store:active {
    transform: translateY(0);
}

/* 2. Copy Coupon */
.deal-actions .btn-copy-coupon {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 700;
}

.deal-actions .btn-copy-coupon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

.deal-actions .btn-copy-coupon:active {
    transform: translateY(0);
}

/* 3. Share Deal */
.deal-actions .btn-share {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.deal-actions .btn-share:hover {
    background: #e8e8e8;
    border-color: #ccc;
    transform: translateY(-1px);
}

.deal-actions .btn-share:active {
    transform: translateY(0);
}

/* 4. Report Deal */
.deal-actions .btn-report {
    background: transparent;
    color: #999;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 16px;
}

.deal-actions .btn-report:hover {
    background: #f9f9f9;
    color: #666;
    border-color: #ccc;
}

.deal-actions .btn-report:active {
    transform: scale(0.98);
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .deal-actions {
        flex-direction: row;
        gap: 12px;
    }

    .deal-actions .btn-view-store {
        flex: 2;
    }

    .deal-actions .btn-copy-coupon,
    .deal-actions .btn-share {
        flex: 1;
    }

    .deal-actions .btn-report {
        flex: 0 0 auto;
        min-width: 120px;
    }
}

/* Deal Stats */
.deal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

@media (min-width: 768px) {
    .deal-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.stat-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stat Colors */
.stat-gold .stat-icon { color: #ffd700; }
.stat-gold .stat-value { color: #ffd700; }

.stat-info .stat-icon { color: #3b82f6; }
.stat-info .stat-value { color: #3b82f6; }

.stat-temperature .stat-icon { color: #ff6b35; }
.stat-temperature .stat-value { color: #ff6b35; }

/* ============================================
   QUIZDROP SECTION - MINIMAL DESIGN
   ============================================ */

.quizdrop-section {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

/* QuizDrop Label */
.quizdrop-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #ff9800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quizdrop-label i {
    font-size: 14px;
    color: #ff9800;
}

/* Price Display */
.quizdrop-price-display {
    margin-bottom: 16px;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.price-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-value i {
    font-size: 24px;
    color: #ffd700;
}

.points-number {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.points-text {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.price-dropped {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.price-dropped i {
    font-size: 12px;
}

/* Action Buttons */
.quizdrop-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quizdrop-actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.quizdrop-actions .btn i {
    font-size: 16px;
}

/* Drop Price Button */
.btn-drop-price {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.btn-drop-price:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.35);
}

.btn-drop-price:active {
    transform: translateY(0);
}

/* Buy with Points Button */
.btn-buy-points {
    background: white;
    color: #ff9800;
    border: 2px solid #ff9800;
}

.btn-buy-points:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-buy-points:active {
    transform: translateY(0);
}

/* Claim Free Button */
.btn-claim-free {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

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

.btn-claim-free:active {
    transform: translateY(0);
}

/* Tablet & Desktop Responsive */
@media (min-width: 768px) {
    .quizdrop-section {
        padding: 24px;
    }

    .price-value i {
        font-size: 28px;
    }

    .points-number {
        font-size: 36px;
    }

    .points-text {
        font-size: 18px;
    }

    .price-dropped {
        font-size: 14px;
        padding: 8px 16px;
    }

    .quizdrop-actions {
        flex-direction: row;
        gap: 12px;
    }

    .quizdrop-actions .btn {
        flex: 1;
        padding: 16px 24px;
        font-size: 16px;
    }

    .quizdrop-actions .btn:hover {
        transform: translateY(-2px);
    }

    .quizdrop-actions .btn:active {
        transform: translateY(0);
    }
}

/* Comments Section */
.comments-section {
    margin-top: 32px;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.comments-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.comments-header i {
    color: var(--color-primary);
}

.comments-count {
    background: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}
