/* ===========================
   PRODUCT PAGE SPECIFIC STYLES
   =========================== */

/* Product Hero Section */
.product-hero-section {
    background-color: #1F2937;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.product-hero-section h1 {
    margin: 0.5rem 0;
    font-size: 2.5rem;
}
.product-hero-section p {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
}
.breadcrumbs a {
    color: #9CA3AF;
    transition: color 0.3s;
}
.breadcrumbs a:hover {
    color: #fff;
}
.breadcrumbs span {
    color: #fff;
}

/* Product Details Page Layout */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-description h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.product-description p {
    margin-bottom: 1.5rem;
}

/* Additional Info Section */
.more-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.more-info-grid h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    border-left: 3px solid #2563EB;
    padding-left: 1rem;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (min-width: 768px) {
    .product-hero-section {
        padding: 5rem 0;
        text-align: left;
    }
    .product-hero-section h1 {
        font-size: 3.75rem;
    }

    .product-details-grid {
        grid-template-columns: 4fr 5fr; /* 40% image, 50% text */
    }

    .more-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
