html {
    scroll-behavior: smooth;
}

body.bdlp-body {
    margin: 0 !important;
    background: var(--bdlp-page) !important;
    color: var(--bdlp-text) !important;
    font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: var(--bdlp-body-size) !important;
    line-height: 1.65;
    overflow-x: hidden;
}

.bdlp-body *,
.bdlp-body *::before,
.bdlp-body *::after {
    box-sizing: border-box;
}

.bdlp-body img {
    max-width: 100%;
    height: auto;
}

.bdlp-body a {
    text-decoration: none;
}

.bdlp-page {
    min-height: 100vh;
    overflow: hidden;
    background: var(--bdlp-page);
}

.bdlp-container {
    width: min(calc(100% - 32px), var(--bdlp-width));
    margin-inline: auto;
}

.bdlp-section {
    padding: 52px 0;
}

.bdlp-section-card {
    border: 1px solid rgba(236, 8, 117, .12);
    border-radius: var(--bdlp-radius);
    padding: clamp(26px, 4vw, 48px);
    box-shadow: 0 22px 70px rgba(78, 15, 49, .08);
    position: relative;
    overflow: hidden;
}

.bdlp-section-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(236, 8, 117, .12), transparent 68%);
    pointer-events: none;
}

.bdlp-center {
    text-align: center;
    margin-top: 30px;
}

/* Hero */
.bdlp-hero {
    position: relative;
    min-height: 760px;
    padding: 46px 0 0;
    color: #fff;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 255, 255, .15), transparent 17%),
        radial-gradient(circle at 82% 18%, rgba(255, 72, 175, .22), transparent 24%),
        linear-gradient(135deg, var(--bdlp-hero-start) 0%, var(--bdlp-hero-middle) 50%, var(--bdlp-hero-end) 100%);
    isolation: isolate;
}

.bdlp-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 92px;
    background: var(--bdlp-page);
    clip-path: polygon(0 72%, 15% 58%, 31% 72%, 48% 51%, 64% 68%, 82% 50%, 100% 64%, 100% 100%, 0 100%);
    z-index: 1;
}

.bdlp-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: -4;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.bdlp-ribbon {
    position: absolute;
    width: 1200px;
    height: 260px;
    right: -270px;
    top: 90px;
    z-index: -3;
    border-radius: 50%;
    border: 42px solid rgba(255, 77, 175, .14);
    transform: rotate(-18deg) skewX(-12deg);
    filter: blur(.2px);
    box-shadow: 0 0 50px rgba(255, 39, 148, .28), inset 0 0 30px rgba(255,255,255,.08);
}

.bdlp-orb {
    position: absolute;
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 30% 25%, #fff 0 8%, #ff8ec8 15%, #e20b7c 48%, #650033 77%, transparent 79%);
    box-shadow: 0 0 35px rgba(255, 65, 161, .42);
}

.bdlp-orb::after {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: inherit;
}

.bdlp-orb-one { width: 55px; height: 55px; left: 8%; top: 20%; }
.bdlp-orb-two { width: 84px; height: 84px; right: 8%; top: 19%; }
.bdlp-orb-three { width: 38px; height: 38px; right: 22%; top: 7%; }

.bdlp-animation-on .bdlp-orb-one { animation: bdlpFloat 5.2s ease-in-out infinite; }
.bdlp-animation-on .bdlp-orb-two { animation: bdlpFloat 6.4s ease-in-out infinite reverse; }
.bdlp-animation-on .bdlp-orb-three { animation: bdlpFloat 4.4s ease-in-out infinite 1s; }
.bdlp-animation-on .bdlp-ribbon { animation: bdlpRibbon 9s ease-in-out infinite alternate; }
.bdlp-animation-on .bdlp-product-card-3d { animation: bdlpProductFloat 4.8s ease-in-out infinite; }

@keyframes bdlpFloat {
    0%,100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.06); }
}

@keyframes bdlpRibbon {
    from { transform: rotate(-18deg) skewX(-12deg) translateX(0); }
    to { transform: rotate(-14deg) skewX(-8deg) translateX(-70px); }
}

@keyframes bdlpProductFloat {
    0%,100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-12px) rotateX(-1deg) rotateY(2deg); }
}

.bdlp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(420px, 1.15fr);
    align-items: center;
    gap: clamp(24px, 5vw, 72px);
    padding-bottom: 120px;
}

.bdlp-product-stage {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
    perspective: 1000px;
}

.bdlp-stage-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .35), rgba(255, 34, 146, .14) 48%, transparent 70%);
    filter: blur(10px);
}

.bdlp-product-card-3d {
    width: min(360px, 86%);
    min-height: 350px;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,238,247,.93));
    border: 1px solid rgba(255,255,255,.78);
    box-shadow:
        0 42px 80px rgba(36,0,18,.42),
        0 12px 22px rgba(255,255,255,.25) inset,
        -10px -10px 30px rgba(255,255,255,.4) inset;
    position: relative;
    z-index: 3;
    transform-style: preserve-3d;
}

.bdlp-product-card-3d::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 21px;
    border: 1px solid rgba(236,8,117,.13);
    pointer-events: none;
}

.bdlp-product-card-3d img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 18px;
    display: block;
}

.bdlp-product-badge {
    position: absolute;
    right: 17px;
    top: 17px;
    z-index: 4;
    color: #fff;
    background: linear-gradient(135deg, var(--bdlp-primary), #8c0048);
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 12px 22px rgba(130,0,65,.35);
}

.bdlp-stage-base {
    position: absolute;
    width: 390px;
    max-width: 95%;
    height: 105px;
    bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, #d8c5d0 44%, #7a164b 46%, #39001c 100%);
    box-shadow: 0 32px 45px rgba(30,0,15,.45);
    transform: rotateX(67deg);
}

.bdlp-stage-base span {
    position: absolute;
    inset: 15px 45px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.92), rgba(255,16,139,.35) 55%, transparent 70%);
}

.bdlp-hero-copy {
    text-align: left;
    padding-top: 20px;
}

.bdlp-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.11);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.bdlp-hero h1 {
    color: #fff !important;
    font-size: var(--bdlp-heading-size) !important;
    line-height: 1.15 !important;
    margin: 0 0 18px !important;
    font-weight: 900 !important;
    letter-spacing: -.02em;
    text-shadow: 0 12px 32px rgba(33,0,17,.35);
}

.bdlp-hero-description {
    color: rgba(255,255,255,.91);
    font-size: 17px;
    max-width: 680px;
}

.bdlp-hero-description p {
    margin: 0 0 18px;
}




.bdlp-offer-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    min-height: 58px;
    margin: 8px 0 18px;
    padding: 14px 24px;
    color: var(--bdlp-primary);
    background: linear-gradient(180deg, #fffdf7, #fff3d8);
    border-radius: 28px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(25,0,12,.23);
}

.bdlp-current-price-title {
    display: block;
    color: #8b355b;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.bdlp-current-price-value {
    display: block;
    color: var(--bdlp-primary);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.05;
}

.bdlp-current-price-value .woocommerce-Price-amount {
    font-weight: 900;
}

.bdlp-price-board-wrap {
    margin: 10px 0 18px;
    width: min(100%, 640px);
}

.bdlp-price-board-header {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

.bdlp-price-board {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.19), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 24px 55px rgba(28,0,14,.28), inset 0 1px 0 rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
}

.bdlp-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,244,250,.92));
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 14px 28px rgba(16,0,8,.12), inset 0 1px 0 rgba(255,255,255,.85);
    transform: translateZ(0);
}

.bdlp-price-row.is-active {
    border-color: rgba(255,202,10,.8);
    box-shadow: 0 18px 34px rgba(255, 173, 66, .25), inset 0 1px 0 rgba(255,255,255,.92);
}

.bdlp-price-label {
    color: #fff;
    color: rgba(255,255,255,.95);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.bdlp-price-row .bdlp-price-label {
    color: #5a2341;
}

.bdlp-price-value,
.bdlp-price-value .woocommerce-Price-amount {
    color: var(--bdlp-primary);
    font-size: 23px;
    font-weight: 900;
    white-space: nowrap;
}

.bdlp-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 12px 28px;
    border-radius: 13px;
    color: var(--bdlp-button-text) !important;
    background: linear-gradient(135deg, var(--bdlp-primary), #ff2f94);
    border: 1px solid rgba(255,255,255,.4);
    font-size: var(--bdlp-button-size);
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(236,8,117,.28), inset 0 1px 0 rgba(255,255,255,.35);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.bdlp-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(236,8,117,.38), inset 0 1px 0 rgba(255,255,255,.35);
    filter: saturate(1.08);
}

.bdlp-hero-cta {
    min-width: 210px;
}

.bdlp-trust-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 25px 60px rgba(31,0,16,.3);
    color: var(--bdlp-text);
    margin-top: 8px;
}

.bdlp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    min-height: 88px;
    position: relative;
}

.bdlp-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 21%;
    bottom: 21%;
    width: 1px;
    background: rgba(80,27,54,.13);
}

.bdlp-trust-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #ffe5f1);
    box-shadow: 0 10px 20px rgba(130,0,65,.13);
    font-size: 23px;
}

.bdlp-trust-item strong,
.bdlp-trust-item span {
    display: block;
}

.bdlp-trust-item strong {
    color: var(--bdlp-primary);
    font-size: 15px;
}

.bdlp-trust-item span {
    color: var(--bdlp-muted);
    font-size: 13px;
    margin-top: 2px;
}

/* Section headings */
.bdlp-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 28px;
}

.bdlp-section-heading > span {
    color: var(--bdlp-primary);
    font-size: 32px;
    text-shadow: 0 10px 20px rgba(236,8,117,.2);
}

.bdlp-section-heading h2,
.bdlp-support-copy h2,
.bdlp-order-header h2 {
    color: var(--bdlp-primary) !important;
    font-size: clamp(27px, 3.5vw, 40px) !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    font-weight: 900 !important;
}

/* Features */
.bdlp-features-section {
    background: var(--bdlp-features-bg);
}

.bdlp-features-section .bdlp-section-card {
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,244,249,.9));
}

.bdlp-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.bdlp-feature-card {
    min-height: 192px;
    padding: 22px 14px 18px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #fff7fb);
    border: 1px solid rgba(236,8,117,.12);
    box-shadow: 0 18px 35px rgba(73,8,43,.07), inset 0 1px 0 #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.bdlp-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 45px rgba(73,8,43,.12), inset 0 1px 0 #fff;
}

.bdlp-feature-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 25%, #fff, #ffc6e2 32%, var(--bdlp-primary) 78%);
    border: 5px solid #fff;
    box-shadow: 0 13px 25px rgba(236,8,117,.22), 0 0 0 2px rgba(236,8,117,.22);
    font-size: 33px;
    position: relative;
}

.bdlp-feature-icon i {
    position: absolute;
    right: -3px;
    bottom: -1px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--bdlp-primary);
    border: 3px solid #fff;
    font-size: 12px;
    font-style: normal;
}

.bdlp-feature-card p {
    margin: 0;
    color: var(--bdlp-text);
    font-weight: 800;
    line-height: 1.5;
}

/* Support */
.bdlp-support-section {
    background: var(--bdlp-support-bg);
}

.bdlp-support-card {
    display: grid;
    grid-template-columns: 220px 1fr 180px;
    align-items: center;
    gap: 28px;
    padding: clamp(26px, 4vw, 44px);
    border-radius: var(--bdlp-radius);
    background:
        radial-gradient(circle at 10% 50%, rgba(0,112,255,.08), transparent 24%),
        radial-gradient(circle at 90% 50%, rgba(236,8,117,.11), transparent 28%),
        linear-gradient(135deg, #fff, #fff9fc);
    border: 1px solid rgba(236,8,117,.12);
    box-shadow: 0 24px 65px rgba(54,12,35,.09);
    overflow: hidden;
}

.bdlp-support-visual img {
    width: 220px;
    max-height: 220px;
    object-fit: contain;
}

.bdlp-support-avatar {
    width: 188px;
    height: 188px;
    display: grid;
    place-items: center;
    border-radius: 46% 54% 55% 45% / 50% 45% 55% 50%;
    background: linear-gradient(145deg, #ffe9f4, #dbeeff);
    box-shadow: 0 24px 45px rgba(87,41,69,.16), inset 0 8px 18px rgba(255,255,255,.75);
    position: relative;
}

.bdlp-support-avatar > span {
    font-size: 88px;
    filter: drop-shadow(0 12px 16px rgba(78,24,55,.18));
}

.bdlp-support-avatar i,
.bdlp-support-avatar b {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 12px 22px rgba(50,0,30,.2);
}

.bdlp-support-avatar i {
    right: -8px;
    top: 12px;
    width: 58px;
    height: 42px;
    background: linear-gradient(135deg, #8e56ff, #6240d8);
    font-size: 14px;
    font-style: normal;
}

.bdlp-support-avatar b {
    left: -4px;
    top: 37px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff4da5, var(--bdlp-primary));
}

.bdlp-support-copy {
    text-align: center;
}

.bdlp-support-copy p {
    color: var(--bdlp-muted);
    max-width: 680px;
    margin: 12px auto 22px;
}

.bdlp-social-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.bdlp-social-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 13px;
    color: #fff !important;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(30,61,128,.18), inset 0 1px 0 rgba(255,255,255,.35);
    transition: transform .2s ease;
}

.bdlp-social-button:hover { transform: translateY(-3px); }
.bdlp-facebook { background: linear-gradient(135deg, #0878ff, #0d4fc4); }
.bdlp-whatsapp { background: linear-gradient(135deg, #16b969, #008e4c); }

.bdlp-headset-art {
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 38px;
    background: linear-gradient(145deg, #fff, #ffdced);
    box-shadow: 0 24px 44px rgba(100,0,52,.15), inset 0 1px 0 #fff;
    transform: rotate(5deg);
    position: relative;
}

.bdlp-headset-art span {
    font-size: 76px;
    filter: drop-shadow(0 12px 12px rgba(98,0,50,.18));
}

.bdlp-headset-art b {
    position: absolute;
    bottom: 14px;
    right: 12px;
    color: #fff;
    background: var(--bdlp-primary);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
}

/* Benefits */
.bdlp-benefits-section {
    background: var(--bdlp-benefits-bg);
}

.bdlp-benefits-section .bdlp-section-card {
    background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,243,249,.9));
}

.bdlp-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
}

.bdlp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 4px;
    color: var(--bdlp-text);
    font-weight: 650;
}

.bdlp-benefit-item i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--bdlp-primary), #ff5ca8);
    box-shadow: 0 8px 16px rgba(236,8,117,.22);
    font-style: normal;
    font-size: 13px;
}

/* Checkout */
.bdlp-order-section {
    background: var(--bdlp-checkout-bg);
    padding-top: 42px;
    padding-bottom: 72px;
}

.bdlp-order-box {
    padding: clamp(22px, 4vw, 48px);
    border-radius: var(--bdlp-radius);
    border: 1px solid var(--bdlp-checkout-border);
    background: rgba(255,255,255,.96);
    box-shadow: 0 30px 90px rgba(74,15,47,.12);
    position: relative;
}

.bdlp-order-box::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(236,8,117,.12);
    border-radius: calc(var(--bdlp-radius) - 8px);
    pointer-events: none;
}

.bdlp-order-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
}

.bdlp-order-kicker {
    display: inline-block;
    color: var(--bdlp-primary);
    background: rgba(236,8,117,.08);
    border-radius: 999px;
    padding: 6px 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
}

.bdlp-order-header p {
    margin: 8px 0 0;
    font-weight: 800;
    font-size: 18px;
}

.bdlp-order-header a {
    color: var(--bdlp-primary) !important;
    font-size: 22px;
    margin-left: 6px;
}

.bdlp-checkout {
    position: relative;
    z-index: 1;
}

.bdlp-checkout .woocommerce {
    width: 100%;
}

.bdlp-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(350px, .93fr);
    align-items: start;
    gap: 24px;
}

.bdlp-checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(236,8,117,.12);
    background: linear-gradient(145deg, #fff, #fffafd);
    box-shadow: 0 18px 40px rgba(76,16,48,.07);
}

.bdlp-checkout #customer_details .col-1,
.bdlp-checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
}

.bdlp-checkout #customer_details .col-2,
.bdlp-checkout .woocommerce-shipping-fields,
.bdlp-checkout #ship-to-different-address,
.bdlp-checkout #billing_country_field,
.bdlp-checkout .bdlp-optional-email,
.bdlp-checkout .woocommerce-additional-fields {
    display: none !important;
}

.bdlp-checkout #customer_details h3,
.bdlp-checkout #order_review_heading {
    color: var(--bdlp-primary) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    margin: 0 0 18px !important;
}

.bdlp-checkout #order_review_heading {
    grid-column: 2;
    margin: 0 !important;
    padding: 0 4px;
}

.bdlp-checkout #order_review {
    grid-column: 2;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(236,8,117,.14);
    background: linear-gradient(145deg, #fff, #fff8fc);
    box-shadow: 0 18px 45px rgba(76,16,48,.09);
}

.bdlp-checkout .form-row {
    margin: 0 0 15px !important;
    padding: 0 !important;
}

.bdlp-checkout label {
    display: block;
    color: var(--bdlp-text);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.bdlp-checkout .required { color: var(--bdlp-primary) !important; }

.bdlp-checkout input.input-text,
.bdlp-checkout textarea,
.bdlp-checkout select,
.bdlp-checkout .select2-container .select2-selection--single {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #e7dbe1 !important;
    background: #fff !important;
    color: var(--bdlp-text) !important;
    padding: 10px 13px !important;
    box-shadow: inset 0 1px 3px rgba(36,0,18,.03) !important;
    outline: none !important;
}

.bdlp-checkout textarea { min-height: 96px !important; }

.bdlp-checkout input.input-text:focus,
.bdlp-checkout textarea:focus,
.bdlp-checkout select:focus,
.bdlp-checkout .select2-container--focus .select2-selection--single {
    border-color: var(--bdlp-primary) !important;
    box-shadow: 0 0 0 3px rgba(236,8,117,.1) !important;
}

.bdlp-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
    padding-left: 0 !important;
}

.bdlp-checkout .select2-container .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

.bdlp-checkout table.shop_table {
    border: 0 !important;
    border-collapse: collapse !important;
    margin: 0 0 18px !important;
    background: transparent !important;
}

.bdlp-checkout table.shop_table th,
.bdlp-checkout table.shop_table td {
    padding: 12px 7px !important;
    border-top: 0 !important;
    border-bottom: 1px dashed #eadde4 !important;
    background: transparent !important;
}

.bdlp-checkout table.shop_table th {
    color: var(--bdlp-muted);
    font-size: 13px;
    font-weight: 800;
}

.bdlp-checkout .order-total th,
.bdlp-checkout .order-total td {
    color: var(--bdlp-primary) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.bdlp-checkout #payment {
    border-radius: 16px !important;
    background: #fff4f9 !important;
    border: 1px solid rgba(236,8,117,.12) !important;
}

.bdlp-checkout #payment ul.payment_methods {
    padding: 17px !important;
    border-bottom: 1px solid rgba(236,8,117,.1) !important;
}

.bdlp-checkout #payment div.payment_box {
    color: var(--bdlp-muted) !important;
    background: #fff !important;
    border-radius: 10px !important;
}

.bdlp-checkout #payment div.payment_box::before {
    border-bottom-color: #fff !important;
}

.bdlp-checkout #payment .place-order {
    padding: 17px !important;
    margin: 0 !important;
}

.bdlp-checkout #place_order {
    width: 100% !important;
    min-height: 56px !important;
    float: none !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: var(--bdlp-button-text) !important;
    background: linear-gradient(135deg, var(--bdlp-primary), #ff2d92) !important;
    font-size: var(--bdlp-button-size) !important;
    font-weight: 900 !important;
    box-shadow: 0 15px 28px rgba(236,8,117,.3) !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.bdlp-checkout #place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(236,8,117,.4) !important;
}

.bdlp-checkout .woocommerce-privacy-policy-text,
.bdlp-checkout .woocommerce-terms-and-conditions-wrapper {
    color: var(--bdlp-muted);
    font-size: 12px;
}

.bdlp-checkout .woocommerce-error,
.bdlp-checkout .woocommerce-info,
.bdlp-checkout .woocommerce-message {
    border-top-color: var(--bdlp-primary) !important;
    border-radius: 12px;
    background: #fff7fb !important;
    color: var(--bdlp-text) !important;
}

/* Variation buttons */
.bdlp-variation-picker {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #fff5fa);
    border: 1px solid rgba(236,8,117,.14);
}

.bdlp-variation-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eadbe3;
}

.bdlp-variation-product img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 13px;
    border: 1px solid #eadbe3;
    background: #fff;
}

.bdlp-variation-product > div > span,
.bdlp-variation-product > div > strong {
    display: block;
}

.bdlp-variation-product > div > span {
    color: var(--bdlp-muted);
    font-size: 12px;
}

.bdlp-variation-product > div > strong {
    color: var(--bdlp-text);
    font-size: 14px;
    line-height: 1.35;
}

.bdlp-variation-price {
    color: var(--bdlp-primary);
    font-weight: 900;
    margin-top: 3px;
}

.bdlp-variation-price del { color: #a88f9c; font-size: 12px; }
.bdlp-variation-price ins { text-decoration: none; }

.bdlp-variation-group {
    margin: 0 0 15px;
}

.bdlp-variation-group > label {
    margin-bottom: 8px !important;
    color: var(--bdlp-text) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.bdlp-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bdlp-option-button {
    min-width: 54px;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid #eadde4;
    border-radius: 10px;
    color: var(--bdlp-text);
    background: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 12px rgba(70,12,42,.04);
    transition: all .18s ease;
}

.bdlp-option-button:hover {
    border-color: var(--bdlp-primary);
    transform: translateY(-1px);
}

.bdlp-option-button.is-selected {
    color: #fff;
    border-color: var(--bdlp-primary);
    background: linear-gradient(135deg, var(--bdlp-primary), #ff3e99);
    box-shadow: 0 9px 18px rgba(236,8,117,.25);
}

.bdlp-option-button:disabled {
    opacity: .55;
    cursor: wait;
}

.bdlp-variation-summary {
    min-height: 0;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
}

.bdlp-variation-summary:not(:empty) {
    padding: 9px 11px;
    margin-top: 8px;
}

.bdlp-variation-summary.is-loading { color: #8b5a00; background: #fff6d8; }
.bdlp-variation-summary.is-success { color: #08753e; background: #e8fff3; }
.bdlp-variation-summary.is-error { color: #a31236; background: #fff0f4; }

.bdlp-secure-badges {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.bdlp-secure-badges span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--bdlp-muted);
    background: #fff;
    border: 1px solid #eee2e8;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* Footer */
.bdlp-footer {
    color: #fff;
    background: linear-gradient(135deg, var(--bdlp-primary), #8b0047);
    padding: 18px 0;
}

.bdlp-footer .bdlp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.bdlp-footer a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff !important;
    background: rgba(255,255,255,.16);
    font-size: 20px;
}

/* Woo blocks from themes */
.bdlp-body .site-header,
.bdlp-body .site-footer,
.bdlp-body #masthead,
.bdlp-body #colophon {
    display: none !important;
}

/* Responsive */
@media (max-width: 1050px) {
    .bdlp-hero-inner {
        grid-template-columns: .9fr 1.1fr;
        gap: 26px;
    }
    .bdlp-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bdlp-support-card { grid-template-columns: 160px 1fr; }
    .bdlp-headset-art { display: none; }
    .bdlp-support-avatar { width: 150px; height: 150px; }
    .bdlp-support-avatar > span { font-size: 70px; }
    .bdlp-secure-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .bdlp-section { padding: 38px 0; }
    .bdlp-hero { padding-top: 26px; min-height: auto; }
    .bdlp-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 105px;
    }
    .bdlp-product-stage { min-height: 370px; }
    .bdlp-product-card-3d { width: min(320px, 82%); min-height: 290px; }
    .bdlp-product-card-3d img { height: 270px; }
    .bdlp-stage-base { bottom: 4px; width: 340px; }
    .bdlp-hero-copy { text-align: center; padding-top: 0; }
    .bdlp-hero-description { margin-inline: auto; }
    .bdlp-trust-strip { grid-template-columns: 1fr; margin-top: 4px; }
    .bdlp-trust-item { padding: 14px 18px; }
    .bdlp-trust-item:not(:last-child)::after {
        left: 18px;
        right: 18px;
        top: auto;
        bottom: 0;
        width: auto;
        height: 1px;
    }
    .bdlp-checkout form.checkout { grid-template-columns: 1fr; }
    .bdlp-checkout #customer_details,
    .bdlp-checkout #order_review_heading,
    .bdlp-checkout #order_review {
        grid-column: 1;
        grid-row: auto;
    }
    .bdlp-checkout #order_review_heading { margin-top: 4px !important; }
}

@media (max-width: 680px) {

    .bdlp-price-board-wrap { width: 100%; }
    .bdlp-price-board { padding: 12px; border-radius: 18px; }
    .bdlp-price-row { grid-template-columns: 1fr; align-items: flex-start; gap: 6px; padding: 12px 13px; }
    .bdlp-price-value, .bdlp-price-value .woocommerce-Price-amount { font-size: 21px; white-space: normal; }
    .bdlp-current-price-value { font-size: 30px; }

    .bdlp-container { width: min(calc(100% - 20px), var(--bdlp-width)); }
    .bdlp-section-card,
    .bdlp-support-card,
    .bdlp-order-box { padding: 22px 15px; border-radius: 18px; }
    .bdlp-hero h1 { font-size: var(--bdlp-heading-size-mobile) !important; }
    .bdlp-hero-description { font-size: 15px; }
    .bdlp-eyebrow { font-size: 10px; }
}

@media (max-width: 430px) {
    .bdlp-product-stage { min-height: 320px; }
    .bdlp-product-card-3d { width: 260px; min-height: 250px; padding: 12px; border-radius: 22px; }
    .bdlp-product-card-3d img { height: 230px; }
    .bdlp-stage-base { width: 285px; height: 80px; }
    .bdlp-feature-grid { grid-template-columns: 1fr 1fr; }
    .bdlp-feature-card { min-height: 154px; }
    .bdlp-section-heading { align-items: flex-start; gap: 7px; }
    .bdlp-section-heading h2,
    .bdlp-support-copy h2,
    .bdlp-order-header h2 { font-size: 25px !important; }
    .bdlp-option-button { flex: 1 1 calc(33.333% - 8px); }
}

@media (prefers-reduced-motion: reduce) {
    .bdlp-animation-on .bdlp-orb,
    .bdlp-animation-on .bdlp-ribbon,
    .bdlp-animation-on .bdlp-product-card-3d {
        animation: none !important;
    }
    html { scroll-behavior: auto; }
}


/* Landing page theme-compatibility + responsive fixes (v1.1.1) */
.bdlp-page,
.bdlp-page * {
    min-width: 0;
}

.bdlp-body #page,
.bdlp-body #content,
.bdlp-body #primary,
.bdlp-body #main,
.bdlp-body .site,
.bdlp-body .site-content,
.bdlp-body .content-area,
.bdlp-body .site-main,
.bdlp-body .entry-content,
.bdlp-body article,
.bdlp-body .page,
.bdlp-body .post {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.bdlp-support-card,
.bdlp-order-box,
.bdlp-feature-card,
.bdlp-benefit-item,
.bdlp-checkout .bdco-card {
    overflow-wrap: anywhere;
}

/* If the active theme provides a custom WooCommerce checkout template, normalize it inside the landing page. */
.bdlp-checkout form.checkout.bdco-checkout-form {
    display: block !important;
}

.bdlp-checkout .bdco-shell {
    width: 100%;
}

.bdlp-checkout .bdco-account-bar {
    margin: 0 0 18px !important;
    border-radius: 16px !important;
    border-color: rgba(236,8,117,.12) !important;
    box-shadow: 0 12px 28px rgba(76,16,48,.06) !important;
}

.bdlp-checkout .bdco-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr) !important;
    gap: 22px !important;
    align-items: start !important;
}

.bdlp-checkout .bdco-main,
.bdlp-checkout .bdco-side,
.bdlp-checkout .bdco-simple-fields,
.bdlp-checkout .bdco-total-card,
.bdlp-checkout .bdco-payment-card,
.bdlp-checkout .bdco-coupon-card,
.bdlp-checkout #order_review {
    min-width: 0;
}

.bdlp-checkout .bdco-main,
.bdlp-checkout .bdco-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.bdlp-checkout .bdco-card {
    border-radius: 18px !important;
    border: 1px solid rgba(236,8,117,.12) !important;
    box-shadow: 0 18px 42px rgba(76,16,48,.08) !important;
}

.bdlp-checkout .bdco-card-heading {
    font-size: clamp(20px, 2vw, 28px) !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    word-break: break-word;
}

.bdlp-checkout .bdco-simple-subtitle {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.bdlp-checkout .bdco-simple-fields {
    display: grid !important;
    gap: 14px !important;
}

.bdlp-checkout .bdco-simple-field-box {
    padding: 14px !important;
    border-radius: 18px !important;
}

.bdlp-checkout .bdco-simple-field-box .bdco-field label {
    font-size: 15px !important;
    line-height: 1.35 !important;
    word-break: break-word;
}

.bdlp-checkout .bdco-simple-field-box .bdco-field input.input-text,
.bdlp-checkout .bdco-simple-field-box .bdco-field input[type="tel"],
.bdlp-checkout .bdco-simple-field-box .bdco-field textarea,
.bdlp-checkout .bdco-coupon-input {
    width: 100% !important;
    min-height: 52px !important;
    font-size: 15px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
}

.bdlp-checkout .bdco-simple-field-box .bdco-field textarea {
    min-height: 110px !important;
}

.bdlp-checkout .bdco-payment-methods {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.bdlp-checkout .bdco-payment-methods > li {
    margin: 0 !important;
}

.bdlp-checkout .bdco-payment-methods label {
    width: 100% !important;
    min-height: 56px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
}

.bdlp-checkout .bdco-coupon-inner {
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
}

.bdlp-checkout .bdco-coupon-input,
.bdlp-checkout .bdco-coupon-button {
    flex: 1 1 auto;
}

.bdlp-checkout .bdco-coupon-button {
    min-height: 48px !important;
    white-space: nowrap;
}

.bdlp-checkout .bdco-order-summary-block,
.bdlp-checkout .bdco-summary-items,
.bdlp-checkout .bdco-review-order-table {
    width: 100% !important;
}

.bdlp-checkout .bdco-summary-item,
.bdlp-checkout .bdco-order-summary-item,
.bdlp-checkout .bdco-order-item {
    display: grid !important;
    grid-template-columns: 72px minmax(0,1fr) auto !important;
    gap: 12px !important;
    align-items: center !important;
}

.bdlp-checkout .bdco-summary-content,
.bdlp-checkout .bdco-order-summary-content {
    min-width: 0;
}

.bdlp-checkout .bdco-summary-topline,
.bdlp-checkout .bdco-order-summary-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10px !important;
}

.bdlp-checkout .bdco-summary-price,
.bdlp-checkout .bdco-order-summary-price,
.bdlp-checkout .bdco-order-price {
    text-align: right;
    white-space: nowrap;
}

.bdlp-checkout .bdco-summary-meta,
.bdlp-checkout .bdco-order-summary-meta,
.bdlp-checkout .bdco-order-meta {
    word-break: break-word;
}

.bdlp-checkout .bdco-total-line,
.bdlp-checkout .bdco-total-line-total {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
}

.bdlp-checkout .bdco-place-order-wrap {
    margin-top: 4px !important;
}

.bdlp-checkout .bdco-place-order-button {
    width: 100% !important;
    min-height: 56px !important;
    border-radius: 12px !important;
}

.bdlp-checkout .bdco-place-order-wrap .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 12px !important;
}

.bdlp-checkout .woocommerce form .form-row-first,
.bdlp-checkout .woocommerce form .form-row-last,
.bdlp-checkout .woocommerce-page form .form-row-first,
.bdlp-checkout .woocommerce-page form .form-row-last {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

@media (max-width: 1180px) {
    .bdlp-checkout .bdco-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 860px) {
    .bdlp-checkout .bdco-account-bar,
    .bdlp-checkout .bdco-coupon-inner,
    .bdlp-checkout .bdco-account-actions,
    .bdlp-checkout .bdco-summary-topline,
    .bdlp-checkout .bdco-order-summary-top {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .bdlp-checkout .bdco-summary-price,
    .bdlp-checkout .bdco-order-summary-price,
    .bdlp-checkout .bdco-order-price {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .bdlp-checkout .bdco-card {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .bdlp-checkout .bdco-card-heading {
        font-size: 20px !important;
    }

    .bdlp-checkout .bdco-order-summary-item,
    .bdlp-checkout .bdco-summary-item,
    .bdlp-checkout .bdco-order-item {
        grid-template-columns: 60px minmax(0,1fr) !important;
    }

    .bdlp-checkout .bdco-order-remove {
        grid-column: 2;
        justify-self: end;
    }
}


/* Product gallery */
.bdlp-gallery-section {
    position: relative;
    padding: 50px 0 12px;
    background:
        radial-gradient(circle at 18% 15%, rgba(236,8,117,.08), transparent 28%),
        radial-gradient(circle at 84% 80%, rgba(255,202,10,.08), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
}

.bdlp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    perspective: 1200px;
}

.bdlp-gallery-card {
    position: relative;
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    padding: 7px;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,233,245,.88));
    border: 1px solid rgba(236,8,117,.28);
    box-shadow:
        0 24px 50px rgba(82,13,49,.14),
        inset 0 1px 0 rgba(255,255,255,.95),
        inset 0 -8px 20px rgba(236,8,117,.04);
    transform-style: preserve-3d;
    transition: transform .35s ease, box-shadow .35s ease;
}

.bdlp-gallery-card::before {
    content: "";
    position: absolute;
    inset: 4px;
    z-index: 2;
    border-radius: 19px;
    border: 1px solid rgba(255,255,255,.82);
    pointer-events: none;
}

.bdlp-gallery-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    transition: transform .5s ease;
}

.bdlp-gallery-glow {
    position: absolute;
    z-index: 0;
    width: 140px;
    height: 140px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,77,165,.24) 45%, transparent 72%);
    filter: blur(3px);
}

.bdlp-gallery-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 34px 65px rgba(82,13,49,.22), inset 0 1px 0 rgba(255,255,255,.95);
}

.bdlp-gallery-card:hover img {
    transform: scale(1.045);
}

.bdlp-animation-on .bdlp-gallery-card-1,
.bdlp-animation-on .bdlp-gallery-card-4 {
    animation: bdlpGalleryFloat 5.4s ease-in-out infinite;
}
.bdlp-animation-on .bdlp-gallery-card-2,
.bdlp-animation-on .bdlp-gallery-card-5 {
    animation: bdlpGalleryFloat 6.2s ease-in-out infinite .7s;
}
.bdlp-animation-on .bdlp-gallery-card-3,
.bdlp-animation-on .bdlp-gallery-card-6 {
    animation: bdlpGalleryFloat 5.8s ease-in-out infinite 1.2s;
}

@keyframes bdlpGalleryFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-7px) rotateX(1deg); }
}

@media (max-width: 900px) {
    .bdlp-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 560px) {
    .bdlp-gallery-section { padding: 30px 0 6px; }
    .bdlp-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bdlp-gallery-card { border-radius: 16px; padding: 4px; box-shadow: 0 14px 30px rgba(82,13,49,.13); }
    .bdlp-gallery-card img { border-radius: 12px; }
    .bdlp-gallery-card::before { inset: 3px; border-radius: 13px; }
}


/* v1.1.5 checkout centering + professional polish */
.bdlp-order-section .bdlp-container {
    width: min(var(--bdlp-width), calc(100% - 24px));
}

.bdlp-order-box {
    max-width: 1080px;
    margin: 0 auto;
}

.bdlp-checkout {
    max-width: 980px;
    margin: 0 auto;
}

.bdlp-checkout .woocommerce,
.bdlp-checkout .bdco-shell,
.bdlp-checkout .bdco-grid,
.bdlp-checkout #customer_details,
.bdlp-checkout #order_review {
    max-width: 100%;
}

.bdlp-checkout form.checkout,
.bdlp-checkout .bdco-grid {
    align-items: stretch !important;
}

.bdlp-checkout form.checkout {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
    gap: 28px !important;
}

.bdlp-checkout #customer_details,
.bdlp-checkout #order_review,
.bdlp-checkout .bdco-card,
.bdlp-checkout .bdco-simple-field-box,
.bdlp-checkout .bdco-payment-card,
.bdlp-checkout .bdco-coupon-card,
.bdlp-checkout .bdco-total-card {
    border-radius: 22px !important;
    background: linear-gradient(180deg, #ffffff, #fffafb) !important;
    border: 1px solid rgba(236,8,117,.12) !important;
    box-shadow: 0 20px 42px rgba(76,16,48,.08) !important;
}

.bdlp-checkout #customer_details {
    padding: 28px !important;
}

.bdlp-checkout #order_review {
    padding: 24px !important;
}

.bdlp-checkout .bdco-shell {
    max-width: 980px !important;
    margin: 0 auto !important;
}

.bdlp-checkout .bdco-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
}

.bdlp-checkout .bdco-main,
.bdlp-checkout .bdco-side {
    gap: 18px !important;
}

.bdlp-checkout label,
.bdlp-checkout .bdco-simple-field-box .bdco-field label {
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    color: #321624 !important;
}

.bdlp-checkout input.input-text,
.bdlp-checkout textarea,
.bdlp-checkout select,
.bdlp-checkout .select2-container .select2-selection--single,
.bdlp-checkout .bdco-simple-field-box .bdco-field input.input-text,
.bdlp-checkout .bdco-simple-field-box .bdco-field input[type="tel"],
.bdlp-checkout .bdco-simple-field-box .bdco-field textarea,
.bdlp-checkout .bdco-coupon-input {
    min-height: 54px !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    border: 1px solid #ecdde5 !important;
    background: #fff !important;
    box-shadow: inset 0 1px 3px rgba(36,0,18,.03), 0 6px 16px rgba(76,16,48,.03) !important;
    font-size: 15px !important;
}

.bdlp-checkout textarea,
.bdlp-checkout .bdco-simple-field-box .bdco-field textarea {
    min-height: 118px !important;
}

.bdlp-checkout input::placeholder,
.bdlp-checkout textarea::placeholder,
.bdlp-checkout .bdco-coupon-input::placeholder {
    color: #9b8491 !important;
    opacity: 1;
}

.bdlp-checkout #payment,
.bdlp-checkout .bdco-payment-card {
    background: linear-gradient(180deg, #fff7fb, #fff) !important;
}

.bdlp-checkout #place_order,
.bdlp-checkout .bdco-place-order-button {
    min-height: 58px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    letter-spacing: .01em;
}

.bdlp-checkout table.shop_table td.product-name,
.bdlp-checkout table.shop_table td.product-total,
.bdlp-checkout table.shop_table th {
    font-size: 14px !important;
}

.bdlp-secure-badges {
    max-width: 980px;
    margin: 22px auto 0;
}

@media (max-width: 1080px) {
    .bdlp-order-box {
        max-width: 100%;
    }

    .bdlp-checkout,
    .bdlp-checkout .bdco-shell {
        max-width: 100% !important;
    }
}

@media (max-width: 920px) {
    .bdlp-checkout form.checkout,
    .bdlp-checkout .bdco-grid {
        grid-template-columns: 1fr !important;
    }

    .bdlp-checkout #customer_details,
    .bdlp-checkout #order_review {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .bdlp-checkout #order_review_heading {
        grid-column: auto !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    .bdlp-order-section .bdlp-container {
        width: calc(100% - 14px);
    }

    .bdlp-order-box {
        padding: 18px 12px !important;
        border-radius: 18px !important;
    }

    .bdlp-order-box::before {
        inset: 6px;
        border-radius: 12px;
    }

    .bdlp-order-header {
        margin-bottom: 18px;
    }

    .bdlp-order-header h2 {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .bdlp-checkout #customer_details,
    .bdlp-checkout #order_review,
    .bdlp-checkout .bdco-card,
    .bdlp-checkout .bdco-simple-field-box,
    .bdlp-checkout .bdco-payment-card,
    .bdlp-checkout .bdco-coupon-card,
    .bdlp-checkout .bdco-total-card {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .bdlp-checkout #customer_details {
        padding: 18px !important;
    }

    .bdlp-checkout .bdco-card-heading,
    .bdlp-checkout #customer_details h3,
    .bdlp-checkout #order_review_heading {
        font-size: 20px !important;
    }

    .bdlp-checkout input.input-text,
    .bdlp-checkout textarea,
    .bdlp-checkout select,
    .bdlp-checkout .select2-container .select2-selection--single,
    .bdlp-checkout .bdco-simple-field-box .bdco-field input.input-text,
    .bdlp-checkout .bdco-simple-field-box .bdco-field input[type="tel"],
    .bdlp-checkout .bdco-simple-field-box .bdco-field textarea,
    .bdlp-checkout .bdco-coupon-input {
        min-height: 50px !important;
        font-size: 14px !important;
        padding: 12px 14px !important;
    }

    .bdlp-checkout .bdco-coupon-inner,
    .bdlp-checkout .bdco-account-bar,
    .bdlp-checkout .bdco-account-actions,
    .bdlp-checkout .bdco-summary-topline,
    .bdlp-checkout .bdco-order-summary-top {
        gap: 10px !important;
    }

    .bdlp-secure-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bdlp-secure-badges span {
        min-height: 44px;
        font-size: 11px;
        padding: 8px 8px;
        border-radius: 14px;
    }
}

@media (max-width: 520px) {
    .bdlp-order-header p,
    .bdlp-order-header a {
        font-size: 16px !important;
    }

    .bdlp-checkout .bdco-payment-methods label {
        min-height: 48px !important;
        padding: 12px 14px !important;
    }

    .bdlp-checkout .bdco-place-order-button,
    .bdlp-checkout #place_order {
        min-height: 54px !important;
        font-size: 15px !important;
    }
}


/* v1.1.6: landing pages are distraction-free */
body.bdlp-body .bd-mobile-footer-nav,
body.bdlp-body .bd-mobile-footer-spacer,
body.bdlp-body .mobile-footer-nav,
body.bdlp-body .mobile-bottom-nav,
body.bdlp-body .bottom-navigation,
body.bdlp-body .sticky-mobile-nav {
    display: none !important;
}

@media (max-width: 900px) {
    body.bdlp-body {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
}


/* v1.1.8: guest checkout only + live quantity control */
.bdlp-checkout .bdco-account-bar,
.bdlp-checkout .woocommerce-form-login-toggle,
.bdlp-checkout form.woocommerce-form-login,
.bdlp-checkout .woocommerce-form-register-toggle {
    display: none !important;
}

.bdlp-checkout-controls {
    display: grid;
    gap: 16px;
    margin: 0 0 18px;
}

.bdlp-quantity-picker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(236,8,117,.15);
    background:
        radial-gradient(circle at 90% 10%, rgba(236,8,117,.10), transparent 34%),
        linear-gradient(145deg, #ffffff, #fff6fa);
    box-shadow: 0 16px 36px rgba(76,16,48,.08), inset 0 1px 0 rgba(255,255,255,.9);
}

.bdlp-quantity-copy {
    min-width: 0;
}

.bdlp-quantity-eyebrow {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--bdlp-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bdlp-quantity-copy strong,
.bdlp-quantity-copy small {
    display: block;
}

.bdlp-quantity-copy strong {
    color: var(--bdlp-text);
    font-size: 17px;
    line-height: 1.35;
}

.bdlp-quantity-copy small {
    margin-top: 4px;
    color: var(--bdlp-muted);
    font-size: 12px;
    line-height: 1.5;
}

.bdlp-quantity-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.bdlp-quantity-stepper {
    display: grid;
    grid-template-columns: 44px 58px 44px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ead8e2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(78,15,49,.08);
}

.bdlp-quantity-button,
.bdlp-quantity-input {
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--bdlp-text) !important;
    font-family: inherit !important;
    box-shadow: none !important;
}

.bdlp-quantity-button {
    display: grid;
    place-items: center;
    padding: 0 !important;
    color: var(--bdlp-primary) !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.bdlp-quantity-button:hover {
    color: #fff !important;
    background: var(--bdlp-primary) !important;
}

.bdlp-quantity-button:disabled {
    opacity: .55;
    cursor: wait;
}

.bdlp-quantity-input {
    width: 58px !important;
    padding: 0 4px !important;
    border-left: 1px solid #ead8e2 !important;
    border-right: 1px solid #ead8e2 !important;
    text-align: center !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    -moz-appearance: textfield;
}

.bdlp-quantity-input::-webkit-outer-spin-button,
.bdlp-quantity-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.bdlp-quantity-live-price {
    min-width: 112px;
    text-align: right;
}

.bdlp-quantity-live-price span,
.bdlp-quantity-live-price strong {
    display: block;
}

.bdlp-quantity-live-price span {
    color: var(--bdlp-muted);
    font-size: 11px;
}

.bdlp-quantity-line-total,
.bdlp-quantity-line-total .woocommerce-Price-amount {
    color: var(--bdlp-primary);
    font-size: 19px;
    font-weight: 900;
    white-space: nowrap;
}

.bdlp-quantity-status {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: -6px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
}

.bdlp-quantity-status:not(:empty) {
    padding: 8px 10px;
}

.bdlp-quantity-status.is-loading { color: #8b5a00; background: #fff6d8; }
.bdlp-quantity-status.is-success { color: #08753e; background: #e8fff3; }
.bdlp-quantity-status.is-error { color: #a31236; background: #fff0f4; }

@media (max-width: 680px) {
    .bdlp-quantity-picker {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 15px;
        border-radius: 16px;
    }

    .bdlp-quantity-action {
        justify-content: space-between;
        gap: 12px;
    }

    .bdlp-quantity-stepper {
        grid-template-columns: 46px 62px 46px;
    }

    .bdlp-quantity-button,
    .bdlp-quantity-input {
        height: 48px !important;
        min-height: 48px !important;
    }

    .bdlp-quantity-live-price {
        min-width: 96px;
    }

    .bdlp-quantity-line-total,
    .bdlp-quantity-line-total .woocommerce-Price-amount {
        font-size: 18px;
    }
}

@media (max-width: 390px) {
    .bdlp-quantity-action {
        align-items: stretch;
        flex-direction: column;
    }

    .bdlp-quantity-stepper {
        width: 100%;
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .bdlp-quantity-input {
        width: 100% !important;
    }

    .bdlp-quantity-live-price {
        text-align: left;
    }
}


/* v1.1.9 desktop center + gallery table grid */
.bdlp-order-section .bdlp-container {
    display: flex;
    justify-content: center;
}

.bdlp-order-box {
    width: 100%;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.bdlp-checkout {
    width: 100%;
    max-width: 1060px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    justify-content: center;
}

.bdlp-checkout .woocommerce,
.bdlp-checkout form.checkout,
.bdlp-checkout .bdco-shell,
.bdlp-checkout .bdco-grid {
    width: 100% !important;
    max-width: 1060px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.bdlp-checkout form.checkout,
.bdlp-checkout .bdco-grid {
    justify-content: center !important;
}

@media (min-width: 921px) {
    .bdlp-checkout .bdco-grid {
        grid-template-columns: minmax(0, .98fr) minmax(360px, .92fr) !important;
        gap: 26px !important;
    }
}

.bdlp-gallery-section .bdlp-container {
    max-width: 1120px;
}

.bdlp-gallery-shell {
    position: relative;
    padding: 22px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fffefe, #fff4fa);
    border: 1px solid rgba(236,8,117,.14);
    box-shadow: 0 28px 60px rgba(82,13,49,.12), inset 0 1px 0 rgba(255,255,255,.96);
}

.bdlp-gallery-shell::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 24px;
    border: 1px dashed rgba(236,8,117,.18);
    pointer-events: none;
}

.bdlp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.bdlp-gallery-card {
    aspect-ratio: 1 / 1 !important;
    padding: 8px !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, #ffffff, #fff8fc) !important;
    box-shadow: 0 18px 40px rgba(82,13,49,.13), inset 0 1px 0 rgba(255,255,255,.95), inset 0 -10px 24px rgba(236,8,117,.05) !important;
}

.bdlp-gallery-card::before {
    inset: 5px !important;
    border-radius: 17px !important;
}

.bdlp-gallery-card img {
    object-fit: contain !important;
    background: #fff !important;
    border-radius: 16px !important;
    padding: 8px;
}

.bdlp-gallery-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.01);
}

@media (max-width: 920px) {
    .bdlp-checkout,
    .bdlp-checkout .woocommerce,
    .bdlp-checkout form.checkout,
    .bdlp-checkout .bdco-shell,
    .bdlp-checkout .bdco-grid {
        max-width: 100% !important;
    }

    .bdlp-gallery-shell {
        padding: 14px;
        border-radius: 20px;
    }

    .bdlp-gallery-shell::before {
        inset: 7px;
        border-radius: 14px;
    }
}

@media (max-width: 560px) {
    .bdlp-gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bdlp-gallery-card {
        border-radius: 16px !important;
        padding: 4px !important;
    }

    .bdlp-gallery-card img {
        border-radius: 12px !important;
        padding: 4px;
    }
}


/* v1.2.0: full-width centered checkout and no account prompt */
body.bdlp-body .bdlp-checkout .bdco-account-bar,
body.bdlp-body .bdlp-checkout .bdco-account-actions,
body.bdlp-body .bdlp-checkout .woocommerce-form-login-toggle,
body.bdlp-body .bdlp-checkout form.woocommerce-form-login,
body.bdlp-body .bdlp-checkout .woocommerce-form-register-toggle {
    display: none !important;
}

body.bdlp-body .bdlp-checkout form.checkout,
body.bdlp-body .bdlp-checkout form.checkout.bdco-checkout-form,
body.bdlp-body .bdlp-checkout .bdco-grid {
    display: block !important;
    width: 100% !important;
    max-width: 980px !important;
    margin-inline: auto !important;
    grid-template-columns: none !important;
}

body.bdlp-body .bdlp-checkout .bdco-main,
body.bdlp-body .bdlp-checkout .bdco-side {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.bdlp-body .bdlp-checkout .bdco-side {
    margin-top: 18px !important;
}

body.bdlp-body .bdlp-checkout .bdco-card {
    width: 100% !important;
    max-width: none !important;
}

body.bdlp-body .bdlp-checkout .bdco-simple-fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

body.bdlp-body .bdlp-checkout .bdco-simple-field-box.is-address,
body.bdlp-body .bdlp-checkout .bdco-simple-field-box.is-note {
    grid-column: 1 / -1 !important;
}

@media (max-width: 767px) {
    body.bdlp-body .bdlp-checkout .bdco-simple-fields {
        grid-template-columns: 1fr !important;
    }
    body.bdlp-body .bdlp-checkout .bdco-simple-field-box.is-address,
    body.bdlp-body .bdlp-checkout .bdco-simple-field-box.is-note {
        grid-column: auto !important;
    }
}


/* v1.2.1: quantity after Note + strong desktop two-column gallery */
body.bdlp-body .bdlp-checkout .bdco-account-bar,
body.bdlp-body .bdlp-checkout .bdco-account-actions,
body.bdlp-body .bdlp-checkout .woocommerce-form-login-toggle,
body.bdlp-body .bdlp-checkout form.woocommerce-form-login,
body.bdlp-body .bdlp-checkout .woocommerce-form-register-toggle {
    display: none !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-picker {
    width: 100% !important;
    max-width: none !important;
    margin: 4px 0 0 !important;
    padding: 22px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 22px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(236,8,117,.18) !important;
    background: linear-gradient(145deg, #fff, #fff1f8) !important;
    box-shadow: 0 18px 38px rgba(76,16,48,.10), inset 0 1px 0 rgba(255,255,255,.95) !important;
    box-sizing: border-box !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-eyebrow {
    margin-bottom: 7px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: rgba(236,8,117,.09) !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-copy strong {
    font-size: 20px !important;
    line-height: 1.35 !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-copy small {
    margin-top: 7px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-action {
    gap: 18px !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-stepper {
    grid-template-columns: 54px 76px 54px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(236,8,117,.22) !important;
    box-shadow: 0 12px 26px rgba(78,15,49,.10) !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-button,
body.bdlp-body .bdlp-checkout .bdlp-quantity-input {
    height: 54px !important;
    min-height: 54px !important;
    font-size: 19px !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-button {
    font-size: 25px !important;
    font-weight: 800 !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-live-price {
    min-width: 150px !important;
    padding-left: 18px !important;
    border-left: 1px solid #ead8e2 !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-live-price span {
    font-size: 13px !important;
}

body.bdlp-body .bdlp-checkout .bdlp-quantity-line-total,
body.bdlp-body .bdlp-checkout .bdlp-quantity-line-total .woocommerce-Price-amount {
    font-size: 23px !important;
}

body.bdlp-body .bdlp-gallery-section .bdlp-container {
    width: min(calc(100% - 28px), 1120px) !important;
    max-width: 1120px !important;
}

body.bdlp-body .bdlp-gallery-section .bdlp-gallery-shell {
    width: 100% !important;
    padding: 22px !important;
    border-radius: 30px !important;
    box-sizing: border-box !important;
}

body.bdlp-body .bdlp-gallery-section .bdlp-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    align-items: stretch !important;
}

body.bdlp-body .bdlp-gallery-section .bdlp-gallery-card {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    padding: 8px !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    transform-style: preserve-3d !important;
}

body.bdlp-body .bdlp-gallery-section .bdlp-gallery-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    padding: 8px !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

body.bdlp-body.bdlp-animation-on .bdlp-gallery-section .bdlp-gallery-card:nth-child(odd) {
    animation: bdlpGalleryFloatLeft 5.6s ease-in-out infinite !important;
}

body.bdlp-body.bdlp-animation-on .bdlp-gallery-section .bdlp-gallery-card:nth-child(even) {
    animation: bdlpGalleryFloatRight 6.2s ease-in-out infinite .5s !important;
}

@keyframes bdlpGalleryFloatLeft {
    0%,100% { transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg); }
    50% { transform: translate3d(0,-8px,0) rotateX(1deg) rotateY(-1deg); }
}

@keyframes bdlpGalleryFloatRight {
    0%,100% { transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg); }
    50% { transform: translate3d(0,-8px,0) rotateX(1deg) rotateY(1deg); }
}

@media (max-width: 767px) {
    body.bdlp-body .bdlp-checkout .bdlp-quantity-picker {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
        gap: 16px !important;
    }

    body.bdlp-body .bdlp-checkout .bdlp-quantity-action {
        width: 100% !important;
        justify-content: space-between !important;
    }

    body.bdlp-body .bdlp-checkout .bdlp-quantity-live-price {
        min-width: 0 !important;
    }

    body.bdlp-body .bdlp-gallery-section .bdlp-gallery-shell {
        padding: 12px !important;
        border-radius: 20px !important;
    }

    body.bdlp-body .bdlp-gallery-section .bdlp-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.bdlp-body .bdlp-gallery-section .bdlp-gallery-card {
        padding: 4px !important;
        border-radius: 16px !important;
    }

    body.bdlp-body .bdlp-gallery-section .bdlp-gallery-card img {
        padding: 4px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 440px) {
    body.bdlp-body .bdlp-checkout .bdlp-quantity-action {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body.bdlp-body .bdlp-checkout .bdlp-quantity-stepper {
        width: 100% !important;
        grid-template-columns: 1fr 1.25fr 1fr !important;
    }

    body.bdlp-body .bdlp-checkout .bdlp-quantity-live-price {
        padding: 12px 0 0 !important;
        border-left: 0 !important;
        border-top: 1px solid #ead8e2 !important;
    }
}


/* v1.2.2 final fallback overrides */
html body.bdlp-body .bdlp-checkout #bdlp-quantity-picker {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: min(100%,720px) !important;
    max-width: 720px !important;
    margin: 22px auto 0 !important;
}

html body.bdlp-body .bdlp-gallery-section .bdlp-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 20px !important;
}

html body.bdlp-body .bdlp-gallery-section .bdlp-gallery-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

@media (max-width: 767px) {
    html body.bdlp-body .bdlp-gallery-section .bdlp-gallery-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
        gap: 10px !important;
    }
}

/* ========================================================================
   Plugin-only premium footer and linked content pages (v1.3.0)
   ======================================================================== */
body.bdlp-body .bdlp-pro-footer,
body.bdlp-body .bdlp-pro-footer * {
    box-sizing: border-box;
}

body.bdlp-body .bdlp-pro-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 24px 42px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 24, 133, .08), transparent 38%),
        linear-gradient(180deg, #fffafd 0%, #fff 100%);
}

body.bdlp-body .bdlp-pro-footer-card {
    position: relative;
    z-index: 2;
    width: min(100%, 1450px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 42px;
    background:
        radial-gradient(circle at 9% 5%, rgba(255, 64, 162, .92), transparent 25%),
        radial-gradient(circle at 95% 0%, rgba(255, 59, 163, .46), transparent 32%),
        linear-gradient(135deg, #be0064 0%, #b1005d 43%, #830043 100%);
    box-shadow:
        0 34px 85px rgba(158, 0, 79, .28),
        0 0 44px rgba(239, 16, 123, .18),
        inset 0 1px 0 rgba(255, 255, 255, .64),
        inset 0 -18px 60px rgba(69, 0, 38, .22);
}

body.bdlp-body .bdlp-pro-footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(255,255,255,.12), transparent 16%),
        radial-gradient(circle at 55% 18%, rgba(255,255,255,.08), transparent 26%);
    mix-blend-mode: screen;
}

body.bdlp-body .bdlp-pro-footer-orb {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
    background: linear-gradient(145deg, #ff6db7, #e40073 55%, #a80056);
    box-shadow:
        inset 7px 7px 14px rgba(255,255,255,.42),
        inset -7px -8px 18px rgba(83,0,46,.36),
        0 12px 24px rgba(188,0,92,.25);
}

body.bdlp-body .bdlp-pro-footer-orb-one { width: 48px; height: 48px; left: max(10px, calc(50% - 755px)); top: 41%; }
body.bdlp-body .bdlp-pro-footer-orb-two { width: 58px; height: 58px; right: max(46px, calc(50% - 710px)); top: 95px; }
body.bdlp-body .bdlp-pro-footer-orb-three { width: 88px; height: 88px; right: max(-24px, calc(50% - 770px)); bottom: 75px; opacity: .58; filter: blur(1px); }

body.bdlp-body .bdlp-pro-footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .82fr 1.08fr;
    gap: 0;
    padding: 58px 62px 50px;
}

body.bdlp-body .bdlp-pro-footer-brand,
body.bdlp-body .bdlp-pro-footer-links,
body.bdlp-body .bdlp-pro-footer-contact {
    min-width: 0;
}

body.bdlp-body .bdlp-pro-footer-brand {
    padding-right: 56px;
}

body.bdlp-body .bdlp-pro-footer-links {
    padding: 0 55px;
    border-left: 1px dashed rgba(255,255,255,.26);
    border-right: 1px dashed rgba(255,255,255,.26);
}

body.bdlp-body .bdlp-pro-footer-contact {
    padding-left: 55px;
}

body.bdlp-body .bdlp-pro-brand-row {
    display: flex;
    align-items: center;
    gap: 22px;
}

body.bdlp-body .bdlp-pro-logo-wrap {
    position: relative;
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 2px solid rgba(255,255,255,.78);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,.3), rgba(255,255,255,.08));
    box-shadow:
        inset 0 0 25px rgba(255,255,255,.2),
        0 18px 35px rgba(82,0,43,.24),
        0 0 0 8px rgba(255,255,255,.08);
}

body.bdlp-body .bdlp-pro-logo,
body.bdlp-body .bdlp-pro-logo-fallback {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

body.bdlp-body .bdlp-pro-logo-fallback {
    display: grid;
    place-items: center;
    color: #ba0062;
    background: linear-gradient(145deg, #fff, #ffd3e9);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
}

body.bdlp-body .bdlp-pro-brand-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 2.6vw, 46px);
    line-height: 1.04;
    letter-spacing: -.035em;
    text-shadow: 0 3px 0 rgba(104,0,53,.22), 0 0 18px rgba(255,255,255,.2);
}

body.bdlp-body .bdlp-pro-tagline {
    margin: 12px 0 0;
    color: rgba(255,255,255,.92);
    font-size: 18px;
    line-height: 1.35;
}

body.bdlp-body .bdlp-pro-description {
    max-width: 440px;
    margin: 32px 0 0;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    line-height: 1.75;
}

body.bdlp-body .bdlp-pro-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 28px;
}

body.bdlp-body .bdlp-pro-socials a {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
    color: #fff !important;
    background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.08));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 11px 22px rgba(62,0,35,.18);
    font-size: 25px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

body.bdlp-body .bdlp-pro-socials a:hover {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(145deg, #ff4ba2, #d5006c);
    box-shadow: 0 15px 28px rgba(66,0,36,.26), 0 0 18px rgba(255,118,185,.28);
}

body.bdlp-body .bdlp-pro-footer-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

body.bdlp-body .bdlp-pro-footer-heading::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: auto;
    border-radius: 50%;
    background: #fff2a6;
    box-shadow: 0 0 15px #ffcf5a;
}

body.bdlp-body .bdlp-pro-footer-heading > span {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #ff4aa2, #c30065);
    box-shadow: inset 0 2px 3px rgba(255,255,255,.35), 0 8px 18px rgba(72,0,39,.23);
    font-size: 20px;
}

body.bdlp-body .bdlp-pro-footer-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    line-height: 1.15;
}

body.bdlp-body .bdlp-pro-link-list {
    display: grid;
    gap: 10px;
}

body.bdlp-body .bdlp-pro-link-list a {
    display: grid;
    grid-template-columns: 48px 1fr 24px;
    align-items: center;
    gap: 15px;
    min-height: 60px;
    padding: 5px 0;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 18px;
    transition: padding .2s ease, background .2s ease, transform .2s ease;
}

body.bdlp-body .bdlp-pro-link-list a:hover,
body.bdlp-body .bdlp-pro-link-list a.is-active {
    padding: 5px 12px;
    background: rgba(255,255,255,.095);
    transform: translateX(4px);
}

body.bdlp-body .bdlp-pro-link-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, #f72b91, #ba005f);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 9px 18px rgba(71,0,40,.2);
    font-size: 21px;
}

body.bdlp-body .bdlp-pro-link-list strong {
    font-size: 18px;
    font-weight: 700;
}

body.bdlp-body .bdlp-pro-link-arrow {
    font-size: 34px;
    line-height: 1;
    text-align: right;
}

body.bdlp-body .bdlp-pro-contact-list {
    display: grid;
    gap: 14px;
}

body.bdlp-body .bdlp-pro-contact-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 10px 22px 10px 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(100deg, rgba(255,255,255,.15), rgba(255,255,255,.055));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 9px 22px rgba(66,0,38,.12);
    text-decoration: none !important;
    transition: transform .22s ease, background .22s ease;
}

body.bdlp-body .bdlp-pro-contact-card:hover {
    transform: translateX(5px);
    background: linear-gradient(100deg, rgba(255,255,255,.23), rgba(255,255,255,.08));
}

body.bdlp-body .bdlp-pro-contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff42a0, #d1006b);
    box-shadow: inset 0 2px 3px rgba(255,255,255,.35), 0 8px 18px rgba(70,0,40,.22);
    font-size: 25px;
}

body.bdlp-body .bdlp-pro-contact-card > span:last-child {
    min-width: 0;
}

body.bdlp-body .bdlp-pro-contact-card strong,
body.bdlp-body .bdlp-pro-contact-card small {
    display: block;
    overflow-wrap: anywhere;
}

body.bdlp-body .bdlp-pro-contact-card strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
}

body.bdlp-body .bdlp-pro-contact-card small {
    margin-top: 4px;
    color: rgba(255,255,255,.84);
    font-size: 13px;
}

body.bdlp-body .bdlp-pro-footer-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .9fr 1.15fr;
    align-items: center;
    gap: 28px;
    min-height: 128px;
    padding: 24px 40px;
    border-top: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(90deg, rgba(255,17,126,.46), rgba(255,255,255,.06) 50%, rgba(255,20,130,.25));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

body.bdlp-body .bdlp-pro-copyright {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 16px;
}

body.bdlp-body .bdlp-pro-shield {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px 20px 26px 26px;
    color: #b90060;
    background: linear-gradient(145deg, #fff, #ffcae2);
    box-shadow: inset 0 0 0 7px rgba(229,0,112,.13), 0 10px 20px rgba(71,0,39,.2);
    font-size: 25px;
    font-weight: 900;
}

body.bdlp-body .bdlp-pro-copyright strong,
body.bdlp-body .bdlp-pro-copyright small {
    display: block;
}

body.bdlp-body .bdlp-pro-copyright strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
}

body.bdlp-body .bdlp-pro-copyright small {
    margin-top: 5px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

body.bdlp-body .bdlp-pro-developer {
    position: relative;
    min-height: 70px;
    display: grid;
    place-items: center;
    padding: 18px 32px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: linear-gradient(100deg, rgba(201,0,98,.72), rgba(255,70,160,.36), rgba(167,0,81,.76));
    box-shadow: 0 0 22px rgba(255,105,183,.35), inset 0 1px 0 rgba(255,255,255,.38);
    text-align: center;
}

body.bdlp-body .bdlp-pro-developer::before,
body.bdlp-body .bdlp-pro-developer::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff4a0;
    box-shadow: 0 0 14px #ffd65f;
}

body.bdlp-body .bdlp-pro-developer::before { left: 22px; top: 17px; }
body.bdlp-body .bdlp-pro-developer::after { right: 22px; bottom: 17px; }

body.bdlp-body .bdlp-pro-developer a,
body.bdlp-body .bdlp-pro-developer > span:last-child {
    color: #fff !important;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none !important;
}

body.bdlp-body .bdlp-pro-crown {
    position: absolute;
    top: -23px;
    color: #ffe78c;
    font-size: 33px;
    filter: drop-shadow(0 4px 5px rgba(89,0,45,.26));
}

body.bdlp-body .bdlp-pro-assurances {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

body.bdlp-body .bdlp-pro-assurances > span {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 68px;
    padding: 5px 10px;
    border-left: 1px solid rgba(255,255,255,.16);
    text-align: center;
}

body.bdlp-body .bdlp-pro-assurances > span:first-child { border-left: 0; }
body.bdlp-body .bdlp-pro-assurances b { color: #fff; font-size: 22px; }
body.bdlp-body .bdlp-pro-assurances small { color: rgba(255,255,255,.9); font-size: 11px; line-height: 1.3; }

/* Special linked pages */
body.bdlp-special-body {
    min-height: 100vh;
    margin: 0;
    color: var(--bdlp-text);
    background: #fff8fc;
}

body.bdlp-special-body .bdlp-special-main {
    min-height: 70vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 3% 18%, rgba(236,8,117,.07), transparent 30%),
        radial-gradient(circle at 96% 45%, rgba(255,202,10,.09), transparent 24%),
        #fffafd;
}

body.bdlp-special-body .bdlp-special-header {
    position: relative;
    z-index: 10;
    padding: 14px 0;
    border-bottom: 1px solid rgba(236,8,117,.1);
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(81,0,43,.05);
}

body.bdlp-special-body .bdlp-special-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body.bdlp-special-body .bdlp-special-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bdlp-text) !important;
    text-decoration: none !important;
}

body.bdlp-special-body .bdlp-special-brand-logo,
body.bdlp-special-body .bdlp-special-brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #ffe0ef);
    box-shadow: 0 9px 20px rgba(183,0,91,.14);
}

body.bdlp-special-body .bdlp-special-brand-mark {
    color: #bc0060;
    font-size: 22px;
    font-weight: 900;
}

body.bdlp-special-body .bdlp-special-brand strong,
body.bdlp-special-body .bdlp-special-brand small {
    display: block;
}

body.bdlp-special-body .bdlp-special-brand strong { font-size: 17px; }
body.bdlp-special-body .bdlp-special-brand small { margin-top: 2px; color: var(--bdlp-muted); font-size: 11px; }

body.bdlp-special-body .bdlp-special-home-button,
body.bdlp-special-body .bdlp-special-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 47px;
    padding: 11px 20px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, #f20a7b, #a90057);
    box-shadow: 0 12px 25px rgba(185,0,91,.2), inset 0 1px 0 rgba(255,255,255,.3);
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

body.bdlp-special-body .bdlp-special-home-button:hover,
body.bdlp-special-body .bdlp-special-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 30px rgba(185,0,91,.26), inset 0 1px 0 rgba(255,255,255,.35);
}

body.bdlp-special-body .bdlp-special-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 82px;
    color: #fff;
    background:
        radial-gradient(circle at 14% 24%, rgba(255,89,174,.6), transparent 27%),
        radial-gradient(circle at 88% 20%, rgba(255,59,158,.34), transparent 28%),
        linear-gradient(135deg, #b80060, #95004c 55%, #6c0038);
}

body.bdlp-special-body .bdlp-special-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

body.bdlp-special-body .bdlp-special-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

body.bdlp-special-body .bdlp-special-page-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(255,255,255,.46);
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.08));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 18px 36px rgba(59,0,33,.24);
    font-size: 34px;
}

body.bdlp-special-body .bdlp-special-kicker {
    margin: 0 0 10px;
    color: #ffe4f2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

body.bdlp-special-body .bdlp-special-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 6vw, 67px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

body.bdlp-special-body .bdlp-special-hero-inner > p:last-child {
    max-width: 700px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.7;
}

body.bdlp-special-body .bdlp-special-orb {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,17,132,.08));
    box-shadow: inset 0 0 20px rgba(255,255,255,.18), 0 20px 50px rgba(67,0,37,.18);
}
body.bdlp-special-body .bdlp-special-orb-one { width: 150px; height: 150px; left: 5%; top: 20%; }
body.bdlp-special-body .bdlp-special-orb-two { width: 95px; height: 95px; right: 8%; bottom: 12%; }

body.bdlp-special-body .bdlp-special-content-section {
    position: relative;
    z-index: 3;
    padding: 70px 0 80px;
}

body.bdlp-special-body .bdlp-offer-grid,
body.bdlp-special-body .bdlp-other-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

body.bdlp-special-body .bdlp-offer-card,
body.bdlp-special-body .bdlp-other-product-card,
body.bdlp-special-body .bdlp-how-card,
body.bdlp-special-body .bdlp-special-empty {
    overflow: hidden;
    border: 1px solid rgba(226,0,108,.11);
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 55px rgba(95,0,50,.09);
}

body.bdlp-special-body .bdlp-offer-card,
body.bdlp-special-body .bdlp-other-product-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

body.bdlp-special-body .bdlp-offer-card:hover,
body.bdlp-special-body .bdlp-other-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(114,0,58,.15);
}

body.bdlp-special-body .bdlp-offer-card-media,
body.bdlp-special-body .bdlp-other-product-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 260px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.98), rgba(255,226,240,.82)),
        #fff3f9;
}

body.bdlp-special-body .bdlp-offer-card-media img,
body.bdlp-special-body .bdlp-other-product-media img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: contain;
    padding: 20px;
    transition: transform .3s ease;
}

body.bdlp-special-body .bdlp-offer-card:hover .bdlp-offer-card-media img,
body.bdlp-special-body .bdlp-other-product-card:hover .bdlp-other-product-media img {
    transform: scale(1.05) rotate(-1deg);
}

body.bdlp-special-body .bdlp-offer-placeholder,
body.bdlp-special-body .bdlp-other-product-media > span {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(145deg, #f61583, #a80056);
    box-shadow: 0 22px 38px rgba(183,0,91,.24);
    font-size: 46px;
    font-weight: 900;
}

body.bdlp-special-body .bdlp-offer-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #f50c7c, #a60055);
    box-shadow: 0 10px 20px rgba(177,0,86,.23);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.bdlp-special-body .bdlp-offer-card-body,
body.bdlp-special-body .bdlp-other-product-body {
    padding: 25px;
}

body.bdlp-special-body .bdlp-offer-card h2,
body.bdlp-special-body .bdlp-other-product-card h2 {
    margin: 0 0 13px;
    color: var(--bdlp-text);
    font-size: 22px;
    line-height: 1.35;
}

body.bdlp-special-body .bdlp-other-product-card h2 a {
    color: inherit !important;
    text-decoration: none !important;
}

body.bdlp-special-body .bdlp-offer-description,
body.bdlp-special-body .bdlp-offer-description p,
body.bdlp-special-body .bdlp-how-content,
body.bdlp-special-body .bdlp-how-content p {
    color: var(--bdlp-muted);
    font-size: 14px;
    line-height: 1.75;
}

body.bdlp-special-body .bdlp-offer-description > :first-child,
body.bdlp-special-body .bdlp-how-content > :first-child { margin-top: 0; }
body.bdlp-special-body .bdlp-offer-description > :last-child,
body.bdlp-special-body .bdlp-how-content > :last-child { margin-bottom: 0; }

body.bdlp-special-body .bdlp-offer-card .bdlp-special-action,
body.bdlp-special-body .bdlp-other-product-card .bdlp-special-action {
    width: 100%;
    margin-top: 20px;
}

body.bdlp-special-body .bdlp-other-product-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #be0061;
    background: #fff0f7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

body.bdlp-special-body .bdlp-other-product-price {
    color: #dd006e;
    font-size: 21px;
    font-weight: 900;
}

body.bdlp-special-body .bdlp-other-product-price del {
    color: #a78998;
    font-size: 14px;
    font-weight: 600;
}

body.bdlp-special-body .bdlp-how-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 50px 54px;
}

body.bdlp-special-body .bdlp-how-card-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 25px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(145deg, #f80f81, #a60055);
    box-shadow: 0 18px 35px rgba(183,0,91,.22);
    font-size: 33px;
    font-weight: 900;
}

body.bdlp-special-body .bdlp-how-content ol,
body.bdlp-special-body .bdlp-how-content ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: bdlp-steps;
}

body.bdlp-special-body .bdlp-how-content li {
    position: relative;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 78px;
    border: 1px solid #f4d7e5;
    border-radius: 20px;
    color: var(--bdlp-text);
    background: linear-gradient(135deg, #fff, #fff8fb);
    box-shadow: 0 10px 24px rgba(93,0,48,.05);
    counter-increment: bdlp-steps;
}

body.bdlp-special-body .bdlp-how-content li::before {
    content: counter(bdlp-steps);
    position: absolute;
    left: 16px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, #f50c7c, #ac0058);
    box-shadow: 0 9px 18px rgba(176,0,86,.18);
    font-weight: 900;
}

body.bdlp-special-body .bdlp-how-card > .bdlp-special-action {
    display: flex;
    width: min(100%, 300px);
    margin: 30px auto 0;
}

body.bdlp-special-body .bdlp-special-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 55px 30px;
    text-align: center;
}

body.bdlp-special-body .bdlp-special-empty > span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(145deg, #f90e81, #a70056);
    box-shadow: 0 18px 34px rgba(181,0,89,.22);
    font-size: 34px;
}

body.bdlp-special-body .bdlp-special-empty h2 { margin: 0; color: var(--bdlp-text); }
body.bdlp-special-body .bdlp-special-empty p { margin: 11px 0 0; color: var(--bdlp-muted); }

@media (max-width: 1180px) {
    body.bdlp-body .bdlp-pro-footer-main {
        grid-template-columns: 1fr 1fr;
        row-gap: 46px;
        padding: 50px 46px 44px;
    }
    body.bdlp-body .bdlp-pro-footer-brand { padding-right: 44px; }
    body.bdlp-body .bdlp-pro-footer-links { padding: 0 0 0 44px; border-right: 0; }
    body.bdlp-body .bdlp-pro-footer-contact { grid-column: 1 / -1; padding: 0; border-top: 1px dashed rgba(255,255,255,.24); padding-top: 38px; }
    body.bdlp-body .bdlp-pro-contact-list { grid-template-columns: repeat(3, minmax(0,1fr)); }
    body.bdlp-body .bdlp-pro-contact-card { border-radius: 24px; padding-right: 14px; }
    body.bdlp-body .bdlp-pro-footer-bottom { grid-template-columns: 1fr 1fr; }
    body.bdlp-body .bdlp-pro-assurances { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.13); padding-top: 15px; }
}

@media (max-width: 900px) {
    body.bdlp-special-body .bdlp-offer-grid,
    body.bdlp-special-body .bdlp-other-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
    body.bdlp-body .bdlp-pro-footer { padding: 42px 12px 24px; }
    body.bdlp-body .bdlp-pro-footer-card { border-radius: 28px; }
    body.bdlp-body .bdlp-pro-footer-main { grid-template-columns: 1fr; padding: 36px 22px 30px; row-gap: 34px; }
    body.bdlp-body .bdlp-pro-footer-brand,
    body.bdlp-body .bdlp-pro-footer-links,
    body.bdlp-body .bdlp-pro-footer-contact {
        grid-column: auto;
        padding: 0;
        border: 0;
    }
    body.bdlp-body .bdlp-pro-footer-links,
    body.bdlp-body .bdlp-pro-footer-contact { padding-top: 30px; border-top: 1px dashed rgba(255,255,255,.24); }
    body.bdlp-body .bdlp-pro-brand-row { align-items: center; }
    body.bdlp-body .bdlp-pro-logo-wrap { flex-basis: 88px; width: 88px; height: 88px; }
    body.bdlp-body .bdlp-pro-brand-copy h2 { font-size: 30px; }
    body.bdlp-body .bdlp-pro-tagline { margin-top: 7px; font-size: 15px; }
    body.bdlp-body .bdlp-pro-description { margin-top: 23px; font-size: 14px; }
    body.bdlp-body .bdlp-pro-socials { gap: 12px; margin-top: 22px; }
    body.bdlp-body .bdlp-pro-socials a { width: 46px; height: 46px; font-size: 21px; }
    body.bdlp-body .bdlp-pro-contact-list { grid-template-columns: 1fr; }
    body.bdlp-body .bdlp-pro-contact-card { border-radius: 999px; }
    body.bdlp-body .bdlp-pro-footer-bottom { grid-template-columns: 1fr; gap: 30px; padding: 32px 22px; }
    body.bdlp-body .bdlp-pro-developer { order: 3; }
    body.bdlp-body .bdlp-pro-assurances { grid-column: auto; padding-top: 20px; }
    body.bdlp-body .bdlp-pro-copyright { grid-template-columns: 50px 1fr; }
    body.bdlp-body .bdlp-pro-shield { width: 50px; height: 50px; }
    body.bdlp-body .bdlp-pro-footer-orb { display: none; }

    body.bdlp-special-body .bdlp-special-header-inner { align-items: center; }
    body.bdlp-special-body .bdlp-special-brand small { display: none; }
    body.bdlp-special-body .bdlp-special-home-button { min-height: 42px; padding: 9px 14px; font-size: 12px; }
    body.bdlp-special-body .bdlp-special-hero { padding: 56px 0 62px; }
    body.bdlp-special-body .bdlp-special-content-section { padding: 45px 0 55px; }
    body.bdlp-special-body .bdlp-offer-grid,
    body.bdlp-special-body .bdlp-other-product-grid { grid-template-columns: 1fr; }
    body.bdlp-special-body .bdlp-how-card { padding: 34px 20px; border-radius: 24px; }
}

@media (max-width: 480px) {
    body.bdlp-body .bdlp-pro-brand-row { gap: 14px; }
    body.bdlp-body .bdlp-pro-logo-wrap { flex-basis: 72px; width: 72px; height: 72px; padding: 7px; }
    body.bdlp-body .bdlp-pro-brand-copy h2 { font-size: 25px; }
    body.bdlp-body .bdlp-pro-tagline { font-size: 13px; }
    body.bdlp-body .bdlp-pro-footer-heading h3 { font-size: 22px; }
    body.bdlp-body .bdlp-pro-link-list a { grid-template-columns: 44px 1fr 20px; }
    body.bdlp-body .bdlp-pro-link-icon { width: 44px; height: 44px; border-radius: 13px; }
    body.bdlp-body .bdlp-pro-contact-card { grid-template-columns: 50px 1fr; min-height: 68px; }
    body.bdlp-body .bdlp-pro-contact-icon { width: 50px; height: 50px; }
    body.bdlp-body .bdlp-pro-contact-card strong { font-size: 14px; }
    body.bdlp-body .bdlp-pro-assurances > span { padding-inline: 4px; }
    body.bdlp-body .bdlp-pro-assurances small { font-size: 9px; }

    body.bdlp-special-body .bdlp-special-brand-logo,
    body.bdlp-special-body .bdlp-special-brand-mark { width: 43px; height: 43px; }
    body.bdlp-special-body .bdlp-special-brand strong { max-width: 135px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    body.bdlp-special-body .bdlp-special-home-button { font-size: 0; width: 43px; height: 43px; padding: 0; }
    body.bdlp-special-body .bdlp-special-home-button::before { content: "←"; font-size: 20px; }
    body.bdlp-special-body .bdlp-special-page-icon { width: 64px; height: 64px; border-radius: 21px; font-size: 29px; }
    body.bdlp-special-body .bdlp-special-hero h1 { font-size: 37px; }
    body.bdlp-special-body .bdlp-offer-card-media,
    body.bdlp-special-body .bdlp-other-product-media { min-height: 220px; }
    body.bdlp-special-body .bdlp-offer-card-media img,
    body.bdlp-special-body .bdlp-other-product-media img { height: 235px; }
    body.bdlp-special-body .bdlp-how-content li { padding-left: 70px; }
}

/* v1.3.5 product features between grid and slider + section shortcut pills */
.bdlp-shortcut-nav-section {
    background: var(--bdlp-page);
    padding: 4px 18px 10px;
}

.bdlp-shortcut-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.bdlp-shortcut-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(236,8,117,.16);
    background: linear-gradient(180deg, #ffffff, #ffeef6);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.98), 0 10px 20px rgba(97, 7, 55, .10);
    color: #7f1f49;
    font-weight: 800;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.bdlp-shortcut-pill.is-primary,
.bdlp-shortcut-pill:hover {
    color: #fff;
    background: linear-gradient(180deg, color-mix(in srgb, var(--bdlp-primary) 72%, #ff60b5), var(--bdlp-primary));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 14px 26px rgba(97, 7, 55, .22);
    transform: translateY(-2px);
}

.bdlp-shortcut-pill span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.24);
    font-size: 13px;
}

.bdlp-features-section {
    padding-top: 12px;
}

.bdlp-features-section .bdlp-section-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236,8,117,.14);
    box-shadow: 0 24px 56px rgba(80, 12, 47, .10), inset 0 1px 0 rgba(255,255,255,.94);
}

.bdlp-features-section .bdlp-section-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 10% 10%, rgba(236,8,117,.08), transparent 24%),
      radial-gradient(circle at 90% 18%, rgba(255,202,10,.12), transparent 22%),
      radial-gradient(circle at 50% 100%, rgba(236,8,117,.05), transparent 30%);
}

.bdlp-feature-grid-enhanced {
    position: relative;
    gap: 18px;
}

.bdlp-feature-grid-enhanced::before {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 74px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(236,8,117,.10), rgba(236,8,117,.32), rgba(236,8,117,.10));
    box-shadow: 0 0 0 5px rgba(236,8,117,.03);
}

.bdlp-feature-card {
    position: relative;
    z-index: 1;
    min-height: 204px;
    padding: 26px 15px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fff6fa 100%);
    box-shadow: 0 22px 42px rgba(73,8,43,.10), inset 0 1px 0 #fff, inset 0 -12px 22px rgba(236,8,117,.03);
}

.bdlp-feature-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 16px;
    border: 1px solid rgba(236,8,117,.08);
    pointer-events: none;
}

.bdlp-feature-connector {
    position: absolute;
    top: 56px;
    right: -14px;
    width: 28px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(236,8,117,.42), rgba(236,8,117,.08));
    box-shadow: 0 0 0 5px rgba(236,8,117,.03);
}

.bdlp-feature-card:last-child .bdlp-feature-connector {
    display: none;
}

.bdlp-feature-icon {
    margin-bottom: 18px;
}

.bdlp-feature-card p {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .bdlp-feature-grid-enhanced::before {
        display: none;
    }

    .bdlp-feature-connector {
        display: none;
    }
}

@media (max-width: 767px) {
    .bdlp-shortcut-nav-section {
        padding: 0 8px 8px;
    }

    .bdlp-shortcut-nav {
        gap: 8px;
    }

    .bdlp-shortcut-pill {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .bdlp-shortcut-pill span {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .bdlp-features-section {
        padding-top: 6px;
    }

    .bdlp-feature-card {
        min-height: 164px;
        padding: 18px 10px 14px;
    }

    .bdlp-feature-card p {
        font-size: 14px;
    }
}


/* v1.3.6 one uploaded icon for all feature cards */
.bdlp-feature-icon.has-custom-icon {
    overflow: visible;
    padding: 12px;
    background: radial-gradient(circle at 32% 25%, #ffffff, #ffd1e7 38%, var(--bdlp-primary) 100%);
}

.bdlp-feature-icon .bdlp-feature-custom-icon,
.bdlp-feature-icon.has-custom-icon > img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 54px !important;
    max-height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 767px) {
    .bdlp-feature-icon .bdlp-feature-custom-icon,
    .bdlp-feature-icon.has-custom-icon > img {
        max-width: 46px !important;
        max-height: 46px !important;
    }
}

/* v1.4.0 unique thank you / order submitted page design */
body.bdlp-landing-thankyou-page .woocommerce-order > p.woocommerce-notice,
body.bdlp-landing-thankyou-page .woocommerce-order > .woocommerce-notice,
body.bdlp-landing-thankyou-page .woocommerce-order > .woocommerce-order-overview,
body.bdlp-landing-thankyou-page .woocommerce-order > .woocommerce-order-details,
body.bdlp-landing-thankyou-page .woocommerce-order > .woocommerce-customer-details,
body.bdlp-landing-thankyou-page .woocommerce-order > section.woocommerce-order-details,
body.bdlp-landing-thankyou-page .woocommerce-order > section.woocommerce-customer-details,
body.bdlp-landing-thankyou-page .woocommerce-order > .woocommerce-columns {
    display: none !important;
}

body.bdlp-landing-thankyou-page {
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
}

body.bdlp-landing-thankyou-page .entry-content,
body.bdlp-landing-thankyou-page .site-main,
body.bdlp-landing-thankyou-page .woocommerce-order {
    max-width: 100%;
}

.bdlp-thankyou-shell {
    max-width: 1180px;
    margin: 32px auto 64px;
    padding: 0 16px;
    font-family: inherit;
}

.bdlp-thankyou-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 38px 22px;
    border-radius: 28px;
    background: linear-gradient(135deg, #3f0d56 0%, #7b167f 35%, #f94f9b 100%);
    color: #fff;
    box-shadow: 0 22px 60px rgba(115, 18, 103, 0.24);
}

.bdlp-thankyou-hero::before,
.bdlp-thankyou-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.bdlp-thankyou-hero::before {
    width: 220px;
    height: 220px;
    top: -80px;
    left: -50px;
}

.bdlp-thankyou-hero::after {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -120px;
}

.bdlp-thankyou-badge {
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.36);
    font-size: 30px;
    font-weight: 800;
}

.bdlp-thankyou-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bdlp-thankyou-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 800;
}

.bdlp-thankyou-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.75;
}

.bdlp-thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.bdlp-thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.bdlp-thankyou-btn:hover {
    transform: translateY(-2px);
}

.bdlp-thankyou-btn-primary {
    background: #ffffff;
    color: #7b167f;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.bdlp-thankyou-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.bdlp-thankyou-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0;
}

.bdlp-thankyou-stat,
.bdlp-thankyou-card,
.bdlp-thankyou-notice-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(171, 72, 141, 0.14);
    box-shadow: 0 14px 40px rgba(126, 27, 106, 0.08);
}

.bdlp-thankyou-stat {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bdlp-thankyou-stat-label {
    color: #7a6278;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.bdlp-thankyou-stat strong {
    color: #241a2c;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    word-break: break-word;
}

.bdlp-thankyou-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 22px;
}

.bdlp-thankyou-card {
    padding: 24px;
}

.bdlp-thankyou-card h2,
.bdlp-thankyou-notice-card h3 {
    margin: 0 0 18px;
    color: #241a2c;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.bdlp-thankyou-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bdlp-thankyou-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(107, 70, 106, 0.16);
}

.bdlp-thankyou-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.bdlp-thankyou-list span {
    flex: 0 0 145px;
    color: #7a6278;
    font-weight: 600;
}

.bdlp-thankyou-list strong {
    flex: 1 1 auto;
    text-align: right;
    color: #241a2c;
    font-weight: 700;
}

.bdlp-thankyou-list .bdlp-thankyou-address {
    line-height: 1.7;
}

.bdlp-thankyou-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.bdlp-thankyou-product-row,
.bdlp-thankyou-total-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.bdlp-thankyou-product-row {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff6fb 0%, #ffffff 100%);
    border: 1px solid rgba(171, 72, 141, 0.12);
}

.bdlp-thankyou-product-row strong,
.bdlp-thankyou-total-row strong,
.bdlp-thankyou-product-row b {
    color: #241a2c;
    font-weight: 800;
}

.bdlp-thankyou-product-row span {
    display: block;
    margin-top: 6px;
    color: #7a6278;
    font-size: 14px;
}

.bdlp-thankyou-list-compact {
    margin: 8px 0 0;
}

.bdlp-thankyou-totals {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(107, 70, 106, 0.14);
}

.bdlp-thankyou-total-row {
    padding: 10px 0;
}

.bdlp-thankyou-total-row span {
    color: #64525f;
    font-weight: 600;
}

.bdlp-thankyou-notice-card {
    margin-top: 22px;
    padding: 24px;
}

.bdlp-thankyou-notice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bdlp-thankyou-notice-grid > div {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
    border: 1px solid rgba(171, 72, 141, 0.12);
}

.bdlp-thankyou-notice-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #241a2c;
    font-size: 17px;
}

.bdlp-thankyou-notice-grid p {
    margin: 0;
    color: #6d5a68;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .bdlp-thankyou-stats,
    .bdlp-thankyou-notice-grid,
    .bdlp-thankyou-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bdlp-thankyou-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bdlp-thankyou-shell {
        margin: 20px auto 42px;
        padding: 0 12px;
    }

    .bdlp-thankyou-hero {
        padding: 28px 16px;
        border-radius: 22px;
    }

    .bdlp-thankyou-badge {
        width: 62px;
        height: 62px;
        line-height: 62px;
        font-size: 26px;
    }

    .bdlp-thankyou-hero p {
        font-size: 15px;
    }

    .bdlp-thankyou-stats,
    .bdlp-thankyou-notice-grid {
        grid-template-columns: 1fr;
    }

    .bdlp-thankyou-stat,
    .bdlp-thankyou-card,
    .bdlp-thankyou-notice-card {
        border-radius: 20px;
    }

    .bdlp-thankyou-card,
    .bdlp-thankyou-notice-card {
        padding: 18px;
    }

    .bdlp-thankyou-card h2,
    .bdlp-thankyou-notice-card h3 {
        font-size: 21px;
    }

    .bdlp-thankyou-list li,
    .bdlp-thankyou-product-row,
    .bdlp-thankyou-total-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bdlp-thankyou-list span,
    .bdlp-thankyou-list strong {
        flex: initial;
        text-align: left;
    }

    .bdlp-thankyou-actions {
        flex-direction: column;
    }

    .bdlp-thankyou-btn {
        width: 100%;
    }
}

/* v1.4.1 thank you page contact buttons + overlap fixes */
.bdlp-thankyou-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.bdlp-thankyou-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
    padding: 14px 18px;
    border-radius: 18px;
    text-decoration: none !important;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease;
}

.bdlp-thankyou-contact-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
}

.bdlp-thankyou-contact-btn.is-call {
    background: rgba(255, 255, 255, 0.16);
}

.bdlp-thankyou-contact-btn.is-whatsapp {
    background: rgba(18, 181, 96, 0.22);
}

.bdlp-thankyou-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 20px;
    flex: 0 0 44px;
}

.bdlp-thankyou-contact-btn span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.35;
}

.bdlp-thankyou-contact-btn strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.bdlp-thankyou-contact-btn small {
    display: block;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    margin-top: 3px;
}

.bdlp-thankyou-product-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
}

.bdlp-thankyou-product-meta {
    min-width: 0;
}

.bdlp-thankyou-product-meta strong {
    display: block;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
    white-space: normal;
}

.bdlp-thankyou-product-price {
    margin-left: 16px;
    color: #241a2c;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    text-align: right;
}

.bdlp-thankyou-address {
    display: block;
    word-break: break-word;
    white-space: normal;
}

.bdlp-thankyou-list li {
    align-items: flex-start;
}

.bdlp-thankyou-total-row strong,
.bdlp-thankyou-total-row span {
    line-height: 1.5;
}

@media (max-width: 767px) {
    .bdlp-thankyou-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bdlp-thankyou-contact-btn {
        width: 100%;
        min-width: 0;
    }

    .bdlp-thankyou-product-row {
        grid-template-columns: 1fr;
    }

    .bdlp-thankyou-product-price {
        margin-left: 0;
        margin-top: 10px;
        text-align: left;
    }
}

/* v1.4.2 remove the default WooCommerce payment instruction below the custom page */
body.bdlp-landing-thankyou-page .woocommerce-order > p {
    display: none !important;
}

body.bdlp-landing-thankyou-page .bdlp-thankyou-actions .bdlp-thankyou-btn {
    min-width: 220px;
}

/* Landing checkout: terms checkbox is intentionally disabled. */
body.bdlp-body .bdlp-checkout .woocommerce-terms-and-conditions-wrapper,
body.bdlp-body .bdlp-checkout #terms_field,
body.bdlp-body .bdlp-checkout .terms.wc-terms-and-conditions,
body.bdlp-body .bdlp-checkout .form-row.terms,
body.bdlp-body .bdlp-checkout .checkout-terms,
body.bdlp-body .bdlp-checkout .bdco-terms,
body.bdlp-body .bdlp-checkout .bdco-terms-wrap,
body.bdlp-body .bdlp-checkout .bdlp-hidden-terms,
body.bdlp-body .bdlp-checkout .bdlp-hidden-terms-field,
body.bdlp-body .bdlp-checkout .form-row:has(input[type="checkbox"][id*="term" i]),
body.bdlp-body .bdlp-checkout .form-row:has(input[type="checkbox"][name*="term" i]) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

