.veda-product-shell {
    align-items: stretch;
}

.veda-product-detail {
    padding: 22px 0 10px;
}

.veda-product-gallery {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    max-width: 690px;
}

.veda-product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: min(74vh, 760px);
    overflow-y: auto;
    padding-right: 2px;
}

.veda-product-gallery__thumb {
    width: 78px;
    height: 104px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    opacity: .72;
    transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.veda-product-gallery__thumb.is-active,
.veda-product-gallery__thumb:hover {
    border-color: #ff7800;
    opacity: 1;
    transform: translateY(-1px);
}

.veda-product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.veda-product-gallery__main {
    position: relative;
    width: 100%;
    min-height: 560px;
    height: min(74vh, 760px);
    /* background: #fff;
    border-radius: 18px; */
    overflow: hidden;
    /* border: 1px solid rgba(47, 69, 120, .12);
    box-shadow: 0 16px 38px rgba(47, 69, 120, .12); */
}

.veda-product-gallery__slide {
    position: absolute;
    /* inset: 0; */
    display: none;
    align-items: center;
    justify-content: center;
    /* background: #f2f8ff; */
}

.veda-product-gallery__slide.is-active {
    display: flex;
}

.veda-product-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.veda-product-info {
    position: sticky;
    top: 18px;
    padding: 24px 26px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(47, 69, 120, .12);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(47, 69, 120, .08);
}

.veda-product-title {
    margin: 12px 0 12px;
    color: #111;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 600;
}

.veda-product-intro {
    margin-bottom: 18px;
    color: #35445a;
    font-size: 15px;
    line-height: 1.55;
}

.veda-product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 16px 0 20px;
}

.veda-product-price__old {
    color: #8b8b8b;
    font-size: 16px;
    text-decoration: line-through;
}

.veda-product-price__current {
    color: #111;
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.veda-product-buy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.veda-product-count {
    display: inline-flex;
    align-items: center;
    height: 42px;
    border: 1px solid rgba(47,69,120,.35);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.veda-count-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #2f4578;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.veda-count-input {
    width: 48px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #111;
    text-align: center;
    font-weight: 700;
    outline: none;
}

.veda-cart-btn {
    height: 42px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7800 0%, #ffc400 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 120, 0, .25);
}

.veda-cart-btn:hover {
    filter: brightness(1.03);
}

.veda-product-back {
    display: inline-flex;
    color: #2f4578;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.veda-product-back:hover {
    color: #ff7800;
    text-decoration: none;
}

.veda-product-description {
    margin-top: 26px;
    color: #111;
    font-size: 16px;
    line-height: 1.65;
        padding: 24px 26px;
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(47, 69, 120, .12);
            border-radius: 18px;
            box-shadow: 0 14px 32px rgba(47, 69, 120, .08);
}

.veda-product-description h2,
.veda-product-description h3 {
    font-weight: 800;
}

.veda-product-section {
    margin-top: 34px;
}

.veda-product-section__title {
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff7800;
    color: #111;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

@media (max-width: 991px) {
    .veda-product-info {
        position: static;
        margin-top: 20px;
    }

    .veda-product-gallery {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .veda-product-detail {
        padding-top: 16px;
    }

    .veda-product-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .veda-product-gallery__thumbs {
        order: 2;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
    }

    .veda-product-gallery__thumb {
        flex: 0 0 62px;
        width: 62px;
        height: 82px;
        border-radius: 9px;
    }

    .veda-product-gallery__main {
        order: 1;
        min-height: 0;
        /* height: 78vh;
        max-height: 680px;
        border-radius: 14px; */
    }

    .veda-product-info {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .veda-product-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .veda-product-intro {
        font-size: 14px;
    }

    .veda-product-price__current {
        font-size: 27px;
    }

    .veda-cart-btn {
        width: 100%;
    }

    .veda-product-count {
        width: 100%;
        justify-content: space-between;
    }

    .veda-count-input {
        flex: 1;
    }

    .veda-product-description {
        font-size: 15px;
    }

    .veda-product-section__title {
        font-size: 20px;
    }
}
