/* =============================================
   Community Hub Page Styles
   Version: 2.0.0
   ============================================= */

.gc-community-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-size: 18px;
}

/* --- Page Header --- */
.gc-community-header {
    text-align: center;
    padding: 40px 0 30px;
}

.gc-community-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.gc-community-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* =============================================
   LANDING MENU — 2x2 Card Grid
   ============================================= */
.gc-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.gc-landing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e8e0d4;
}

.gc-landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.gc-landing-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gc-landing-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gc-landing-card:hover .gc-landing-img-wrap img {
    transform: scale(1.05);
}

.gc-landing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-badge-coming-soon {
    background: rgba(0,0,0,0.55);
    color: #fff;
    backdrop-filter: blur(4px);
}

.gc-landing-body {
    padding: 20px 24px 24px;
}

.gc-landing-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.gc-landing-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   SECTION VIEWS
   ============================================= */
.gc-back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.gc-back-to-menu:hover {
    border-color: #0A7E8C;
    color: #0A7E8C;
}

.gc-section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

/* --- Recommended Hero Banner --- */
.gc-recommended-hero {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF3DC 100%);
    border: 2px solid #F5A623;
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 28px;
    overflow: hidden;
}

.gc-recommended-hero-text {
    flex: 1;
    min-width: 0;
}

.gc-recommended-hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 14px;
    line-height: 1.2;
}

.gc-recommended-hero-tagline {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.65;
    margin: 0;
    max-width: 520px;
}

.gc-recommended-hero-img-wrap {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F5A623;
    box-shadow: 0 4px 20px rgba(245,166,35,0.25);
}

.gc-recommended-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 640px) {
    .gc-recommended-hero {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }
    .gc-recommended-hero-title { font-size: 26px; }
    .gc-recommended-hero-tagline { font-size: 16px; max-width: 100%; }
    .gc-recommended-hero-img-wrap { width: 150px; height: 150px; }
}

/* --- Sub-Tabs (Recommended / Tried) --- */
.gc-sub-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8e0d4;
}

.gc-sub-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #888;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.gc-sub-tab:hover { color: #0A7E8C; }

.gc-sub-tab.gc-sub-tab-active {
    color: #0A7E8C;
    border-bottom-color: #0A7E8C;
}

.gc-sub-content { display: none; }
.gc-sub-content.gc-sub-content-active { display: block; }

/* --- Sidebar + Main Layout --- */
.gc-recommended-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
}

.gc-trending-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
    background: #fff;
    border: 1px solid #e8e0d4;
    border-radius: 12px;
    padding: 16px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.gc-trending-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0A7E8C;
}

.gc-trending-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe3;
    cursor: pointer;
    transition: background 0.15s;
}

.gc-trending-item:hover { background: #f8f5f0; margin: 0 -8px; padding: 8px; border-radius: 6px; }
.gc-trending-item:last-child { border-bottom: none; }

.gc-trending-rank {
    font-size: 14px;
    font-weight: 800;
    color: #0A7E8C;
    min-width: 20px;
}

.gc-trending-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.gc-trending-clicks {
    font-size: 11px;
    color: #999;
}

.gc-loading-sm {
    font-size: 13px;
    color: #999;
    text-align: center;
    padding: 20px 0;
}

/* --- Badges: Goldie Approved & Covered --- */
.gc-badge-approved {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.gc-badge-covered {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #0A7E8C;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.gc-badge-covered a {
    color: #fff;
    text-decoration: underline;
    font-size: 10px;
}

/* --- Form Labels & Inputs --- */
.gc-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
}

.gc-review-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
}

/* --- Section Description --- */
.gc-section-desc {
    color: #666;
    margin: 0 0 12px;
    font-size: 16px;
}

.gc-affiliate-disclosure {
    background: #e8f5f5;
    border-left: 3px solid #0A7E8C;
    padding: 8px 14px;
    font-size: 13px;
    color: #5a7a7e;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* --- Category Filter --- */
.gc-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.gc-category-filter::-webkit-scrollbar { display: none; }

.gc-cat-btn {
    padding: 6px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.gc-cat-btn:hover { border-color: #0A7E8C; color: #0A7E8C; }

.gc-cat-btn.gc-cat-btn-active {
    background: #0A7E8C;
    border-color: #0A7E8C;
    color: #fff;
}

/* --- Product Grid --- */
.gc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gc-product-img-wrap {
    text-align: center;
    margin: -24px -24px 16px;
    background: #f8f5f0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-product-img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
}

.gc-product-card {
    background: #fff;
    border: 1px solid #d4c8b8;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.gc-product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.gc-product-card-top {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.gc-product-cat-badge {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background: #ede5d8;
    color: #5a4a30;
    padding: 4px 12px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.gc-product-featured-badge {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background: #0A7E8C;
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.gc-product-name {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.gc-product-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gc-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.gc-product-price {
    font-size: 22px;
    font-weight: 800;
    color: #1e6b1e;
}

.gc-product-rating {
    font-size: 18px;
    color: #F5A623;
}

.gc-product-reviews-count {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.gc-product-card-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    flex-wrap: wrap;
}

.gc-product-buy-btn {
    flex: 1;
    display: block;
    text-align: center;
    padding: 14px 16px;
    background: #0A7E8C;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    min-height: 52px;
    line-height: 1.3;
    border: none;
    cursor: pointer;
}

.gc-product-buy-btn:hover {
    background: #086b77;
    text-decoration: none;
    color: #fff !important;
}

.gc-leave-review-btn {
    flex: 0 0 auto;
    display: inline-block;
    text-align: center;
    padding: 14px 16px;
    background: #fff;
    color: #0A7E8C;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    border: 2px solid #0A7E8C;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 52px;
    line-height: 1.3;
}

.gc-leave-review-btn:hover {
    background: #0A7E8C;
    color: #fff;
}

.gc-product-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.gc-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 17px;
    color: #0A7E8C;
}

.gc-rating-num {
    font-size: 15px;
    font-weight: 700;
    color: #0A7E8C;
}

.gc-product-sentiment {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gc-sentiment-pos-sm { color: #1e7a1e; font-weight: 600; }
.gc-sentiment-neg-sm { color: #9b2020; font-weight: 600; }
.gc-review-count-sm { color: #777; }

/* --- Stars --- */
.gc-star { font-size: 20px; }
.gc-star-full { color: #0A7E8C; }
.gc-star-half { color: #0A7E8C; opacity: 0.6; }
.gc-star-empty { color: #ccc; }

/* --- Review Form --- */
.gc-write-review-btn {
    padding: 10px 24px;
    background: #0A7E8C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.gc-write-review-btn:hover { background: #086B77; }

.gc-review-form {
    background: #fff;
    border: 1px solid #e8e0d4;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.gc-review-form h3 {
    margin: 0 0 16px;
    font-size: 20px;
    color: #1a1a1a;
}

.gc-review-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
}

.gc-star-input {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.gc-star-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    padding: 0 2px;
    transition: color 0.15s;
}

.gc-star-btn:hover,
.gc-star-btn.gc-star-selected { color: #F5A623; }

.gc-review-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 12px;
}

.gc-recommend-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    cursor: pointer;
}

.gc-review-form-actions {
    display: flex;
    gap: 12px;
}

.gc-review-submit {
    padding: 10px 24px;
    background: #0A7E8C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.gc-review-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gc-review-cancel {
    padding: 10px 24px;
    background: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

/* --- Review Cards --- */
.gc-reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.gc-review-card {
    background: #fff;
    border: 1px solid #e8e0d4;
    border-radius: 12px;
    padding: 20px;
}

.gc-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.gc-review-user {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.gc-review-date {
    font-size: 13px;
    color: #999;
}

.gc-review-product-name {
    font-size: 14px;
    color: #0A7E8C;
    font-weight: 600;
    margin-bottom: 6px;
}

.gc-review-stars { margin-bottom: 8px; }

.gc-review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 10px;
}

.gc-review-recommend-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.gc-review-actions { margin-top: 8px; }

.gc-review-helpful-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 4px 14px;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.gc-review-helpful-btn:hover {
    border-color: #0A7E8C;
    color: #0A7E8C;
}

.gc-review-helpful-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

/* --- Sign-in prompt --- */
.gc-signin-prompt {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.gc-signin-prompt a { color: #0A7E8C; font-weight: 600; }

/* --- Loading / Empty --- */
.gc-loading, .gc-no-content {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 16px;
}

/* --- Coming Soon Placeholder --- */
.gc-coming-soon-section {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed #e0d6c8;
    max-width: 600px;
    margin: 0 auto;
}

.gc-coming-soon-icon { font-size: 64px; margin-bottom: 20px; line-height: 1; }
.gc-coming-soon-desc { font-size: 16px; color: #666; line-height: 1.6; margin: 0 0 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.gc-coming-soon-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #0A7E8C 0%, #086B77 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Recommend Product CTA --- */
.gc-recommend-cta {
    text-align: center;
    padding: 32px 0 8px;
    color: #555;
    font-size: 16px;
}



/* --- Monthly Award Banner --- */
.gc-award-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #FFF9F0 0%, #fff3dc 100%);
    border: 2px solid #F5A623;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gc-award-banner-icon { font-size: 40px; flex-shrink: 0; }

.gc-award-banner-text {
    flex: 1;
    min-width: 200px;
}

.gc-award-banner-text strong {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.gc-award-banner-text span {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.gc-award-leaderboard {
    flex-shrink: 0;
    min-width: 200px;
}

.gc-award-month {
    font-size: 13px;
    font-weight: 700;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gc-award-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 15px;
}

.gc-award-medal { font-size: 18px; flex-shrink: 0; }
.gc-award-name { flex: 1; font-weight: 600; color: #1a1a1a; }
.gc-award-count { font-size: 13px; color: #777; }

/* --- Goldie Tried actions --- */
.gc-tried-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.gc-recommend-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #F5A623;
    border-radius: 25px;
    background: #fff;
    color: #c47f00;
    cursor: pointer;
    transition: all 0.2s;
}

.gc-recommend-product-btn:hover {
    background: #F5A623;
    color: #fff;
}

/* --- Sentiment input (thumbs) --- */
.gc-sentiment-input {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.gc-thumb-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 56px;
}

.gc-thumb-up.gc-thumb-selected {
    background: #e8f5e9;
    border-color: #2e7d32;
    color: #1e6b1e;
}

.gc-thumb-down.gc-thumb-selected {
    background: #fdecea;
    border-color: #c62828;
    color: #9b2020;
}

.gc-thumb-btn:hover { transform: scale(1.03); }

/* --- Character counter --- */
.gc-char-counter {
    font-size: 13px;
    color: #999;
    text-align: right;
    margin-top: -8px;
    margin-bottom: 12px;
}

.gc-optional { color: #999; font-weight: 400; }

/* --- Success toast --- */
.gc-success-toast {
    background: #e8f5e9;
    border: 1px solid #2e7d32;
    color: #1b5e20;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* --- Goldie Tried grid --- */
.gc-tried-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.gc-tried-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 20px;
    align-items: flex-start;
}

.gc-tried-img-wrap {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-tried-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gc-tried-body { flex: 1; min-width: 0; }

.gc-tried-badges { margin-bottom: 6px; }

.gc-tried-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* --- Sentiment bar --- */
.gc-sentiment-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.gc-sentiment-bar {
    flex: 1;
    height: 10px;
    background: #fdecea;
    border-radius: 5px;
    overflow: hidden;
}

.gc-sentiment-fill {
    height: 100%;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.gc-sentiment-pos { font-size: 15px; color: #1e7a1e; font-weight: 600; flex-shrink: 0; }
.gc-sentiment-neg { font-size: 15px; color: #9b2020; font-weight: 600; flex-shrink: 0; }

.gc-tried-review-count {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

/* --- Tried reviews list --- */
.gc-tried-reviews {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.gc-tried-review-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fafafa;
    border-radius: 8px;
    padding: 10px 12px;
}

.gc-tried-review-sentiment { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.gc-tried-review-content { flex: 1; min-width: 0; }

.gc-tried-review-author {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 3px;
}

.gc-tried-review-text {
    font-size: 15px;
    color: #444;
    margin: 0 0 4px;
    line-height: 1.5;
}

.gc-tried-review-date {
    font-size: 12px;
    color: #aaa;
    display: inline-block;
    margin-right: 10px;
}

/* --- Tried card actions row --- */
.gc-tried-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.gc-tried-buy-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0A7E8C;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.gc-tried-buy-btn:hover { background: #086b77; text-decoration: none; color: #fff !important; }

/* --- Review form char counter & optional label --- */
.gc-review-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
    font-family: inherit;
    box-sizing: border-box;
}

/* --- "Recommend a Product" Modal --- */
.gc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gc-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.gc-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.gc-modal-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
}

.gc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.gc-modal-close:hover { color: #333; }

.gc-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .gc-community-page { padding: 0 15px 40px; }
    .gc-community-header { padding: 24px 0 20px; }
    .gc-community-title { font-size: 28px; }
    .gc-landing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .gc-recommended-layout { grid-template-columns: 1fr; }
    .gc-trending-sidebar { position: static; max-height: none; }
    .gc-landing-img-wrap { height: 160px; }
    .gc-product-grid { grid-template-columns: 1fr; }
    .gc-coming-soon-section { padding: 40px 24px; }
    .gc-coming-soon-icon { font-size: 48px; }
    .gc-sub-tab { padding: 10px 16px; font-size: 14px; }
    .gc-category-filter { gap: 6px; }
    .gc-cat-btn { padding: 5px 12px; font-size: 13px; }
    .gc-tried-card { flex-direction: column; }
    .gc-tried-img-wrap { width: 100%; height: 180px; }
    .gc-sentiment-input { flex-direction: column; }
    .gc-award-banner { flex-direction: column; }
    .gc-tried-controls { flex-direction: column; gap: 12px; }
    .gc-tried-cats { gap: 8px; }
    .gc-tried-sort-wrap { flex-direction: row; align-items: center; }
}

/* =============================================
   GOLDIE TRIED — SEARCH / FILTER / SORT
   ============================================= */

.gc-tried-controls {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
}

.gc-tried-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.gc-tried-search-icon {
    position: absolute;
    left: 14px;
    font-size: 18px;
    pointer-events: none;
    opacity: 0.6;
}

.gc-tried-search {
    width: 100%;
    padding: 12px 16px 12px 44px;
    font-size: 17px;
    border: 2px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.gc-tried-search:focus {
    border-color: #0A7E8C;
}

.gc-tried-search::placeholder {
    color: #aaa;
}

.gc-tried-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gc-tried-cat-btn {
    padding: 7px 16px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 20px;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.15s;
    font-weight: 500;
}

.gc-tried-cat-btn:hover {
    border-color: #0A7E8C;
    color: #0A7E8C;
}

.gc-tried-cat-active {
    background: #0A7E8C !important;
    border-color: #0A7E8C !important;
    color: #fff !important;
}

.gc-tried-sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #555;
}

.gc-tried-sort {
    padding: 8px 14px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    background: #fff;
}

.gc-tried-sort:focus {
    border-color: #0A7E8C;
}

.gc-tried-cat-tag {
    display: inline-block;
    background: #e8f5f6;
    color: #0A7E8C;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-search-highlight {
    background: #fff3cd;
    border-radius: 3px;
    padding: 0 2px;
    font-style: normal;
}

.gc-tried-clear-btn {
    background: none;
    border: none;
    color: #0A7E8C;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-left: 6px;
}

/* =============================================
   MY RECOMMENDATIONS SECTION
   ============================================= */
.gc-my-submissions {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid #f0e8d8;
}

.gc-my-submissions-title {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
    margin: 0 0 16px 0;
}

.gc-sub-card {
    background: #fff;
    border: 1px solid #e8dfc8;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s;
}

.gc-sub-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.gc-sub-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.gc-sub-product-name {
    font-size: 17px;
    font-weight: 600;
    color: #2a2a2a;
    flex: 1;
}

.gc-sub-status {
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.gc-sub-status-pending  { background: #fff3cd; color: #856404; }
.gc-sub-status-approved { background: #d1fae5; color: #065f46; }
.gc-sub-status-declined { background: #fee2e2; color: #991b1b; }

.gc-sub-category {
    display: inline-block;
    font-size: 12px;
    background: #f3ece0;
    color: #7a5c1e;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.gc-sub-reason {
    font-size: 15px;
    color: #555;
    margin: 6px 0 8px 0;
    line-height: 1.5;
}

.gc-sub-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 4px;
}

.gc-sub-date {
    font-size: 13px;
    color: #999;
}

.gc-sub-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

@media (max-width: 600px) {
    .gc-sub-card-header { flex-direction: column; align-items: flex-start; gap: 6px; }
    .gc-sub-footer       { flex-direction: column; gap: 4px; }
}

/* ── Image loading shimmer placeholder ─────────────────────────── */
@keyframes gc-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.gc-product-img-wrap.gc-img-loading,
.gc-tried-img-wrap.gc-img-loading {
    background: linear-gradient(90deg, #f0ede8 25%, #e8e3db 50%, #f0ede8 75%);
    background-size: 800px 100%;
    animation: gc-shimmer 1.4s infinite linear;
    min-height: 160px;
}
.gc-product-img-wrap.gc-img-loading img,
.gc-tried-img-wrap.gc-img-loading img {
    opacity: 0;
}
.gc-product-img-wrap img,
.gc-tried-img-wrap img {
    transition: opacity 0.25s ease;
    opacity: 1;
}
