/* Products Page - Dark Theme */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bg-dark);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.header-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.header-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -150px;
    right: -100px;
}

.header-shape-2 {
    width: 250px;
    height: 250px;
    background: #7c3aed;
    bottom: -80px;
    left: -50px;
    opacity: 0.2;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb span { color: var(--text-muted); }

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-intro {
    padding: 5rem 0 3rem;
    background: var(--bg-darker);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.products-section {
    padding: 3rem 0 6rem;
    background: var(--bg-dark);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even) > * { direction: ltr; }
.product-card:last-child { border-bottom: none; }

.product-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image-logo img {
    object-fit: contain;
    padding: 2rem;
    background: var(--bg-card);
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.product-icon-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
}

.product-icon-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-icon-logo .fallback-icon {
    display: none;
    font-size: 2.5rem;
}

.product-icon-logo img[style*="display: none"] + .fallback-icon,
.product-icon-logo .fallback-icon:only-child {
    display: inline;
}

.product-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.product-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover { background: rgba(245, 88, 27, 0.1); }

.why-choose-section { padding: 6rem 0; background: var(--bg-darker); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.products-section ~ .cta-section .cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary);
}

.nav-link.active { color: var(--primary); }

@media (max-width: 1024px) {
    .product-card { grid-template-columns: 1fr; gap: 2rem; }
    .product-card:nth-child(even) { direction: ltr; }
    .product-features ul { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-header { padding: 120px 0 60px; }
    .product-image img { height: 250px; }
    .product-content h2 { font-size: 1.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
}
