/*your custom css goes here*/

/* Product detail: image-style quick actions (WhatsApp, call, share, copy) */
.product-img-style-actions .product-img-style-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 0;
    padding: 0;
    text-decoration: none !important;
    cursor: pointer;
    flex-shrink: 0;
}
.product-img-style-actions .product-img-style-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}
.product-img-style-actions .product-img-style-btn i {
    font-size: 26px;
    line-height: 1;
    color: #fff;
}
.product-img-style-btn--wa {
    background: linear-gradient(145deg, #25d366, #128c7e);
}
.product-img-style-btn--call {
    background: linear-gradient(145deg, #0ea5e9, #0369a1);
}
.product-img-style-btn--fb {
    background: linear-gradient(145deg, #1877f2, #0c4a9e);
}
.product-img-style-btn--msg {
    background: linear-gradient(145deg, #0084ff, #006edc);
}
.product-img-style-btn--copy {
    background: linear-gradient(145deg, #64748b, #334155);
}
.product-purchase-actions {
    gap: 0;
}
@media (min-width: 992px) {
    .product-purchase-actions {
        align-items: center !important;
    }
}

/* COD CTA — eye-catching but not harsh */
@keyframes cod-order-attention {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }
    35% {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }
    55% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }
}

@keyframes cod-order-text-glow {
    0%,
    100% {
        text-shadow: 0 0 0 transparent;
    }
    40% {
        text-shadow: 0 0 14px rgba(255, 255, 255, 0.65), 0 0 28px rgba(255, 255, 255, 0.25);
    }
}

.buy-now-cod-order {
    white-space: normal;
    line-height: 1.35;
    position: relative;
    animation: cod-order-attention 2.6s ease-in-out infinite,
        cod-order-text-glow 2.6s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.buy-now-cod-order:hover,
.buy-now-cod-order:focus {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
    text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .buy-now-cod-order {
        animation: none !important;
    }
    .buy-now-cod-order:hover,
    .buy-now-cod-order:focus {
        transform: none;
    }
}