/* ==================== Page Header Styles ==================== */
.page-header {
    margin-top: 70px;
    padding: 3rem 20px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(255, 107, 53, 0.1));
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==================== Products Page Styles ==================== */
.products-section {
    padding: 5rem 20px;
}

.product-detail {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-grid.reverse {
    direction: rtl;
}

.product-grid.reverse > * {
    direction: ltr;
}

.product-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-content h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    color: var(--text-muted);
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-specs {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.spec {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.spec strong {
    color: var(--text-light);
}

.product-content .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.visual-placeholder {
    width: 100%;
    max-width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--border-color);
}

.visual-placeholder svg {
    width: 80%;
    height: 80%;
}

/* ==================== Bundle Section ==================== */
.bundle-section {
    padding: 5rem 20px;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05), transparent);
}

.bundle-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-section > .container > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bundle-card {
    background: var(--card-bg);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
}

.bundle-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.bundle-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.bundle-price .original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.2rem;
}

.bundle-price .discounted {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-price .savings {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bundle-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ==================== Comparison Table ==================== */
.comparison-section {
    padding: 5rem 20px;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.1), rgba(255, 107, 53, 0.1));
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 1.5rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(0, 180, 216, 0.05);
}

/* ==================== Responsive Adjustments ==================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-grid.reverse {
        direction: ltr;
    }

    .product-visual {
        min-height: 300px;
    }

    .product-content .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .bundle-price {
        flex-direction: column;
        gap: 0.5rem;
    }

    .bundle-price .discounted {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.4rem;
    }

    .product-content h2 {
        font-size: 1.6rem;
    }

    .bundle-card {
        padding: 1.5rem;
    }

    .bundle-price .discounted {
        font-size: 1.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}
