/* =============================================
   PRODUCT PAGE — Mobile-first styles
   All rules scoped to product-specific classes
   ============================================= */

div.breadcrumbs {
    position: inherit;
}

/* --- Product section wrapper --- */
.product-section {
    padding: 40px 0 60px;
}

/* --- Card-style container --- */
.product-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

/* --- Image block --- */
.product-image {
    width: 100%;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* --- Text block --- */
.product-text {
    padding: 24px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 4px;
    line-height: 1.3;
}

/* Description: handles any length gracefully */
.product-text p,
.product-text .product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
    word-break: break-word;
}

/* Lists inside description */
.product-text ul,
.product-text ol {
    margin: 12px 0 12px 20px;
    padding: 0;
}

.product-text li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    margin-bottom: 4px;
}

/* --- CTA button --- */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    align-self: flex-start;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(206, 18, 18, 0.3);
}

.product-cta:hover {
    background-color: #a80e0e;
    transform: translateY(-2px);
    color: #fff !important;
}

/* =============================================
   Tablet — 600 px and up
   ============================================= */
@media (min-width: 600px) {
    .product-image img {
        height: 380px;
    }

    .product-text {
        padding: 32px 40px 40px;
    }

    .product-text h2 {
        font-size: 30px;
    }
}

/* =============================================
   Desktop — 900 px and up
   ============================================= */
@media (min-width: 900px) {
    .product-container {
        flex-direction: row;
        align-items: stretch;
        padding: 0;
    }

    .product-image {
        width: 45%;
        min-width: 320px;
        max-width: 520px;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        min-height: 400px;
        max-height: 640px;
        object-fit: cover;
    }

    .product-text {
        flex: 1;
        padding: 48px 52px;
        justify-content: center;
    }

    .product-text h2 {
        font-size: 34px;
    }
}