
p {
    margin: 10px 0 !important;
}
.top-logo img {
    height: 70px
}
.p48 {
    padding: 48px;
}
.w-y5 {
    width: 5% !important;
}
.fnp_basket_delete {
    color: var(--gt-theme);
}


h1 {
    font-size: 34px !important;
    font-weight: 700 !important;
}
h2 {
    font-size: 30px !important;
    font-weight: 600 !important;

}
h3 {
    font-size: 26px !important;
    font-weight: 600 !important;
}

.header-section-5 {
    border-bottom: 1px solid #efefef !important;
}

.header-section-2 .header-top-section-2 {
    min-height: 75px;
}

.w33-3 {
    width: 33.333%;
}
.header-section-2.header-section-5 .header-5 .header-right-icon .cart-icon, .header-section-2.header-section-5 .header-5 .header-right-icon .search-toggler {
    width: auto;
    padding: 0 18px;
}

.header-font {
    font-size: 15px;
}

.header-main .main-menu ul li .submenu {
    min-width: 340px;
}

.fnp_input {
    width: 100%;
    outline: none;
    background-color: var(--gt-white);
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
    color: var(--gt-text);
    font-size: 16px;
    margin-bottom: 14px;
    border: 1px solid #cccccc;
}
.fnpmr5{
    margin-right: 5px;
}

h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 134%;
}

.header-1 .header-right .header-right-icon {
    gap: 14px !important;
}

.fnp_wrapper .container-fluid {
    padding: 0 155px;
}

/* ===== Breadcrumb (ul > li) ===== */
.breadcrumb {
    --bc-bg: #fff;
    --bc-text: #374151;     /* slate-700 */
    --bc-muted: #6b7280;    /* slate-500 */
    --bc-accent: #0ea5e9;   /* sky-500 */
    --bc-sep: #d1d5db;      /* slate-300 */
    --bc-radius: 0px;
    --bc-padding-y: 10px;
    --bc-padding-x: 14px;

    margin-top: 15px;
    background: var(--bc-bg);
    border: 1px solid #eef2f7;
    border-radius: var(--bc-radius);
    padding: var(--bc-padding-y) var(--bc-padding-x);
    overflow: hidden; /* ellipsis için gerekli */
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 28px;
}

.breadcrumb li + li::before {
    left: -4px !important;
}
.breadcrumb li {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--bc-muted);
    font-size: 14px;
    line-height: 1.2;
    max-width: 220px;          /* çok uzun başlıkları kırp */
}

.breadcrumb li a,
.breadcrumb li span {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* İlk eleman (home) hafif daha belirgin */
.breadcrumb li:first-child {
    color: var(--bc-text);
    font-weight: 600;
}

/* Aktif/son kırıntı */
.breadcrumb li[aria-current="page"],
.breadcrumb li.active {
    color: var(--bc-text);
    font-weight: 600;
    pointer-events: none;
}

/* Hover rengi */
.breadcrumb li a:hover {
    color: #000000;
}

/* Ayraç (>) ikonunu CSS ile ekle */
.breadcrumb li + li {
    padding-left: 18px; /* ayraç boşluğu */
}
.breadcrumb li + li::before {
    content: "";
    position: absolute;
    left: 4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--bc-sep);
    border-bottom: 2px solid var(--bc-sep);
    transform: rotate(-45deg);
    opacity: 0.9;
}

/* Küçük ekranlarda ortayı gizle: sadece ilk ve son kalsın */
@media (max-width: 576px) {
    .breadcrumb ul {
        gap: 8px;
    }
    .breadcrumb li {
        max-width: 140px;
        font-size: 13px;
    }
    .breadcrumb li:not(:first-child):not(:last-child) {
        display: none;
    }
    /* İlk ve son arasına kısa ayırıcı koy */
    .breadcrumb li:first-child + li::before,
    .breadcrumb li:last-child::before {
        left: 2px;
    }
}

/* Daha dar ama orta boy ekranlar: ilk, son ve sondan bir önceki kalsın */
@media (min-width: 577px) and (max-width: 768px) {
    .breadcrumb li {
        max-width: 180px;
    }
    .breadcrumb li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }
}

/* Scroll’lu alternatif (istersen mobilde ortayı gizlemek yerine yatay scroll kullan) */
.breadcrumb.is-scrollable ul {
    overflow-x: auto;
    scrollbar-width: thin;
}
.breadcrumb.is-scrollable ul::-webkit-scrollbar {
    height: 6px;
}
.breadcrumb.is-scrollable ul::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
}

.fnpshadow {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
    padding: 32px;
    margin-bottom: 24px;
}

.mbcart {
    margin-bottom: 10px;
    line-height: 40px;
}

.section-padding {
    padding: 60px 0 !important;
}
.section-padding-bottom {
    padding: 0 0 60px 0;
}
.section-padding-top {
    padding: 60px 0 0 0;
}

/* Koyu tema desteği (opsiyonel) */
@media (prefers-color-scheme: dark) {
    .breadcrumb {
        --bc-bg: #0b1220;
        --bc-text: #e5e7eb;
        --bc-muted: #9ca3af;
        --bc-sep: #475569;
        border-color: #1f2937;
    }
}


.basket_table {
    width: 95% !important;
}

.basket_table2 {
    width: 100% !important;
}

.basket_table thead tr, .basket_table2 thead tr {
    color: #ffffff !important;
    border-radius: 0px;
    background-color: #1d1d1d;
}

.basket_table thead tr th, .basket_table2 thead tr th {
    padding-bottom: 16px !important;
    padding-top: 16px !important;
}

.varyant_class {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.box-cart-right {
    padding: 20px;
    background: #efefef;
}

.form-control{
    border-radius: 0px;
}

.fnpbtn {
    border-radius: 0px;
    line-height: 12px;
    font-size: 13px;
    padding: 12px;
    height: 38px;
}

.mb-10 {
    margin-bottom: 10px;
}

.gt-shop-details-wrapper .gt-shop-details-content h2 {
    margin-top:0px;
}

.header-1 .header-right .header-right-icon .cart-icon {
    font-size: 18px;
}
.cursor_pointer {
    cursor: pointer;
}

.emailgrupl {
    display: block;
    float: left;
    width: 5%;
}
.emailgrupr {
    font-size: 12px;
    line-height: 15px !important;
    display: block;
    float: left;
    width: 95%;
    padding-left: 2%;
    margin-top: 15px;
}

.mt16 {
    margin-top: 16px;
}

.gt-shop-details-wrapper .gt-shop-details-content .price-list li:first-child {
    font-size: 24px;
}

.gt-hero-5 .container-fluid {
    padding: 100px 155px;
}

.header-section-2 .header-top-section-2 {
    border-bottom: 1px solid #efefef;
    padding: 12px 0;
}

.header-main .main-menu ul li a {
    padding: 13px 0;
}

.header-main {
    padding: 5px 0;
}
.header-main .main-menu ul li {
    margin-inline-end: 15px !important;
}
.header-main .main-menu ul li a {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.header-section-2.header-section-5 .header-5 .header-left {
    gap: 50px !important;
}

.gt-breadcrumb-wrapper .gt-page-heading {
    padding: 60px 0 !important;
}

.gt-breadcrumb-wrapper .gt-page-heading h1,
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a,
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i,
.header-section-2.header-section-5 .top-left li,
.header-section-2.header-section-5 .top-left li a
{
    color: #000000;
}

.container-fluid {
    padding: 0 155px;
}

.headertop a {
    margin-right: 15px;
    color: #aa0e14;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 700px; /* isteğe göre ayarlanabilir */
    object-fit: contain;
    border-radius: 10px;
}

/* Thumbnail alanı */
.thumb-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px; /* artık daha aşağıda */
    position: relative;
    z-index: 10;
}

.thumb-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.thumb-gallery img:hover {
    transform: scale(1.05);
    border-color: #ccc;
}

.thumb-gallery img.active-thumb {
    border-color: #007bff;
    transform: scale(1.08);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
}
.gt-shop-details-wrapper .gt-shop-tab-area .nav .nav-item .nav-link {
    font-size: 26px;
}

.gt-shop-card-items .gt-shop-image .gt-shop-icon {

    right: 43% !important;
}

.social_media_footer a{

    color: #ffffff;
    font-size: 36px;
    margin: 5px 10px;
}

.gt-brand-wrapper-5 .gt-brand-items-5 .brand-image {
    padding: 25px 10px;
}

.gt-contact-item i {
    color: #ffffff;
}
.gt-contact-bg {
    background-color: #aa0e14;
}

.gt-brand-items-5 .brand-image:last-child {
    border-right: 0px;
}

.home_title {
    font-size: 32px;
    font-weight: 700;
}

.color-red {
    color: #aa0e14;
}
@media (max-width: 576px) {
    .headertop a {
        display: block;
        margin: 5px 0;
        font-size: 14px;
    }
}
#new_price {
    font-size: 24px;
    color: #aa0e14;
    font-weight: 700;
}
.gt-shop-card-items .gt-shop-content .gt-price-list {
    margin-top:0px;
}

.fh5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 14px;
}

.brand-logo-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive spacing adjustments */
@media (max-width: 980px) {
    .mdn {
        display: none !important;
    }
}
@media (max-width: 576px) {
    .brand-logo-card {
        height: 100px;
    }
    .brand-logo {
        max-height: 60px;
    }
}

.categories-section {
    background: #ebebeb;
    padding: 60px 0;


}

.home_title h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #aa0e14;
    position: relative;
    display: inline-block;
}

.home_title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #aa0e14;
    margin: 10px auto 0;
    border-radius: 2px;
}

.category-card {
    display: block;
    background: #fff;
    /*border-radius: 16px;*/
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 180px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 🔥 Artık resim tamamen görünecek */
    transition: all 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.category-info {
    padding: 15px 10px;
}

.category-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.category-info .count {
    color: #aa0e14;
    font-weight: 500;
}

.lazyload {
    opacity: 0;
    transition: opacity 0.4s;
}
.lazyloaded {
    opacity: 1;
}


.autocomplete-results {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
}
.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 6px;
    cursor: pointer;
}
.autocomplete-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}
.autocomplete-item:hover {
    background: #f5f5f5;
}
#imageModal.modal {
    display: block;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.5s ease;
}
#imageModal .modal-content {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    border-radius: 0;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#imageModal .modal-content .modal-body img {
    width: 100% !important;
    height: auto !important;
}
#imageModal .close {
    position: absolute;
    z-index: 999999;
    top: 0;
    right: 5px;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    background: transparent;
    border: none;
    transition: .3s ease-in-out;
    max-width: max-content;
    font-weight: 600;
}
#imageModal .close:hover {
    color: #000000;
}
#imageModal .modal-body {
    padding: 20px;
}
#imageModal.hidden{
    overflow: visible !important;
    opacity: 0 !important;
    z-index: -9999 !important;
}
.whatsapp_btn{
    position: fixed;
    left: 27px;
    bottom: 50px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-color: #25d366;
    color: white;
    border: none;
    animation: breathe 2s ease-in-out infinite;
    font-size: 24px;
}
@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
/* ====== RANDOM CLASS NAMES ====== */
.xk9-slider-main {
    --h: 70vh;
    --r: 1.25rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
}

.xk9-slide-item {
    height: 70vh;
    position: relative;
}

.xk9-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

/*.xk9-slide-item::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.7) 100%);*/
/*    z-index: 1;*/
/*}*/

.xk9-caption-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(16px, 5vw, 48px);
    color: #fff;
    text-align: center;
}

.xk9-caption-box {
    animation: xk9fadeup .9s ease-out both;
    max-width: 900px;
    text-shadow: 0 5px 18px rgba(0,0,0,.4);
}

@keyframes xk9fadeup {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.xk9-caption-title {
    font-weight: 800;
    font-size: clamp(28px, 4.5vw, 56px);
    letter-spacing: .4px;
    font-size: 24px;
    line-height: 24px;
}

.xk9-caption-text {
    font-size: clamp(14px, 1.8vw, 22px);
    opacity: .9;
}

.xk9-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.6);
    margin: 0 5px;
}

.xk9-indicators .active {
    background-color: #fff;
}

.xk9-prev, .xk9-next {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.xk9-slide-item img{
    border-radius: 0;
    max-height:none!important;
}
.xk9-arrow-btn {
    background-color: #aa0e14;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.4);
}
.xk9-arrow-btn i {
    font-size: 1.5rem;
    line-height: 1;
}
.xk9-arrow-btn:hover {
    background-color: #e60000;
    transform: scale(1.05);
}
.xk9-prev, .xk9-next {
    width: auto;
    height: auto;
}
.xk9-prev { left: 1%; }
.xk9-next { right: 1%; }
.gt-back-to-top{
    bottom: 55px;
}
.gt-shop-card-items.bg-style{
    height: 100%;
}
.gt-shop-inner-wrapper .gt-shop-sidebar-area .gt-shop-items .gt-catagory-list li{
    padding: 0;
}
.gt-shop-inner-wrapper .gt-shop-sidebar-area .gt-shop-items .gt-catagory-list li a{
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    width: 100%;
}
.gt-shop-inner-wrapper .gt-shop-sidebar-area .gt-shop-items .gt-catagory-list li a.active{
    background-color: var(--gt-theme);
    color: var(--gt-white);
}
.gt-shop-inner-wrapper .gt-shop-sidebar-area .gt-shop-items .gt-catagory-list li a span {
    display: block;
    transition: all 0.4s ease-in-out;
    color: var(--gt-header);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--gt-white);
}
.breadcrumb li + li::before{
    border-color: #212121;
}
.breadcrumb li{
    color: #212121;
}

.header_top {
    padding: 5px 0;
    border-bottom: 1px solid #efefef;
}
.gt-shop-content del {
    color: #cc0000;
    font-size: 18px;
}

.gt-shop-card-items .gt-shop-content .gt-price-list li {
    font-size: 24px;
}


.gt-shop-card-items  {
    border: 1px solid #efefef;
}

.gt-shop-card-items .gt-shop-content .gt-price-list li {
    color: #1a1a1a;
}
.gt-shop-card-items .gt-shop-image .discount {
    position: absolute;
    top: 10px;
    left: -25px;
    background: red;
    color: white;
    padding: 5px 40px;
    font-weight: bold;
    transform: rotate(-45deg);
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.global-discount.green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: #37C978;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
    margin-top: 25px;
}

.global-discount.green .global-discount__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2EAD66;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.global-discount__text {
    white-space: nowrap;
}

@media screen and (max-width: 796px){
    .whatsapp_btn{
        bottom: 20px;
    }
    #gt-back-top{
        display: none;
    }
    .global-discount.green{
        padding: 10px 17px;
    }
    .global-discount.green .global-discount__icon{
        display: none;
    }
    .global-discount__text{
        white-space: wrap;
        line-height: 1.5;
    }
    .xk9-arrow-btn {
        width: 35px;
        height: 35px;
    }
    .xk9-arrow-btn i{
        font-size: 13px;
    }
    .gt-shop-card-items .gt-shop-content {
        padding: 20px 18px;
        }
}
#productGallery button{
    background-color: #aa0e14;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
}
#productGallery button:hover{
    background-color: #e60000;
    transform: scale(1.05);
}
#productGallery button span{
    background-color: transparent;
    width: 22px;
    height: 22px;
}
.info_items__{
    font-size: 12px;
    max-width: max-content;
    padding: 5px 14px;
}
@media screen and (max-width: 1699px) {
    .global-discount__text{
        white-space: wrap;
    }
}


.product-slider {
    position: relative;
    overflow: hidden;
}

.product-slider .slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
}

.product-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Ok butonları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #e60000;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 3;
}

.product-slider:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow--prev { left: 8px; }
.slider-arrow--next { right: 8px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    position: relative;z-index: 99;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: #e60000;
}


.global-discount.green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #37C978;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    margin-top: 25px;
}
#gt-back-top{
    display: none;
}


.floating_btn, .tel_btn {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.tel_btn {
    bottom: 120px;
}
.contact_icon, .tel_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite
    cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite
    cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms
    ease-in-out;
}
.tel_icon {
    background: #cc0000;
    animation: pulse2 1.5s infinite;
    box-shadow: 0 0 0 0 #cc0000;
    -webkit-animation: pulsing2 1.25s infinite
    cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing2 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing2 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing2 1.25s infinite
    cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms
    ease-in-out;
}
@keyframes pulsing {
    100% {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}
@keyframes pulsing2 {
    100% {
        box-shadow: 0 0 0 30px rgba(204, 0, 0, 0);
    }
}
@media screen and (max-width: 768px) {
    .floating_btn, .tel_btn{
        width: 60px!important;
        height: 60px!important;
    }
    .floating_btn{
        bottom: 30px!important;
    }
    .tel_btn{
        bottom: 105px!important;
    }
}

.product__btn{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #37C978;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}
.prodcut_tel{
    background: #1D1D1D;
}