/* === Product Page Specific Styles === */

/* Override page container padding for this page */
.page-container.product-page {
    padding: 2.5rem 0; /* Set specific vertical padding */
}

/* REMOVED Banner Styles */

/* === Core Products Section Styles === */
.core-products {
    background-color: #f9f9f9; 
    padding: 3rem 0 2rem 0; /* Adjust padding */
    /* Removed borders as it's the first section now */
    /* border-top: 1px solid var(--border-color); */ 
    /* border-bottom: 1px solid var(--border-color); */
}

.core-products h2 {
     text-align: center;
     font-size: 2.2em;
     margin-bottom: 0.8rem; /* Reduced margin */
     font-weight: 600;
     position: relative;
     color: var(--dark-text);
     border-left: none;
     padding-left: 0;
}

.core-products h2::after { /* Added underline for section title */
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.core-products .section-subtitle { /* Keep subtitle style */
    text-align: center;
    color: var(--secondary-text);
    margin-bottom: 2.5rem; /* Reduced margin */
    font-size: 1.1em;
}

/* Keep product card styles (including download button) */
.product-card .download-button { /* ... */ }
.product-card .download-button:hover { /* ... */ }
.product-card .download-button i { /* ... */ }

/* Section Title for OTHER Product List */
.product-list-section {
    padding: 3rem 0; /* Add consistent padding */
}

.product-list-section h2 {
    text-align: center;
    font-size: 2.0em; /* Slightly smaller title for this section */
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
    color: var(--dark-text);
}

.product-list-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Product Grid and Card Styles (Refined) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-white);
    padding: 1.8rem; /* Slightly adjusted padding */
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column; 
    text-align: left; 
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.09);
}

.product-icon {
    font-size: 2.1em; 
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 50px; 
    height: 50px;
    background-color: #e9f7ef; 
    border-radius: 10px; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card h3 {
    font-size: 1.25em;
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: var(--dark-text);
    font-weight: 600;
}

.product-card p {
    font-size: 0.92em;
    color: var(--secondary-text);
    line-height: 1.6;
    flex-grow: 1; 
    margin-bottom: 1rem; 
}

.product-highlights {
    margin-top: auto; /* Push highlights to bottom */
    padding-top: 0.8rem;
    margin-bottom: 1rem; /* Add margin below highlights if button follows */
    border-top: 1px solid #eee;
    font-size: 0.8em;
    color: var(--secondary-text);
}
.product-card .product-highlights + .download-button {
     margin-top: 0; /* Remove auto margin if highlights already pushed it */
}

.product-highlights span {
    display: inline-block; 
    margin-right: 0.8rem;
    margin-bottom: 0.3rem; 
    white-space: nowrap;
}

.product-highlights span i {
    margin-right: 4px;
    color: var(--primary-color);
    font-size: 0.9em;
}

/* Ensure download button is always at the bottom if no highlights */
.product-card .download-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    margin-top: auto; /* Push button to bottom */
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start; /* Align left */
    width: auto; 
}

.product-card .download-button:hover {
    background-color: var(--primary-hover-color);
    transform: scale(1.03);
}

.product-card .download-button i {
    font-size: 0.85em;
    margin-left: 7px;
    opacity: 0.9;
}

/* Dark Mode Adjustments (Keep as is or refine further) */
/* ... */

/* Remove styles for old elements */
/* ... */

/* Add any other product-page specific styles here */ 