.card-v9-style {
    flex: 0 1 calc(25% - 20px);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 25px;
    background: #ffffff;
    //border: 1px solid rgba(74, 141, 57, 0.1);
  border:1px solid rgb(74 141 57 / 17%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}
.card-v9-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 141, 57, 0.12);
    border-color: rgba(74, 141, 57, 0.3);
}
.image_block img {
    transition: transform 0.5s ease;
    max-width: 100%;
    height: auto;
}
.card-v9-style:hover .image_block img {
    transform: scale(1.05);
}
.product-title-link-v9 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    color: #312209;
    font-size: 19px;
    font-weight: 700;
    height: 48px;
    margin: 15px 0 10px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}
.description-v9 {
    //margin-bottom: 20px;
    text-align: left;
    min-height: 105px; 
}

.description-content-v9 {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
        letter-spacing: 0.05em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}
.description-content-v9.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    color: #000;
}
.read-more-btn {
    display: inline-block;
    margin-top: 8px;
    color: var(--header-green);
    font-weight: 600;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    margin-left: 80px;
}
.read-more-btn:hover {
    color: #1a1a1a;
}
.jshop_price-v9 {
    font-size: 26px;
    font-weight: 800;
    color: #76b001;
    //font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
    margin-top: auto;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.jshop_price-v9 span::after {
    content: 'грн';
    font-size: 14px;
    margin-left: 5px;
    font-weight: 400;
  display:none;
}
.btn-buy-v9 {
    display: block;
    text-decoration: none;
    color: #000000 !important;
    font-weight: 600;
    padding: 14px 5px;
    border-radius: 9px;
    text-transform: uppercase;
    font-size: 13px !important;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.15em;
    /* background: #5d5d5dd4 !important; */
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 141, 57, 0.2);
    font-family: 'Tinos', serif !important;
    background-color: #efefef;
    /* backdrop-filter: blur(10px); */
}
.btn-buy-v9:hover {
    /* background: #16302b; */
    box-shadow: 0 6px 15px rgba(22, 48, 43, 0.3);
    letter-spacing: 0.2em;
}
.btn-buy-v9 {
    position: relative;
    overflow: hidden;
}
.btn-buy-v9::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    transition: all 0.5s;
}
.btn-buy-v9:hover::after {
    left: 120%; 
    transition: all 0.6s ease;
}
@media (max-width: 1024px) {
    .card-v9-style { flex: 0 1 calc(33.33% - 20px); }
}
@media (max-width: 768px) {
    .card-v9-style {
        flex: 0 1 calc(50% - 10px);
        padding: 5px;
    }
    .product-title-link-v9 { font-size: 16px; height: 40px; }
    .jshop_price-v9 { font-size: 20px; }
}
@media (max-width: 480px) {
    .card-v9-style { flex: 0 1 100%; }
  .read-more-btn {
    margin-left: 35px;
}
  }
@media (max-width: 360px) {
    .read-more-btn {
        margin-left: 25px;
    }
}