/**
 * ANFA Free Shipping Badge - Frontend Styles
 * Styles for displaying badges on product grids
 */

/* Base badge styles */
.anfa-free-shipping-badge {
    position: absolute;
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 4px;
    z-index: 20;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect - only apply to non-center positions */
.anfa-free-shipping-badge:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hover effect for non-center positions */
.anfa-badge-position-top-left:hover,
.anfa-badge-position-top-right:hover,
.anfa-badge-position-bottom-left:hover,
.anfa-badge-position-bottom-right:hover {
    transform: scale(1.05);
}

/* Position: Top Left */
.anfa-badge-position-top-left {
    top: 10px;
    bottom: auto;
    left: 10px;
    right: auto;
    transform: none;
}

/* Position: Top Center */
.anfa-badge-position-top-center {
    top: 10px;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.anfa-badge-position-top-center:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Position: Top Right */
.anfa-badge-position-top-right {
    top: 10px;
    bottom: auto;
    left: auto;
    right: 10px;
    transform: none;
}

/* Position: Bottom Left */
.anfa-badge-position-bottom-left {
    top: auto;
    bottom: 10px;
    left: 10px;
    right: auto;
    transform: none;
}

/* Position: Bottom Center */
.anfa-badge-position-bottom-center {
    top: auto;
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.anfa-badge-position-bottom-center:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Position: Bottom Right */
.anfa-badge-position-bottom-right {
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    transform: none;
}

/* Ensure product item has relative positioning */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
}

/* Ensure Woodmart/Elementor product image wrappers are positioned */
.product-element-top,
.product-image-link {
    position: relative;
}

/* RTL Support */
[dir="rtl"] .anfa-badge-position-top-left {
    left: auto;
    right: 10px;
}

[dir="rtl"] .anfa-badge-position-top-right {
    right: auto;
    left: 10px;
}

[dir="rtl"] .anfa-badge-position-bottom-left {
    left: auto;
    right: 10px;
}

[dir="rtl"] .anfa-badge-position-bottom-right {
    right: auto;
    left: 10px;
}

/* RTL: Center positions don't need changes as they use translateX(-50%) */

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .anfa-free-shipping-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    /* Top Left - Mobile */
    .anfa-badge-position-top-left {
        top: 5px;
        bottom: auto;
        left: 5px;
        right: auto;
    }
    
    /* Top Center - Mobile */
    .anfa-badge-position-top-center {
        top: 5px;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .anfa-badge-position-top-center:hover {
        transform: translateX(-50%) scale(1.05);
    }
    
    /* Top Right - Mobile */
    .anfa-badge-position-top-right {
        top: 5px;
        bottom: auto;
        left: auto;
        right: 5px;
    }
    
    /* Bottom Left - Mobile */
    .anfa-badge-position-bottom-left {
        top: auto;
        bottom: 5px;
        left: 5px;
        right: auto;
    }
    
    /* Bottom Center - Mobile */
    .anfa-badge-position-bottom-center {
        top: auto;
        bottom: 5px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .anfa-badge-position-bottom-center:hover {
        transform: translateX(-50%) scale(1.05);
    }
    
    /* Bottom Right - Mobile */
    .anfa-badge-position-bottom-right {
        top: auto;
        bottom: 5px;
        left: auto;
        right: 5px;
    }
    
    /* RTL Mobile adjustments */
    [dir="rtl"] .anfa-badge-position-top-left {
        left: auto;
        right: 5px;
    }
    
    [dir="rtl"] .anfa-badge-position-top-right {
        right: auto;
        left: 5px;
    }
    
    [dir="rtl"] .anfa-badge-position-bottom-left {
        left: auto;
        right: 5px;
    }
    
    [dir="rtl"] .anfa-badge-position-bottom-right {
        right: auto;
        left: 5px;
    }
}

/* Ensure badge appears on WooCommerce product images */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
}

