/* ------------------------------------------
   SHOP CARD FOOTER
------------------------------------------ */

.kr-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

/*@media (max-width: 767px) {*/
/*    .kr-card-footer {*/
/*        flex-direction: row;*/
/*        align-items: center;*/
/*        justify-content: space-between;*/
/*    }*/
/*}*/

@media (max-width: 767px) {
    .kr-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ------------------------------------------
   PRICE
------------------------------------------ */

.kr-price {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-size: 15px;
    white-space: nowrap;
}

/* ------------------------------------------
   SWATCHES
------------------------------------------ */

.kr-swatches {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 16px;
}

/* SWATCH */

.kr-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    /*border: 1px solid rgba(0,0,0,0.15);*/
    border: 1px solid #ddd;
    background-clip: padding-box;    
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.kr-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

/* ------------------------------------------
   TABLET
------------------------------------------ */

@media (max-width: 1024px) {
    .kr-swatch {
        width: 22px;
        height: 22px;
    }

    .kr-swatches {
        gap: 12px;
    }
    
    .kr-price {
    font-size: 18px;
    }
}

/* ------------------------------------------
   MOBILE
------------------------------------------ */

@media (max-width: 767px) {
    .kr-swatch {
        width: 20px;
        height: 20px;
        position: relative;
    }

    .kr-swatches {
        justify-content: flex-start;
        gap: 12px;
    }

    /*.kr-swatch::after {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    top: -6px;*/
    /*    bottom: -6px;*/
    /*    left: -6px;*/
    /*    right: -6px;*/
    /*}*/
    .kr-swatch::after {
        content: '';
        position: absolute;
        inset: -8px;
    }   
    
    .kr-price {
    font-size: 16px;
    }
}

/* ------------------------------------------
   +MORE
------------------------------------------ */

.kr-more {
    font-size: 12px;
    color: #666;
}


/* ------------------------------------------
   TITLE → PRICE ALIGNMENT FIX
------------------------------------------ */

li.product .woocommerce-loop-product__title {
  margin-bottom: 4px;
}

.kr-card-footer {
  margin-top: 8px;
}

.kr-price {
  margin: 0;
  line-height: 1.2;
}