.fast-products-grid,
.fast-skeleton-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.fast-video-wrapper{

    position:relative;

    width:100%;

    padding-top:56.25%;
    margin-top:10px;

    margin-bottom:15px;

    border-radius:10px;

    overflow:hidden;

}
    @media (max-width: 500px) {
        .fast-cart-text {
            display: none !important;
        }
    }

.fast-video-wrapper iframe{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

}

.fast-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.20);
    transition: .25s;
    contain: layout paint;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.fast-product-card:hover {
    transform: translateY(-4px);
}

.fast-product-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.fast-product-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.fast-quick-view {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    color: #fff;
    border: none;
    opacity: 0;
    transition: .25s;
    cursor: pointer;
}

.fast-skeleton-wrapper{
    display:none;
}

.fast-product-title {
    display: -webkit-box;

    overflow: hidden;

    min-height: 38px;

    margin-top: 10px;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 500;

    color: #222;

    text-decoration: none;
}

.fast-product-price {
    margin-top: 6px;

    color: red;

    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
}

.fast-product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 6px;
}

.fast-product-price ins {
    text-decoration: none;
}

.fast-product-save {
    color: #16a34a;
    font-size: 13px;
    margin-top: 4px;
}

.fast-product-sold {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.fast-load-more {
    border: none;

    background: #383838;
    color: #fff;

    height: 38px;

    padding: 0 18px;

    border-radius: 999px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;

    transition: .2s;

    flex-shrink: 0;
}

.fast-load-more:hover {
    opacity: .9;
}

.fast-skeleton-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #eee;
    border-radius: 12px;
    animation: pulse .9s infinite;
}

.fast-skeleton-line {
    height: 12px;
    background: #eee;
    margin-top: 10px;
    border-radius: 999px;
    animation: pulse .9s infinite;
}

.fast-skeleton-card {
    contain: content;
}

.fast-skeleton-line.short {
    width: 60%;
}

@keyframes pulse {
    0% { opacity: .5; }
    50% { opacity: 1; }
    100% { opacity: .5; }
}

.fast-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.fast-modal.active {
    display: flex;
}



@media(max-width:1024px){

    .fast-products-grid,
    .fast-skeleton-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media(max-width:768px){

    .fast-products-grid,
    .fast-skeleton-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

}

@media(max-width:500px){

    .fast-products-grid,
    .fast-skeleton-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

}

.fast-product-footer {
    margin-top: auto;
    padding-top: 10px;

    display: flex;
    justify-content: space-between;

    gap: 5px;
}

.fast-product-save {
    color: #e53935;

    font-size: 13px;
    font-weight: 500;
}

.fast-product-cart a {
    width: auto !important;
    height: 38px;
    padding: 4px !important;

    border-radius: 4px !important;

    background: none;
    border: 1px solid #30bbe5;
    color: #30bbe5;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 14px !important;
    font-weight: 600 !important;

    transition: .2s;
}

.fast-product-cart a:hover {
    background: #111 !important;
    color: #fff !important;
}
@media(max-width:768px){

    .fast-product-card {
        padding: 10px;
    }

    .fast-product-price {
        font-size: 16px;
    }


}

.fast-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 16px;
}

.fast-products-heading {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

@media(max-width:768px){

    .fast-products-header {
        margin-bottom: 14px;
    }

    .fast-products-heading {
        font-size: 20px;
        line-height: 1.2;
    }

    .fast-load-more {
        height: 34px;
        padding: 0 14px;

        font-size: 12px;
    }

}

.fast-modal-content {
    width: 92%;
    max-width: 420px;

    background: #fff;

    border-radius: 24px;

    padding: 18px;

    position: relative;

    max-height: 90vh;

    overflow-y: auto;
}

.fast-modal-close {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: none;

    background: #b90000;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    z-index: 10;
}

#fastModalImage {
    width: 100%;

    border-radius: 18px;

    aspect-ratio: 1/1;

    object-fit: cover;
}

.fast-modal-gallery {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 8px;

    margin-top: 12px;
}

.fast-gallery-thumb {
    width: 100%;

    aspect-ratio: 1/1;

    border-radius: 10px;

    object-fit: cover;

    cursor: pointer;

    border: 2px solid transparent;
}

.fast-gallery-thumb:hover {
    border-color: #111;
}

#fastModalTitle {
    font-size: 22px;

    line-height: 1.35;

    margin-top: 16px;

    margin-bottom: 12px;
}

#fastModalPrice {
    color: #111;

    font-size: 26px;

    font-weight: 700;
}

#fastModalPrice del {
    color: #999;

    font-size: 16px;

    margin-right: 8px;
}

#fastModalSave {
    margin-top: 8px;

    color: #e53935;

    font-size: 14px;
}

#fastModalDescription {
    margin-top: 14px;

    color: #555;

    font-size: 14px;

    line-height: 1.7;
}

.fast-modal-buttons {
    display: flex;

    gap: 10px;

    margin-top: 20px;
    margin-bottom:50px;
}

.fast-modal-btn {
    flex: 1;

    height: 46px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-weight: 600;
}

.fast-modal-btn.primary {
    background: #F85606;

    color: #fff;
}

.fast-modal-btn.secondary {
    border: 1.5px solid #111;

    color: #111;
}
.fast-product-cart .added_to_cart {
    display: none !important;
}



.fast-hot-badge{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:44px;

    background:#ff2600;
    opacity:0.85;

    color:#fff;
    font-size:13px;
    font-weight:500;

    display:flex;
    justify-content:flex-end;
    align-items:flex-start;

    padding-top:2px;
    padding-right:2px;

    z-index:20;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 8%
    );
}
.fast-discount-badge{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:44px;

    background:#fedb06;
    opacity:0.85;

    color:#111;
    font-size:13px;
    font-weight:500;

    display:flex;
    justify-content:flex-end;
    align-items:flex-start;

    padding-top:2px;
    padding-right:2px;

    z-index:20;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 8%
    );
}
.fast-hot-badge{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:44px;

    background:#ff2600;
    opacity:0.85;

    color:#fff;
    font-size:13px;
    font-weight:500;

    display:flex;
    justify-content:flex-end;
    align-items:flex-start;

    padding-top:2px;
    padding-right:2px;

    z-index:20;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 8%
    );
}
