.product-detail {
    --product-navy: #12345d;
    --product-blue: #0d5aae;
    --product-sky: #eef6ff;
    --product-ink: #17263b;
    --product-muted: #617086;
    --product-line: #dce8f5;
    --product-shadow: 0 14px 34px rgba(20, 55, 96, 0.09);
    --product-radius: 1.25rem;
    color: var(--product-ink);
}

.product-detail > section { margin-bottom: 3.5rem; }

.product-detail__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--product-blue);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.82fr);
    min-height: 300px;
    border-bottom: 1px solid var(--product-line);
    background: #f4f9fd;
}

.product-hero__media {
    min-height: 300px;
    overflow: hidden;
    background: var(--product-sky);
}

.product-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__media--logo {
    display: grid;
    place-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: #fff;
}

.product-hero__media--logo img {
    max-width: 100%;
    max-height: 13rem;
    object-fit: contain;
}

.product-detail--company > section { margin-bottom: 2rem; }

.product-hero--company {
    min-height: 0;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
    overflow: hidden;
    border: 1px solid var(--product-line);
    border-radius: var(--product-radius);
}

.product-hero--company .product-hero__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
}

.product-hero--company .product-hero__placeholder { min-height: 0; }

.product-hero--company .product-hero__content {
    padding: clamp(1.35rem, 2.5vw, 2.25rem);
}

.product-hero--company .product-hero__description {
    margin: 0.75rem 0 1rem;
}

.product-hero__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 270px;
    place-content: center;
    gap: 0.65rem;
    color: var(--product-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.product-hero__placeholder i { font-size: 2.25rem; }

.product-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.65rem, 3.5vw, 3rem);
}

.product-hero h1,
.product-section h2,
.product-final-cta h2 {
    margin: 0;
    color: var(--product-navy);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.product-hero h1 {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.05;
}

.product-hero__description {
    max-width: 38rem;
    margin: 1rem 0 1.35rem;
    color: var(--product-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.product-hero__description p:last-child,
.product-coverage__body p:last-child { margin-bottom: 0; }

.product-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.product-btn-primary,
.product-btn-whatsapp {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.1rem;
    border-radius: 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.product-btn-primary {
    border-color: var(--product-blue);
    background: var(--product-blue);
    color: #fff;
}

.product-btn-primary:hover,
.product-btn-primary:focus {
    border-color: var(--product-navy);
    background: var(--product-navy);
    color: #fff;
}

.product-btn-whatsapp {
    border: 1px solid #b7cae0;
    background: #fff;
    color: #138a50;
}

.product-btn-whatsapp:hover,
.product-btn-whatsapp:focus {
    border-color: #138a50;
    background: #f3fff8;
    color: #08743d;
}

.product-section__heading { margin-bottom: 1.35rem; }

.product-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.product-intro__content,
.product-coverages__content,
.product-additional__content {
    max-width: 48rem;
    color: var(--product-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.product-intro__content p:last-child,
.product-coverages__content p:last-child,
.product-additional__content p:last-child { margin-bottom: 0; }

.product-coverages__content {
    padding-left: 1.15rem;
    border-left: 3px solid #a9cbed;
}

.product-additional {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--product-line);
    border-radius: var(--product-radius);
    background: var(--product-sky);
}

.product-additional .product-section__heading { margin-bottom: 1rem; }

.product-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.product-content-panel {
    min-width: 0;
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
    border: 1px solid var(--product-line);
    border-radius: var(--product-radius);
    background: #fff;
}

.product-content-panel:only-child { grid-column: 1 / -1; }

.product-content-panel .product-section__heading { margin-bottom: 1rem; }

.product-content-panel.product-additional { background: var(--product-sky); }

.product-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    column-gap: 1.25rem;
}

.product-coverage-card {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.7rem;
    min-width: 0;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--product-line);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-coverage-card:hover {
    transform: translateX(2px);
}

.product-coverage-card__icon {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 0.6rem;
    background: var(--product-sky);
    color: var(--product-blue);
    font-size: 1.15rem;
}

.product-coverage-card h3 {
    margin: 0;
    color: var(--product-navy);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-coverage-card__description {
    margin-top: 0.35rem;
    color: var(--product-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.product-coverage-card__description p:last-child { margin-bottom: 0; }

.product-coverage {
    overflow: hidden;
    border: 1px solid var(--product-line);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 7px 18px rgba(20, 55, 96, 0.05);
}

.product-coverage__item {
    border: 0;
    border-bottom: 1px solid var(--product-line);
}

.product-coverage__item:last-child { border-bottom: 0; }

.product-coverage__button {
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    background: #fff;
    color: var(--product-navy);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: none;
}

.product-coverage__button:not(.collapsed) {
    background: #fff;
    color: var(--product-navy);
    box-shadow: none;
}

.product-coverage__button:focus { box-shadow: inset 0 0 0 2px rgba(13, 90, 174, 0.2); }

.product-coverage__button i { color: var(--product-blue); }

.product-coverage__body {
    padding: 0.15rem 1.2rem 1.15rem;
    color: var(--product-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-gallery__grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--product-line);
    border-radius: 0.9rem;
    box-shadow: 0 6px 16px rgba(20, 55, 96, 0.05);
    object-fit: cover;
}

.product-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3.5vw, 2.5rem);
    border: 1px solid var(--product-line);
    border-radius: var(--product-radius);
    background: #f4f9fd;
}

.product-final-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.product-final-cta p:not(.product-detail__eyebrow) {
    max-width: 34rem;
    margin: 0.55rem 0 0;
    color: var(--product-muted);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .product-hero { grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.85fr); }
    .product-hero__media { min-height: 240px; }
    .product-coverage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .product-detail > section { margin-bottom: 2.75rem; }
    .product-hero { grid-template-columns: 1fr; }
    .product-hero__media,
    .product-hero__placeholder { min-height: 210px; }
    .product-hero__media { grid-row: 1; }
    .product-hero--company .product-hero__media { grid-row: auto; }
    .product-hero__content { padding: 1.6rem 1.35rem; }
    .product-additional { padding: 1.5rem 1.35rem; }
    .product-content-grid { grid-template-columns: 1fr; gap: 1rem; }
    .product-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575.98px) {
    .product-hero__media,
    .product-hero__placeholder { min-height: 190px; }
    .product-hero h1 { font-size: 2.2rem; }
    .product-cta { width: 100%; }
    .product-cta .product-btn-primary,
    .product-cta .product-btn-whatsapp { flex: 1 1 100%; width: 100%; }
    .product-coverage__button { padding: 0.95rem 1rem; }
    .product-coverage__body { padding: 0.1rem 1rem 1rem; }
    .product-gallery__grid { gap: 0.75rem; }
}
