.site-header {
    background-image: url('https://botanicfashion.com/wp-content/uploads/2025/02/MAIN-BANNER6.png'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; /* Makes it take the full viewport height */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    .site-header {
        height: 474px; /* Slightly shorter header on tablets */
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 398px; /* Adjust for mobile */
        background-size: cover; /* Keeps full image visible */
			margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .site-header {
        height: 288px;
        background-size: contain;
    }
}

.main-navigation ul.sub-menu {
    margin-top: 0px !important; /* Adjust the dropdown position */
    top: 100% !important; /* Ensures the submenu appears directly below */
    left: 0; /* Aligns submenu with the parent */
}

.ast-primary-header-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999; /* Keeps it above other content */
    background: white; /* Adjust if needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-bar .ast-primary-header-bar { 
    top: 32px; /* Adjusts for WordPress admin bar if logged in */
}

.ast-main-header-bar { 
    padding-top: 60px; /* Adjust to prevent content from being hidden under the header */
}

.woocommerce-load-more {
    display: none !important;
}

#infinite-handle span {
    background: #333;
    border-radius: 1px;
    color: #f0f0f1;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 16px;
    display: none;
}

.ast-header-break-point .ast-mobile-header-wrap .ast-flex.stack-on-mobile {
    /* flex-wrap: wrap; */
    position: relative !important;
    z-index: 9999 !important;
	text-align: right !important;
}

@media (max-width: 544px) {
    .ast-header-break-point .ast-builder-layout-element[data-section="section-hb-social-icons-1"] {
        display: flex
;
        justify-content: flex-end !important;
    }
	
}
@media (max-width: 480px) {
    .site-header {
        height: 288px;
        background-size: contain;
    }
@media (max-width: 480px) {
    .site-header {
        height: 199px;
        background-size: cover;
    }
}
	
	.ast-header-sticky {
    position: relative !important;
}
	
	.ast-popup, .ast-popup-overlay {
    display: none !important;
}
	
@media (max-width: 921px) {
    /* Mobile Header Adjustment */
    .ast-mobile-header-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background-color: rgba(255, 255, 255, 0.9); /* Optional: Semi-transparent background */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow effect */
    }

    /* Prevent content from being hidden behind the fixed menu */
    body {
        padding-top: 80px; /* Adjust the padding based on the height of your mobile menu */
    }

    /* Adjust the space to the right of the social icons */
    .ast-mobile-header-wrap .ast-social-icons-wrap {
        padding-right: 20px; /* Adjust to add space to the right */
    }

    /* Mobile menu toggle button */
    .menu-toggle {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 10000;
    }
}

@media (max-width: 544px) {
    .ast-header-break-point .ast-builder-layout-element[data-section="section-hb-social-icons-1"] {
        display: flex
;
        justify-content: flex-end !important;
        padding-right: 20px;
        padding-bottom: 5px;
    }
}
	
.tablepress {
    --head-active-bg-color: #93b8c7;
    --head-active-text-color: var(--head-text-color);
    --head-sort-arrow-color: var(--head-active-text-color);
}
}
	.tablepress thead .dt-orderable-asc:hover, .tablepress thead .dt-orderable-desc:hover, .tablepress thead .dt-ordering-asc, .tablepress thead .dt-ordering-desc {
    background-color: #86b5c9;
    color: var(--head-active-text-color);
}

.gtranslate_wrapper {
    display: block !important;
}
.woocommerce-pagination {
    display: none !important;
}
.image-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.image-item {
  text-align: center;
  width: 100%;
  max-width: 200px;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-item a img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.image-item a img:hover {
  transform: scale(1.05);
}

.image-ti

}

.block-link {
    display: block; /* Makes the whole image area clickable */
    text-decoration: none; /* Removes underline from the link */
}

.block-image {
    width: 100%; /* Makes the image responsive */
    max-width: 200px; /* Limits the image width */
    height: auto; /* Maintains aspect ratio */
    margin-bottom: 15px; /* Adds space below the image */
    transition: transform 0.3s ease; /* Adds a smooth hover effect */
}

.block-link:hover .block-image {
    transform: scale(1.05); /* Slightly zooms the image when hovered */
}

.home-page-container {
    display: flex;
    flex-wrap: wrap; /* Ensures the blocks wrap onto the next line if needed */
    justify-content: space-between; /* Space between the blocks */
    gap: 20px; /* Adjusts the gap between the blocks */
    padding: 20px;
}

.home-page-block {
    flex: 1 1 calc(20% - 20px); /* Each block takes 20% of the row width, minus the gap */
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.block-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.block-title {
    font-size: 0.5em;
    color: #333;
    margin-bottom: 10px;
}

.block-text {
    font-size: 0.5em;
    color: #666;
    line-height: 1.5em;
}

@media (max-width: 544px) {
    h2, .entry-content h2 {
        font-size: 16px!important;
    }
}