div:empty,
p:empty,
section:empty,
article:empty,
span:empty,
header:empty,
footer:empty,
aside:empty {
    margin: 0 !important;
    padding: 0 !important;
    /* display: none !important; */
}

.product-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.product-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center
}

.product-media {
    width: 50%;
}

.product-media img {
    max-width: 100%;
    border-radius: 8px;
    /* object-fit: cover; */
    object-fit: contain;
	aspect-ratio:4/3;
}

.product-details {
    flex: 1;
    width: 50%;
    min-width: 250px;
}

.product-details h5.product-label {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 120%;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: normal;
}

.product-description,
.product-container p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    letter-spacing: normal;
}

.product-container h5 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: normal;
    margin-bottom: 1rem;
    display: block;
}

.product-container p {
    margin-bottom: 1rem;
    display: block;
}

.packing-item p {
    margin: 0 !important;
}

.product-container ul {
    gap: .5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.product-container ul li {
    color: var(--white);
    letter-spacing: normal;
    font-family: 'NotoSans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.product-tds-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--white);
    border-radius: 6px;
}

.pt-0 {
    padding-top: 0 !important;
}

/* === Contact Form Grid === */
#contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 820px;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}



/* mobile view */
@media (max-width: 768px) {
    .product-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .product-details h5 {
        font-size: 1.5rem;
    }

    .product-media,
    .product-details {
        width: 100%;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-description {
        font-size: 18px;
    }

    .product-container {
        padding: 2.5rem 1rem;
    }

    .product-tds-box {
        padding: 1rem;
    }

    #contact-form {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}