.sproduct-layout {
    padding: 0 0 70px;
}

/* Two-column layout */
.sp-inner {
    display: flex;
    flex-direction: column;
}

.sp-inner .product-gallery{
    width: 100%;
}

@media (min-width: 1024px) {
    .sp-inner {
        display: grid;
        grid-template-columns: minmax(400px, 483px) 1fr;
        grid-template-rows: auto 1fr;
        column-gap: 60px;
        align-items: start;
    }

    /* Gallery: left column, spans both rows */
    .sp-inner .product-gallery {
        grid-column: 1;
        grid-row: 1 / 3;
        position: sticky;
        top: 24px;
        order: unset;
        max-width: 100%;
        margin-bottom: 0;
    }

    /* Header: right column, row 1 */
    .sp-header {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 18px;
        order: unset;
    }

    /* Body: right column, row 2 */
    .sp-content {
        grid-column: 2;
        grid-row: 2;
        margin-top: 0;
        order: unset;
    }
}



/* Price badge */
.sp-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 5;
    background: rgba(255,255,255,.92);
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    pointer-events: none;
}

/* ─── RIGHT: CONTENT ─── */
.sp-content {
    flex: 1;
    min-width: 0;
}

@media (min-width: 1024px) {

}

/* h1 row */
.sp-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.sp-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin: 0;
}

@media (min-width: 768px) { .sp-title { font-size: 24px; } }
@media (min-width: 1024px) { .sp-title { font-size: 28px; } }

/* Share button */
.sp-share {
    flex-shrink: 0;
    cursor: pointer;
}

/* Body text */
.sp-text {
    margin-bottom: 24px;
}
.sp-text strong {
    color: var(--black);
    font-weight: 700;
}

/* h2 */
.sp-h2, .sp-text.text h2 {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}

.sp-text.text h2{
    margin: 24px 0;
}

@media (min-width: 768px) {
    .sp-h2, .sp-text.text h2 { font-size: 24px; }
}

@media (min-width: 1024px) {
    .sp-h2, .sp-text.text h2 { font-size: 28px; }
}

/* Bullet list */
.sp-list {
    list-style: none;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-list li {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--black);
    padding-left: 20px;
    position: relative;
}
.sp-list li::before {
    content: '•';
    position: absolute;
    left: 4px; top: 0;
    color: var(--black);
    font-size: 16px;
    line-height: 1.45;
}

@media (min-width: 768px) { .sp-list li { font-size: 14px; } }

/* CTA */
.sp-cta { margin-top: 8px; }

.sproduct-catalog{
    padding-bottom: 24px;
}
