.kp-product-data {
    --kp-pd-section-gap: 18px;
    --kp-pd-description-purchase-gap: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: 100%;
    gap: var(--kp-pd-section-gap);
    color: #1c1917;
    text-align: center;
}

.kp-product-data .added_to_cart,
.kp-product-data .wc-forward {
    display: none !important;
}

.kp-pca-price-unit {
    font-size: 0.72em;
    font-weight: 500;
    opacity: 0.72;
    white-space: nowrap;
}

.kp-product-data__main-tagline,
.kp-product-data__title,
.kp-product-data__extra-taglines,
.kp-product-data__short-description,
.kp-product-data__divider,
.kp-product-data__options,
.kp-product-data__price,
.kp-product-data__actions {
    width: auto;
    max-width: 100%;
}

.kp-product-data__main-tagline {
    display: inline-block;
    padding: 10px 0;
    color: #681c32;
    border-color: currentColor;
    border-style: solid;
    border-width: 1px 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kp-product-data__title {
    display: inline-block;
    margin: 0;
    color: #1c1917;
    font-family: "URW Classico", Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.kp-product-data__extra-taglines,
.kp-product-data__purchase {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kp-product-data__extra-taglines {
    gap: 0;
}

.kp-product-data__extra-tagline {
    display: inline-block;
    max-width: 100%;
    padding: 8px 0;
    color: #681c32;
    border-top: 0 solid rgba(104, 28, 50, 0.2);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kp-product-data__extra-tagline + .kp-product-data__extra-tagline {
    border-top-width: 1px;
}

.kp-product-data__short-description {
    display: inline-block;
    width: auto;
    max-width: 100%;
    color: #51463f;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.kp-product-data__short-description p {
    margin: 0;
}

.kp-product-data__short-description p:not(:last-child) {
    margin-bottom: 0.75em;
}

.kp-product-data__short-description a {
    color: #681c32;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.kp-product-data__short-description + .kp-product-data__divider,
.kp-product-data__short-description + .kp-product-data__divider + .kp-product-data__purchase,
.kp-product-data__short-description + .kp-product-data__purchase {
    margin-top: calc(var(--kp-pd-description-purchase-gap) - var(--kp-pd-section-gap));
}

.kp-product-data__divider {
    width: 160px;
    height: 1px;
    background: rgba(28, 25, 23, 0.18);
}

.kp-product-data__purchase {
    width: auto;
    max-width: 100%;
    gap: 18px;
}

.kp-pca-weight-picker {
    --kp-weight-accent: #681c32;
    --kp-weight-border: rgba(104, 28, 50, 0.28);
    --kp-weight-focus: var(--kp-weight-accent);
    --kp-weight-picker-width: 360px;
    --kp-weight-button-width: 48px;
    --kp-weight-control-height: 48px;
    display: grid;
    width: min(100%, var(--kp-weight-picker-width));
    gap: 10px;
    margin: 14px 0;
    color: #1c1917;
}

.kp-product-data .kp-pca-weight-picker {
    margin: 0;
}

.kp-pca-weight-picker__heading {
    display: flex;
    gap: 12px;
    align-items: baseline;
    justify-content: space-between;
}

.kp-pca-weight-picker__label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.kp-pca-weight-picker__unit-price {
    color: #6b625d;
    font-size: 12px;
    line-height: 1.3;
}

.kp-pca-weight-picker__unit-price .amount {
    color: inherit;
}

.kp-pca-weight-picker__control {
    display: grid;
    grid-template-columns: var(--kp-weight-button-width) minmax(100px, 1fr) var(--kp-weight-button-width);
    min-height: var(--kp-weight-control-height);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--kp-weight-border);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(40, 22, 25, 0.06);
}

.kp-pca-weight-picker__button {
    appearance: none;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: var(--kp-weight-accent);
    background: transparent;
    border: 0;
    border-radius: 0;
    font: inherit;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.kp-pca-weight-picker__button-icon {
    display: block;
    padding: 0;
    line-height: 1;
    pointer-events: none;
}

.kp-pca-weight-picker__button:hover:not(:disabled) {
    color: #fff;
    background: var(--kp-weight-accent);
}

.kp-pca-weight-picker__button:focus-visible {
    outline: 2px solid var(--kp-weight-focus);
    outline-offset: -3px;
}

.kp-pca-weight-picker__button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.kp-pca-weight-picker__input-wrap {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 15px;
    font-weight: 700;
}

.kp-pca-weight-picker__value {
    display: inline-block;
    width: 76px;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    text-align: right;
    box-shadow: none;
}

.kp-pca-weight-picker__hint {
    color: #766c66;
    font-size: 12px;
    line-height: 1.4;
}

.kp-pca-weight-picker__total-row {
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.kp-pca-weight-picker__total-label {
    color: #766c66;
    font-size: 12px;
    font-weight: 500;
}

.kp-pca-weight-picker__total {
    color: var(--kp-weight-accent);
    font-family: "URW Classico", Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.kp-product-data__variation-form,
.kp-product-data__variation-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: 100%;
}

.kp-product-data__variation-select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.kp-product-data__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.kp-product-data__option,
.kp-product-data__add-to-cart,
.kp-product-data__quantity-button {
    appearance: none;
    border: 0;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.kp-product-data__option {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 72px;
    padding: 12px 20px;
    color: #681c32;
    background: transparent;
    border-radius: 0;
    border: 1px solid rgba(104, 28, 50, 0.35);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.kp-variation-pill__label {
    position: relative;
    z-index: 1;
    display: block;
    color: inherit;
    font-size: inherit;
    opacity: 1;
    visibility: visible;
    text-indent: 0;
}

.kp-variation-pill__price {
    position: relative;
    z-index: 1;
    display: block;
    color: inherit;
    font-size: 0.86em;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0.9;
}

.kp-product-data__option:hover,
.kp-product-data__option:focus {
    color: #ffffff;
    background: #681c32;
    border-color: #681c32;
    outline: none;
}

.kp-product-data__option.is-active {
    color: #ffffff;
    background: #681c32;
    border-color: #681c32;
}

.kp-product-data__option:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.kp-product-data__price {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    justify-content: center;
    color: #1c1917;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.kp-product-data__price ins {
    text-decoration: none;
}

.kp-product-data__availability {
    display: none;
    color: #51463f;
    font-size: 13px;
    line-height: 1.45;
}

.kp-product-data__availability.has-availability {
    display: block;
}

.kp-product-data__actions {
    --kp-pd-purchase-row-gap: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--kp-pd-purchase-row-gap);
    align-items: center;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
}

.kp-product-data__quantity {
    --kp-quantity-button-width: 42px;
    display: inline-grid;
    grid-template-columns: var(--kp-quantity-button-width) minmax(42px, 1fr) var(--kp-quantity-button-width);
    align-items: center;
    min-height: 50px;
    width: 150px;
    overflow: hidden;
    color: #1c1917;
    background: #f7f3ef;
    border: 1px solid rgba(28, 25, 23, 0.18);
    border-radius: 999px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.kp-product-data__quantity:focus-within {
    border-color: rgba(104, 28, 50, 0.55);
    box-shadow: 0 0 0 3px rgba(104, 28, 50, 0.12);
}

.kp-product-data__quantity-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: inherit;
    background: transparent;
    font-size: 20px;
    line-height: 1;
}

.kp-product-data__quantity-button-icon {
    display: block;
    padding: 0;
    line-height: 1;
    pointer-events: none;
}

.kp-product-data__quantity-button:hover,
.kp-product-data__quantity-button:focus {
    background: rgba(28, 25, 23, 0.06);
    outline: none;
}

.kp-product-data__quantity-button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.kp-product-data .kp-product-data__quantity input[type="number"].kp-product-data__quantity-input,
.kp-product-data .kp-product-data__quantity input.qty,
.kp-product-data__quantity-input {
    appearance: textfield;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    -moz-appearance: textfield;
}

.kp-product-data .kp-product-data__quantity input[type="number"].kp-product-data__quantity-input:focus,
.kp-product-data .kp-product-data__quantity input.qty:focus,
.kp-product-data__quantity-input:focus {
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.kp-product-data .kp-product-data__quantity input[type="number"].kp-product-data__quantity-input::-webkit-outer-spin-button,
.kp-product-data .kp-product-data__quantity input[type="number"].kp-product-data__quantity-input::-webkit-inner-spin-button,
.kp-product-data .kp-product-data__quantity input.qty::-webkit-outer-spin-button,
.kp-product-data .kp-product-data__quantity input.qty::-webkit-inner-spin-button,
.kp-product-data__quantity-input::-webkit-outer-spin-button,
.kp-product-data__quantity-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.kp-product-data__add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: auto;
    padding: 13px 26px;
    color: #ffffff;
    background: #1c1917;
    border: 1px solid #1c1917;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.kp-product-data__add-to-cart:hover,
.kp-product-data__add-to-cart:focus {
    color: #ffffff;
    background: #681c32;
    border-color: #681c32;
    outline: none;
}

.kp-product-data__add-to-cart:disabled,
.kp-product-data__add-to-cart.is-loading {
    cursor: not-allowed;
    opacity: 0.55;
}

.kp-product-data__message,
.kp-product-data__empty,
.kp-product-data__notice {
    display: none;
    width: auto;
    max-width: 100%;
    padding: 10px 12px;
    color: #681c32;
    background: rgba(104, 28, 50, 0.08);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
}

.kp-product-data__empty,
.kp-product-data__notice,
.kp-product-data__message.has-message {
    display: block;
}

@media (max-width: 768px) {
    .kp-product-data-widget .kp-product-data__actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .kp-product-data-widget .kp-product-data__quantity,
    .kp-product-data-widget .kp-product-data__add-to-cart {
        flex: 0 1 calc((100% - var(--kp-pd-purchase-row-gap, 12px)) / 2);
        width: calc((100% - var(--kp-pd-purchase-row-gap, 12px)) / 2);
        min-width: 0;
        max-width: calc((100% - var(--kp-pd-purchase-row-gap, 12px)) / 2);
        box-sizing: border-box;
    }

    .kp-product-data-widget .kp-product-data__quantity {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
    }

    .kp-product-data-widget .kp-product-data__add-to-cart {
        padding-right: 14px;
        padding-left: 14px;
    }

}
