.product-highlight-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.product-highlight-section .ph-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.product-highlight-section .ph-col-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.product-highlight-section .ph-image-wrap {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Smaller subtle shadow */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 5px; /* Smaller padding */
    line-height: 0;
}

.product-highlight-section .ph-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-highlight-section .ph-col-content {
    flex: 1.2;
    min-width: 300px;
    padding-top: 5px; /* Tiny adjustment to align with image top */
}

.product-highlight-section .ph-title-wrap {
    margin-bottom: 15px; /* Reduced from 25px */
}

.product-highlight-section .ph-title-1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1; /* Tightened */
    margin: 0 0 8px 0;
    color: #fff;
}

.product-highlight-section .ph-title-2 {
    font-size: 26px; /* Slightly smaller */
    font-weight: 400;
    font-style: italic;
    font-family: 'Georgia', serif;
    margin: 0;
    line-height: 1.2; /* Tightened */
    opacity: 0.9;
    color: #fff;
}

.product-highlight-section .ph-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px; /* Reduced from 30px */
    opacity: 0.85;
    white-space: pre-line;
}

.product-highlight-section.ph-reversed .ph-grid {
    flex-direction: row-reverse;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
    .product-highlight-section {
        padding: 40px 0;
    }
    .product-highlight-section .ph-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .product-highlight-section.ph-reversed .ph-grid {
        flex-direction: column; /* Back to normal stack on mobile */
    }
    .product-highlight-section .ph-title-1 { font-size: 24px; }
    .product-highlight-section .ph-title-2 { font-size: 20px; }
}

@media (max-width: 480px) {
    .product-highlight-section .ph-image-wrap {
        padding: 5px;
    }
    .product-highlight-section .ph-description {
        font-size: 14px;
    }
}
