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;*/
    margin: 0;
    padding: 0;
}

footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.card1{
    transition: all 0.2s;
}

.card1:hover{
    transform:scale(1.1);
}

.card-img-top {
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .card-img-top:hover {
        transform: scale(1.08);
    }

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .product-card img {
        height: 180px;
        object-fit: contain;
        padding: 10px;
        background: #f8f9fa;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .product-card .card-title {
        font-weight: 600;
    }

.product-desc {
    font-size: 0.9rem;
    color: #6c757d;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.12);
    }

.whatsapp-icon {
    width: 40px;
    height: 40px;
}





/*Santa Start*/
.santa-walk {
    position: fixed;
    bottom: 20px; /* height from bottom */
    left: -150px; /* start outside screen */
    z-index: 99999;
    pointer-events: none; /* don’t block clicks */
}

#santaImg {
    height: 100px; /* Santa size */
}

/*Santa End*/