.gq-quiz {
    max-width: 700px;
    margin: 40px auto;
}
.gq-step {
    display: none;
}
.gq-step.gq-active {
    display: block;
    animation: gqFadeIn .4s ease;
}
@keyframes gqFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.gq-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.gq-option {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.gq-option:hover {
    border-color: #f7bd33;
    background: #fef8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247,189,51,.15);
}
.gq-option:active {
    transform: translateY(0);
}
.gq-option-range {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}
.gq-option-subtitle {
    display: block;
    font-size: 1.1rem;
    color: #888;
    margin-top: 3px;
}
.gq-result-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
    overflow: hidden;
    border: 1px solid #eee;
}
.gq-result-badge {
    background: linear-gradient(135deg, #f7bd33, #f9cd5c);
    color: #333;
    text-align: center;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
}
.gq-results-list {
    padding: 25px 30px;
}
.gq-result-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 20px 0;
}
.gq-result-item + .gq-result-item {
    border-top: 1px solid #eee;
}
.gq-result-image {
    flex-shrink: 0;
    width: 180px;
}
.gq-result-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.gq-result-info {
    flex: 1;
}
.gq-result-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}
.gq-result-price {
    font-size: 20px;
    font-weight: 700;
    color: #d9a22b;
    margin-bottom: 12px;
}
.gq-result-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}
.gq-result-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.gq-btn-buy {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f7bd33, #d9a22b);
    color: #333 !important;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none !important;
}
.gq-btn-buy:hover {
    background: linear-gradient(135deg, #d9a22b, #c4911f);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247,189,51,.3);
}
.gq-btn-view {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    color: #d9a22b !important;
    border: 2px solid #f7bd33;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none !important;
}
.gq-btn-view:hover {
    background: #fef8e8;
}
.gq-result-footer {
    border-top: 1px solid #eee;
}
.gq-restart {
    display: block;
    width: 100%;
    padding: 14px;
    background: #e1e1e1;
    border: none;
    color: #1c1c1c;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
}
.gq-restart:hover {
    background: #f0f0f0;
    color: #555;
}
@media (max-width: 600px) {
    .gq-options {
        grid-template-columns: 1fr;
    }
    .gq-results-list {
        padding: 15px 20px;
    }
    .gq-result-item {
        flex-direction: column;
    }
    .gq-result-image {
        width: 100%;
    }
    .gq-option {
        padding: 14px 18px;
    }
    .gq-option-range {
        font-size: 1.5rem;
    }
}
