/** Shopify CDN: Minification failed

Line 16:7 Expected ":"

**/
*,
*::before,
*::after {
    box-sizing: border-box;
}

.lp-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px;
    ✅ (same as your working section) width: 100%;
}

.lp-left,
.lp-right {
    min-width: 0;
}

.lp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lp-main-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-left {

    position: sticky;
    top: 100px;
    /* header ke hisaab se adjust karna */
    align-self: start;
}

.lp-main-image-wrapper {
    width: 100%;
    position: relative;
}

.lp-main-image-wrapper img {
    border-radius: 12px;
}

.lp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.lp-prev {
    left: 8px;
}

.lp-next {
    right: 8px;
}

.lp-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}

.lp-thumbnails::-webkit-scrollbar {
    display: none;
}

.lp-thumbnails img {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.lp-thumbnails img.active {
    border-color: #000;
    transform: scale(1.05);
}

.lp-title {
    font-size: 28px;
    font-weight: 600;
}

.lp-price {
    margin: 10px 0 20px;
}

.lp-price-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.lp-old {
    text-decoration: line-through;
    color: gray;
    font-size: 25px;
}

.lp-new {
    font-weight: 800;
    font-size: 25px;
}

.lp-off {
    background: #a9dde2;
    color: black;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

.lp-tax {
    font-size: 12px;
    color: #777;
}


.lp-love-box {
    border: 1px solid #f6b3c4;
    border-radius: 12px;
    padding: 29px 15px 15px;
    position: relative;
    margin: 40px 0;
}

.lp-love-heading {
    position: absolute;
    top: -16px;
    left: 15px;
    background: #f6b3c4;
    color: black;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
}

.lp-love-rich li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
}

.lp-love-rich li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f6b3c4;
}

.lp-qty-wrapper {
    margin: 20px 0;
}

.lp-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
}

.lp-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
}


.lp-cart,
.lp-buy {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;
}

.lp-cart {
    transition: all 0.3s ease;
    background: #a9dde2 !important;
    color: black;
    font-size: 20px;
    font-weight: 700;
}

.lp-cart:hover {
    cursor: pointer;
    background: rgb(177, 241, 247) !important;
    color: black;
    transform: translateY(-2px);
}

.lp-buy {
    background: #ffe6eb;
    color: black;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lp-buy:hover {
    cursor: pointer;
    background: rgb(247, 232, 235);
    transform: translateY(-2px);
}

.lp-fbt {
    width: 100%;
    overflow: hidden;
    padding: 0px 20px 30px;
    background: #ffe6eb;
    border-radius: 8px;
}

.lp-fbt-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.lp-fbt-slider::-webkit-scrollbar {
    display: none;
}

.lp-fbt-card {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
    scroll-snap-align: start;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
}

.lp-fbt-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 14px;
    margin: 10px 0;
}

.lp-fbt-price {
    font-weight: 600;
}

.lp-fbt-btn {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: #a9dde2;
    color: black;
}

.lp-fbt-btn:hover {
    cursor: pointer;
    background: rgb(177, 241, 247) !important;
    color: black;
    transform: translateY(-2px);
}

.lp-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.lp-dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
}

.lp-dot.active {
    width: 20px;
    border-radius: 10px;
    background: #a9dde2;
}

.lp-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.lp-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-benefit img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.lp-benefit p {
    font-size: 14px;
    margin: 0;
    line-height: 1.3;
}

.lp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 20px;
}

.lp-tags span {
    background: linear-gradient(135deg, #f7d9e3, #f3e1a6);
    padding: 10px 16px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* optional icon */
.lp-tags span::before {
    content: "✔";
    font-size: 12px;
}

.lp-mobile-title {
    display: none;
}

.lp-mrp-label {
    font-size: 25px;
}


@media (max-width: 768px) {
    .lp-mobile-title {
        display: block;
        margin-bottom: 10px;
    }

    /* Hide original title in right section */
    .lp-right .lp-title {
        display: none;
    }

    .lp-grid {
        display: block;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-title {
        font-size: 22px;
        padding: 0px;
        margin: -22px 0 18px 0px;
    }

    .lp-new {
        font-size: 18px;
    }

    .lp-thumbnails img {
        width: 60px;
        height: 60px;
    }

    .lp-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .lp-qty-box {
        width: 100%;
        justify-content: space-between;
    }

    .lp-fbt-card {
        flex: 0 0 48%;
        min-width: 48%;
    }

    .lp-left {
        position: relative;
        top: 0;
    }

    .lp-qty-box {
        width: 37%;
        justify-content: space-between;
    }

    .lp-fbt {

        padding: 0px 10px 20px;

    }

    .pr-wrapper {
        padding: 0px 20px;
    }

    .lp-tags {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding: 0 10px;

        scroll-snap-type: x mandatory;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .lp-tags::-webkit-scrollbar {
        display: none;
    }

    .lp-tags span {
        flex: 0 0 40%;
        white-space: nowrap;
        scroll-snap-align: start;
        justify-content: center;
    }

    .pr-card {
        flex: 0 0 47% !important;
    }

    .lp-dots {
        display: none;

    }

}