/* Products specific styles */
.product-hero {
    background-color: #1a73e8;
    color: white;
    padding: 3rem 1rem;
    min-height: 80vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.product-hero-text {
    flex: 1;
    max-width: 60%;
}

.product-hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.product-features-list {
    margin: 1.5rem 0;
}

.product-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.feature-plus-icon {
    background-color: #34a853;
    min-width: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 2px;
}

.product-buy-button {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    max-width: 400px;
    margin-top: 2rem;
}

.product-buy-button:hover {
    background-color: #ffed4a;
}

.product-price {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 40%;
}

.product-card {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #333;
}

.product-nav {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.product-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.product-nav-logo {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-nav-links {
    display: flex;
    gap: 2rem;
}

.product-nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.product-nav-links a:hover {
    color: #1a73e8;
}

/* Responsive styles */
@media (max-width: 968px) {
    .product-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .product-hero-text,
    .product-hero-image {
        max-width: 100%;
    }

    .product-hero-text h1 {
        font-size: 2rem;
    }

    .product-nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .product-hero-text h1 {
        font-size: 1.8rem;
    }

    .product-feature-item {
        font-size: 0.9rem;
    }

    .feature-plus-icon {
        min-width: 28px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}