/* Content Creator Template Styles */
.sale-page {
    overflow-x: hidden;
}
.sale-page section {
    position: relative;
}

/* Primary CTA button */
.sale-page .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary, var(--color-primary)));
    color: white;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}
.sale-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Badge / pill label */
.sale-page .badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-accent);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Profile image styling */
.sale-page .profile-img {
    border-radius: 9999px;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

/* Stats counter */
.sale-page .stat-item {
    text-align: center;
    padding: 16px;
}
.sale-page .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1.2;
}
.sale-page .stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-top: 4px;
}

/* Service card */
.sale-page .service-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #F3F4F6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sale-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
}

/* Portfolio card */
.sale-page .portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid #F3F4F6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sale-page .portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
}
.sale-page .portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Testimonial card */
.sale-page .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #F3F4F6;
    position: relative;
}
.sale-page .testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 3rem;
    line-height: 1;
    color: var(--color-accent);
    font-family: Georgia, serif;
}

/* FAQ accordion */
.sale-page .faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.sale-page .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Gradient text utility */
.sale-page .text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary, var(--color-primary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
