/* Share Dialog */
.share-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-dialog.show {
    opacity: 1;
    visibility: visible;
}

.share-dialog-content {
    background: white;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.share-dialog.show .share-dialog-content {
    transform: translateY(0);
}

.share-dialog-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-dialog-header h5 {
    margin: 0;
    font-size: 1.25rem;
}

.share-dialog-body {
    padding: 1.5rem;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.share-option:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.share-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.share-option span {
    font-size: 0.75rem;
    font-weight: 500;
}

.share-option.copied {
    color: #198754;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .share-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-dialog-content {
        margin: 0.5rem;
    }
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* Header Styles */
.top-bar {
    font-size: 0.9rem;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Product Cards */
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
}
