.tt-desktop-header a[href$="track-order"],
.tt-stuck-parent-menu a[href$="track-order"],
.tt-desktop-header a[href$="contactus"],
.tt-stuck-parent-menu a[href$="contactus"] {
    display: none !important;
}
.tt-col-list:not(.brands-dropdown) {
    flex-wrap: wrap;
}
.tt-col-list:not(.brands-dropdown) .col-sm-4 {
    min-width: 33.3% !important;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}
@media only screen and (max-width: 490px) {
    .tt-footer-col > .container > .row > div,
    .tt-footer-col .tt-newsletter {
        display: none;
    }
    .tt-footer-col > .container > .row > div:last-child {
        display: block;
    }
}

/* Listing video preview (adib, 2026-09-13) - play badge + hover preview on
   product card thumbnails that have a YouTube video attached. Markup:
   website/includes/productCard.blade.php. Hover behavior: main.js
   (delegated mouseenter/mouseleave on .tt-image-box). */
.tt-image-box {
    position: relative;
}
/* Restyled (adib, 2026-09-14): "change play button keep it without circle
   and in white color only and a bit bigger" - dropped the circular dark
   background, kept solid white, bumped the icon up from 11px to 22px. A
   subtle dark drop-shadow is kept (not a background shape) purely so the
   white glyph stays visible over light/white product photos - without it
   the badge would vanish on most of this store's product images. */
.tt-product-video-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 3;
    width: 28px;
    height: 28px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .65), 0 0 2px rgba(0, 0, 0, .5);
    pointer-events: none;
}
.tt-product-video-preview {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
    background: #000;
    pointer-events: none;
}
.tt-product-video-preview.is-active {
    display: block;
}
.tt-product-video-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
