/* ══════════════════════════════════════════════
   BUYING TIPS PAGE — Gun Dogs Hub
══════════════════════════════════════════════ */
.buying-tips {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 80vh;
}

.buying-tips .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.buying-tips .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tips-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tip-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tip-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.tip-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.tip-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.tip-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.tip-content {
    padding: 2rem;
}

.tip-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
}

.tip-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tip-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tip-item p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.tip-item ul {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.tip-item li {
    margin-bottom: 0.5rem;
}

/* Warning Section */
.warning-section .tip-header {
    background: linear-gradient(135deg, var(--danger), #c82333);
}

.warning-icon {
    background: rgba(255, 255, 255, 0.3);
}

.warning-item h4 {
    color: var(--danger);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 151, 91, 0.3);
}

.btn-cta:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 151, 91, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .buying-tips {
        padding: 60px 0;
    }

    .buying-tips .title {
        font-size: 2rem;
    }

    .tip-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .tip-content {
        padding: 1.5rem;
    }

    .tip-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}
