/* Gift Products Plugin Styles */
:root {
    --gift-color: #DDBB99;
    --gift-color-dark: #c9a07a;
    --gift-text: #fff;
}

.gift-badge {
    position: absolute;
    top: 45px;
    right: 10px;
    z-index: 10;
    animation: pulse 2s infinite;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.gift-label {
    background-color: var(--gift-color);
    color: var(--gift-text);
    font-size: 11px;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 10px;
    margin-bottom: 4px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.gift-image {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gift-color);
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 72px;
    height: 72px;
}

.gift-image img {
    max-width: 72px;
    height: auto;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.gift-image:after {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gift-color);
    color: var(--gift-text);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.gift-badge span {
    display: none;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Single product page */
.single-product .gift-badge {
    top: 20px;
    right: 20px;
}

.single-product-gift-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--gift-color);
    display: inline-block;
    animation: pulse 2s infinite;
}

.single-product-gift-badge:after {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gift-color);
    color: var(--gift-text);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

/* Cart */
.cart-item-gift {
    background: #f8f8f8;
    padding: 5px;
    border-radius: 3px;
    color: #333;
    font-size: 0.9em;
    margin-top: 5px;
    display: inline-block;
}

/* Gift info block on single product */
.gift-product-info {
    margin: 15px 0;
    padding: 15px;
    background-color: #fdf8f3;
    border-left: 3px solid var(--gift-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.gift-product-info:before {
    content: "\f316";
    font-family: dashicons;
    font-size: 24px;
    color: var(--gift-color);
    margin-right: 15px;
    display: inline-block;
}

.gift-product-info h4 {
    margin-top: 0;
    color: var(--gift-color-dark);
    display: flex;
    align-items: center;
}

/* Gift product container on single product */
.gift-product-container {
    margin: 15px 0;
    padding: 15px;
    background-color: #fdf8f3;
    border-left: 3px solid var(--gift-color);
    border-radius: 3px;
}

.gift-title {
    color: var(--gift-color-dark);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.gift-product-wrapper {
    display: flex;
    align-items: center;
}

.product-plus-gift {
    display: flex;
    align-items: center;
}

.product-thumbnail,
.gift-thumbnail {
    border-radius: 5px;
    background: white;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.gift-plus-sign {
    margin: 0 15px;
    color: var(--gift-color);
    font-size: 24px;
    font-weight: bold;
}

.gift-thumbnail {
    position: relative;
    border: 2px solid var(--gift-color);
    border-radius: 5px;
    overflow: hidden;
    width: 80px;
    height: 80px;
}

.gift-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gift-thumbnail:after {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--gift-color);
    color: var(--gift-text);
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .gift-badge {
        top: 45px;
        right: 8px;
        width: 70px;
        z-index: 100;
    }

    .gift-label {
        font-size: 10px;
        padding: 2px 6px;
        margin-bottom: 3px;
    }

    .gift-image {
        border-width: 2px;
        padding: 3px;
        width: 62px;
        height: 62px;
    }

    .gift-badge img {
        max-width: 62px;
        width: 100%;
        height: 100%;
    }

    .gift-image:after {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 14px;
        top: -10px;
        right: -10px;
    }

    .single-product-gift-badge {
        top: 10px;
        right: 10px;
    }

    .single-product-gift-badge:after {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 14px;
        top: -10px;
        right: -10px;
    }

    .gift-product-info {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .gift-product-info:before {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .gift-product-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-plus-gift {
        margin-bottom: 15px;
    }

    .gift-plus-sign {
        margin: 0 10px;
        font-size: 20px;
    }

    .gift-thumbnail:after {
        font-size: 10px;
        padding: 1px 4px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .gift-badge {
        top: 45px;
        right: 6px;
        width: 60px;
        z-index: 100;
    }

    .gift-label {
        font-size: 9px;
        padding: 2px 5px;
    }

    .gift-image {
        border-width: 2px;
        padding: 3px;
        width: 54px;
        height: 54px;
    }

    .gift-badge img {
        max-width: 54px;
        width: 100%;
        height: 100%;
    }

    .gift-plus-sign {
        margin: 0 6px;
        font-size: 18px;
    }

    .product-thumbnail img,
    .gift-thumbnail img {
        max-width: 60px;
    }

    .single-product-gift-badge img {
        max-width: 44px;
    }
}
