.product-detail .lc-pdp-registration-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px 12px;
    min-height: 52px;
    padding-top: 12px;
}

.product-detail .lc-pdp-registration-row > .option-group {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
}

.product-detail .lc-pdp-register {
    position: relative;
    display: inline-flex;
    flex: 0 0 158px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 158px;
    height: 40px;
    margin-left: auto;
    padding: 0 6px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #101010;
    font: 700 13px/1 "Oswald", sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease;
}

.product-detail .lc-pdp-register * { box-sizing: border-box; letter-spacing: 0; }

.product-detail .lc-pdp-register::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #90b8ca;
    border-radius: inherit;
    clip-path: polygon(0 0, calc(100% - 46px) 0, calc(100% - 46px) 15px, calc(100% - 6px) 15px, calc(100% - 6px) 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.product-detail .lc-pdp-register:hover { color: #315b70; }
.product-detail .lc-pdp-register:hover::before { border-color: #5088a5; }
.product-detail .lc-pdp-register:focus-visible { outline: 2px solid #5088a5; outline-offset: 5px; }

.product-detail .lc-pdp-copy {
    position: relative;
    display: block;
    flex: 0 0 146px;
    width: 146px;
    height: 32px;
    overflow: hidden;
    border-radius: 2px;
    isolation: isolate;
    pointer-events: none;
}

.product-detail .lc-pdp-sticker-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 32px;
    background: #fff;
    color: inherit;
    transform-origin: 0 0;
    pointer-events: none;
}

.product-detail .lc-pdp-sticker-under { z-index: 0; }
.product-detail .lc-pdp-sticker-front { z-index: 1; }
.product-detail .lc-pdp-sticker-shadow {
    position: absolute;
    top: -180px;
    left: 0;
    width: 18px;
    height: 360px;
    z-index: 2;
    transform-origin: 0 50%;
    background: linear-gradient(90deg, rgba(37, 69, 81, .2), rgba(37, 69, 81, .07) 45%, transparent);
    opacity: 0;
    pointer-events: none;
}

.product-detail .lc-pdp-sticker-back {
    z-index: 3;
    opacity: 0;
    background: linear-gradient(110deg, #fff 5%, #f2f6f8 55%, #dce8ee);
}

.product-detail .lc-pdp-sticker-curl { z-index: 4; opacity: 0; }
.product-detail .lc-pdp-gift-anchor {
    position: absolute;
    right: 8px;
    top: -22px;
    width: 36px;
    height: 36px;
    pointer-events: none;
}

.product-detail .lc-pdp-gift {
    display: block;
    width: 100%;
    height: 100%;
    color: #5088a5;
    transform-origin: 50% 65%;
    animation: lc-pdp-gift-breathe 3.6s cubic-bezier(.45, 0, .2, 1) infinite;
}

.product-detail .lc-pdp-gift svg {
    display: block;
    width: 36px;
    height: 36px;
    max-width: none;
    stroke-width: 1.4;
}

.product-detail .lc-pdp-register[data-animate="false"] .lc-pdp-gift { animation-play-state: paused; }

@keyframes lc-pdp-gift-breathe {
    0%, 16%, 100% { transform: translateY(0) scale(1); opacity: .86; }
    49% { transform: translateY(-1.2px) scale(1.08); opacity: 1; }
    79% { transform: translateY(0) scale(1); opacity: .86; }
}

@media (pointer: coarse) {
    .product-detail .lc-pdp-register { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .product-detail .lc-pdp-gift { animation: none; opacity: 1; }
    .product-detail .lc-pdp-register { transition: none; }
}
