/* Product Landing Page CSS - Bootstrap Enhanced */
.landing-container {
    font-family: 'Hind Siliguri', var(--lato), system-ui, -apple-system, sans-serif;
    color: var(--color-414042);
    overflow: hidden;
}

.wrap-break-word {
    display: inline-flex !important;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal !important;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

/* Custom Overrides for Bootstrap Buttons */
.btn-light {
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

/* Hero Section Customizations */
.hero-section {
    background: linear-gradient(135deg, var(--color-44BC9D), #3a9b82);
    /* Fallback if var not present, but it should be */
}

/* Features Section */
.features-section .display-6 {
    font-size: 3rem;
}

/* Order Section */
.order-section {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive helpers if needed, but Bootstrap handles most */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
}