.abron-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
    }
    .abron-gallery{
    height: 350px;
    width: 100%;
    object-fit: cover;
    align-self: center;
    }

     .tips-box {
      background-color: #ffffff;
      border-left: 4px solid #fd0d0d;
      padding: 20px;
      border-radius: 8px;
    }
    .tips-title {
      font-weight: bold;
      color: #fd510d;
    }
    .tips-point {
      margin-top: 15px;
    }
    .highlight {
      font-weight: bold;
      color: #ca0a0a;
    }
    
    .product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info h5 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.product-info button {
    margin-top: 15px;
}
/* Location Button Styling */
.location_buttons {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.location_btn {
    background-color: #469bb2;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.location_btn:hover {
    background-color: #000000;
}

/* Floating WhatsApp Button - Bottom Left */
.fixedr {
    position: fixed;
    bottom: 80px; /* sits above the phone button */
    left: 15px;
    border: 2px solid #33c738;
    border-radius: 25px;
    height: 50px;
    width: 50px;
    z-index: 9999;
    background-color: #00b116;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Floating Button with Number - Bottom Left */
.phone-float {
    position: fixed;
    bottom: 20px;
    left: 15px;
    z-index: 9999;
    background-color: #ffffff;
    border: 2px solid #469bb2;
    border-radius: 25px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-float img {
    height: 24px !important;
    margin-right: 8px;
}

.phone-float span {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    white-space: nowrap;
}

/* Optional Blink Animation */
.pblink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.blink {
    animation: blinkEffect 1s infinite;
}

@keyframes blinkEffect {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive Tweaks */
@media (max-width: 480px) {
    .phone-float span {
        font-size: 13px;
    }
    .phone-float {
        padding: 6px 10px;
    }
}

