.collection-wrapper .txt-wrap span {
    font-size: 16px;
    font-weight: 300;
    color: #58595B;
}

.collection-wrapper .txt-wrap h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8em;
    color: #000;
}

.collection-wrapper .see-all-wrap a {
    background-color: #21665F;
    font-size: 15px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 10px 0px 10px 0px;
    padding: 15px 40px;
    transition: all 0.4s ease;
}

.collection-wrapper .see-all-wrap a:hover {
    background-color: #fff;
    color: #21665F;
    border: 1px dashed #21665F;
}

.collection-wrapper .collection-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.collection-wrapper .collection-tabs button {
    font-size: 1rem;
    color: #58595B;
    padding: 15px 35px;
    border: 1px dashed #58595B61;
}

@media (max-width: 768px) {
    .collection-wrapper .collection-tabs button {
        font-size: 14px;
        padding: 15px 15px;
    }
}

.collection-wrapper .collection-tabs button:hover,
.collection-wrapper .collection-tabs button.active {
    color: #fff;
}

.collection-wrapper .collection-tabs button:hover {
    background-color: #58595B;
}

.collection-wrapper .collection-tabs button.active {
    background-color: #21665F;
    border: 1px solid;
}

.collection-wrapper .card {
    border: none;
    border-radius: 0;
    padding: 10px;
    position: relative;
}

.collection-wrapper .card-body {
    border: none;
}

.collection-wrapper .card img {
    border-radius: 0;
}

.collection-wrapper .card .see-product {
    right: 5%;
    width: 90%;
    position: absolute;
    bottom: 20px;
    border-radius: 10px 0 10px 0;
    padding: 10px;
    background-color: #21665F;
    color: #fff;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-wrapper .card .discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0;
    padding: 5px 15px;
    background-color: #21665F;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.collection-wrapper .card:hover .see-product {
    opacity: 1;
}

.collection-wrapper .card a {
    text-decoration: none;
    color: #7A7A7A;
}

.collection-wrapper .card-text {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.collection-wrapper .text-title {
    text-align: start;
    line-height: 26px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.collection-wrapper .price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.collection-wrapper .text-price {
    text-align: start;
    color: rgb(122, 122, 122);
    font-weight: 400;
    line-height: 23px;
    font-size: 14px;
}

.collection-wrapper .new-price {
    color: #21665F;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}

.collection-wrapper .product-colors {
    display: flex;
    gap: 5px;
    align-items: center;
}

.collection-wrapper .product-color {
    width: 23px;
    height: 23px;
    border-radius: 50%;
}

.collection-wrapper .product-color-brown-beige {
    border: 1px solid #ddd;
    background: linear-gradient(45deg, rgba(185, 116, 111, 1) 50%, rgba(99, 67, 40, 1) 50%);
}

.collection-wrapper .product-color-green {
    border: 1px solid #ddd;
    background: #008000;
}

.collection-wrapper .product-color-brown {
    border: 1px solid #ddd;
    background: #8B4513;
}

.collection-wrapper .product-color-black {
    border: 1px solid #ddd;
    background: #000;
}

@media (max-width: 1200px) {
    .collection-wrapper .card-text {
        gap: 10px;
    }

    .collection-wrapper .text-title {
        text-align: center;
        font-size: 14px;
    }

    .collection-wrapper .price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .collection-wrapper .text-price {
        text-align: center;
        font-size: 13px;
    }

    .collection-wrapper .new-price {
        text-align: center;
        font-size: 16px;
    }

    .collection-wrapper .col {
        padding: 0;
    }
}

.collection-wrapper .card {
    text-align: center;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border 0.5s ease;
}

.collection-wrapper .swiper-wrapper {
    padding-bottom: 40px;
}

.collection-wrapper .card:hover {
    border: 1px dashed #21665F;
}

.collection-wrapper .card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}