/* Products Page Specific Styles */

.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05), rgba(255, 0, 255, 0.05));
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
}

/* Product Lines */
.product-lines {
    padding: 80px 0;
    background: var(--bg-white);
}

.lines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.line-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-purple);
}

.line-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.line-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.line-card > p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.line-topics {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.line-topics li {
    padding: 8px 16px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
}

/* Available Now */
.available-now {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-top: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.product-image-large {
    position: relative;
}

.product-image-large img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--primary-magenta);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-info h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.product-tagline {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.product-description p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.product-highlights {
    margin: 12px 0;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.product-highlights h4 {
    margin-bottom: 16px;
}

.product-highlights ul {
    list-style: none;
}

.product-highlights li {
    color: var(--text-medium);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.product-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

.product-includes {
    margin: 24px 0;
}

.product-includes h4 {
    margin-bottom: 16px;
}

.includes-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.include-item {
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-medium);
}

.product-purchase {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-purple);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

.guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

/* In Development */
.in-development {
    padding: 80px 0;
    background: var(--bg-white);
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.dev-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-purple);
}

.dev-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dev-status {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.dev-timeline {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.dev-category {
    display: inline-block;
    color: var(--primary-magenta);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dev-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.dev-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 16px;
}

.dev-card > p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dev-topics {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.dev-topics strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.dev-topics ul {
    list-style: none;
}

.dev-topics li {
    color: var(--text-medium);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.dev-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

/* NO BS Series */
.no-bs-series {
    padding: 80px 0;
    background: var(--bg-light);
    color: var(--text-medium);
}

.series-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.series-content h2 {
    color: var(--text-dark);
    font-size: 40px;
    margin-bottom: 20px;
}

.series-tagline {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.principle {
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.principle-number {
    width: 60px;
    height: 60px;
    background: lightgrey;
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.principle h3 {
    color: var(--text-medium);
    font-size: 24px;
    margin-bottom: 12px;
}

.principle p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .lines-grid {
        grid-template-columns: 1fr;
    }
    
    .line-topics {
        grid-template-columns: 1fr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .development-grid {
        grid-template-columns: 1fr;
    }
}