nav.oxy-site-navigation>ul>li>ul li a:hover {
    color: #4831b0 !important;
}


.custom-product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.product-category-item {
    width: 400px;
    /* Fixed width */
    height: 360px;
    /* Fixed height */
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 calc(25% - 15px);
    max-width: 400px;
}

@media (max-width: 992px) {
    .product-category-item {
        flex: 1 1 calc(33.333% - 15px);
    }
}

@media (max-width: 768px) {
    .product-category-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .product-category-item {
        flex: 1 1 calc(100% - 15px);
    }
}

/* ✅ Ensuring images are fully contained, equal height, and properly aligned */
.product-category-item .image-wrapper {
    width: 100%;
    /* Stretch to full width */
    height: 120px;
    /* Fixed height for all images */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Prevents any overflow issues */
}

.product-category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the space without distortion */
    border-radius: 8px;
}

/* ✅ Ensuring Text Content is Aligned */
.product-category-item .category-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    text-align: center;
}

.product-category-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.category-name {
    font-size: 16px;
    font-weight: bold;
    color: #222;
}

.product-count {
    font-size: 14px;
    color: #777;
}

#stripe-payment-data fieldset:not([class]):not([id]) {
    display: none;
}

.wc-pao-addons-container .wc-pao-addon-wrap label span,
.wc-pao-addons-container .wc-pao-addon-wrap label {
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
}

.single_variation_wrap span.price {
    margin: 4px 0;
}


#product-addons-total div.product-addon-totals {
    margin: 20px 0;
}