body {
    font-family: 'Jost', sans-serif;
}

.secTitle {
    font-size: 2rem;
    font-weight: 600;
}

.secDesc {
    color: #777;
    margin: 0;
}

.arrivalNav button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 12px;
    margin-left: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: .3s;
}

.arrivalNav button:hover {
    background: #000;
    color: #fff;
}


/* product card */
.productItem {
    background: #fff;
    margin: 0 0px;
    position: relative;
}

.productThumb {
    position: relative;
    overflow: hidden;
}

/* main stays same ALWAYS */
.imgMain {
    width: 100%;
    display: block;
}

/* hover image is only for reveal bg effect */
.imgHover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(-80%);
    /* not shown until JS, but we keep it ready */
}

.productItem:hover .imgHover {
    transform: translateX(0%);
    opacity: 1 !important;
}

/* overlay */
.productOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .3s;
}

.productItem:hover .productOverlay {
    opacity: 1;
}

.productOverlay a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: .3s;
}

.productOverlay a:hover {
    background: #000;
    color: #fff;
}

/* labels */
.label {
    position: absolute;
    top: 15px;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
}

.discount {
    left: 15px;
    background: #ff6a00;
    border-radius: 3px;
}

.sale {
    right: 15px;
    font-size: 12px;
    line-height: 26px;
    height: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
    background: #7b9496;
    border-radius: 3px;
    padding: 0 8px;
    margin: 0 0 5px;
}

.hot {
    left: 15px;
    background: #ff0000;
}

.new {
    right: 15px;
    background: #00a651;
}

/* details */
.productDetails {
    padding: 15px 0 0;
}

.productDetails h6 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
}


.productThumb img {
    transition: transform .3s ease;
}

.productItem:hover .imgMain {
    transform: translateX(-80%);
}

.productOverlay {
    background: rgba(255, 255, 255, .75);
    opacity: 0;
    transition: opacity .4s ease;
}

.productItem:hover .productOverlay {
    opacity: 1;
}

.productOverlay a {
    transform: translateY(8px);
    opacity: 0;
    transition: all .5s ease;
}

.productItem:hover .productOverlay a {
    transform: translateY(0);
    opacity: 1;
}

.productOverlay a:nth-child(1) {
    transition-delay: .05s;
}

.productOverlay a:nth-child(2) {
    transition-delay: .12s;
}

.productOverlay a:nth-child(3) {
    transition-delay: .18s;
}

.productOverlay a {
    background: #000;
    color: #fff;
}

.price ins {
    font-weight: 600;
    text-decoration: none;
}

.price del {
    margin-left: 8px;
    color: #999;
}

.rating {
    color: #f4b400;
    font-size: 13px;
    margin-bottom: 6px;
}

.rating span {
    color: #777;
    margin-left: 5px;
}

.colors {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 8px 0;
}

.color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.color.blue {
    background: #2f6ed5;
}

.color.yellow {
    background: #f1c40f;
}

.color.red {
    background: #e74c3c;
}

.color.active {
    outline: 2px solid #ddd;
    outline-offset: 2px;
}

.sizes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
}

.sizes span {
    border: 1px solid #dbdfe3;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 400;
    color: #7f8495;
    line-height: 22px;
    cursor: pointer;
    padding: 0 6px;
}

.sizes span.active {
    background: #000;
    color: #fff;
}

.addToCartBtn {
    transition: .3s;
}

.addToCartBtn.added {
    background: green !important;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.owl-item {
    margin-right: 32px !important;
}
@media (max-width: 420px) {
   .arrivalNav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}
.res {
    flex-direction: column;
}
.secTitle {
    font-size: 25px !important;
    text-align: center;
}
.secDesc {
    font-size: 15px !important;
    text-align: center;
}
}
.latestArrivalSection .owl-stage-outer {
    padding-bottom: 0 !important;
}

.latestArrivalSection .owl-stage {
    display: flex;
}

.latestArrivalSection .owl-item {
    height: auto !important;
}
@media (max-width: 575px) {
    .latestArrivalSection {
        padding-bottom: 0 !important;
    }

    .latestArrivalSection .owl-stage-outer {
        margin-bottom: 0 !important;
        height: auto !important;
    }

    .latestArrivalSection .owl-stage {
        display: flex;
        align-items: stretch;
    }
    .res {
        display: inline !important;
        text-align: center !important;
    }
    .arrivalNav-tabs {
        margin-bottom: 12px !important;
    }
    .Popularproductsection {
        padding-top: 23px !important;
    }
    .productItem {
        margin: 9px 0;
    }
}
@media (max-width: 768px) {
    .productItem {
        margin: 12px 0;
    }
    .arrivalNav button {
        font-size: 11px !important;
    }
}
@media (max-width: 991px) {
   .arrivalNav {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    margin-top: 16px;
}
}