/* ============================================================
   FlorianBD — Most Reviewed Plant Marketplace
   Imports the canonical trust-page stylesheet so every shared
   section (top nav, sidebar, hero, quote, knowledge, FAQ,
   crosslinks, CTA, footer) renders identically to the other
   trust pages, then adds the unique middle-section styling
   specific to this page.
============================================================ */
@import url("../why-florianbd-is-the-most-trusted-online-nursery-in-bangladesh/style.css");

/* ========================================
   RATING BREAKDOWN (uses .verified-section shell)
======================================== */
.rating-summary {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 50px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 45px 45px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

/* Left — big score */
.rs-score {
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding-right: 30px;
}

.rs-big {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-green);
    letter-spacing: -2px;
}

.rs-out {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.rs-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 14px 0 10px;
    color: #f59e0b;
    font-size: 1.3rem;
}

.rs-count {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Right — bars */
.rs-bars {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.rs-bar-row {
    display: grid;
    grid-template-columns: 46px 1fr 70px;
    align-items: center;
    gap: 14px;
}

.rsb-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.rsb-label i {
    color: #f59e0b;
    font-size: 0.72rem;
}

.rsb-track {
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.rsb-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light));
    border-radius: 10px;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rsb-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary-dark);
    text-align: right;
}

/* TSC score display helper (4.9 / 50 style) */
.tsc-slash,
.tsc-base {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE — rating breakdown
======================================== */
@media (max-width: 768px) {
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 24px;
    }
    .rs-score {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-right: 0;
        padding-bottom: 24px;
    }
    .rs-big { font-size: 3.5rem; }
    .rs-bar-row { grid-template-columns: 40px 1fr 60px; gap: 10px; }
}

/* ========================================
   REVIEW SENTIMENT SECTION
======================================== */
.sentiment-section {
    padding: 80px 24px;
    position: relative;
    background: var(--bg-main);
    overflow: hidden;
}
.sentiment-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.se-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.se-orb.s1 { width: 500px; height: 500px; background: var(--primary-green); top: -150px; left: -100px; }
.se-orb.s2 { width: 400px; height: 400px; background: var(--primary-light); bottom: -100px; right: -80px; }
.sentiment-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.sentiment-header {
    text-align: center;
    margin-bottom: 50px;
}
.sentiment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.sentiment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 22px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sentiment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
    background: white;
}
.se-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    flex-shrink: 0;
}
.sentiment-card:hover .se-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: white;
}
.se-content {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
}
.se-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-dark);
    white-space: nowrap;
}
.se-bar-wrap {
    grid-column: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}
.se-bar {
    height: 100%;
    width: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-light));
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.se-bar-fill {
    display: block;
    height: 100%;
    width: 100%;
}
.se-pct {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}
@media (max-width: 768px) {
    .sentiment-grid { grid-template-columns: 1fr; }
    .sentiment-card { padding: 18px 20px; }
    .se-content { grid-template-columns: 1fr auto; }
    .se-pct { font-size: 1.2rem; }
}

/* ========================================
   REVIEW GROWTH TIMELINE
======================================== */
.growth-section {
    padding: 80px 24px;
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.growth-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.gr-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}
.gr-orb.g1 { width: 600px; height: 600px; background: var(--primary-green); top: -200px; left: 50%; transform: translateX(-50%); }
.gr-orb.g2 { width: 350px; height: 350px; background: var(--accent-gold); bottom: -100px; left: -80px; }
.gr-orb.g3 { width: 250px; height: 250px; background: var(--primary-light); bottom: 50%; right: -60px; }
.gr-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 166, 81, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}
.growth-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.growth-header {
    text-align: center;
    margin-bottom: 60px;
}
.growth-timeline {
    position: relative;
    padding-left: 60px;
}
.growth-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-light), transparent);
}
.growth-milestone {
    position: relative;
    margin-bottom: 50px;
}
.growth-milestone:last-child { margin-bottom: 0; }
.gm-dot {
    position: absolute;
    left: -60px;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}
.gm-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-green);
    transition: all 0.4s ease;
}
.growth-milestone:hover .gm-dot {
    background: var(--primary-green);
    box-shadow: 0 0 0 6px rgba(0, 166, 81, 0.15);
    transform: scale(1.15);
}
.growth-milestone:hover .gm-dot-inner { background: white; }
.gm-line {
    position: absolute;
    left: -48px;
    top: 30px;
    bottom: -50px;
    width: 2px;
}
.gm-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gm-content:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.10);
    background: white;
}
.gm-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.gm-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gm-count {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-green);
    background: rgba(0, 166, 81, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
}
.gm-body {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.gm-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    flex-shrink: 0;
}
.gm-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 6px;
}
.gm-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .growth-timeline { padding-left: 50px; }
    .gm-dot { left: -50px; width: 20px; height: 20px; }
    .gm-dot-inner { width: 8px; height: 8px; }
    .growth-timeline::before { left: 23px; }
    .gm-content { padding: 20px 22px; }
    .gm-body { flex-direction: column; gap: 10px; }
    .gm-count { font-size: 0.75rem; padding: 3px 10px; }
}

/* ========================================
   PHOTO-VERIFIED REVIEW GALLERY
======================================== */
.gallery-section {
    padding: 80px 24px;
    position: relative;
    background: var(--bg-main);
    overflow: hidden;
}
.gallery-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.ga-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
}
.ga-orb.g1 { width: 450px; height: 450px; background: var(--primary-green); top: -100px; right: -100px; }
.ga-orb.g2 { width: 350px; height: 350px; background: var(--accent-gold); bottom: -80px; left: -80px; }
.ga-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 166, 81, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}
.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}
.gallery-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gc-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.gc-placeholder {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
}
.gallery-card.featured .gc-placeholder { font-size: 5rem; }
.gallery-card:hover .gc-image { transform: scale(1.08); }
.gallery-card:hover .gc-placeholder {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15) rotate(-5deg);
}
.gc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.gallery-card:hover .gc-overlay { opacity: 1; }
.gc-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    gap: 2px;
}
.gc-quote {
    color: white;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 10px;
    font-style: italic;
}
.gallery-card.featured .gc-quote { font-size: 1rem; }
.gc-author {
    display: flex;
    gap: 10px;
    align-items: center;
}
.gc-name {
    font-weight: 700;
    color: white;
    font-size: 0.82rem;
}
.gc-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-card.featured .gc-placeholder { font-size: 3rem; }
    .gallery-card.featured .gc-quote { font-size: 0.85rem; }
    .gc-overlay { padding: 16px; opacity: 1; background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%); }
    .gc-placeholder { font-size: 2rem; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card.featured { grid-column: span 1; }
}
