﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}




/* Remove extra white space below footer */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Footer spacing fix */
footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}







.card-img-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

    .card-img-wrap img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }





.deal-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin: 6px 0;
}

    .deal-badge.limited {
        background: #258cfb;
        color: #fff;
    }



/* 🔥 PRICE DROP ANIMATION */
.price-drop {
    animation: pricePulse 1.6s infinite;
    position: relative;
}

/* Pulse effect */
@keyframes pricePulse {
    0% {
        transform: scale(1);
        color: #198754;
    }

    50% {
        transform: scale(1.08);
        color: #0a9c3b;
    }

    100% {
        transform: scale(1);
        color: #198754;
    }
}

/* 🔥 PRICE DROP BADGE */
.price-drop-badge {
    background: #ff2f2f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
    animation: blinkBadge 1.2s infinite;
}

@keyframes blinkBadge {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}




