/* ========================================
   COWGIRL.CSS — Page-specific styles
   Extends style.css for the-cowgirl.html
   ======================================== */

/* --- Hero Cowgirl override --- */
.hero-cowgirl::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 77, 109, 0.2) 0%, rgba(200, 80, 192, 0.1) 30%, rgba(10, 6, 16, 0.95) 70%);
}

/* --- Design Details Grid --- */
.design-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.design-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.design-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.design-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.design-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.design-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Specs section bg alternate --- */
.specs-section-cg {
    background: var(--bg-secondary);
}

/* --- Controle Section --- */
.controle-section {
    background: var(--bg-primary);
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.control-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.control-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.control-card-main {
    background: var(--gradient-card);
    border-color: var(--border-medium);
}

.control-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.control-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.control-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* App features */
.app-features {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.app-features h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-primary);
    text-align: center;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.app-feature {
    text-align: center;
    padding: 20px;
    background: rgba(200, 80, 192, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.app-feature:hover {
    border-color: var(--border-medium);
    transform: translateY(-2px);
}

.app-feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.app-feature strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.app-feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Included Attachments --- */
.included-attachments {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.attachment-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.attachment-card:hover {
    border-color: var(--border-medium);
}

.attachment-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.attachment-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.attachment-note {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(200, 80, 192, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 60px 0 30px;
}

/* --- Extensions Grid --- */
.extensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.extension-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.extension-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.extension-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.extension-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Solo Section --- */
.solo-section {
    background: var(--bg-secondary);
}

/* --- Couple Section --- */
.couple-section {
    background: var(--bg-primary);
}

.couple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.couple-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.couple-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.couple-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.couple-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.couple-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Verdict Section --- */
.verdict-section {
    background: var(--bg-secondary);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.verdict-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.verdict-card:hover {
    transform: translateY(-3px);
}

.verdict-pro {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.verdict-pro:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.verdict-con {
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.verdict-con:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.verdict-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.verdict-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verdict-card li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 8px;
    border-left: 2px solid var(--border-subtle);
}

.verdict-pro li {
    border-left-color: rgba(34, 197, 94, 0.3);
}

.verdict-con li {
    border-left-color: rgba(251, 191, 36, 0.3);
}

/* --- Entretien Section --- */
.entretien-section {
    background: var(--bg-primary);
}

/* --- Unicorn Section --- */
.unicorn-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.unicorn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06), rgba(236, 72, 153, 0.04), transparent 60%);
    pointer-events: none;
}

.unicorn-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.unicorn-images {
    display: grid;
    gap: 20px;
}

.unicorn-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.unicorn-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.unicorn-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.unicorn-spec span {
    color: var(--text-muted);
}

.unicorn-spec strong {
    color: var(--text-highlight);
    font-size: 14px;
}

.unicorn-info > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.unicorn-features {
    margin-bottom: 28px !important;
}

/* Unicorn button */
.btn-unicorn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    color: white;
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.3);
}

.btn-unicorn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.45);
    color: white;
}

/* --- CTA Buttons Group --- */
.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Back section --- */
.back-section {
    background: var(--bg-primary);
    padding: 50px 0;
}

/* ========================================
   RESPONSIVE — Cowgirl Page
   ======================================== */
@media (max-width: 1024px) {
    .design-details {
        grid-template-columns: 1fr;
    }

    .control-grid {
        grid-template-columns: 1fr;
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extensions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unicorn-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .design-details {
        grid-template-columns: 1fr;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .extensions-grid {
        grid-template-columns: 1fr;
    }

    .couple-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons-group .btn {
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }

    .app-features {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .control-card,
    .couple-card,
    .design-card,
    .extension-card,
    .attachment-card,
    .verdict-card {
        padding: 24px 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table thead th {
    background: var(--bg-card);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
    position: sticky;
    top: 0;
}

.comparison-table tbody tr {
    transition: all var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(200, 80, 192, 0.04);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.highlight-col {
    background: rgba(200, 80, 192, 0.06) !important;
    color: var(--text-highlight) !important;
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ========================================
   CTA IMAGES
   ======================================== */
.cta-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.cta-images img {
    border-radius: var(--radius-lg);
    max-width: 340px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.cta-images img:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

