/* Share Widget Styles */
.share-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.share-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.share-description {
    opacity: 0.9;
    margin-bottom: 20px;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 14px;
}

.share-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.telegram { background: #0088cc; }
.share-btn.email { background: #ea4335; }
.share-btn.sms { background: #7b1fa2; }
.share-btn.copy { background: #6c757d; }

.share-footer {
    font-size: 0.85rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

/* Discount Cards */
.discount-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.discount-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.discount-code-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.discount-code-display code {
    flex: 1;
    font-size: 1.1rem;
    color: #28a745;
}

/* Modal Styles */
.discount-code-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    border-radius: 10px;
}

.discount-code-box code {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: none;
}

/* Stats Widget */
.share-stats-widget .stat-value {
    color: #667eea;
    font-weight: bold;
}

.share-stats-widget .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .share-buttons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .share-btn span {
        display: none;
    }
    
    .share-btn i {
        font-size: 20px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .share-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}