.item-product {
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 1px #00000014;
}

.item-product .top {
    position: relative;
}

.item-product .top .sale-off {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    background: red;
    color: #fff;
    font-weight: bold;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}

.item-product .top img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.3s all;
}

.item-product .top .info {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    background: rgb(0 0 0 / 30%);
    color: #e6e6e6;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: 0.3s all;
}

.item-product:hover .top .info {
    opacity: 1;
    transform: translateY(-30px);
}

.item-product .bottom {padding: 10px;}

.item-product .bottom .title {
    padding-bottom: 5px;
    font-weight: bold;
    height: 45px;
}

.item-product .bottom .code {
    padding: 0px 0px 5px 0px;
    text-align: center;
}

.item-product .bottom .price {
    font-size: 20px;
    color: #d30000;
}

.item-product .bottom .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-product .bottom .detail del {
    color: #b3b3b3;
}

.item-product .bottom .go i {
    color: #fff;
}

.item-product:hover .top img {
    transform: scale(1.2) rotate(5deg);
}

.item-product .top .img {
    overflow: hidden;
    display: block;
}

.see-more-products {
    text-align: center;
}

.see-more-products button {
    padding: 10px 30px;
    border-radius: 24px;
    border: 1px solid #adadad;
    transition: 0.3s all;
    background: #cdcdcd;
}

.see-more-products button:hover {color: #fff;background: #0077c8;}

.menu-desktop > ul {
    display: flex;
}

.menu-desktop > ul > li {
    margin-left: 30px;
}

.menu-desktop > ul > li:first-child {
    margin-left: 0px;
}

.menu-desktop > ul > li {
    position: static;
    overflow: hidden;
}

.menu-desktop > ul > li > .submenu {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s all;
    padding: 40px 10px 0px 10px;
}

.menu-desktop > ul > li > .submenu > ul {
    position: relative;
    max-width: 250px;
}

.menu-desktop > ul > li > .submenu > ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s all;
    height: 100%;
}

.menu-desktop > ul > li > .submenu > ul li:hover > ul {
    opacity: 1;
    pointer-events: all;
}

.menu-desktop > ul > li:hover .submenu {
    opacity: 1;
    pointer-events: all;
}

.menu-desktop > ul > li:hover .submenu h3 {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    font-size: 18px;
}

.menu-desktop > ul > li > .submenu ul li a {
    display: block;
    padding: 10px 20px 10px 0px;
    font-size: 16px;
    color: inherit;
}

.menu-desktop ul li a {
    font-family: 'SamsungOne';
}

.menu-desktop > ul > li > a {
    text-transform: uppercase;
    font-weight: bold;
}

.menu-desktop ul li .submenu h3 {
    font-weight: bold;
}

.menu-desktop > ul > li > .submenu ul li:hover > a {font-weight: bold;position: relative;}

.menu-desktop > ul > li > .submenu ul li:hover > a:not(:only-child):after {
    content: '\f105';
    position: absolute;
    right: 6px;
    font-family: 'FontAwesome';
}

.item-product .bottom .detail .go {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: #cdcdcd;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}

.block-grid-item .block-image img {
    width: 100%;
    max-height: 300px;
}

.title-with-see-all {
    font-family: "SamsungSharp";
    margin-top: 80px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-with-see-all h2 {
    line-height: 56px;
    font-size: 40px;
    font-weight: bold;
}

.title-with-see-all a {
    color: #337ab7;
}

.bannercart-ad .block-container {
    margin-bottom: 10px;
}

.product-content-wrapper .more-info {
    font-size: 12px;
    color: #868686; 
}

.contact-icon {position: fixed;right: 28px;bottom: 400px;}

.contact-icon .icon {
    margin-bottom: 10px;
    position: relative;
}

.contact-icon .icon img {border-radius: 50%;}

.contact-icon .icon .phone-number {
    position: absolute;
    right: 20px;
    height: 35px;
    background: rgb(21 12 198 / 30%);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    text-align: right;
    padding: 0px 30px 0px 10px;
    z-index: -1;
    line-height: 35px;
    font-size: 20px;
    width: 0px;
    overflow: hidden;
    padding: 0px;
    transition: 0.3s all;
}

.contact-icon .icon .phone-number.open {
    padding: 0px 30px 0px 10px;
    width: auto;
}

.payment-methods {
    display: flex;
}

.payment-methods label {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid;
    width: 170px;
    height: 150px;
    cursor: pointer;
}

.payment-methods label.active {
    border: 1px solid red;
}

.payment-methods label {
    margin-left: 10px;
}

.payment-methods label:first-child {
    margin-left: 0px;
}

.payment-methods label p {
    font-size: 14px;
}

.more-info-transfer {
    margin-top: 10px;
    font-size: 13px;
}

.more-info-transfer a {
    color: #1877f2;
    text-decoration: underline;
}

.onepay-result h1 {
    font-size: 30px;
}

.onepay-result table {
    width: 100%;
}

.onepay-result table th, .onepay-result table td {
    padding: 10px;
    border: 1px solid #9A8F7D;
}
.onepay-result .go-home {
    text-decoration: underline !important;
    margin-top: 10px;
    display: inline-block;
}

@media (max-width: 767px) {
    .block-grid-item .block-image img {
        max-height: 200px;
    }

    .title-with-see-all h2 {
        font-size: 24px;
    }

    .title-with-see-all {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .product-content-wrapper .product-basket, .product-content-wrapper .more-info {
        text-align: center;
    }
}