/* Featured Goodies Plugin - Complete Styles */
:root {
    --fg-primary: #6a0dad;
    --fg-secondary: #ff1493;
    --fg-dark: #1a1a1a;
    --fg-darker: #0a0a0a;
    --fg-light: #ffffff;
    --fg-gray-dark: #2a2a2a;
    --fg-success: #4caf50;
    --fg-success-dark: #2e7d32;
    --fg-error: #f44336;
    --fg-warning: #ff9800;
    --fg-border-radius: 10px;
    --fg-transition: all 0.3s ease;
    --fg-card-transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

/* Featured Header */
.fg-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.fg-upload-form {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.fg-featured-title {
    display: inline-block;
    font-weight: 800;
    color: #ff1493;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    position: relative;
    font-size: 1.8rem;
}

.fg-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Filter Container */
.fg-filter-container {
    position: relative;
}

.fg-filter-select {
    padding: 8px 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--fg-transition);
}

.fg-filter-select:hover {
    border-color: #ff1493;
}

.fg-filter-select:focus {
    outline: none;
    border-color: #ff1493;
}

/* View All Link */
.fg-view-all-link {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 20px;
    transition: var(--fg-transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fg-view-all-link:hover {
    background: rgba(255, 20, 147, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Carousel Wrapper */
.fg-carousel-wrapper {
    position: relative;
    width: 100%;
}

.fg-albums-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    scrollbar-width: thin;
    scrollbar-color: #ff1493 #2a2a2a;
}

.fg-albums-carousel::-webkit-scrollbar {
    height: 8px;
}

.fg-albums-carousel::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.fg-albums-carousel::-webkit-scrollbar-thumb {
    background-color: #ff1493;
    border-radius: 10px;
}

/* Album Card */
.fg-album-card {
    flex: 0 0 280px;
    background: #2a2a2a;
    border-radius: var(--fg-border-radius);
    overflow: hidden;
    transition: var(--fg-card-transition);
    will-change: transform;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fg-album-card:hover {
    transform: translateY(-5px);
}

/* New Badge */
.fg-new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff1493;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Album Image */
.fg-album-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #1a1a1a;
}

.fg-album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fg-album-card:hover .fg-album-image img {
    transform: scale(1.05);
}

.fg-blurred {
    filter: blur(8px);
}

/* Album Rating on Image */
.fg-album-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: gold;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.fg-star-icon {
    color: gold;
    font-size: 0.9rem;
}

/* Album Info */
.fg-album-info {
    padding: 15px;
}

.fg-album-owner {
    font-size: 0.75rem;
    color: #ff1493;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fg-album-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.fg-image-count {
    font-size: 0.7rem;
    color: #ccc;
    font-weight: normal;
}

/* Categories */
.fg-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.fg-category {
    background: rgba(255, 105, 180, 0.2);
    color: #ff1493;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--fg-transition);
}

.fg-category:hover {
    background: rgba(255, 105, 180, 0.4);
    color: white;
    text-decoration: none;
}

/* Card Rating */
.fg-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 0.75rem;
}

.fg-stars {
    display: flex;
    gap: 2px;
}

.fg-star-filled {
    color: gold;
}

.fg-star-empty {
    color: #666;
}

.fg-rating-value {
    font-weight: 600;
    color: #ff1493;
}

.fg-rating-count {
    color: #999;
}

/* Price */
.fg-album-price {
    margin: 10px 0;
    text-align: center;
}

.fg-standard-price {
    color: #ff1493;
    font-weight: bold;
    font-size: 1rem;
}

.fg-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    margin-right: 8px;
}

.fg-discount-badge {
    background: #4caf50;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-right: 8px;
}

/* View Button */
.fg-view-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--fg-transition);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* View Button - Purchased State */
.fg-view-purchased {
    background: linear-gradient(135deg, #ffb6e6 0%, #ff1493 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.15);
}

.fg-view-purchased:hover {
    background: linear-gradient(135deg, #ffb6e6 0%, #e60ebe 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.25);
}

/* View Button - Disabled (Purchase Required) */
.fg-view-disabled {
    background: rgba(193, 122, 201, 0.2);
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Add to Cart & Buy Now Buttons */
.fg-add-to-cart-btn,
.fg-buy-now-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--fg-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.fg-add-to-cart-btn {
    background: rgba(193, 122, 201, 0.2);
    color: #fff;
}

.fg-add-to-cart-btn:hover:not(:disabled) {
    background: rgba(193, 122, 201, 0.4);
    transform: translateY(-2px);
}

.fg-add-to-cart-btn.fg-added {
    background: #4caf50;
    cursor: default;
    opacity: 0.8;
}

.fg-add-to-cart-btn.fg-added:hover {
    transform: none;
}

.fg-add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fg-buy-now-btn {
    background: rgba(193, 122, 201, 0.2);
    color: #fff;
}

.fg-buy-now-btn:hover:not(:disabled) {
    background: rgba(193, 122, 201, 0.4);
    transform: translateY(-2px);
}

/* Button Group */
.fg-button-group {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* Owner Badge */
.fg-owner-badge {
    margin-top: 8px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.fg-owner-badge i {
    font-size: 0.8rem;
}

/* Modal Styles */

.fg-modal-content {
    position: relative;
    background: #1a1a1a;
    margin: 40px auto;
    max-width: 900px;
    width: 90%;
    border-radius: var(--fg-border-radius);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fg-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: var(--fg-transition);
}

.fg-modal-close:hover {
    background: #ff1493;
    transform: rotate(90deg);
}

/* Viewer Carousel */
.fg-viewer-container {
    padding: 20px;
}

.fg-viewer-carousel {
    position: relative;
    height: 500px;
    background: #0a0a0a;
    border-radius: var(--fg-border-radius);
    overflow: hidden;
}

.fg-carousel-track {
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.fg-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fg-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.fg-carousel-prev,
.fg-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--fg-transition);
    z-index: 10;
}

.fg-carousel-prev:hover,
.fg-carousel-next:hover {
    background: #ff1493;
}

.fg-carousel-prev {
    left: 15px;
}

.fg-carousel-next {
    right: 15px;
}

/* Thumbnails */
.fg-viewer-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    border-radius: var(--fg-border-radius);
}

.fg-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--fg-transition);
    border: 2px solid transparent;
}

.fg-thumbnail:hover,
.fg-thumbnail.active {
    border-color: #ff1493;
    transform: scale(1.05);
}

/* Viewer Info */
.fg-viewer-info {
    text-align: center;
    padding: 20px;
}

.fg-viewer-name {
    font-size: 1.3rem;
    color: #ff1493;
    margin-bottom: 10px;
}

.fg-viewer-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.fg-viewer-rating {
    margin-top: 15px;
}

/* Word Rating System */
.fg-word-rating-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fg-average-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fg-user-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.fg-word-rating-select {
    padding: 10px 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    min-width: 280px;
    cursor: pointer;
    transition: var(--fg-transition);
}

.fg-word-rating-select:hover {
    border-color: #ff1493;
}

.fg-rating-submit-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #6a0dad, #ff1493);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--fg-transition);
}

.fg-rating-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.fg-rating-message {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
}

.fg-success {
    color: #4caf50;
}

.fg-error {
    color: #f44336;
}

/* Zoom Overlay */
.fg-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 100001;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.fg-zoom-overlay.active {
    display: flex;
}

.fg-zoom-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* No Albums */
.fg-no-albums {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--fg-border-radius);
}

.fg-no-albums i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .fg-featured-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fg-header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .fg-filter-select {
        width: 100%;
    }
    
    .fg-album-card {
        flex: 0 0 260px;
    }
    
    .fg-viewer-carousel {
        height: 350px;
    }
    
    .fg-thumbnail {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .fg-album-card {
        flex: 0 0 240px;
    }
    
    .fg-viewer-carousel {
        height: 250px;
    }
    
    .fg-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .fg-button-group {
        flex-direction: column;
    }
    
    .fg-word-rating-select {
        min-width: auto;
        width: 100%;
    }
    
    .fg-user-rating {
        flex-direction: column;
    }
}

/* Update View Button Style */
.fg-view-purchased {
    background: #1c0f1c;
    color: #f3e8ff;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.25);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--fg-transition);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fg-view-purchased:hover {
    background: #2a142a;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.35);
}

/* Rating text color */
.fg-rating-label {
    color: white;
    font-weight: 500;
}

.fg-user-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

/* Purchase Info Message */
.fg-purchase-info {
    text-align: center;
    padding: 8px 12px;
    margin: 10px 0;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.2), rgba(255, 20, 147, 0.1));
    border-radius: 20px;
    font-size: 0.75rem;
    color: #ffb3c6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    letter-spacing: 0.3px;
}

.fg-purchase-info i {
    color: #ff1493;
    font-size: 0.7rem;
}

/* Image count styling */
.fg-image-count {
    font-size: 0.7rem;
    color: #ffb3c6;
    font-weight: normal;
    background: rgba(255, 20, 147, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

/* Add to Cart and Buy Now buttons remain visible */
.fg-add-to-cart-btn,
.fg-buy-now-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--fg-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.fg-advisor-link {
    color: #ff1493;
    text-decoration: none;
    transition: var(--fg-transition);
    font-weight: 500;
}

.fg-advisor-link:hover {
    color: #ff69b4;
    text-decoration: underline;
}

/* Advisor Profile Link */
.fg-advisor-link {
    color: #ff1493;
    text-decoration: none;
    transition: var(--fg-transition);
    font-weight: 500;
    cursor: pointer;
}

.fg-advisor-link:hover {
    color: #ff69b4;
    text-decoration: underline;
}

/* Advisor Profile Modal */
.fg-advisor-modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
}

.fg-loading {
    text-align: center;
    padding: 40px;
    color: #ff1493;
}

.fg-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Override UM modal styles if needed */
#fg-advisor-modal .um-profile {
    background: transparent;
}

#fg-advisor-modal .um-profile-header {
    background: linear-gradient(135deg, #6a0dad, #ff1493);
}

/* Profile Fallback Styles */
.fg-user-profile-fallback {
    padding: 20px;
    text-align: center;
}

.fg-profile-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fg-profile-header h2 {
    color: #ff1493;
    margin-bottom: 10px;
}

.fg-profile-bio {
    color: #ccc;
}

.fg-error {
    text-align: center;
    padding: 40px;
    color: #ff6b6b;
}

.fg-error .fg-btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6a0dad, #ff1493);
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

/* Simple Advisor Profile Modal */
.fg-advisor-modal-content {
    max-width: 500px;
    width: 90%;
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    border-radius: 15px;
    overflow: hidden;
}

.fg-advisor-profile-simple {
    padding: 30px;
    text-align: center;
}

.fg-profile-avatar {
    margin-bottom: 20px;
}

.fg-profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff1493;
    object-fit: cover;
}

.fg-profile-name {
    color: #ff1493;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fg-profile-bio {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 15px;
    max-height: 200px;
    overflow-y: auto;
}

.fg-profile-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fg-profile-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #6a0dad, #ff1493);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fg-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    text-decoration: none;
    color: white;
}

.fg-loading {
    text-align: center;
    padding: 60px 20px;
    color: #ff1493;
}

.fg-loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.fg-error {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
}

.fg-error .fg-profile-btn {
    display: inline-block;
    margin-top: 15px;
}

/* Profile Action Buttons */
.fg-profile-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.fg-profile-action-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.fg-profile-action-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.fg-follow-btn:hover {
    background: linear-gradient(135deg, #6a0dad, #ff1493);
}

.fg-call-btn:hover {
    background: linear-gradient(135deg, #0d6a3d, #1493ff);
}

.fg-message-btn:hover {
    background: linear-gradient(135deg, #ad0d6a, #ff1493);
}

/* Profile View Button */
.fg-profile-view-btn {
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 5px;
}

.fg-profile-view-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* No bio message */
.fg-no-bio {
    color: #999;
    font-style: italic;
    text-align: center;
}

/* Modal improvements */
.fg-advisor-modal-content {
    max-width: 500px;
    width: 90%;
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.fg-advisor-profile-simple {
    padding: 30px;
    text-align: center;
}

.fg-profile-avatar {
    margin-bottom: 20px;
}

.fg-profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff1493;
    object-fit: cover;
    background: #2a2a2a;
}

.fg-profile-name {
    color: #ff1493;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fg-profile-bio {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 15px;
    max-height: 200px;
    overflow-y: auto;
}

.fg-profile-bio p {
    margin-bottom: 10px;
}

.fg-profile-actions {
    margin: 15px 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 480px) {
    .fg-advisor-profile-simple {
        padding: 20px;
    }
    
    .fg-profile-name {
        font-size: 1.4rem;
    }
    
    .fg-profile-buttons {
        flex-direction: column;
    }
    
    .fg-profile-action-btn {
        width: 100%;
    }
    
    .fg-profile-avatar img {
        width: 120px;
        height: 120px;
    }
}

/* Modal z-index - make sure SweetAlert appears above */
.fg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    overflow: auto;
}

/* SweetAlert appears above modal */
.swal2-container {
    z-index: 1000000 !important;
}

.swal2-popup {
    z-index: 1000001 !important;
    font-size: 1rem !important;
}

/* SweetAlert overrides for dark theme */
.swal2-title {
    color: #ff1493 !important;
    font-size: 1.5rem !important;
}

.swal2-html-container {
    color: #ffffff !important;
    font-size: 1rem !important;
}

.swal2-content {
    color: #ffffff !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #6a0dad, #ff1493) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4) !important;
}

.swal2-cancel {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
}

.swal2-icon {
    border-color: #ff1493 !important;
    color: #ff1493 !important;
}

.swal2-icon .swal2-icon-content {
    color: #ff1493 !important;
    line-height: 1 !important;
}

.swal2-success-ring {
    border-color: #ff1493 !important;
}

.swal2-success .swal2-success-circular-line-left,
.swal2-success .swal2-success-circular-line-right,
.swal2-success .swal2-success-fix {
    background-color: transparent !important;
}

.swal2-success .swal2-success-line-tip,
.swal2-success .swal2-success-line-long {
    background-color: #ff1493 !important;
}

.swal2-info {
    border-color: #ff1493 !important;
    color: #ff1493 !important;
}

.swal2-question {
    border-color: #ff1493 !important;
    color: #ff1493 !important;
}

.swal2-warning {
    border-color: #ff9800 !important;
    color: #ff9800 !important;
}

.swal2-error {
    border-color: #f44336 !important;
    color: #f44336 !important;
}

/* Custom SweetAlert styling for better readability */
.fg-swal-popup {
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 20, 147, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

.fg-swal-title {
    color: #ff1493 !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
}

.fg-swal-html {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.fg-swal-html strong {
    color: #ff1493 !important;
}

.fg-swal-html p {
    color: #e0e0e0 !important;
}

/* Ensure modal stays behind but doesn't block interactions with SweetAlert */
.fg-modal {
    pointer-events: auto;
}

.swal2-container {
    pointer-events: auto !important;
}

.lrm-user-modal{
    z-index: 200000 !important;
}

/* Profile Tags Section */
.fg-profile-tags {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fg-profile-tags .um-profile-tags {
    margin: 0;
    padding: 0;
}

.fg-profile-tags .um-profile-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fg-profile-tags .um-profile-tags li {
    margin: 0;
}

.fg-profile-tags .um-profile-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 20, 147, 0.15);
    color: #ff1493;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fg-profile-tags .um-profile-tags a:hover {
    background: rgba(255, 20, 147, 0.3);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* If tags are displayed differently, adjust accordingly */
.fg-profile-tags .um-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 20, 147, 0.1);
    color: #ff1493;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 3px;
}

/* Ensure the tags section scrolls if too many */
.fg-profile-tags {
    max-height: 150px;
    overflow-y: auto;
}

/* Custom scrollbar for tags */
.fg-profile-tags::-webkit-scrollbar {
    width: 5px;
}

.fg-profile-tags::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.fg-profile-tags::-webkit-scrollbar-thumb {
    background: #ff1493;
    border-radius: 10px;
}

/* ==================== EXPANDED ADVISOR PROFILE MODAL ==================== */

/* Modal Container - Make it bigger */
.fg-advisor-modal-content {
    max-width: 900px !important;
    width: 90% !important;
    max-height: 85vh !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    animation: slideUp 0.3s ease !important;
}

/* Expanded Profile Container */
.fg-advisor-profile-expanded {
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 0 !important;
}

/* Custom scrollbar for profile content */
.fg-advisor-profile-expanded::-webkit-scrollbar {
    width: 8px;
}

.fg-advisor-profile-expanded::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.fg-advisor-profile-expanded::-webkit-scrollbar-thumb {
    background: #ff1493;
    border-radius: 10px;
}

.fg-advisor-profile-expanded::-webkit-scrollbar-thumb:hover {
    background: #ff69b4;
}

/* Profile Header - Image left, Name center, Button right */
.fg-profile-header-expanded {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 25px 30px !important;
    background: linear-gradient(135deg, #2a1a2a, #1a1a1a) !important;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
}

/* Profile Avatar - Left side */
.fg-profile-avatar-expanded {
    flex-shrink: 0 !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #ff1493 !important;
    background: #2a2a2a !important;
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3) !important;
}

.fg-profile-avatar-expanded img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Profile Title Area - Center */
.fg-profile-title-expanded {
    flex: 1 !important;
    text-align: left !important;
}

.fg-profile-name-expanded {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #ff1493 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: 0.5px !important;
}

.fg-profile-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 12px !important;
    background: linear-gradient(135deg, #ff1493, #6a0dad) !important;
    border-radius: 20px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    color: white !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.fg-profile-badge.customer {
    background: linear-gradient(135deg, #4caf50, #2e7d32) !important;
}

.fg-profile-badge i {
    font-size: 0.7rem !important;
}

/* Profile Actions - Upper right */
.fg-profile-actions-expanded {
    flex-shrink: 0 !important;
}

.fg-view-full-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    background: rgba(255, 20, 147, 0.15) !important;
    border: 1px solid rgba(255, 20, 147, 0.3) !important;
    border-radius: 30px !important;
    color: #ff1493 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.fg-view-full-btn:hover {
    background: rgba(255, 20, 147, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.2) !important;
    text-decoration: none !important;
    color: #ff69b4 !important;
}

/* Three Action Buttons */
.fg-profile-buttons-expanded {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 20px 30px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-wrap: wrap !important;
}

.fg-profile-action-btn-expanded {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 25px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 40px !important;
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.fg-profile-action-btn-expanded:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 20, 147, 0.2) !important;
    border-color: rgba(255, 20, 147, 0.5) !important;
    color: #ff69b4 !important;
}

.fg-profile-action-btn-expanded i {
    font-size: 1rem !important;
}

/* Profile Tags Section - Full width with clear display - Lighter background */
.fg-profile-tags-expanded {
    padding: 20px 30px 30px 30px !important;
}

/* Override the original profile tags widget styles to make them fit better with lighter background */
.fg-profile-tags-expanded .profile-tags-widget {
    background: #f8f5f0 !important;  /* Light warm background */
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 16px !important;
}

.fg-profile-tags-expanded .tag-category {
    background: #ffffff !important;  /* White background for categories */
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    border: 1px solid #e8e0d5 !important;
    padding: 18px 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.fg-profile-tags-expanded .tag-category:last-child {
    margin-bottom: 0 !important;
}

/* Category headers - Darker for contrast */
.fg-profile-tags-expanded .category-name {
    color: #333333 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.fg-profile-tags-expanded .category-name i {
    color: #ff1493 !important;
}

/* Basic tags and profile tags - Light background */
.fg-profile-tags-expanded .basic-tag-link,
.fg-profile-tags-expanded .profile-tag-link {
    background: #faf7f2 !important;
    border-color: #e8e0d5 !important;
    color: #4a4a4a !important;
}

.fg-profile-tags-expanded .basic-tag-link i,
.fg-profile-tags-expanded .profile-tag-link i {
    color: #ff1493 !important;
}

.fg-profile-tags-expanded .basic-tag-link .basic-tag-label,
.fg-profile-tags-expanded .profile-tag-link .tag-display {
    color: #666666 !important;
}

.fg-profile-tags-expanded .basic-tag-link .basic-tag-value {
    color: #333333 !important;
    font-weight: 500 !important;
}

.fg-profile-tags-expanded .basic-tag-link:hover,
.fg-profile-tags-expanded .profile-tag-link:hover {
    background: #ff1493 !important;
    color: #ffffff !important;
    border-color: #ff1493 !important;
}

.fg-profile-tags-expanded .basic-tag-link:hover i,
.fg-profile-tags-expanded .profile-tag-link:hover i {
    color: #ffffff !important;
}

.fg-profile-tags-expanded .basic-tag-link:hover .basic-tag-label,
.fg-profile-tags-expanded .profile-tag-link:hover .tag-display {
    color: #ffffff !important;
}

.fg-profile-tags-expanded .basic-tag-link:hover .basic-tag-value {
    color: #ffffff !important;
}

/* Tag count badges */
.fg-profile-tags-expanded .basic-tag-count,
.fg-profile-tags-expanded .tag-count-badge {
    background: #ffffff !important;
    color: #ff1493 !important;
    border-color: #e8e0d5 !important;
}

.fg-profile-tags-expanded .basic-tag-link:hover .basic-tag-count,
.fg-profile-tags-expanded .profile-tag-link:hover .tag-count-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Text answers - Light background */
.fg-profile-tags-expanded .text-answer-item {
    background: #faf7f2 !important;
    border-color: #e8e0d5 !important;
}

.fg-profile-tags-expanded .text-answer-icon {
    background: #ffffff !important;
    border-color: #e8e0d5 !important;
}

.fg-profile-tags-expanded .text-answer-icon i {
    color: #ff1493 !important;
}

.fg-profile-tags-expanded .text-answer-label {
    color: #888888 !important;
}

.fg-profile-tags-expanded .text-answer-value {
    color: #4a4a4a !important;
}

.fg-profile-tags-expanded .long-text .text-answer-value {
    background: #ffffff !important;
    border-color: #f0e8df !important;
    color: #4a4a4a !important;
}

/* About Me and Why Choose Me sections - Light background */
.fg-profile-tags-expanded .about-content,
.fg-profile-tags-expanded .why-choose-content {
    background: #faf7f2 !important;
    border-color: #e8e0d5 !important;
    color: #4a4a4a !important;
}

.fg-profile-tags-expanded .about-header i,
.fg-profile-tags-expanded .why-choose-header i {
    color: #ff1493 !important;
}

.fg-profile-tags-expanded .about-title,
.fg-profile-tags-expanded .why-choose-title {
    color: #333333 !important;
}

.fg-profile-tags-expanded .why-choose-content {
    background: #fffaf0 !important;
    border-left-color: #ff9800 !important;
}

/* Greeting section in modal - Lighter */
.fg-profile-tags-expanded .greeting-section {
    background: linear-gradient(135deg, #fff5f0, #ffffff) !important;
    border-color: #ffd9b5 !important;
}

.fg-profile-tags-expanded .greeting-welcome {
    color: #ff1493 !important;
}

.fg-profile-tags-expanded .greeting-invite {
    color: #666666 !important;
}

.fg-profile-tags-expanded .sexy-voice {
    color: #ff1493 !important;
}

/* FAQs section - Light background */
.fg-profile-tags-expanded .faq-item {
    background: #faf7f2 !important;
    border-color: #e8e0d5 !important;
}

.fg-profile-tags-expanded .faq-question {
    color: #333333 !important;
}

.fg-profile-tags-expanded .faq-question i {
    color: #ff1493 !important;
}

.fg-profile-tags-expanded .faq-answer {
    color: #666666 !important;
}

.fg-profile-tags-expanded .faq-answer i {
    color: #999999 !important;
}

/* Login prompt - Light background */
.fg-profile-tags-expanded .login-prompt-tags {
    background: #fff5f0 !important;
    border-top-color: #ffe0cc !important;
    color: #666666 !important;
}

.fg-profile-tags-expanded .login-prompt-tags a {
    color: #ff1493 !important;
}

/* Privacy note - Light background */
.fg-profile-tags-expanded .privacy-info-note {
    background: #f0f0f5 !important;
    border-color: #e0e0e8 !important;
    color: #666666 !important;
}

.fg-profile-tags-expanded .confidential-note-tags {
    background: #f0f0f5 !important;
    border-color: #e0e0e8 !important;
    color: #666666 !important;
}

/* Empty state - Light background */
.fg-profile-tags-expanded .profile-tags-empty {
    background: #faf7f2 !important;
    border-color: #e8e0d5 !important;
    color: #999999 !important;
}

.fg-profile-tags-expanded .profile-tags-empty i {
    color: #cccccc !important;
}

/* Remove "No bio available" message */
.fg-profile-tags-expanded .fg-no-bio {
    display: none !important;
}

/* Owner private fields - Light blue tint */
.fg-profile-tags-expanded .basic-tag-link.owner-private {
    background: #eef2ff !important;
    border-color: #d9e2f0 !important;
    border-left-color: #ff1493 !important;
}

.fg-profile-tags-expanded .basic-tag-link.owner-private i {
    color: #8a6bb5 !important;
}

.fg-profile-tags-expanded .basic-tag-link.owner-private .basic-tag-label {
    color: #6c7a8e !important;
}

.fg-profile-tags-expanded .basic-tag-link.owner-private .basic-tag-value {
    color: #2c3e5c !important;
}

/* Login prompt link styling - Make it clickable like buttons */
.fg-profile-tags-expanded .login-prompt-tags a {
    color: #ff1493 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.fg-profile-tags-expanded .login-prompt-tags a:hover {
    color: #ff69b4 !important;
    text-decoration: underline !important;
    transform: scale(1.02) !important;
}

/* Ensure the login prompt area is clickable */
.fg-profile-tags-expanded .login-prompt-tags {
    cursor: pointer !important;
}

.fg-profile-tags-expanded .login-prompt-tags:hover {
    background: #fff0e6 !important;
}

/* Upload Loader Styles */
.fg-upload-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.fg-loader-content {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #2a1a2a, #1a1a1a);
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    animation: fadeInUp 0.3s ease;
}

.fg-loader-content i {
    font-size: 3rem;
    color: #ff1493;
    margin-bottom: 15px;
    display: block;
}

.fg-loader-content p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Preview Animation */
.fg-image-preview-item {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image Counter */
.fg-image-counter {
    margin-top: 8px;
    font-size: 10px;
    color: #888;
    text-align: right;
}

/* Filters Bar Styles */
.fg-filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 15px;
}

.fg-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
}

.fg-filter-select {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fg-filter-select:hover,
.fg-filter-select:focus {
    border-color: #ff1493;
    outline: none;
}

.fg-search-input {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    min-width: 200px;
}

.fg-search-input:focus {
    border-color: #ff1493;
    outline: none;
}

.fg-sort-select {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    min-width: 150px;
}

.fg-sort-select:focus {
    border-color: #ff1493;
    outline: none;
}

.fg-page-container {
    padding: 20px;
}

.fg-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .fg-filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .fg-filters {
        flex-direction: column;
    }
    
    .fg-filter-select,
    .fg-search-input,
    .fg-sort-select {
        width: 100%;
    }
}

.fg-rating-updated {
    animation: ratingPulse 0.3s ease;
}

@keyframes ratingPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hotpink Albums Page Styling */
.fg-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fg-albums-page-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.15);
    margin: 0 20px;
    padding: 40px;
}

.fg-albums-page-title {
    color: #ff1493;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0 0 15px 0;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.fg-albums-page-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 0 40px 0;
}

.fg-filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    align-items: flex-end;
}

.fg-filter-box {
    flex: 1;
    min-width: 250px;
}

.fg-filter-label {
    display: block;
    color: #ff1493;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fg-filter-select,
.fg-filter-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ff1493;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fg-filter-select:hover,
.fg-filter-input:hover {
    border-color: #e60ebe;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

.fg-filter-select:focus,
.fg-filter-input:focus {
    outline: none;
    border-color: #c9008c;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

.fg-filter-button {
    background: linear-gradient(135deg, #ff1493 0%, #e60ebe 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
}

.fg-filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.fg-filter-button:active {
    transform: translateY(0);
}

.fg-results-info {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fg-results-count {
    background: #ff1493;
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.fg-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .fg-albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .fg-albums-page-wrapper {
        margin: 0 15px;
        padding: 20px;
    }
    
    .fg-albums-page-title {
        font-size: 1.8rem;
    }
    
    .fg-filter-section {
        flex-direction: column;
    }
    
    .fg-filter-box {
        min-width: auto;
    }
    
    .fg-filter-button {
        width: 100%;
    }
    
    .fg-albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .fg-albums-page-wrapper {
        margin: 0 10px;
        padding: 15px;
    }
    
    .fg-albums-page-title {
        font-size: 1.4rem;
    }
    
    .fg-albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}