.shop-products-preview{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 1rem;     
}

.collection-name {
    font-weight: 700;
    font-size: 32px;
    line-height: 80%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}
  
.preview-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 8;
    border-radius: 12px;
    overflow: hidden;
}

.img-base,
.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-base {
    z-index: 1;
    min-height: 367px;
}

.img-hover {
    z-index: 2;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.preview-image-container.hovered .img-hover {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.preview-image-container.hovered .img-base {
    transform: translateY(-10px) scale(1.02);
}
  
.preview-tabs {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #d7d8de;
    padding: 5px;
    gap: .25rem;
    border-radius: 10px;
}
  
.preview-tabs .tab-btn{
    padding: .35rem 1.35rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .25s ease;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
    background: transparent;
}

.preview-tabs .tab-btn.active{
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.preview-contents {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 175px;
    width: 100%;
}
  
.fabric-list,
.care-list{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: .7rem;
}
  
.fabric-item { 
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    gap: .5rem;
}

.fabric-item strong {
    font-weight: 600;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(0, 0, 0, 0.6);
}

.fabric-item span {
    font-weight: 700;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: #000;
}

.fabric-item:last-child { 
    display: none !important; 
}
  
.care-item{     
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: .25rem;
}

.care-icon{ 
    width: auto;
    height: 25px!important;
    object-fit: none;
}

.care-text{ 
    font-weight: 600;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(0, 0, 0, 0.6);
}
  
.tab-content { 
    display: none; 
}

.tab-content.active { 
    display: flex;
    flex-direction: column;
    gap: .5em;
}
  
.fabric-item.is-empty strong,
.fabric-item.is-empty span { 
    color:#9f9f9f; 
}

.description-list {
    display: flex;
    flex-direction: column;
    padding: 1em 0;
    gap: .5rem;
    border-top: 1px solid #e1e1e1;  
}

.description-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .2rem;
}

.description-image {
    width: 10%;
}

.description-image img {
    object-fit: contain;
}

.description-text {
    width: 90%;
    font-weight: 600;
    font-size: 18px;
    line-height: 90%;
    letter-spacing: -0.04em;
    color: rgba(0, 0, 0, 0.6);
}

.preview-image-container .zoom-btn{
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    border: 1px solid #fffefe29;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: transform .15s 
        ease, background .2s 
        ease;
}

.preview-image-container .zoom-btn:hover { 
    transform: translateY(-1px); 
    background:#fff;
}
    
.preview-image-container .zoom-btn:active { 
    transform: translateY(0); 
    
}

.zoom-icon { 
    width: 20px; 
    height: 20px;
    fill:#000; 
}

.zoom-lock { 
    overflow: hidden; 
}
 
.zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.zoom-modal.is-open { 
    display: block;
}

.zoom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .2s ease;
}

.zoom-modal.is-open .zoom-backdrop{ 
    opacity: 1; 
}

.zoom-dialog{
    position: absolute;
    inset: 5% 3%;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
    flex: 1 1 auto;
}

.zoom-caption{
    padding: .6rem .9rem;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    border-top: 1px solid rgba(255,255,255,.08);
}

.zoom-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .15s ease;
    z-index: 2;
}

.zoom-close:hover{ 
    background:#fff; 
    transform: translateY(-1px); 
}

.zoom-close:active{ transform:
    translateY(0); 
}

@media (max-width: 767px) {
    .zoom-dialog { 
        inset: 8% 4%; 
    }
    
    .preview-image-container .zoom-btn { 
        width: 36px; 
        height: 36px; 
    }
}