/* ==========================================================
   WEYWOT AUTO GOOGLE REVIEWS - STYLE
   ========================================================== */
.theme-aj-premium {
    --wgr-bg: #ffffff;
    --wgr-border: #edf1f5;
    --wgr-text: #444444;
    --wgr-title: #19344f;
    --wgr-card-bg: #fdfbf7;
    --wgr-accent: #c0955e;
}
.theme-dark-glass {
    --wgr-bg: rgba(25, 32, 45, 0.7);
    --wgr-border: rgba(255,255,255,0.1);
    --wgr-text: #cccccc;
    --wgr-title: #ffffff;
    --wgr-card-bg: rgba(0,0,0,0.4);
    --wgr-accent: #c0955e;
}
.theme-light-glass {
    --wgr-bg: rgba(255, 255, 255, 0.8);
    --wgr-border: rgba(0,0,0,0.05);
    --wgr-text: #555555;
    --wgr-title: #111111;
    --wgr-card-bg: #ffffff;
    --wgr-accent: #c0955e;
}

.weywot-greviews-wrapper {
    background: var(--wgr-bg);
    border: 1px solid var(--wgr-border);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(25, 52, 79, 0.05);
    backdrop-filter: blur(15px);
    margin: 40px 0;
}

/* BELKA NAGŁÓWKOWA */
.wgr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--wgr-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.wgr-header-left { display: flex; align-items: center; gap: 15px; }
.wgr-header-titles h3 { margin: 0 0 5px 0; font-size: 1.6rem; color: var(--wgr-title); font-weight: 900; }
.wgr-header-titles span { color: var(--wgr-text); font-size: 0.95rem; }
.wgr-header-titles strong { color: var(--wgr-title); }

.wgr-header-right { text-align: right; }
.wgr-global-score { font-size: 2.2rem; font-weight: 900; color: var(--wgr-title); line-height: 1; display: block; }
.wgr-global-stars { font-size: 1.1rem; letter-spacing: 2px; }

/* SIATKA OPINII */
.wgr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.wgr-card {
    background: var(--wgr-card-bg);
    border: 1px solid var(--wgr-border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.wgr-card:hover { transform: translateY(-5px); border-color: var(--wgr-accent); }

.wgr-card-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.wgr-author-img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.wgr-author-meta { display: flex; flex-direction: column; }
.wgr-author-name { font-weight: 800; color: var(--wgr-title); font-size: 1rem; }
.wgr-author-time { font-size: 0.8rem; color: #888; }

.wgr-card-stars { margin-bottom: 15px; font-size: 0.9rem; }

.wgr-card-text {
    font-size: 1.05rem;
    color: var(--wgr-text);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.wgr-card-g-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700; color: #888; text-transform: uppercase;
}

@media (max-width: 768px) {
    .wgr-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .wgr-header-right { text-align: left; }
    .weywot-greviews-wrapper { padding: 25px; }
}