/* =================================================================
   PRODUCT PAGE SPECIFIC STYLES
================================================================= */

body {
    background: var(--darker);
}

.product-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Simplified Header for Product Pages */
.product-header {
    background: #000;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-header .logo-desktop {
    width: 150px;
}

.back-to-products {
    color: var(--light);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-products:hover {
    color: var(--accent);
}

/* Main Product Content Area */
.product-content {
    padding: 4rem 0 6rem 0;
}

/* Product Hero Section */
.product-hero {
    
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5rem;
}

.product-hero-icon {
    background: var(--dark);
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-hero-icon img {
    width: 60px;
    height: auto;
}

.product-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--light);
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    margin-bottom: 5rem;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

.feature-card i {
    color: var(--accent);
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
    text-transform: none;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Description Section */
.product-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-description h2 {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-content .container {
        padding: 0 1rem;
    }
    .product-header .logo-desktop {
        display: none;
    }
    .product-header .logo-mobile{
        display: block;
        height: 60px; /* Corrected logo height */
        width: auto;
    }

    .product-hero {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .product-hero h1 {
        font-size: 2.5rem;
    }

    .product-subtitle {
        font-size: 1.1rem;
    }
}
