/* ========================================
   DHANVANTRI AROGYA - SITE CSS BUNDLE
   Production optimized CSS bundle for public site
   Generated: 2026-01-20
   ======================================== */

/* TEXT VISIBILITY FIXES */
.text-muted {
    color: #6c757d !important;
}

.text-primary {
    color: #49a01b !important;
}

.font-weight-bold {
    font-weight: 600 !important;
}

body {
    color: #2d3a4b;
    line-height: 1.6;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HOME PAGE ENHANCEMENTS */
.home-slider {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.position-center-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.home-slider .container-fluid {
    position: relative;
    height: 100%;
}

.home-slider h1,
.home-slider h4 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.home-slider .price {
    background: rgba(73, 160, 27, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
}

.papular-block .item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.papular-block .item:hover {
    transform: translateY(-5px);
}

.new-arrival-list .col-md-4 {
    margin-bottom: 30px;
}

/* FOOTER STYLING */
footer {
    background: #2d3a4b;
    color: #fff;
    padding: 40px 0 20px;
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

footer a {
    color: #ccc;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #49a01b;
    text-decoration: none;
}

footer .social_icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social_icons a:hover {
    background: #49a01b;
    color: #fff;
}

/* AUTH PAGES */
.auth-page {
    min-height: 100vh;
}

@media (max-width: 576px) {
    .auth-wrapper .col-lg-5,
    .auth-wrapper .col-md-7,
    .auth-wrapper .col-sm-9 {
        padding: 0 10px;
    }
    
    .auth-box {
        margin: 10px;
    }
}

/* BUTTON STYLES */
.btn,
button,
input[type="submit"],
input[type="button"],
button[type="submit"] {
    border-radius: 8px !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-small,
.btn-sm {
    border-radius: 6px !important;
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg,
.btn-large {
    border-radius: 10px !important;
}

.btn-round {
    border-radius: 10px !important;
}

.btn-auth {
    border-radius: 8px !important;
    padding: 12px 30px;
    min-width: 120px;
    font-weight: 600;
}

.btn-primary {
    border-radius: 8px !important;
    background: #3490dc;
    padding: 10px 30px;
}

.btn-primary:hover {
    background: #2779bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 144, 220, 0.3);
}

.btn-success {
    border-radius: 8px !important;
    background: #38c172;
    padding: 10px 30px;
}

.btn-success:hover {
    background: #2fa360;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 193, 114, 0.3);
}

.btn-danger {
    border-radius: 8px !important;
    background: #e3342f;
    padding: 10px 30px;
}

.btn-danger:hover {
    background: #cc1f1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 52, 47, 0.3);
}

.btn-theme {
    border-radius: 8px !important;
    background: #2d3a4b;
    color: #fff;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-theme:hover {
    background: #49a01b;
    color: #2d3a4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 160, 27, 0.3);
}

.btn:not(.btn-link):hover,
button:not(.btn-link):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active,
button:active {
    transform: translateY(0);
}

.btn:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.25);
}

.btn:disabled,
.btn.disabled,
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* LOADER FIX */
#loader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 1) !important;
    z-index: 100000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.5s ease, visibility 0.5s ease !important;
    animation: autoHideLoader 4s ease forwards;
}

@keyframes autoHideLoader {
    0%, 75% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

#loader .position-center-center {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
}

body.loaded #loader,
#loader.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
}

.hide-loader #loader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* IMPROVED FONTS */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Hind:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

p {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    font-weight: 400;
    color: #333 !important;
}

label, .label, small, .small {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #444 !important;
}

.btn {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

header .navbar li a {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

.text-muted {
    color: #666 !important;
}

.item-name p,
.shop-detail p,
.item-decribe .tab-content p,
.history-block p,
.blog-list article p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #333 !important;
}

input, textarea, select {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    font-size: 14px !important;
}

table {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
}

footer, footer p, footer a, footer span, footer li {
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
    color: #e0e0e0 !important;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #ffffff !important;
    font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
}

footer a:hover {
    color: #ffffff !important;
}

[lang="hi"], .hindi-text {
    letter-spacing: 0.02em;
    word-spacing: 0.05em;
}

/* HOME SECTION SPACING */
section {
    margin-bottom: 0 !important;
}

.home-slider.simple-head {
    padding-bottom: 50px !important;
    margin-bottom: 50px !important;
}

.padding-top-150.padding-bottom-100 {
    padding-top: 80px !important;
    padding-bottom: 50px !important;
}

.padding-bottom-150 {
    padding-top: 50px !important;
    padding-bottom: 80px !important;
}

.special-offers {
    background: #f7f7f7 url(../site/images/special-bg.jpg) top center no-repeat !important;
    background-size: cover !important;
    padding: 100px 0 !important;
    margin-top: 80px !important;
    margin-bottom: 80px !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
}

.special-offers h4 {
    color: #e9654c !important;
    font-size: 28px !important;
    letter-spacing: 10px !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.special-offers .extra-huge-text {
    font-size: 90px !important;
    line-height: 90px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.special-offers .btn {
    background: #2d3a4b !important;
    color: #fff !important;
    padding: 15px 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.special-offers .btn:hover {
    background: #49a01b !important;
    color: #2d3a4b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.small-about.padding-top-150.padding-bottom-150 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

#content.light-bg {
    padding-top: 0 !important;
}

.heading {
    margin-bottom: 50px !important;
}

.new-arrival-list .btn-round {
    background: #2d3a4b !important;
    color: #fff !important;
    border: 2px solid #2d3a4b !important;
    font-weight: 600 !important;
}

.new-arrival-list .btn-round:hover {
    background: #49a01b !important;
    border-color: #49a01b !important;
    color: #2d3a4b !important;
}

section + section {
    margin-top: 0 !important;
}

/* MOBILE HEADER ADJUSTMENTS */
@media (max-width: 767px) {
    .header_top .pull-left ul li:nth-child(3) {
        display: none !important;
    }
    
    .header_top .pull-right {
        display: none !important;
    }
    
    .header_top .pull-left {
        float: none !important;
        text-align: center !important;
    }
    
    .header_top .pull-left ul {
        display: inline-block !important;
    }
    
    .header_top .pull-left ul li {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
    
    .header_top {
        padding: 8px 0 5px !important;
    }
    
    .header_top .pull-left ul li {
        font-size: 12px !important;
    }
    
    .header_top .pull-left ul li img {
        width: 16px !important;
        height: auto !important;
    }
}

/* MOBILE RESPONSIVE */
@media (min-width: 768px) and (max-width: 991px) {
    .home-slider.simple-head {
        padding-top: 8% !important;
        padding-bottom: 60px !important;
        min-height: 600px !important;
    }
    
    .home-slider .extra-huge-text {
        font-size: 60px !important;
        line-height: 60px !important;
    }
    
    .special-offers {
        padding: 80px 0 !important;
        min-height: 400px !important;
    }
    
    .special-offers .extra-huge-text {
        font-size: 70px !important;
        line-height: 70px !important;
    }
}

@media (max-width: 767px) {
    .home-slider.simple-head {
        padding-top: 15% !important;
        padding-bottom: 40px !important;
        min-height: 500px !important;
    }
    
    .home-slider .extra-huge-text {
        font-size: 40px !important;
        line-height: 45px !important;
    }
    
    .home-slider .price {
        font-size: 50px !important;
    }
    
    .special-offers {
        padding: 60px 0 !important;
        min-height: 350px !important;
    }
    
    .special-offers .extra-huge-text {
        font-size: 36px !important;
        line-height: 40px !important;
    }
    
    .heading h4 {
        font-size: 20px !important;
    }
    
    body {
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    .home-slider .extra-huge-text {
        font-size: 32px !important;
        line-height: 38px !important;
    }
    
    .special-offers .extra-huge-text {
        font-size: 28px !important;
        line-height: 32px !important;
    }
}
