/* Wrapper */
.external-buy-wrapper {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    clear: both;
    box-sizing: border-box;
}

/* Available on text */
.external-buy-wrapper .available-on {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.75;
    margin-right: 6px;
    white-space: nowrap;
}

/* Buy buttons */
.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid currentColor;
    background: transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Icons – SMALL & CLEAN */
/* Force logo size – VERY SMALL */
.buy-btn img {
    height: 10px !important;   /* 👈 very small */
    max-height: 10px !important;
    width: auto !important;
    max-width: 60px;           /* SVG overflow control */
    object-fit: contain;
    display: inline-block;
}

/* Button alignment fix */
.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.marketplace-logo {
    height: 10px !important;
    max-width: 60px;
    object-fit: contain;
}


/* Flipkart */
.buy-btn.flipkart {
    color: #2874F0;
}

/* Hover */
.buy-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* Mobile Fix */
@media (max-width: 480px) {
    .external-buy-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .buy-btn {
        width: 100%;
        justify-content: center;
    }

    .external-buy-wrapper .available-on {
        margin-bottom: 2px;
    }
}
