.elementor-532 .elementor-element.elementor-element-ff070d4{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-c9bea35 *//* --- General Setup & Gherbs Header CSS --- */

body {
    margin:0px;
    background: #fff;
    font-family: "Inter", sans-serif;
}

/* Header Layout */
.site-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    color: #1f1814 !important;
    border: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0px;
}

.header-left img {
    height: 28px;
    width: auto;
    border-radius: 10px;
    display: block !important;
}

.header-right {
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.nav-item {
    text-decoration: none !important;
    color: #1f1814 !important;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #1f1814 !important;
    border-radius: 20px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.nav-item.home {
    border: none !important;
    font-size: 18px;
}

.nav-item:hover {
    background: #1f1814 !important;
    color: #fff !important;
}

/* Base search button style */
.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1f1814;
    font-size: 18px;
    border-radius: 10px;
}

/* ------------------------------------------------------------------ */
/* --- INLINE HEADER SEARCH FIELD STYLES --- */
/* ------------------------------------------------------------------ */

.search-box.visible-search-field {
    display: flex;
    align-items: center;
    background-color: #f7f3e8;
    border: 1px solid #1f1814;
    border-radius: 20px;
    padding: 3px 10px;
}

.search-box.visible-search-field .search-btn {
    padding: 0;
    font-size: 14px;
    margin-right: 5px;
    
}

.search-box .header-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 5px 0;
    width: 150px;
    color: #1f1814;
}

.search-box .header-search-input::placeholder {
    color: #888;
    font-weight: 500;
    
}

/* --- Rasayanam Drawer CSS --- */

/* The Dark Backdrop/Overlay */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 999; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* The Main Drawer Component */
.search-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #fefcf5;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
    
    z-index: 9999;
    overflow-y: auto;
}

.search-drawer.open {
    transform: translateX(0);
}

/* Header and Input Styles inside the Drawer */
.drawer-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background-color: #fefcf5;
    position: sticky;
    top: 0;
    gap: 10px;
}

.search-drawer .search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    background-color: #fff;
}

/* Styling the close button */
.close-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #1f1814;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Area Styles */
.drawer-content {
    padding: 15px;
    text-align: left;
}

.drawer-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #1f1814;
    font-weight: 600;
}

/* Popular Searches Pattern Styling */
.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.popular-searches a {
    text-decoration: none;
    color: #3a3a3a;
    background-color: #e9e5d9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
    border: none;
}

/* --- Blog List Styles (Horizontal Slider/Slide Effect) --- */

.blog-list {
    display: flex;
    overflow-x: auto; 
    overflow-y: hidden;
    gap: 15px;
    padding-bottom: 10px; 
    margin-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.blog-list::-webkit-scrollbar {
    display: none;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    flex: 0 0 160px;
    min-height: 180px; 
    max-height: 250px;
    padding: 0;
    text-align: left;
}

.blog-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.blog-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-meta, .blog-date, .read-more-btn {
    display: none;
}


/* ------------------------------------------------------------------ */
/* --- MOBILE VIEW OPTIMIZATIONS (Max-width: 400px) --- */
/* ------------------------------------------------------------------ */

@media (max-width: 400px) {
    
    .nav-item {
        display: none !important;
    }
    
    .search-box {
        display: flex !important;
    }
    
    .site-header {
        margin: 5px 10px;
    }
    
    .search-box.visible-search-field {
        width: 100%;
        margin-top: 5px;
    }
    
    .search-box .header-search-input {
        width: calc(100% - 30px);
    }

    .search-drawer {
        max-width: 100%;
    }
}/* End custom CSS */