/* Root Font Size: Adjust dynamically between 14px and 18px */
html {
    font-size: clamp(14px, 2vw, 18px);
}

/* Improve text and button sizes on larger screens */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }
}

/* Ensure full height */
html, body {
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

/* Adjust margin for mobile */
body {
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    border-radius: 8px;
}

.btn:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive Cards */
.card {
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Ensure product images are contained */
.product {
    height: auto;
    max-height: 360px;
    object-fit: cover;
}

/* Footer */
.card-footer {
    margin-bottom: 10px;
}

/* Modal Improvements */
.modal-backdrop {
    z-index: 10; /* Ensure it sits correctly */
}

.modal {
    z-index: 1050; /* Ensure it's above backdrop */
}

.heading {
    font-size: 24px;
    color: #902bf5;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
    text-shadow: 1px 1px #2a0a56;
}

/* Ultimate Button */
.btn-ultimate {
    background-color: #902bf5;
    color: white;
    min-width: 150px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 4px inset white;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.btn-ultimate:hover {
    background-color: #5f43b2;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8);
}
.para {
    font-size: 24px;
    font-weight: 500;
    display: inline-flex; /* Makes the span a flex container */
    align-items: center; /* Vertically centers the text and icons */
    gap: 5px;
}
/* Responsive Grid for Layout */
@media (max-width: 768px) {
    .card, .product {
        height: auto;
        width: 100%;
    }

    .btn {
        width: 100%;
        font-size: 1rem;
    }

    .btn-ultimate {
        font-size: 1rem;
        padding: 14px;
    }
}
.footer{
    border-top: 1px solid #808080ff;
    background-color:  #cccccc;
    text-align: center;
    color: #902bf5;
    z-index:15;
}
footer{
    border-top: 1px solid #808080ff;
    background-color:  #cccccc;
    text-align: center;
    color: #902bf5;
    z-index:15;
}
