/* KL Single Product Embed - front-end styles
   Responsive card: image, H2 title, price, Shop Now button.
   Inherits the theme font; uses a brown accent to match the store. */

.kl-sp-card {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 1.5em 0;
    text-align: center;
}

.kl-sp-card * {
    box-sizing: border-box;
}

/* Alignment of the whole card within its container */
.kl-sp-align-center { margin-left: auto; margin-right: auto; }
.kl-sp-align-left   { margin-left: 0; margin-right: auto; }
.kl-sp-align-right  { margin-left: auto; margin-right: 0; }

/* Image */
.kl-sp-image {
    display: block;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    line-height: 0; /* remove inline-image gap */
}

.kl-sp-card .kl-sp-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kl-sp-image:hover img {
    transform: scale(1.04);
}

/* Body */
.kl-sp-body {
    padding: 14px 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Title (H2) - forced to override stubborn theme H2 rules */
.kl-sp-card h2.kl-sp-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #2b2b2b !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-align: center !important;
}

.kl-sp-card h2.kl-sp-title a {
    color: #2b2b2b !important;
    text-decoration: none;
    font-size: inherit !important;
}

.kl-sp-card h2.kl-sp-title a:hover {
    text-decoration: underline;
}

/* Price */
.kl-sp-card .kl-sp-price {
    font-size: 16px;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0;
}

.kl-sp-price del {
    opacity: 0.6;
    font-weight: 400;
    margin-right: 6px;
}

.kl-sp-price ins {
    text-decoration: none;
}

/* Shop Now button */
.kl-sp-card .kl-sp-button {
    display: inline-block;
    margin-top: 6px;
    padding: 11px 26px;
    background: #8B4513;
    color: #ffffff !important;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.kl-sp-card .kl-sp-button:hover,
.kl-sp-card .kl-sp-button:focus {
    background: #6f370f;
    color: #ffffff !important;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Editor-only error message */
.kl-sp-error {
    color: #b32d2e;
    background: #fcf0f1;
    border-left: 4px solid #b32d2e;
    padding: 10px 14px;
    margin: 1em 0;
    font-size: 14px;
}

/* Responsive type scaling */
@media (max-width: 768px) {
    .kl-sp-card h2.kl-sp-title { font-size: 17px !important; }
    .kl-sp-card .kl-sp-price { font-size: 15px; }
}

@media (max-width: 480px) {
    .kl-sp-card { max-width: 100% !important; } /* never overflow small screens */
    .kl-sp-card h2.kl-sp-title { font-size: 16px !important; }
    .kl-sp-card .kl-sp-button { width: 100%; }
}
