#klime {
    position: relative;
}

.see-all-products {
    background: #fff;
    color: #000;
    padding: 30px 15px;
}

.see-all-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;    
    margin: 0 auto;
}

.see-all-product-card {
    background: #f6f6f6;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    text-decoration: none;
}
.see-all-product-card-title {
    margin-bottom: 5px;
    line-height: 1;
}
.product-serial-number {
    font-size: 16px;
    color:#7A7A7A;
}
.product-name-title {
    font-size: 38px;
    color:#00D4E9;
    font-weight: 500;
}
.product-name-category {
    font-size: 21px;
    color:#000;
    font-weight: 500;
    margin-bottom: 25px;
}
.see-all-product-card-btn {
    background-color: transparent;
    color: #00D4E9;
    padding: 5px 20px;
    border: none;
    border-radius: 36px;
    border: 1px solid #afafaf;
    font-size: 18px;    
    width: 217px;    
    transition: background-color 0.2s ease;
    margin-bottom: 20px;
    font-weight: bold;
}

.see-all-product-item-code {
    margin-bottom: 0;
    color: #7A7A7A;
    font-size: 12px;
}

.see-all-product-card-badge-image {
    position: absolute;
    top: 30px;
    left: 0px;
    z-index: 3;
    width: 86px;
    height: auto;
}

.see-all-product-card-image,
.see-all-product-card-image-hover {
  position: absolute;
  top: 50px;
  left: 50%;
  max-width: 100%;
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
  pointer-events: none;
  transform: translateX(-50%) scale(0.9);
}

.see-all-product-card-image {
  opacity: 1;
  z-index: 1;
}

.see-all-product-card-image-hover {
  opacity: 1;
  z-index: 2;
}

.see-all-product-card-button-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    transform: translateY(-10px);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    z-index: 10;
}

.see-all-product-card-content {
    margin-top: 220px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.see-all-product-card-features {
    list-style: none;
    margin-top: 10px;
    font-size: 13px;
    padding-left: 0;
    color:#000;
}

.see-all-product-card-features li {
    margin-bottom: 3px;
}
.slick-dots {
   left: 50%;
   transform: translateX(-50%);
}

/* Slick dots stilovi specifično za see-all-products komponentu */
.see-all-products .slick-dots {
    bottom: -50px;
    text-align: center;
}

.see-all-products .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.see-all-products .slick-dots li button {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: none;
    background-color: #D9D9D9;
    font-size: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.see-all-products .slick-dots li.slick-active button {
    background-color: #00D4E9;
}

.see-all-products .slick-dots li button:before {
    display: none;
}
.slick-dotted.slick-slider {
    margin-bottom: 50px;
}
@media (min-width: 576px) {
    .see-all-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .see-all-product-card-image-hover {
        opacity: 0;
    }
    /* Centriranje za 1 proizvod */
    .see-all-products-grid.one {
        grid-template-columns: 1fr !important;
        justify-content: center;
        max-width: 400px;
    }
    /* Centriranje za 2 proizvoda */
    .see-all-products-grid.two {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center;
        max-width: 800px;
    }
}

@media (min-width: 992px) {
    .see-all-products {
        padding: 60px 0;
    }

    .see-all-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .see-all-product-card {
        padding: 20px 40px;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .see-all-product-card-badge-image {
        top: 0px;
        left: 0px;
        width: auto;
    }

    /* .see-all-product-card-image {
        margin-top: 40px;
    }

    .see-all-product-card-image-hover {
        top: 60px;
        padding: 0 20px;
    } */

    .see-all-product-card-button-wrapper {
        height: 60px;
    }    

    .see-all-product-card-features {
        font-size: 16px;
    }
    .see-all-product-card-btn {
        margin-bottom: 0;
        font-size: 25px;
    }
    /* Centriranje za 1 proizvod */
    .see-all-products-grid.one {
        grid-template-columns: 1fr !important;
        justify-content: center;
        max-width: 440px;
    }
    /* Centriranje za 2 proizvoda */
    .see-all-products-grid.two {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center;
        max-width: 880px;
    }
    @media (pointer: fine) and (hover: hover) {
        .see-all-product-card:hover .see-all-product-card-image {
            opacity: 0;
            transform: translateX(-50%) scale(1);
        }
        .see-all-product-card:hover .see-all-product-card-image-hover {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }
        .see-all-product-card-button-wrapper {
                transform: translateY(100%);
            }
            .see-all-product-card {
                box-shadow: none;
            }
        .see-all-product-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .see-all-product-card:hover .see-all-product-card-button-wrapper {
            transform: translateY(-20px);
        }
    }
}