picture {
    display: block;
    width: 100%;
    height: 100%;
}

.shop-body {
    background-color: #f8f9fb;
    color: #1a1c1d;
    background-image:
        linear-gradient(rgba(0, 0, 0, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: center top;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shop-body > main {
    flex: 1 0 auto;
}

.shop-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    z-index: 1030;
}

.shop-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: #1a1c1d;
    letter-spacing: -0.02em;
}

.shop-home-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #f1f3f5;
    color: #1a1c1d;
    font-weight: 600;
    font-size: .85rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    transition: background .15s ease;
}

.shop-home-btn:hover {
    background: #e2e6ea;
    color: #1a1c1d;
}

.shop-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #f1f3f5;
    color: var(--bs-primary);
    font-size: 1.1rem;
    position: relative;
    transition: background .15s ease;
}

.shop-cart-link:hover {
    background: #e2e6ea;
    color: var(--bs-primary);
}

.shop-cart-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background: var(--bs-danger);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    line-height: 1;
    padding: .3em .45em;
    border-radius: 999px;
    min-width: 1.2em;
    text-align: center;
}

.shop-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background: #f1f3f5;
    color: #1a1c1d;
    font-size: 1.05rem;
}

.shop-icon-btn:hover {
    background: #e2e6ea;
}

.shop-search-form {
    width: 100%;
}

.shop-search-box {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #f1f3f5;
    border-radius: 999px;
    padding: .5rem 1rem;
}

.shop-search-box i.bi-search {
    color: #6c757d;
    font-size: .95rem;
}

.shop-search-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    font-size: .88rem;
    min-width: 0;
}

.shop-search-input:focus {
    outline: none;
}

.shop-search-clear {
    border: none;
    background: transparent;
    color: #adb5bd;
    display: flex;
    align-items: center;
    padding: 0;
}

.shop-search-clear:hover {
    color: #6c757d;
}

.shop-search-wrap-mobile {
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.shop-search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, .22);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1040;
    padding: .4rem;
}

.shop-search-result {
    display: flex;
    align-items: center;
    gap: .7rem;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: .5rem;
    border-radius: .75rem;
}

.shop-search-result:hover {
    background: #f1f3f5;
}

.shop-search-result picture,
.shop-search-result img,
.shop-search-result-noimg {
    width: 42px;
    height: 42px;
    border-radius: .6rem;
    object-fit: cover;
    background: #f3f3f5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.shop-search-result picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-search-result-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.shop-search-result-name {
    font-size: .85rem;
    font-weight: 600;
    color: #1a1c1d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-search-result-price {
    font-size: .8rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.shop-search-viewall {
    display: block;
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
    color: var(--bs-primary);
    padding: .6rem;
    text-decoration: none;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: .2rem;
}

.shop-search-empty {
    padding: 1rem;
    text-align: center;
    font-size: .82rem;
    color: #6c757d;
}

.shop-icon-btn.shop-fav-toggle {
    color: #1a1c1d;
}

.shop-results-grid-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

@media (min-width: 576px) {
    .shop-results-grid-item {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (min-width: 768px) {
    .shop-results-grid-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 992px) {
    .shop-results-grid-item {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.shop-footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: 3rem;
    flex-shrink: 0;
}

.shop-slider .carousel-inner {
    border-radius: 1.5rem;
    overflow: hidden;
}

.shop-slider img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .shop-slider img {
        height: 200px;
    }
}

.shop-slider .carousel-control-prev,
.shop-slider .carousel-control-next {
    width: 34px;
    height: 34px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .85);
    border-radius: 999px;
    opacity: 1;
}

.shop-slider .carousel-control-prev { left: 6px; }
.shop-slider .carousel-control-next { right: 6px; }

.shop-slider .carousel-control-prev-icon,
.shop-slider .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
    width: 1rem;
    height: 1rem;
}

@media (max-width: 575.98px) {
    .shop-slider .carousel-control-prev,
    .shop-slider .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .shop-slider .carousel-control-prev { left: 4px; }
    .shop-slider .carousel-control-next { right: 4px; }
}

@media (min-width: 768px) {
    .shop-slider .carousel-control-prev,
    .shop-slider .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .shop-slider .carousel-control-prev { left: 10px; }
    .shop-slider .carousel-control-next { right: 10px; }
}

.shop-section {
    border-radius: 1.75rem;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (prefers-reduced-motion: no-preference) {
    .shop-reveal {
        opacity: 0;
        transition: opacity .6s ease-out, transform .6s ease-out;
        will-change: opacity, transform;
    }

    .shop-reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .shop-reveal-left { transform: translateX(-45px); }
    .shop-reveal-right { transform: translateX(45px); }
    .shop-reveal-up { transform: translateY(45px); }
    .shop-reveal-down { transform: translateY(-45px); }
    .shop-reveal-zoom { transform: scale(.92); }
    .shop-reveal-flip { transform: perspective(900px) rotateY(20deg); }
}

.shop-section-header {
    flex-shrink: 0;
}

.shop-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}

.shop-section-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .1rem;
}

.shop-section-subtitle {
    opacity: .75;
    margin-bottom: 0;
}

.shop-carousel-wrap {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.shop-section-filter-row {
    flex-shrink: 0;
}

.shop-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #f1f3f5;
    color: #1a1c1d;
    font-weight: 600;
    font-size: .78rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    border: none;
    text-decoration: none;
}

.shop-viewall-btn:hover {
    background: #e2e6ea;
    color: #1a1c1d;
}

.shop-listing-badge {
    display: inline-block;
    background: #eceef0;
    color: #495057;
    font-weight: 700;
    font-size: 1rem;
    padding: .4em .9em;
    border-radius: 999px;
}

.shop-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #f1f3f5;
    color: #495057;
    font-weight: 600;
    font-size: .78rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    border: none;
}

.shop-filter-btn:hover {
    background: #e2e6ea;
    color: #1a1c1d;
}

.shop-filter-btn-active {
    background: var(--bs-primary);
    color: #fff;
}

.shop-filter-menu {
    font-size: .85rem;
    min-width: 210px;
    padding: .5rem;
    border-radius: .9rem;
    box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .18);
}

.shop-filter-menu .dropdown-item {
    border-radius: .5rem;
    padding: .45rem .6rem;
}

.shop-filter-menu .dropdown-item.active,
.shop-filter-menu .dropdown-item:active {
    background: var(--bs-primary);
    color: #fff;
}

.shop-filter-menu .dropdown-header {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
}

.shop-carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: .25rem .1rem .5rem;
    scroll-snap-type: x proximity;
    min-height: 300px;
    flex: 1 1 auto;
}

.shop-carousel-track::-webkit-scrollbar {
    display: none;
}

.shop-carousel-item {
    flex: 0 0 auto;
    width: 125px;
    scroll-snap-align: start;
}

@media (min-width: 576px) {
    .shop-carousel-item { width: 150px; }
}

@media (min-width: 768px) {
    .shop-carousel-item { width: 175px; }
}

@media (min-width: 992px) {
    .shop-carousel-item { width: 195px; }
}

@media (min-width: 1200px) {
    .shop-carousel-item { width: 210px; }
}


@media (min-width: 992px) {
    .shop-carousel-single .shop-carousel-track {
        scroll-snap-type: x mandatory;
    }

    .shop-carousel-single .shop-carousel-item {
        width: 100%;
        max-width: 210px;
        margin: 0 auto;
        scroll-snap-align: center;
    }
}

@media (min-width: 992px) {
    .shop-carousel-half .shop-carousel-item-promo {
        width: 100%;
        max-width: 460px;
    }
}

@media (min-width: 992px) {
    .shop-carousel-triple .shop-carousel-track {
        scroll-snap-type: x mandatory;
        justify-content: safe center;
    }

    .shop-carousel-triple .shop-carousel-item {
        width: calc((100% - 2rem) / 3);
        max-width: 240px;
    }
}

@media (min-width: 992px) {
    .shop-carousel-pair .shop-carousel-track {
        scroll-snap-type: x mandatory;
        justify-content: safe center;
    }

    .shop-carousel-pair .shop-carousel-item {
        scroll-snap-align: center;
    }
}

.shop-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #1a1c1d;
}

.shop-carousel-nav:hover {
    background: #fff;
}

.shop-carousel-nav:disabled {
    opacity: 0;
    pointer-events: none;
}


.shop-carousel-prev { left: -12px; }
.shop-carousel-next { right: -12px; }

@media (min-width: 768px) {
    .shop-carousel-nav {
        width: 38px;
        height: 38px;
    }

    .shop-carousel-prev { left: -22px; }
    .shop-carousel-next { right: -22px; }
}

@media (max-width: 575.98px) {
    .shop-carousel-nav {
        width: 30px;
        height: 30px;
    }

    .shop-carousel-prev { left: -16px; }
    .shop-carousel-next { right: -16px; }
}

.shop-carousel-track-promo {
    justify-content: safe center;
}

.shop-carousel-item-promo {
    width: min(380px, 100%);
    margin: 0 auto;
}

.shop-promo-card {
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #0f7a4e 0%, #14a86b 100%);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.shop-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .18);
    padding: .3em .7em;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .6rem;
    align-self: flex-start;
}

.shop-promo-text h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.shop-promo-text p {
    opacity: .9;
    margin-bottom: 0;
    font-size: .85rem;
}

.shop-promo-gift {
    width: 110px;
    height: 110px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .2));
}

.shop-promo-tag-light {
    background: #dff3e9;
    color: #0f7a4e;
}

.shop-promo-stock {
    margin: .75rem 0;
}

.shop-promo-stock-bar {
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
    height: .4rem;
    overflow: hidden;
    margin-bottom: .35rem;
}

.shop-promo-stock-fill {
    background: #fff;
    height: 100%;
    border-radius: 999px;
}

.shop-promo-stock small {
    color: rgba(255, 255, 255, .9);
    font-size: .72rem;
    font-weight: 600;
}

.shop-promo-btn {
    display: inline-block;
    background: #fff;
    color: #0f7a4e;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: .8rem;
    padding: .5rem 1.1rem;
    margin-top: .5rem;
}

.shop-promo-btn:hover {
    background: rgba(255, 255, 255, .9);
}

@media (max-width: 767.98px) {
    .shop-carousel-track {
        scroll-snap-type: x mandatory;
        justify-content: safe center;
    }

    .shop-carousel-item {
        width: 85%;
        max-width: 340px;
        margin: 0 auto;
        scroll-snap-align: center;
    }
}

@media (max-width: 767.98px) {
    .shop-carousel-item-promo {
        width: 92%;
        max-width: 380px;
        scroll-snap-align: center;
    }
}

.shop-promo-stock-lg .shop-promo-stock-bar {
    background: #f1f3f5;
    height: .55rem;
}

.shop-promo-stock-lg .shop-promo-stock-fill {
    background: #0f7a4e;
}

.shop-promo-stock-lg small {
    color: #495057;
    font-size: .8rem;
}

.shop-promo-reward {
    background: #f1f3f5;
    border-radius: .6rem;
    padding: .6rem .8rem;
    font-size: .85rem;
    font-weight: 600;
    color: #1a1c1d;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.shop-promo-modal-img {
    background: linear-gradient(135deg, #dff3e9 0%, #eafaf3 100%);
    min-height: 280px;
}

.shop-promo-modal-img img {
    width: 65%;
    max-width: 240px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .15));
}

@media (orientation: landscape) and (max-height: 500px) {
    #shopPromoModal .shop-promo-modal-row {
        flex-wrap: nowrap;
    }

    #shopPromoModal .shop-promo-modal-row > .shop-promo-modal-text,
    #shopPromoModal .shop-promo-modal-row > .shop-promo-modal-img {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #shopPromoModal .shop-promo-modal-text {
        padding: 1rem 1.25rem !important;
    }

    #shopPromoModal #shopPromoTitle {
        font-size: 1.05rem;
        margin-top: .5rem !important;
        margin-bottom: .25rem !important;
    }

    #shopPromoModal .shop-promo-tag {
        margin-bottom: .25rem;
    }

    #shopPromoModal #shopPromoRewardsWrap {
        margin-top: .35rem !important;
    }

    #shopPromoModal .shop-promo-modal-img {
        min-height: 0;
    }

    #shopPromoModal .shop-promo-modal-img img {
        width: 50%;
        max-width: 130px;
    }
}

.shop-product-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 1.25rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
}

.shop-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, .12);
}

.shop-product-img {
    position: relative;
    flex: 0 0 auto;
    height: 175px;
    min-height: 175px;
    max-height: 175px;
    background: #f3f3f5;
    border-radius: 1.25rem 1.25rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -1rem -1rem .75rem -1rem;
}

@media (min-width: 576px) {
    .shop-product-img {
        height: 185px;
        min-height: 185px;
        max-height: 185px;
    }
}

@media (min-width: 768px) {
    .shop-product-img {
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }
}

@media (min-width: 992px) {
    .shop-product-img {
        height: 225px;
        min-height: 225px;
        max-height: 225px;
    }
}

.shop-product-card .mt-auto {
    margin-top: 0 !important;
}

.shop-view-btn {
    position: absolute;
    left: .6rem;
    bottom: .6rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border: none;
    background: rgba(255, 255, 255, .92);
    color: #1a1c1d;
    font-size: .72rem;
    font-weight: 700;
    padding: .35em .75em;
    border-radius: 999px;
    box-shadow: 0 2px 6px -1px rgba(0, 0, 0, .18);
    transition: transform .15s ease, background .15s ease;
}

.shop-view-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.shop-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Skeleton loading (placeholder gris con "pulso" mientras carga una imagen) */
@keyframes shopSkelPulse {
    0%, 100% { background-color: rgba(0, 0, 0, .06); }
    50% { background-color: rgba(0, 0, 0, .12); }
}

.shop-skel-pulse {
    animation: shopSkelPulse 1.3s ease-in-out infinite;
    background-color: rgba(0, 0, 0, .06);
}

img.shop-skel-pulse {
    color: transparent;
}

img.shop-skel-pulse.is-loaded {
    animation: none;
    background-color: transparent;
}

.shop-skel-line {
    display: block;
    border-radius: .3rem;
    background-color: rgba(0, 0, 0, .06);
}

.shop-skel-card {
    pointer-events: none;
}

.shop-skel-card .shop-skel-line-title {
    width: 80%;
    height: .8rem;
    margin: .1rem 0 .4rem;
}

.shop-skel-card .shop-skel-line-sub {
    width: 55%;
    height: .8rem;
    margin-bottom: .9rem;
}

.shop-skel-card .shop-skel-line-price {
    width: 45%;
    height: 1rem;
    margin-bottom: .6rem;
}

.shop-skel-card .shop-skel-line-btn {
    width: 100%;
    height: 1.9rem;
    border-radius: .5rem;
}

.shop-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 2;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .3em .55em;
    border-radius: .35rem;
    color: #fff;
}

.shop-badge-sale { background: var(--bs-danger); }
.shop-badge-new { background: #fd7e14; }
.shop-badge-featured { background: var(--bs-primary); }
.shop-fav-btn {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 2px 6px -1px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: color .15s ease, transform .15s ease;
}

.shop-fav-btn:hover {
    transform: scale(1.08);
}

.shop-fav-btn.is-active {
    color: var(--bs-danger);
}

.shop-fav-btn.is-active i::before {
    content: "\f415";
}

.shop-fav-btn-modal {
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 3;
}

.shop-product-tags-row {
    min-height: 1.75rem;
    margin-bottom: .25rem;
}

.shop-product-name {
    font-size: .85rem;
    font-weight: 600;
    color: #1a1c1d;
    line-height: 1.3;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: .4em .8em;
    border-radius: .5rem;
}

.shop-tag-popular {
    background: #dbeafe;
    color: #1d4ed8;
}

.shop-tag-low {
    background: #fbd9c4;
    color: #b8471f;
}

.shop-tag-new {
    background: #ffe3c2;
    color: #b5540c;
}

.shop-tag-featured {
    background: #dbeafe;
    color: #1d4ed8;
}

.shop-save-pill {
    display: inline-block;
    background: var(--bs-success);
    color: #fff;
    font-weight: 700;
    font-size: .75rem;
    padding: .3em .75em;
    border-radius: 999px;
    text-align: center;
    align-self: center;
}

.shop-modal-views {
    font-size: .8rem;
    color: #6c757d;
}

.shop-sold-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.15;
    flex-shrink: 0;
}

.shop-sold-count-value {
    font-size: .95rem;
    font-weight: 800;
    color: #f97316;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    white-space: nowrap;
}

.shop-sold-count-label {
    font-size: .55rem;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.shop-product-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--bs-danger);
}

.shop-cart-price {
    font-weight: 800;
    color: var(--bs-primary);
}

#shopModalPrice {
    color: var(--bs-primary);
}

.shop-product-price-old {
    text-decoration: line-through;
    opacity: .55;
    font-size: .85rem;
}

.shop-add-btn {
    flex: 1 1 auto;
    max-width: 68%;
    white-space: nowrap;
    border-radius: .65rem;
}

.btn-shop-primary {
    background: linear-gradient(180deg, var(--bs-primary) 0%, #0b5ed7 100%);
    color: #fff;
    border: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 2px 4px rgba(0,0,0,.1);
    transition: all .2s ease;
}

.btn-shop-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 10px -2px rgba(13,110,253,.35);
}

.btn-shop-primary:active {
    transform: translateY(1px);
}

.shop-modal-img-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    max-height: min(60dvh, 420px);
}

.shop-modal-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shop-modal-img img,
.shop-modal-img video,
.shop-gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.shop-modal-img video,
.shop-pdp-image video {
    object-fit: contain;
}

.shop-pdp {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.shop-pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    width: 100%;
}

.shop-pdp-thumbs {
    order: 2;
    display: flex;
    flex-direction: row;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .15rem;
}

.shop-pdp-thumbs:empty {
    display: none;
}

.shop-gallery-thumb {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: .6rem;
    border: 2px solid transparent;
    padding: 0;
    overflow: hidden;
    background: #f3f3f5;
    position: relative;
    cursor: pointer;
}

.shop-gallery-thumb img,
.shop-gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-gallery-thumb.active {
    border-color: var(--bs-primary);
}

.shop-gallery-thumb-video {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    font-size: 1rem;
}

.shop-pdp-main {
    order: 1;
    position: relative;
    width: 100%;
}

.shop-pdp-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f3f3f5;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-pdp-image.is-zoomable {
    cursor: zoom-in;
}

.shop-pdp-info {
    width: 100%;
    min-width: 0;
}

.shop-pdp-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.shop-pdp-actions .btn-shop-primary {
    flex-grow: 0;
    font-size: .875rem;
    padding: .5rem 1.1rem;
    border-radius: .65rem;
}

@media (min-width: 560px) and (orientation: landscape), (min-width: 768px) {
    .shop-pdp {
        flex-direction: row;
        align-items: flex-start;
    }

    .shop-pdp-gallery {
        flex-direction: row;
        width: calc(60% + 20px);
        max-width: 680px;
        flex-shrink: 0;
    }

    .shop-pdp-thumbs {
        order: -1;
        flex: 0 0 76px;
        width: 76px;
        flex-direction: column;
        overflow-x: visible;
        overflow-y: auto;
        max-height: 256px;
        padding-bottom: 0;
    }

    .shop-pdp-main {
        order: 2;
        flex: 1 1 auto;
        max-width: 580px;
        min-width: 0;
    }

    .shop-pdp-main .shop-pdp-image {
        aspect-ratio: 4 / 3;
    }

    .shop-pdp-info {
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .shop-pdp {
        flex-wrap: nowrap;
    }

    .shop-pdp-gallery {
        flex-direction: column;
        width: min(70dvw, 420px);
        height: min(70dvh, 400px);
        flex-shrink: 0;
    }

    .shop-pdp-thumbs {
        order: 2;
        flex-direction: row;
        width: 400px;
        max-width: 92dvw;
        height: auto;
        max-height: none;
        overflow-x: auto;
        overflow-y: visible;
        flex: 0 0 auto;
        padding-bottom: .15rem;
        padding-right: 0;
    }

    .shop-pdp-main {
        order: 1;
        width: 100%;
        height: auto;
        max-width: none;
        flex: 1 1 auto;
        min-height: 0;
    }

    .shop-pdp-main .shop-pdp-image {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    .shop-pdp-info {
        flex: 1 1 240px;
        min-width: 0;
    }
}

.shop-pdp-description {
    font-size: .92rem;
    line-height: 1.5;
}

.shop-pdp-description p {
    margin-bottom: .6rem;
}

.shop-pdp-description ul,
.shop-pdp-description ol {
    margin-bottom: .6rem;
    padding-left: 1.25rem;
}

.shop-pdp-description p:last-child {
    margin-bottom: 0;
}

.shop-modal-img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.shop-modal-img-nav:hover {
    background: #fff;
}

.shop-modal-img-prev { left: 18px; }
.shop-modal-img-next { right: 18px; }

.shop-modal-img-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(2px);
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .2s ease;
}

.shop-modal-img-dots.is-video-active {
    opacity: 0;
    pointer-events: none;
}

.shop-modal-img-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
}

.shop-modal-img-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 999px;
}

body.shop-zoom-locked {
    overflow: hidden;
}

.shop-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shop-zoom-overlay.is-open {
    display: flex;
}

.shop-zoom-viewport {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
}

.shop-zoom-viewport.is-zoomed {
    cursor: zoom-out;
}

.shop-zoom-viewport.is-video {
    cursor: default;
    touch-action: auto;
}

.shop-zoom-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-zoom-img {
    max-width: 92vw;
    max-height: 78dvh;
    object-fit: contain;
    transition: transform .2s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.shop-zoom-video {
    max-width: 92vw;
    max-height: 78dvh;
    background: #000;
}

.shop-zoom-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 3;
}

.shop-zoom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 3;
}

.shop-zoom-prev { left: 16px; }
.shop-zoom-next { right: 16px; }

.shop-zoom-thumbs {
    display: flex;
    gap: .5rem;
    padding: .75rem;
    overflow-x: auto;
    max-width: 100%;
}

.shop-zoom-thumb {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: .5rem;
    border: 2px solid transparent;
    padding: 0;
    overflow: hidden;
    opacity: .6;
    cursor: pointer;
    position: relative;
}

.shop-zoom-thumb img,
.shop-zoom-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-zoom-thumb-video {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    font-size: .85rem;
}

.shop-zoom-thumb.active {
    border-color: #fff;
    opacity: 1;
}

.shop-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 16px -4px rgba(0, 0, 0, .35);
    z-index: 1500;
    text-decoration: none;
    transition: transform .15s ease;
}

.shop-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.06);
}

.shop-cart-line {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .06);
}

.shop-cart-line picture,
.shop-cart-line img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #f3f3f5;
    border-radius: .75rem;
    flex-shrink: 0;
}

.shop-cart-line picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-cart-line-divider {
    margin: .75rem 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.shop-qty-control {
    background: #f1f3f5;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
}

.shop-qty-control button {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 999px;
}

.shop-qty-control button:hover {
    background: #e2e6ea;
}

.shop-qty-input {
    width: 2.5rem;
    height: 32px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    padding: 0;
    -moz-appearance: textfield;
}

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

.shop-qty-input:focus {
    outline: none;
    background: #fff;
    border-radius: .4rem;
}

.shop-summary-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .06);
}

@media (min-width: 992px) {
    .shop-summary-card {
        position: sticky;
        top: 96px;
    }
}

.shop-cart-heading {
    font-size: 2rem;
}

.shop-cart-subtitle {
    font-size: .85rem;
}

.shop-cart-item-name {
    font-size: 1rem;
}

.shop-cart-item-desc {
    font-size: .8rem;
}

.shop-cart-qty {
    font-size: .85rem;
}

.shop-cart-line-price {
    font-size: 1.5rem;
}

.shop-cart-summary-title {
    font-size: 1.35rem;
}

.shop-cart-total-label {
    font-size: .95rem;
    font-weight: 600;
}

.shop-cart-total-value {
    font-size: 1.75rem;
}

.shop-cart-checkout-btn {
    font-size: 1rem;
}

.shop-cart-disclaimer {
    font-size: .75rem;
}

.shop-category-bar-wrap {
    padding: .75rem 0;
}

.shop-category-bar-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-category-bar-nav {
    flex-shrink: 0;
}

.shop-category-bar-track {
    display: flex;
    align-items: center;
    gap: .6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: .15rem .1rem;
    flex: 1 1 auto;
}

.shop-category-bar-track::-webkit-scrollbar {
    display: none;
}

.shop-category-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1c1d;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    background: #f8f9fb;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    overflow: hidden;
}

.shop-category-chip:hover {
    transform: translateY(-1px);
}

.shop-category-chip.active {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 1px var(--bs-primary);
}

.shop-category-chip-all {
    padding: .5rem 1.1rem;
}

.shop-category-chip-label {
    font-weight: 600;
    font-size: .78rem;
    white-space: nowrap;
    color: inherit;
}

.shop-category-chip-media {
    display: none;
    flex-shrink: 0;
    overflow: hidden;
}

.shop-category-chip-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all),
.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) {
    position: relative;
    height: 60px;
    min-width: 140px;
    padding: 0 1rem;
    justify-content: center;
    border: none;
}

.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-media,
.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-media {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: 0;
}

.shop-category-bar-mode-pill .shop-category-chip-all,
.shop-category-bar-mode-rectangle .shop-category-chip-all {
    height: 60px;
}

.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) {
    height: 78px;
    min-width: 230px;
    border-radius: 12px;
}

.shop-category-bar-mode-rectangle .shop-category-chip-all {
    height: 78px;
    border-radius: 12px;
}

.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all)::before,
.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1;
}

.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-label,
.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-label {
    font-size: 1.05rem;
}

.shop-category-bar-hidetext.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all)::before,
.shop-category-bar-hidetext.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all)::before {
    content: none;
}

.shop-category-bar-noimage.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all),
.shop-category-bar-noimage.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) {
    border: 1px solid rgba(0, 0, 0, .08);
}

.shop-category-bar-noimage.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all)::before,
.shop-category-bar-noimage.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all)::before {
    content: none;
}

.shop-category-bar-noimage.shop-category-bar-mode-pill .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-label,
.shop-category-bar-noimage.shop-category-bar-mode-rectangle .shop-category-chip:not(.shop-category-chip-all) .shop-category-chip-label {
    color: #1a1c1d;
    text-shadow: none;
}

.shop-category-bar-mode-circle_left .shop-category-chip:not(.shop-category-chip-all) {
    height: 58px;
    padding: .35rem 1.1rem .35rem .35rem;
    gap: .6rem;
}

.shop-category-bar-mode-circle_left .shop-category-chip-media {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 999px;
}

.shop-category-bar-mode-circle_left .shop-category-chip-all {
    height: 58px;
}

.shop-category-bar-mode-circle_top .shop-category-chip:not(.shop-category-chip-all) {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: .4rem;
    min-width: 80px;
    overflow: visible;
    border-radius: 0;
}

.shop-category-bar-mode-circle_top .shop-category-chip:not(.shop-category-chip-all).active {
    box-shadow: none;
}

.shop-category-bar-mode-circle_top .shop-category-chip-media {
    display: block;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: 2px solid transparent;
}

.shop-category-bar-mode-circle_top .shop-category-chip:not(.shop-category-chip-all).active .shop-category-chip-media {
    border-color: var(--bs-primary);
}

.shop-category-bar-mode-circle_top .shop-category-chip-label {
    font-size: .72rem;
    text-align: center;
}
