/* =========================================================
STORE HERO
========================================================= */

.store-hero{
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 36px 0 0;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.13), transparent 30%),
        radial-gradient(circle at bottom right, rgba(11,44,102,.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7faff 48%, #edf5ff 100%);
}

.store-hero::before{
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.94) 94%);
    z-index: 2;
    pointer-events: none;
}

.store-hero .container{
    position: relative;
    z-index: 3;
    max-width: 1320px;
}

.store-hero-content{
    max-width: 560px;
}

.store-hero-subtitle{
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    font-size: 12px;
    font-weight: 800;
}

.store-hero-content h1{
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 20px;
}

.store-show-hero-content h1{
    font-size: 42px;
    line-height: 1.18;
}

.store-hero-content p{
    max-width: 520px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.85;
    color: var(--color1);
    margin-bottom: 28px;
}

.store-hero-btn{
    min-height: 52px;
    width: fit-content;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--color1);
    color: var(--color4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(11,44,102,.20);
}

.store-hero-btn:hover{
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-3px);
}

.store-hero-btn i{
    font-size: 13px;
    transition: var(--transition);
}

.store-hero-btn:hover i{
    transform: translateY(3px);
}

/* =========================================================
VISUAL
========================================================= */

.store-hero-visual{
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.store-hero-img{
    position: absolute;
    left: 0;
    right: 80px;
    bottom: 0;
    height: 90%;
    max-height: 90%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.store-hero-img::before,
.store-hero-img::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    z-index: 3;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.store-hero-img::before{
    left: 0;
    background: linear-gradient(90deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.72) 42%, transparent 100%);
}

.store-hero-img::after{
    right: 0;
    background: linear-gradient(270deg, rgba(237,245,255,.96) 0%, rgba(237,245,255,.66) 42%, transparent 100%);
}

.store-hero-img img{
    position: relative;
    z-index: 1;
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

/* =========================================================
CONTENT PLACEHOLDER
========================================================= */

.store-product-section{
    padding: 72px 0 82px;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #eef7ff 100%);
}

.store-detail-placeholder{
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.store-detail-placeholder span{
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    font-size: 11px;
    font-weight: 800;
}

.store-detail-placeholder h2{
    font-size: 32px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 12px;
}

.store-detail-placeholder p{
    color: var(--color5);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.store-toolbar{
    position: relative;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    margin-bottom: 28px;
}

.store-search{
    position: relative;
}

.store-search input{
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(11,44,102,.11);
    background: rgba(255,255,255,.86);
    padding: 0 58px 0 22px;
    color: var(--color1);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(11,44,102,.06);
    outline: none;
    transition: var(--transition);
}

.store-search input:focus{
    border-color: rgba(11,44,102,.34);
    box-shadow: 0 18px 38px rgba(11,44,102,.10);
}

.store-search button{
    position: absolute;
    right: 12px;
    top: 50%;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    transform: translateY(-50%);
    background: rgba(11,44,102,.07);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.store-search button:hover{
    background: var(--color2);
}

.store-category-dropdown{
    position: relative;
    z-index: 40;
    min-width: 0;
}

.store-category-btn{
    width: 100%;
    min-height: 58px;
    border: none;
    border-radius: 14px;
    padding: 0 18px;
    background: var(--color1);
    color: var(--color4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(11,44,102,.18);
}

.store-category-btn:hover,
.store-category-btn.show{
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-2px);
}

.store-category-dropdown .dropdown-menu{
    z-index: 9999;
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 18px 44px rgba(11,44,102,.14);
}

.store-category-dropdown .dropdown-item{
    border-radius: 11px;
    padding: 10px 12px;
    color: var(--color1);
    font-size: 13px;
    font-weight: 700;
}

.store-category-dropdown .dropdown-item:hover,
.store-category-dropdown .dropdown-item.active{
    background: rgba(245,197,24,.18);
    color: var(--color1);
}

.store-catalog-panel,
.store-sidebar-card{
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(11,44,102,.08);
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(11,44,102,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.store-catalog-panel{
    padding: 24px;
}

.store-product-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.store-empty-state{
    grid-column: 1 / -1;
    min-height: 260px;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    border: 1px dashed rgba(11,44,102,.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.store-empty-state i{
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.store-empty-state h3{
    color: var(--color1);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.store-empty-state p{
    color: var(--color5);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.store-product-card{
    opacity: 0;
    transform: translateY(24px);
    animation: storeCardIn .65s ease forwards;
    animation-delay: var(--delay);
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,251,255,.9) 100%);
    border: 1px solid rgba(11,44,102,.08);
    box-shadow: 0 14px 32px rgba(11,44,102,.07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    isolation: isolate;
}

.store-product-card::before{
    content: "";
    position: absolute;
    inset: -1px -1px auto;
    height: 42%;
    background:
        radial-gradient(circle at 24% 18%, rgba(245,197,24,.22), transparent 34%),
        radial-gradient(circle at 86% 0%, rgba(16,165,166,.16), transparent 30%);
    opacity: .72;
    pointer-events: none;
    z-index: -1;
}

.store-product-card:hover{
    transform: translateY(-8px);
    border-color: rgba(245,197,24,.38);
    box-shadow: 0 24px 54px rgba(11,44,102,.14);
}

.store-product-img{
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin: 14px 14px 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.16), transparent 34%),
        rgba(11,44,102,.04);
    box-shadow: 0 16px 34px rgba(11,44,102,.08);
}

.store-product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.store-product-card:hover .store-product-img img{
    transform: scale(1.08) rotate(-1deg);
}

.store-product-img span{
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    min-height: 28px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(11,44,102,.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-product-body{
    padding: 17px 16px 16px;
}

.store-product-body h3{
    min-height: 52px;
    margin-bottom: 14px;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0;
}

.store-product-body h3 a{
    color: var(--color1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.store-product-body h3 a:hover{
    color: #0f766e;
}

.store-product-body > strong{
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 15px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--color1);
    background:
        linear-gradient(135deg, rgba(245,197,24,.28), rgba(255,255,255,.9));
    border: 1px solid rgba(245,197,24,.36);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(245,197,24,.12);
}

.store-product-btn{
    min-height: 40px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(11,44,102,.12);
    background: rgba(255,255,255,.74);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 800;
    transition: var(--transition);
}

.store-product-btn:hover{
    background: var(--color1);
    border-color: var(--color1);
    color: var(--color4);
}

.store-info-note{
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(45,139,255,.08);
    border: 1px solid rgba(45,139,255,.12);
}

.store-info-note i{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(11,44,102,.08);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-info-note p{
    margin: 0;
    color: var(--color1);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.store-sidebar{
    position: sticky;
    top: 120px;
    display: grid;
    gap: 22px;
}

.store-sidebar-card{
    padding: 28px;
}

.store-sidebar-heading{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.store-sidebar-heading > i{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.store-sidebar-heading h3{
    margin: 0;
    color: var(--color1);
    font-size: 21px;
    font-weight: 800;
}

.store-sidebar-card > p{
    color: var(--color5);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.store-sidebar-feature{
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-top: 1px solid rgba(11,44,102,.08);
}

.store-sidebar-feature i{
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(11,44,102,.07);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-sidebar-feature h4,
.store-step-item h4{
    margin-bottom: 5px;
    color: var(--color1);
    font-size: 13.5px;
    font-weight: 800;
}

.store-sidebar-feature span,
.store-step-item p{
    color: var(--color5);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0;
}

.store-step-list{
    display: grid;
    gap: 18px;
}

.store-step-item{
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
}

.store-step-item:not(:last-child)::after{
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: -18px;
    border-left: 1px dashed rgba(11,44,102,.20);
}

.store-step-item strong{
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(45,139,255,.11);
    border: 1px solid rgba(45,139,255,.22);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

/* =========================================================
ANIMATION
========================================================= */

.fade-up{
    opacity: 0;
    animation: storeFadeUp .85s ease forwards;
}

.fade-left{
    opacity: 0;
    animation: storeFadeLeft .9s ease forwards;
}

.delay-1{
    animation-delay: .12s;
}

.delay-2{
    animation-delay: .24s;
}

@keyframes storeFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes storeFadeLeft{
    from{
        opacity: 0;
        transform: translateX(44px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes storeCardIn{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .store-hero{
        min-height: auto;
        padding: 42px 0 0;
    }

    .store-hero-content h1{
        font-size: 46px;
    }

    .store-show-hero-content h1{
        font-size: 36px;
    }

    .store-hero-visual{
        min-height: 470px;
    }

    .store-hero-img{
        right: 50px;
    }

    .store-product-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media(max-width:991px){

    .store-hero{
        text-align: center;
        padding: 42px 0 0;
    }

    .store-hero-content{
        max-width: 720px;
        margin: 0 auto 34px;
    }

    .store-hero-subtitle,
    .store-hero-btn{
        margin-left: auto;
        margin-right: auto;
    }

    .store-hero-content p{
        margin-left: auto;
        margin-right: auto;
    }

    .store-hero-visual{
        min-height: auto;
        flex-direction: column;
        align-items: center;
    }

    .store-hero-img{
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        max-height: none;
        z-index: 4;
    }

    .store-hero-img img{
        width: auto;
        height: auto;
        max-height: 430px;
    }

    .store-toolbar{
        grid-template-columns: 1fr;
    }

    .store-sidebar{
        position: relative;
        top: auto;
    }
}

@media(max-width:768px){

    .store-hero{
        padding-top: 34px;
    }

    .store-hero-content h1{
        font-size: 36px;
    }

    .store-show-hero-content h1{
        font-size: 30px;
    }

    .store-hero-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .store-hero-btn{
        width: 100%;
        justify-content: center;
    }

    .store-hero-img img{
        max-height: 340px;
    }

    .store-product-section{
        padding: 56px 0 64px;
    }

    .store-catalog-panel,
    .store-sidebar-card{
        border-radius: 20px;
    }

    .store-catalog-panel{
        padding: 18px;
    }

    .store-product-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .store-product-body h3{
        min-height: auto;
        font-size: 13.5px;
    }

    .store-product-body > strong{
        font-size: 13px;
        min-height: 32px;
        padding: 7px 10px;
    }

    .store-info-note{
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

@media(max-width:480px){

    .store-hero-content h1{
        font-size: 32px;
    }

    .store-show-hero-content h1{
        font-size: 27px;
    }

    .store-hero-img img{
        max-height: 300px;
    }

    .store-section-heading h2,
    .store-detail-placeholder h2{
        font-size: 26px;
    }

    .store-search input{
        min-height: 54px;
        font-size: 13px;
    }

    .store-category-btn{
        min-height: 54px;
    }

    .store-product-grid{
        grid-template-columns: 1fr;
    }

    .store-sidebar-card{
        padding: 22px 18px;
    }
}

/* =========================================================
STORE SHOW DETAIL
========================================================= */

.store-show-section{
    position: relative;
}

.store-show-panel{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.store-show-main,
.store-show-description,
.store-related-box{
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(11,44,102,.08);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 16px 42px rgba(11,44,102,.07);
}

.store-show-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.store-show-gallery h2,
.store-show-description h2,
.store-related-heading h2{
    font-size: 24px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 22px;
}

.store-show-main-img{
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f8ff 0%, #eef7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.store-show-main-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .55s ease;
}

.store-show-main-img:hover img{
    transform: scale(1.04);
}

.store-show-thumbs{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.store-show-thumb{
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(11,44,102,.1);
    border-radius: 10px;
    padding: 6px;
    background: var(--color4);
    overflow: hidden;
    transition: var(--transition);
}

.store-show-thumb.active,
.store-show-thumb:hover{
    border-color: var(--color1);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11,44,102,.1);
}

.store-show-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-show-category{
    display: inline-flex;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(117,82,200,.12);
    color: #5635a7;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.store-show-info h1{
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 14px;
}

.store-show-price{
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 18px;
}

.store-show-info > p{
    font-size: 15px;
    line-height: 1.85;
    color: var(--color5);
    margin-bottom: 24px;
}

.store-show-highlight{
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-show-highlight li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    color: var(--color1);
}

.store-show-highlight i,
.store-show-topic-item i{
    color: #0f9e9e;
    margin-top: 3px;
}

.store-show-note{
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: flex-start;
    border-radius: 14px;
    padding: 18px 20px;
    background: rgba(11,44,102,.05);
    border: 1px solid rgba(11,44,102,.08);
    margin-bottom: 22px;
}

.store-show-note i{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11,44,102,.1);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-show-note p{
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--color1);
    font-weight: 600;
}

.store-show-partner-btn{
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color7) 100%);
    color: var(--color4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(11,44,102,.16);
}

.store-show-partner-btn:hover{
    color: var(--color4);
    transform: translateY(-3px);
}

.store-show-partner-note{
    display: block;
    text-align: center;
    margin: 12px 0 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(11,44,102,.62);
}

.store-show-share{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(11,44,102,.1);
}

.store-show-share > span{
    font-size: 14px;
    font-weight: 800;
    color: var(--color1);
}

.store-show-description p{
    font-size: 15px;
    line-height: 1.85;
    color: var(--color5);
    margin-bottom: 24px;
}

.store-show-description h3{
    font-size: 18px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 18px;
}

.store-show-topic-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
}

.store-show-topic-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color1);
    line-height: 1.55;
}

.store-related-heading{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.store-related-heading h2{
    margin-bottom: 8px;
}

.store-related-heading p{
    margin: 0;
    max-width: 560px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--color5);
}

.store-related-heading a{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color1);
    font-size: 13px;
    font-weight: 800;
}

.store-related-heading a:hover{
    color: #0f9e9e;
}

.store-related-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.store-related-card{
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(11,44,102,.08);
    box-shadow: 0 12px 30px rgba(11,44,102,.06);
    transition: var(--transition);
}

.store-related-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(11,44,102,.11);
}

.store-related-img{
    position: relative;
    height: 155px;
    background: linear-gradient(135deg, #f5f8ff 0%, #eef7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.store-related-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-related-img span{
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(117,82,200,.12);
    color: #5635a7;
    font-size: 11px;
    font-weight: 800;
}

.store-related-body{
    padding: 18px;
}

.store-related-body h3{
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 10px;
    min-height: 42px;
}

.store-related-body strong{
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0f9e9e;
    margin-bottom: 14px;
}

.store-related-body a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--color1);
}

.store-related-body a:hover{
    color: #0f9e9e;
}

@media(max-width:1199px){
    .store-show-main{
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px){
    .store-related-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .store-show-main,
    .store-show-description,
    .store-related-box{
        padding: 26px 22px;
        border-radius: 22px;
    }

    .store-show-info h1{
        font-size: 25px;
    }

    .store-show-topic-grid{
        grid-template-columns: 1fr;
    }

    .store-show-share,
    .store-related-heading{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:480px){
    .store-show-thumbs,
    .store-related-grid{
        grid-template-columns: 1fr 1fr;
    }

    .store-show-note{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .store-show-note i{
        margin: 0 auto;
    }
}

.store-show-main-img img{
    opacity: 1;
    transform: scale(1);
    transition:
        opacity .25s ease,
        transform .45s ease;
}

.store-show-main-img img.changing{
    opacity: .35;
    transform: scale(.96);
}

.store-show-thumb{
    cursor: pointer;
}

.store-show-thumb img{
    transition: transform .35s ease;
}

.store-show-thumb:hover img{
    transform: scale(1.05);
}

.store-show-thumb.active{
    border-color: var(--color1);
    box-shadow: 0 12px 24px rgba(11,44,102,.12);
    background: rgba(11,44,102,.04);
}
