/**
 * Hummingbird Child Theme - Custom Styles
 * 
 * Ten plik zawiera niestandardowe style dla child theme.
 * Wszystkie zmiany powinny być dodawane tutaj, aby nie zostały nadpisane
 * podczas aktualizacji głównego tematu Hummingbird.
 * 
 * Uwaga: Style dla Owl Carousel i tbcmsslider zostały przeniesione do osobnych plików:
 * - owl.carousel.min.css (podstawowe style Owl Carousel)
 * - owl.theme.default.min.css (domyślny theme Owl Carousel)
 * - tbcmsslider.css (style specyficzne dla modułu tbcmsslider)
 */

/* ==========================================================================
   IMPORTS
   ========================================================================== */

/* Google Fonts Import - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Bemo MegaMenu Integration Styles */
@import url('bemo-megamenu-integration.css');

/* ==========================================================================
   Child Theme Custom Styles
   ========================================================================== */

/* Tutaj możesz dodawać swoje niestandardowe style dla child theme */

/* Przykładowe customizacje (usuń komentarze i dostosuj według potrzeb): */

/* ==========================================================================
   TYPOGRAPHY - MONTSERRAT FONT
   ========================================================================== */

/* Global font family - Montserrat for all elements */
* {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Body base typography */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Buttons */
.btn {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

/* Navigation and menu items */
.navbar,
.nav,
.menu,
.dropdown-menu {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Form elements */
input, textarea, select, button {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Product names and descriptions */
.product-title,
.product-name,
.product-description,
.product-miniature {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Dostosowanie produktów */
/*
.product-miniature {
    border: 1px solid #your-border-color;
    border-radius: 8px;
}
*/

/* Responsive customizations */
/*
@media (max-width: 768px) {
    .your-mobile-customizations {
        display: none;
    }
}
*/
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #4AB971;
    --bs-btn-border-color: #4AB971;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: black;
    --bs-btn-hover-border-color: black;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: black;
    --bs-btn-active-border-color: black;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: #4AB971;
    border-color: #4AB971;
}

.btn:hover {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    color: white;
}

.btn-link:hover {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    color: black;
}

.btn-outline-primary {
    --bs-btn-color: #4AB971;
    --bs-btn-border-color: #4AB971;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: black;
    --bs-btn-hover-border-color: black;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: black;
    --bs-btn-active-border-color: black;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    --bs-btn-disabled-color: #4AB971;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #4AB971;
}

/* ==========================================================================
   BLOG POSTS STYLING
   ========================================================================== */

/* Blog Posts Container */
.tbcmsblog-event-home {
    padding: 60px 0;
    background: #f8f9fa;
}

.tbblog-event-all-block {
    margin: 0 -15px;
}

/* Blog Post Item */
.tbblog-event-all-content-block {
    padding: 0 15px;
    margin-bottom: 30px;
}

.blog_pos.tbblog-img-content-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog_pos.tbblog-img-content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Post Image */
.tbblog-content-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
}

.tbnews-event-hoverbtn:hover .tbblog-content-img {
    transform: scale(1.05);
}

.tbnews-event-hoverbtn {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Date and Author Section */
.td-date-autor-wrapper {
    padding: 15px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6c757d;
}

.meta-author p,
.tbdate-time p {
    margin: 0;
    font-weight: 500;
}

.date_time.tbdate-time {
    display: flex;
    align-items: center;
}

.date_time.tbdate-time span {
    margin-right: 2px;
}

/* Blog Post Content */
.post_content.tbnews-event-content-wrapper {
    padding: 15px 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tbnews-event-titel h3 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.tbnews-event-titel h3 a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.tbnews-event-titel h3 a:hover {
    color: #4AB971;
}

.post_description.tbnews-event-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Disable owl-carousel for better grid layout */
.tbcmsblog-event-home .owl-carousel {
    display: block !important;
}

.tbcmsblog-event-home .owl-stage-outer,
.tbcmsblog-event-home .owl-stage {
    overflow: visible !important;
    transform: none !important;
    transition: none !important;
    width: auto !important;
}

.tbcmsblog-event-home .owl-item {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    display: block;
}

/* Equal Height Cards */
@media (min-width: 768px) {
    .tbblog-event-all-block {
        display: flex;
        flex-wrap: wrap;
    }
    
    .tbcmsblog-event-home .tbnews-wrapper-info-box {
        display: flex !important;
        flex-wrap: wrap;
        width: 100%;
    }
    
    
}

/* Responsive adjustments */


@media (max-width: 767px) {
    .tbcmsblog-event-home {
        padding: 40px 0;
    }
    
    .tbblog-event-all-content-block {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .tbblog-content-img {
        height: 200px;
    }
}

.all-product-link.btn i {
    color: #4AB971;
}

.product-miniature .product-miniature__title {
    color: black;
}

.badge {
    background-color: #4AB971;
}

.thumbnails__container .thumbnail.active img {
    border: 2px solid #4AB971;
}

/* header#header
 {
    position: relative;
} */

/* ==========================================================================
   Scrollbar color
   ========================================================================== */
:root {
  --bemo-scrollbar: #4AB971;
}

/* Firefox */
html {
  scrollbar-color: var(--bemo-scrollbar) transparent; /* thumb, track */
  scrollbar-width: thin;
}

/* Chromium/WebKit */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--bemo-scrollbar);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #3da862; /* a bit darker on hover */
}

/* Remove scrollbar arrows (top/bottom) */
*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
/* Hide corner when both scrollbars are visible */
*::-webkit-scrollbar-corner {
  background: transparent;
}

/* ==========================================================================
   User Info Styling
   ========================================================================== */
#_desktop_user_info span {
    color: #343a40;
}

#_desktop_user_info i {
    color: #343a40;
}
.footer {
    /* --footer-background-color: #16181c; */
    --footer-text-color: white;
    /* --footer-hover-color: var(--bs-white);
    --footer-heading-color: var(--bs-white); */
}
.footer .footer__block__content {
    color: #796B5B;
        font-size: 14px;
    font-weight: 400;
}
.footer .footer__block__content-contact a {
    color: #796B5B;
        font-size: 14px;
    font-weight: 400;
}
.footer .footer__block__content-list a {
       color: #796B5B;
        font-size: 14px;
    font-weight: 400;
}
.dropdown-menu.dropdown-menu-start.show {
    z-index: 9999999;
}
div#blockcart-modal {
    z-index: 99999999;
}
body.private_modern_theme input.form-control {
    width: 90% !important;}

    footer#footer {
    padding-top: 300px;
}

/* ==========================================================================
   Mobile Search Bar - Static at Top of Page
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Mobile search container always at top of page */
    .mobile-search-container {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        background-color: #fff;
        border-bottom: 1px solid #e9ecef;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-search-content {
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force visibility of all search elements */
    .mobile-search-container .search__container,
    .mobile-search-container #search_widget,
    .mobile-search-container #search_widget input,
    .mobile-search-container #search_widget button,
    .mobile-search-container form,
    .mobile-search-container .input-group,
    .mobile-search-container .input-group-append,
    .mobile-search-container .input-group-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Special handling for input group elements */
    .mobile-search-container .input-group {
        display: flex !important;
    }
    
    /* Override any responsive hiding classes */
    .mobile-search-container .d-none,
    .mobile-search-container .d-sm-none,
    .mobile-search-container .d-md-none,
    .mobile-search-container .d-lg-none,
    .mobile-search-container .d-xl-none {
        display: block !important;
    }
    
    .mobile-search-container .d-flex.d-none,
    .mobile-search-container .input-group.d-none {
        display: flex !important;
    }
    
    /* Hide desktop search elements inside mobile container */
    .mobile-search-container #_desktop_search {
        display: none !important;
    }
    
    /* Hide search template on mobile */
    .mobile-search-container #search-products {
        display: none !important;
    }
    
    /* Mobile search widget styling */
    .mobile-search-container #search_widget {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .mobile-search-container #search_widget input {
        width: 100%;
        height: 2.5rem;
        background: var(--bs-gray-100);
        border: 1px solid #ddd;
        border-radius: 25px;
        padding-left: 2.5rem;
        padding-right: 3.5rem;
        font-size: 1rem;
    }
    
    .mobile-search-container #search_widget .search {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--bs-gray-700);
    }
    
    .mobile-search-container #search_widget .clear {
        position: absolute;
        right: 3.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--bs-gray-700);
        display: none;
    }
    
    /* Smooth scroll behavior for mobile search link */
    .mobile-search-link {
        scroll-behavior: smooth;
    }
    
    /* Hide original offcanvas search on mobile */
    .search__offcanvas {
        display: none !important;
    }
}

/* ==========================================================================
   Desktop Search Bar Styling
   ========================================================================== */
@media (min-width: 768px) {
    .desktop-search-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .desktop-search-container #search_widget {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
    
    .desktop-search-container #search_widget input {
        width: 100%;
        height: 2.5rem;
        background: var(--bs-gray-100);
        border: 1px solid #ddd;
        border-radius: 25px;
        padding-left: 1.5rem;
        padding-right: 3.5rem;
        font-size: 1rem;
    }
    
    .desktop-search-container #search_widget .search {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--bs-gray-700);
    }
    
    .desktop-search-container #search_widget .clear {
        position: absolute;
        right: 3.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--bs-gray-700);
        display: none;
    }
}

/* ==========================================================================
   Mobile Search Bar Fixed Position Fix (Legacy - może zostać usunięte)
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Position search offcanvas at the very top of the page (not floating) */
    .search__offcanvas {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 60px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        background-color: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Override any Bootstrap offcanvas positioning - make it static at top */
    .offcanvas.search__offcanvas {
        position: absolute !important;
        top: 0 !important;
        bottom: auto !important;
        height: auto !important;
        max-height: none !important;
        transform: none !important;
    }
    
    /* Ensure the search input container fills the available space */
    .search__offcanvas .offcanvas-header {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
        background-color: #fff !important;
        display: flex !important;
        align-items: center !important;
        min-height: 60px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Make sure search input is visible and properly positioned */
    .search__offcanvas #_mobile_search,
    .search__offcanvas .search__container {
        width: 100% !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    /* Search widget inside offcanvas */
    .search__offcanvas #search_widget {
        width: 100% !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Search input field */
    .search__offcanvas #search_widget input {
        width: 100% !important;
        height: 2.5rem !important;
        background: var(--bs-gray-100) !important;
        border: 1px solid #ddd !important;
        border-radius: 25px !important;
        padding-left: 1.5rem !important;
        padding-right: 3.5rem !important;
        font-size: 1rem !important;
        position: relative !important;
        z-index: 10001 !important;
    }
    
    /* Close button positioning */
    .search__offcanvas .btn-close {
        position: absolute !important;
        right: 1rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10002 !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border: none !important;
        font-size: 1rem !important;
        color: #666 !important;
    }
    
    /* Search icon in mobile search */
    .search__offcanvas #search_widget .search {
        position: absolute !important;
        right: 1.5rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: var(--bs-gray-700) !important;
        z-index: 10001 !important;
    }
    
    /* Clear icon in mobile search */
    .search__offcanvas #search_widget .clear {
        position: absolute !important;
        right: 3.5rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: var(--bs-gray-700) !important;
        z-index: 10001 !important;
    }
    
    /* Don't prevent body scroll - search is at top of page naturally */
    
    /* Ensure search is positioned at top of page */
    .search__offcanvas.show {
        position: absolute !important;
        top: 0 !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Force visibility for any possible hidden states */
    .search__offcanvas:not(.hide),
    .search__offcanvas.showing,
    .search__offcanvas.show {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translateY(0) !important;
    }
    
    /* Search results dropdown positioning */
    .search__offcanvas .search-widgets__dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        overflow-y: auto !important;
        background: #fff !important;
        border: 1px solid #ddd !important;
        border-top: none !important;
        border-radius: 0 0 8px 8px !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
        z-index: 10000 !important;
    }
}
@media (min-width: 768px) {
    .desktop-search-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
}
@media (min-width: 768px) {
    .desktop-search-container #search_widget input {
     
        padding-left: 50px;
    }
}

/* ==========================================================================
   BLOG STYLING
   ========================================================================== */

/* Blog Container */
.tb-blog-content-wrapper {
    padding: 20px 0;
}

.tball-page-top-title {
    margin-bottom: 40px;
    text-align: center;
}

.tbpage-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.tbpage-header-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #4AB971, #2E8B57);
    border-radius: 2px;
}

/* Blog Posts Grid */
.kr_blog_post_area {
    margin: 0;
    padding: 0;
}

.kr_blog_post_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual Blog Post Card */
.tbblog_post {
    flex: 0 1 auto;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 350px;
    width: 100%;
}

.blog_post_content {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(74, 185, 113, 0.1);
}

.blog_post_content:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 185, 113, 0.3);
}

/* Blog Post Image */
.blog_post_content_top {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 220px;
}

.post_thumbnail {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.tbnews-event-hoverbtn {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.tbblog-balance-height {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog_post_content:hover .tbblog-balance-height {
    transform: scale(1.08);
}

/* Image Overlay */
.tbnews-event-overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 185, 113, 0.85), rgba(46, 139, 87, 0.85));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog_post_content:hover .tbnews-event-overly {
    opacity: 1;
}

/* Hover Button */
.tbnews-event-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.blog_post_content:hover .tbnews-event-buttons {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.tbnews-event-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    color: #4AB971;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tbnews-event-buttons a:hover {
    background: #4AB971;
    color: #fff;
    transform: scale(1.1);
}

.tbnews-event-buttons i {
    font-size: 24px;
}

.tbnews-event-buttons i:before {
    content: 'visibility';
}

/* Blog Post Content */
.post_content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Meta Information */
.post_meta {
    margin-bottom: 15px;
}

.meta_date {
    font-size: 0.85rem;
    color: #4AB971;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Post Title */
.post_title {
    margin-bottom: 15px;
    line-height: 1.4;
}

.post_title a {
    color: #333;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post_title a:hover {
    color: #4AB971;
}

/* Post Description */
.post_description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.post_description p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.read_more {
    margin-top: auto;
}

.read_more .more {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(45deg, #4AB971, #2E8B57);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read_more .more:hover {
    background: linear-gradient(45deg, #2E8B57, #4AB971);
    transform: translateX(5px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 185, 113, 0.4);
}

.read_more .more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read_more .more:hover i {
    transform: translateX(3px);
}

/* Pagination Styling */
.tbpagination-title-item-main-wrapper {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
}

.tbinner-page-showing-item {
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.page-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-list li {
    margin: 0;
}

.page-list a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 45px;
    justify-content: center;
}

.page-list a:hover {
    background: #4AB971;
    border-color: #4AB971;
    color: #fff;
    transform: translateY(-2px);
}

.page-list .current a {
    background: #4AB971;
    border-color: #4AB971;
    color: #fff;
}

.page-list .disabled a {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

.page-list .disabled a:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .kr_blog_post_inner {
        gap: 25px;
    }
    
    .tbblog_post {
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    .kr_blog_post_inner {
        gap: 20px;
    }
    
    .tbblog_post {
        max-width: 300px;
    }
    
    .tbpage-header-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .kr_blog_post_inner {
        gap: 20px;
        justify-content: center;
    }
    
    .tbblog_post {
        max-width: 280px;
    }
    
    .tbpage-header-title {
        font-size: 2rem;
    }
    
    .post_content {
        padding: 20px;
    }
    
    .tbpagination-title-item-wrapper {
        flex-direction: column;
    }
    
    .tbinner-page-showing-item {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .page-list {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .tbblog_post {
        max-width: 100%;
    }
    
    .kr_blog_post_inner {
        gap: 15px;
    }
    
    .tbpage-header-title {
        font-size: 1.8rem;
    }
    
    .post_content {
        padding: 18px;
    }
    
    .blog_post_content_top {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .mobile-search-content {
        display: block!important;}}

        @media (max-width: 767.98px) {
    .search-widgets__dropdown.js-search-dropdown.d-none
     {
        display: none !important;
    }
}
#search_widget .js-search-icon

 {
    background-color: #d6b391!important;
 }

 .header-block__badge {
    background-color: #d6b391!important;
 }
 .footer .footer__main {
    background-color: #d6b391!important;
 }
 button.btn.btn-primary.btn-with-icon.add-to-cart {
    background: #4AB971;
}
button.btn.increment.js-increment-button {
    color: black;
}
button.btn.decrement.js-decrement-button {
    color: black;
}