body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: rgb(var(--color-text) / var(--tw-text-opacity));
}

/* Base styles using system fonts */
body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* Once custom fonts are loaded */
.fonts-stage-2 body {
    font-family: 'Poppins', sans-serif;
}

/* Ensure consistent spacing during font load */
.fonts-stage-1 h1,
.fonts-stage-1 h2,
.fonts-stage-1 p {
    max-width: 100%;
    overflow-wrap: break-word;
}

.footer-logo img {
    filter: drop-shadow(0 0 3px #fff);
}

.app-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nunito-200 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.nunito-400 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.nunito-700 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
}


.nunito-700-italic {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: italic;
}

.roboto-condensed-400 {
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.delius-swash-caps-regular {
    font-family: "Delius Swash Caps", cursive;
    font-weight: 500;
    font-style: italic;
}

.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: italic;
}


/* Search bar */
/* Search Box Wrapper */
.search-box-wrapper {
    position: relative;
    flex-grow: 1;
}

/* Input Field */
.search-box-wrapper .form-control {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    height: 45px;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box-wrapper .form-control:focus {
    border-color: #007bff;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

/* Search Icon */
.search-icon {
    left: 15px;
    color: #6c757d;
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-box-wrapper .form-control:focus+.search-icon {
    color: #007bff;
}

/* Gradient Submit Button */
.btn-gradient {
    background: linear-gradient(135deg, #6c63ff, #5a9fff);
    color: #fff;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #5a9fff, #6c63ff);
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.4);
}

/* Mobile Button */
.btn-outline-primary {
    font-size: 18px;
    padding: 5px 10px;
}

/* Modal Customizations */
.modal-content {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-body .form-control {
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 25px;
}


/* Base Styling */
.app-icon-wrapper {
    width: 90px !important;
    height: 90px !important;
    margin-right: 15px;
    overflow: hidden;
}

.app-icon {
    object-fit: contain;
}


@media (max-width: 768px) {
    .app-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-right: 10px;
    }

    .app-title {
        font-size: 1rem !important;
    }

    .app-card-wrapper {
        min-height: 70px;
    }
}


@media (max-width: 468px) {
    .app-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
    }

    .app-title {
        font-size: 0.75rem !important;
    }

    .app-card-wrapper {
        min-height: 70px;
    }
}

/* Google Play Button */
.official-store-buttons .btn-google-play {
    background: linear-gradient(135deg, #6fd97f, #4cb06c);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.official-store-buttons .btn-google-play:hover {
    background: linear-gradient(135deg, #4cb06c, #3e9d5d);
    box-shadow: 0 3px 6px rgba(76, 176, 108, 0.3);
}

.official-store-buttons .btn-play-store {
    background: linear-gradient(135deg, #77bfff, #559ff4);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.official-store-buttons .btn-play-store:hover {
    background: linear-gradient(135deg, #559ff4, #3c8be0);
    box-shadow: 0 3px 6px rgba(85, 159, 244, 0.3);
}

.official-store-buttons .btn-outline-google-play {
    border: 2px solid #0f9d58;
    color: #0f9d58;
    background-color: transparent;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.official-store-buttons .btn-outline-google-play:hover {
    background-color: #0f9d58;
    color: #fff;
    text-decoration: none;
}

/* App Store Button */
.official-store-buttons .btn-outline-app-store {
    border: 2px solid #000;
    color: #000;
    background-color: transparent;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.official-store-buttons .btn-outline-app-store:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

/* General Button Enhancements */
.official-store-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 8px 16px;
    cursor: pointer;
}

.official-store-buttons .btn i {
    margin-right: 8px;
}






/* Base styles for the promo container */
.promo-container {
    position: relative;
    margin-bottom: 1rem;
}

.promo-content {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-label {
    position: absolute;
    top: -14px;
    left: 0;
    font-size: 10px;
    color: #6c757d;
    padding: 0 15px;
    z-index: 10;
    white-space: nowrap;
}

.promo-large .promo-label {
    padding: 0 5px;
}

@media (max-width: 768px) {
    .promo-label {
        top: -10px;
        left: 0px;
        font-size: 9px;
    }
}











.content-area {
    overflow-y: auto;
}

.section-title {
    color: #333;
    margin-bottom: 20px;
}

.w-10 {
    width: 10%;
}

.w-60px {
    width: 60px;
}

.ml-20 {
    margin-left: 20px;
}

.fs-8 {
    font-size: 0.8rem !important;
}

/* Custom Underline with Animation */
.category-link {
    position: relative;
    color: #6c757d;
    /* Default muted color */
    transition: color 0.3s ease;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Position the underline just below the text */
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    /* Underline color */
    transition: width 0.3s ease;
}

.category-link:hover {
    color: #000;
    /* Darken text color on hover */
}

.category-link:hover::after {
    width: 100%;
    /* Full underline width on hover */
}



/* Adjust app icon on mobile */
@media (max-width: 768px) {
    img.rounded.shadow-sm {
        max-width: 70px;
        height: auto;
    }

    .fs-4 {
        font-size: 1.2rem !important;
    }

    .fs-6 {
        font-size: 0.9rem !important;
    }

    .fs-8 {
        font-size: 0.6rem !important;
    }
}