

/* Brand Name - Fix macron (ū) diacritic rendering */
.lumina-text {
    font-family: 'Urbanist', sans-serif;
}

/* Specific fix for the ū character - add space after it */
.lumina-u {
    display: inline-block;
    /*padding-right: 0.15em;*/
}

/* Mobile menu - Partner link styling */
.partner-link-mobile {
    color: var(--bs-primary) !important;
}

.partner-link-mobile:hover {
    color: var(--bs-primary) !important;
    opacity: 0.8;
}

/* Best Selling Products - Fix overlay on mobile */
@media (max-width: 991px) {
    .best-selling-large-image {
        max-height: 500px;
        overflow: hidden;
    }

    .best-selling-large-image .card-img {
        height: 500px;
        object-fit: cover;
    }

    .best-selling-large-image .card-img-overlay {
        padding: 1.5rem !important;
        margin: 0.5rem !important;
    }

    .best-selling-large-image .card-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .best-selling-large-image .card-text {
        font-size: 1rem !important;
    }

    .best-selling-large-image .mt-10 {
        margin-top: 1rem !important;
    }
}

/* Hero Banner - Responsive font sizes for mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
    }

    .hero-content .text-uppercase {
        font-size: 0.75rem !important;
    }

    .hero-content .btn {
        font-size: 0.875rem !important;
        padding: 0.5rem 1.25rem !important;
    }

    /* Light overlay for better text readability on mobile */
    .hero .bg-overlay::before,
    #about_introduction .bg-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        z-index: 1;
    }

    .hero-content,
    #about_introduction .container {
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
    }

    .hero-desc {
        font-size: 1rem !important;
    }
}

/* Partner form - Smaller checkbox label on mobile */
@media (max-width: 767px) {
    .form-check-label {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }
}

/* Featured Products - Taller images on mobile to prevent cropping */
@media (max-width: 767px) {
    .featured-product-image {
        height: 550px !important;
    }

    .featured-product-image img {
        height: 100% !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

/* Checkout - Shipping & Payment Methods - Better radio button alignment */
.shipping-methods .form-check,
.payment-methods .form-check {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 3.5rem !important;
}

.shipping-methods .form-check-input,
.payment-methods .form-check-input {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.shipping-methods .form-check-label,
.payment-methods .form-check-label {
    cursor: pointer;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .shipping-methods .form-check,
    .payment-methods .form-check {
        padding-left: 3rem !important;
    }

    .shipping-methods .form-check-input,
    .payment-methods .form-check-input {
        left: 0.75rem;
        width: 1.1rem;
        height: 1.1rem;
    }

    /* Product card images - prevent cropping on mobile */
    .card-product .card-img-top img {
        width: 100%;
        height: 400px !important;
        object-fit: contain !important;
        object-position: center !important;
    }
}

/* Product card images - desktop */
@media (min-width: 768px) {
    .card-product .card-img-top img {
        width: 100%;
        height: 440px;
        object-fit: cover;
    }
}
