/**
 * Puramu Gift Frontend CSS
 */

/* Gift item label in cart */
.puramu-gift-thumbnail-wrapper {
    position: relative;
    display: inline-block;
}

.puramu-gift-item-label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #da251c;
    color: white;
    padding: 2px 6px;
    font-size: 8px;
    line-height: 8px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.puramu-gift-item-label img {
    width: 10px;
    height: 10px;
    margin-right: 3px;
}

.puramu-gift-options-wrapper h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.puramu-gift-combo {
    margin-bottom: 20px;
}

.puramu-gift-combo:last-child {
    margin-bottom: 0;
}

.puramu-gift-combo-header h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.puramu-gift-combo-description {
    margin-bottom: 15px;
    color: #555;
}

.puramu-gift-combo-products {
    margin-bottom: 15px;
}

.puramu-gift-combo-products h6 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 14px;
}

.puramu-gift-combo-products ul {
    margin: 0;
    padding-left: 20px;
}

.puramu-gift-combo-products li {
    margin-bottom: 5px;
}

.gift-product-price {
    font-size: 90%;
    color: #888;
}

.puramu-gift-choice {
    margin-top: 15px;
}

.puramu-gift-choice input[type="radio"] {
    margin-right: 5px;
}

.puramu-gift-choice label {
    margin-right: 15px;
    cursor: pointer;
}

#puramu_gift_combo_selector {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Gift popup styles */
.puramu-gift-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.puramu-gift-popup-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.puramu-gift-popup-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.puramu-gift-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #777;
}

.puramu-gift-popup-footer {
    margin-top: 20px;
    text-align: right;
}

.puramu-gift-popup-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

.puramu-gift-popup-button:hover {
    background-color: #005c8a;
    color: #fff;
}

.puramu-gift-popup-button.secondary {
    background-color: #f7f7f7;
    color: #555;
    margin-right: 10px;
}

.puramu-gift-popup-button.secondary:hover {
    background-color: #e7e7e7;
    color: #333;
}

/* Gift icon shortcode styles */
.puramu-gift-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    width: 23px;
    height: 23px;
}

/* Gift display styles for the [puramu_gift] shortcode */
.puramu-gift-display {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    background-color: #fff;
    max-width: 800px;
}

.puramu-gift-header {
    background: linear-gradient(to right, #e93e3e, #ff8c3b);
    color: #fff;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.puramu-gift-header .puramu-gift-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.puramu-gift-header p {
    margin: 0;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.puramu-gift-content {
    padding: 20px;
    row-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

@media (max-width: 1023px) {
    .puramu-gift-content {
        padding: 10px;
    }
}

.puramu-gift-product {
    display: flex;
    flex-direction: column;
    max-width: calc((100% - 88px) / 3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .puramu-gift-product {
        max-width: calc((100% - 44px) / 2);
        width: 100%;
    }
}

.puramu-gift-product-image {
    text-align: center;
    margin-bottom: 10px;
}

.puramu-gift-product-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 5px;
    aspect-ratio: 1;
}

.puramu-gift-product-info .puramu-gift-product-name {
    font-size: 13px;
    font-weight: 600;
    margin: 0px;
    color: #333;
    display: block;
    line-height: 18px;
}

.puramu-gift-product-info .puramu-gift-product-name:hover {
    text-decoration: none;
    color: #da251c;
}

.puramu-gift-product-price bdi {
    font-weight: 400;
    color: #da251c;
    font-size: 14px;
}

.puramu-gift-plus {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 15px;
}

.puramu-gift-plus:nth-child(6),
.puramu-gift-plus:nth-child(12) {
    display: none;
}

@media screen and (max-width: 768px) {

    .puramu-gift-plus:nth-child(4),
    .puramu-gift-plus:nth-child(8) {
        display: none;
    }

    .puramu-gift-plus:nth-child(6) {
        display: block;
    }
}

.puramu-gift-footer {
    padding-top: 5px;
}

.puramu-gift-description {
    font-size: 16px;
    margin-bottom: 0px;
}

/* Gift Options */
.puramu-gift-options-wrapper {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.puramu-gift-combo {
    margin-bottom: 20px;
}

.puramu-gift-combo:last-child {
    margin-bottom: 0;
}

.puramu-gift-combo-header h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.puramu-gift-combo-description {
    margin-bottom: 15px;
    color: #555;
}

.puramu-gift-combo-products {
    margin-bottom: 15px;
}

.puramu-gift-combo-products h6 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 14px;
}

.puramu-gift-combo-products ul {
    margin: 0;
    padding-left: 20px;
}

.puramu-gift-combo-products li {
    margin-bottom: 5px;
}

.gift-product-price {
    font-size: 90%;
    color: #888;
}

.puramu-gift-radio-options {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-wrap: wrap;
    margin-top: 5px;
}

.puramu-gift-radio-options label {
    margin: 0px;
    display: flex;
    align-items: center;
    height: 24px;
}

.puramu-gift-radio-options .puramu-gift-choice-radio {
    margin-right: 5px;
}

.puramu-gift-radio-options .woocommerce-Price-amount {
    margin-left: 3px;
}

/* Cart Item Gift Options */
.puramu-gift-cart-choice {
    background: #fff6f6;
    padding: 10px;
    border-left: 3px solid #da251c;
    margin: 10px 0;
    font-size: 14px;
}

.puramu-gift-cart-choice p {
    margin: 0 0 5px 0;
    display: flex;
    font-weight: 700;
    color: #333;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.puramu-gift-cart-choice p img {
    width: 20px;
    height: 20px;
}

.puramu-gift-cart-choice .discount-note {
    font-size: 12px;
    color: #666;
    opacity: 0.8;
}

/* Loading State */
body.processing {
    cursor: wait;
    position: relative;
}

.puramu-gift-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.puramu-gift-loading:after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #da251c;
    border-radius: 50%;
    animation: puramu-gift-spinner 1s linear infinite;
}

@keyframes puramu-gift-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Gift Badges on Single Product Page */
.puramu-gift-badges-single {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.puramu-gift-badge-single {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #da251c 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(218, 37, 28, 0.25);
}

.puramu-gift-badge-single img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .puramu-gift-badge-single {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .puramu-gift-badge-single img {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
}

/* Ensure product items in loops have position relative for absolute badge positioning */
.products .product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
}