/* ===========================================
   Webify Custom Label - Frontend Styles
   =========================================== */

/* --- Image Wrapper --- */
.wcl-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Single product: gallery needs relative positioning for overlays */
.woocommerce-product-gallery {
    position: relative !important;
}

.wcl-single-overlays {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* --- Sale Banner (Diagonal Ribbon) --- */
.wcl-sale-banner {
    position: absolute;
    z-index: 10;
    width: 180px;
    padding: 6px 0;
    text-align: center;
    background: var(--wcl-sale-color, #e74c3c);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.wcl-sale-banner span {
    display: block;
}

/* Position: Top Right */
.wcl-banner-top-right {
    top: 22px;
    left: -45px;
    transform: rotate(-45deg);
}

/* Position: Top Left */
.wcl-banner-top-left {
    top: 22px;
    right: -45px;
    transform: rotate(45deg);
}

/* Position: Bottom Right */
.wcl-banner-bottom-right {
    bottom: 22px;
    left: -45px;
    transform: rotate(45deg);
}

/* Position: Bottom Left */
.wcl-banner-bottom-left {
    bottom: 22px;
    right: -45px;
    transform: rotate(-45deg);
}

/* Straight Banner Style */
.wcl-banner-straight.wcl-banner-top-right,
.wcl-banner-straight.wcl-banner-top-left {
    top: 12px;
    left: auto;
    right: auto;
    transform: none;
    border-radius: 4px;
}

.wcl-banner-straight.wcl-banner-bottom-right,
.wcl-banner-straight.wcl-banner-bottom-left {
    bottom: 12px;
    left: auto;
    right: auto;
    transform: none;
    border-radius: 4px;
}

.wcl-banner-straight.wcl-banner-top-right,
.wcl-banner-straight.wcl-banner-bottom-right {
    left: 12px;
}

.wcl-banner-straight.wcl-banner-top-left,
.wcl-banner-straight.wcl-banner-bottom-left {
    right: 12px;
}

/* --- Brand Logo Overlay --- */
.wcl-brand-logo {
    position: absolute;
    z-index: 8;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    padding: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.wcl-brand-logo img {
    display: block !important;
    object-fit: cover !important;
}

/* Logo Positions */
.wcl-logo-top-left {
    top: 8px;
    right: 8px; /* RTL: right is "left" visually */
}

.wcl-logo-top-right {
    top: 8px;
    left: 8px;
}

.wcl-logo-bottom-left {
    bottom: 8px;
    right: 8px;
}

.wcl-logo-bottom-right {
    bottom: 8px;
    left: 8px;
}

/* --- Custom Label Stamps --- */
.wcl-stamp {
    position: absolute;
    z-index: 9;
    width: 100px;
    height: 100px;
    transform: rotate(-15deg);
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.wcl-stamp svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Stamp Positions */
.wcl-stamp-pos-top-right {
    top: 12px;
    left: 12px;
}

.wcl-stamp-pos-top-left {
    top: 12px;
    right: 12px;
}

.wcl-stamp-pos-bottom-right {
    bottom: 12px;
    right: 12px;
}

.wcl-stamp-pos-bottom-left {
    bottom: 12px;
    left: 12px;
}


/* --- Store Pickup Discount Label --- */
.wcl-store-pickup-label {
    color: #764ba2;
    text-align: center;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 6px;
    font-family: "Assistant", Sans-serif;
    border: 2px solid #764ba2;
    border-radius: 17px;
}

.wcl-store-pickup-single {
    display: inline-block;
    margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wcl-stamp {
        width: 65px;
        height: 65px;
    }

    .wcl-brand-logo {
        transform: scale(0.5);
        transform-origin: top right;
    }

    .wcl-logo-top-right .wcl-brand-logo,
    .wcl-brand-logo.wcl-logo-top-right {
        transform-origin: top left;
    }

    .wcl-logo-bottom-right .wcl-brand-logo,
    .wcl-brand-logo.wcl-logo-bottom-right {
        transform-origin: bottom left;
    }

    .wcl-logo-bottom-left .wcl-brand-logo,
    .wcl-brand-logo.wcl-logo-bottom-left {
        transform-origin: bottom right;
    }

    .wcl-logo-top-left .wcl-brand-logo,
    .wcl-brand-logo.wcl-logo-top-left {
        transform-origin: top right;
    }

    .wcl-sale-banner {
        width: 150px;
        font-size: 12px;
    }

    .wcl-banner-top-right {
        top: 18px;
        left: -38px;
    }

    .wcl-banner-top-left {
        top: 18px;
        right: -38px;
    }

    .wcl-banner-bottom-right {
        bottom: 18px;
        left: -38px;
    }

    .wcl-banner-bottom-left {
        bottom: 18px;
        right: -38px;
    }
}
