/* Custom Packaging Grid */
.custom-packaging-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}
.custom-packaging-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.custom-packaging-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
    max-width: 640px;
}
.custom-packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 992px) {
    .custom-packaging-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .custom-packaging-grid { grid-template-columns: 1fr; }
}
.custom-packaging-card {
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}
.custom-packaging-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.custom-packaging-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}
.custom-packaging-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.custom-packaging-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color, #000);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.custom-packaging-body {
    padding: 1rem;
}
.custom-packaging-body h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.custom-packaging-body p {
    margin-bottom: 1rem;
    line-height: 1.4;
}
.custom-packaging-view {
    width: 100%;
}