.aToBtn{
    border:none;
    background:none;
}
@media(max-width:768px){
    .desktop-banner{
        display:none !important;
    }
    .shop__section {
        padding-top:0 !important;
    }
}


.loader{
    width:40px;
    height:40px;
    border:3px solid #eee;
    border-top:3px solid #111;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}
#custom h2{
    margin-top:2.5rem;
    font-size: 2rem !important;
}
#faq h2{
    font-size: 2rem !important;
}
#faq h3{
    font-size: 2rem !important;
}
.product__tab--content__step{
    font-size: 1.5rem !important;
}
.product__tab--content__step h3{
    font-size: 2rem !important;
}
/*.product__tab--content__step ul{
    !*margin-left: 30px;*!
    color: #3b3b3b;
}
.product__tab--content__step ul li{
    list-style-type: disc;
}*/
.product__tab--content__step h1 {
    font-size: 3rem !important;
    line-height: 3.2rem !important;
}
.product__tab--content__step a{
    font-weight: bold;
    color: #53611b;
}

.table-responsive{
    overflow-x:auto;
    margin:40px 0;
}

.table-responsive table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.table-responsive table tr{
    border-bottom:1px solid #f1f1f1;
    transition:.2s;
}

.table-responsive table tr:last-child{
    border-bottom:none;
}

.table-responsive table tr:hover{
    background:#fafafa;
}

.table-responsive table td{
    padding:18px 24px;
    font-size:15px;
    line-height:1.6;
}

.table-responsive table td:first-child{
    width:40%;
    font-weight:600;
    color:#222;
    background:#fcfcfc;
}

.table-responsive table td:last-child{
    color:#555;
}
@media(max-width:768px){

    .table-responsive table td{
        padding:14px;
        font-size:14px;
    }

    .table-responsive table td:first-child{
        width:45%;
    }

}

.product__tab--content__step ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin:35px 0;
    padding:0;
    list-style:none;
}

.product__tab--content__step ul li{
    display:flex;
    align-items:center;
    padding:18px 20px;
    background:#f8f8f8;
    border-radius:14px;
    font-size:15px;
    line-height:1.5;
    color:#222;
    font-weight:500;
    border:1px solid #f1f1f1;
    transition:.2s ease;
}

.product__tab--content__step ul li:hover{
    background:#fff;
    transform:translateY(-2px);
    box-shadow:0 4px 14px rgba(0,0,0,.06);
}

.product__tab--content__step ul li::before{
    content:"✓";
    width:24px;
    height:24px;
    min-width:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:12px;
}

@media(max-width:768px){

    .product__tab--content__step ul{
        grid-template-columns:1fr;
        gap:12px;
        margin:25px 0;
    }

    .product__tab--content__step ul li{
        padding:14px 16px;
        font-size:14px;
        border-radius:12px;
    }

    .product__tab--content__step ul li::before{
        width:20px;
        height:20px;
        min-width:20px;
        margin-right:10px;
        font-size:11px;
    }

}


.similar-products {
    margin-top: 30px;
}

.similar-products-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.similar-products-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

.similar-product-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 18px 22px;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid transparent;
}

.similar-product-item:hover {
    background: #ffffff;
    border-color: #dcdcdc;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.similar-product-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.similar-product-content {
    flex: 1;
}

.similar-product-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #5f6500;
    margin-bottom: 8px;
}

.similar-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

@media (max-width: 768px) {

    .similar-products-list {
        grid-template-columns: 1fr;
    }

    .similar-product-item {
        gap: 15px;
        padding: 15px;
    }

    .similar-product-image {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .similar-product-title {
        font-size: 14px;
    }

    .similar-product-price {
        font-size: 16px;
    }
}