/* =========================================
   Trust Strip (Payment Icons & Logos)
   ========================================= */

/* Default State: Gray & Faded */
.trust-strip i, 
.trust-strip img {
    filter: grayscale(100%);  /* Makes them black & white */
    opacity: 0.6;             /* Makes them subtle */
    transition: all 0.3s ease; /* Smooth animation */
    cursor: pointer;          /* Shows hand icon on hover */
}

/* Hover State: Full Color & Bright */
.trust-strip i:hover, 
.trust-strip img:hover {
    filter: grayscale(0%);    /* Brings back original colors */
    opacity: 1;               /* Full visibility */
}