.footer {
    background: #ffffff;
    color: #4B5563;
    padding: 20px 15px;
    margin-top: 20px;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.footer-section {
    padding: 0 8px;
}

.footer-section h3 {
    color: #5c0a9a;
    font-size: 1rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(92, 10, 154, 0.1);
}

.review-form {
    margin-top: 8px;
}

.review-form textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid rgba(92, 10, 154, 0.2);
    border-radius: 8px;
    background: #f8f9fa;
    color: #111827;
    margin-bottom: 6px;
    resize: vertical;
    min-height: 60px;
}

.review-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.review-form button {
    background: #5c0a9a;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.review-form button:hover {
    background: #4c0882;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(92, 10, 154, 0.1);
    font-size: 0.85rem;
    color: #4B5563;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-section {
        text-align: center;
        padding: 0 5px;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
    }
} 

.footer-share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-share-buttons .share-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer-share-buttons .share-button svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .footer-share-buttons {
        justify-content: center;
    }
} 