
.card {
    border: none;
    border-radius: 0;
    padding: 16px;
    align-items: center;
}

.card-text {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.card img {
    border-radius: 0;
}

.card a {
    text-decoration: none;
    color: #7A7A7A;
}

.card .go-to-product {
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 0;
    border-top: 1px solid #826F6659;
    border-bottom: 1px solid #826F6659;
    width: 75%;
    text-align: center;
}

.text-title {
    text-align: start;
    line-height: 26px;
    color: rgb(0, 31, 51);
    font-size: 16px;
    font-weight: 600;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-price {
    text-align: start;
    color: rgb(122, 122, 122);
    font-weight: 400;
    line-height: 23px;
    font-size: 13px;
}

.new-price {
    color: rgb(0, 31, 51);
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}

@media (max-width: 1200px) {
    .card-text {
        gap: 10px;
    }


    .text-title {
        text-align: center;
        font-size: 14px;
    }

    .price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .text-price {
        text-align: center;
        font-size: 13px;
    }

    .new-price {
        text-align: center;
        font-size: 16px;
    }
}

.card:hover {
    border: 1px solid #926C15;
}

.img-wrapper {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 87%;
}

.card img {
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.side-menu {
    border-radius: 0;
    background-color: #fff;
}

.side-menu ul li {
    text-align: center;
    list-style: none;
    position: relative;
    padding: 10px 0;
    border-top: 1px solid #00243B;
    border-bottom: 1px solid #00243B;
    width: 20%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.side-menu ul li:hover {
    background-color: #F0E5DB78;
}

.side-menu ul {
    font-weight: 600;
    line-height: 27px;
    display: flex;
    /*gap: 50px;*/
    justify-content: space-around;
    align-items: center;
    padding: 0;
}

.side-menu li {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-top: 8px;
}

.side-menu li a {
    text-decoration: none;
    color: #00243B;
    font-size: 17px;
    transition: color 0.2s ease;
}

.pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    background-color: rgb(0, 31, 51);
    color: white;
    border: none;
    padding: 2px 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.pagination-btn svg {
    width: 12px;
    stroke: #fff;
    fill: #fff;
}

.pagination-numbers button {
    margin: 0 4px;
    padding: 8px 12px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    line-height: 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

.pagination-btn:hover,
.pagination-numbers button:hover {
    background-color: rgb(1, 57, 92);
    color: #fff;
}

.pagination-numbers button.active {
    background-color: rgb(0, 31, 51);
    color: white;
}
