/* WooCommerce My Account Customizations */

/* Hide Downloads from navigation menu */
body.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads {
    display: none !important;
}

/* Apply main-heading style to entry-title on My Account pages */
body.woocommerce-account h2{
    font-size:20px;
}

/* Apply main-heading style to entry-title on My Account pages */
body.woocommerce-account h1.entry-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 30px;
    margin: 0 0 0 0;
    display: flex;
    align-items: center;
    width: 100%;
}

body.woocommerce-account h1.entry-title:after {
    content: "";
    flex: 1;
    height: 4px; /* grubość linii */
    background-color: #d1a500; /* złoty kolor */
    margin-left: 20px;
}

/* My Account layout wrapper */
body.woocommerce-account .my-account-wrapper {
    margin-top: 30px;
}

/* Background image column */
body.woocommerce-account .my-account-bg-column {
    background-image: url('../../../uploads/2023/02/Hibernia-Medical-Background-Images-3-1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 600px;
    border-radius: 10px;
}

/* My Account content column */
body.woocommerce-account .my-account-content-column {
    padding-left: 30px;
}

/* Navigation styling within the content column */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    margin-bottom: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #0b84c8;
    color: white;
    text-decoration: none;
}

/* Content area styling */
body.woocommerce-account .woocommerce-MyAccount-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Free gift notification styling */
body.woocommerce-account .my-account-notifications {
    background: linear-gradient(135deg, #0b84c8 0%, #0056b3 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(11, 132, 200, 0.3);
    border-left: 4px solid #ffffff;
}

body.woocommerce-account .my-account-notifications p {
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

body.woocommerce-account .my-account-notifications p:before {
    content: "☑";
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    body.woocommerce-account h1.entry-title {
        font-size: 24px;
    }
    
    body.woocommerce-account .my-account-bg-column {
        min-height: 300px;
        margin-bottom: 30px;
    }
    
    body.woocommerce-account .my-account-content-column {
        padding-left: 15px;
    }
    
    body.woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    body.woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px;
    }
    
    body.woocommerce-account .my-account-notifications {
        padding: 15px;
    }
}

/* Blog and Post Styles */

/* Single post layout */
.single-post .entry-header {
    margin-bottom: 30px;
}

.single-post .entry-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.single-post .entry-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.single-post .entry-meta a {
    color: #0b84c8;
    text-decoration: none;
}

.single-post .entry-meta a:hover {
    text-decoration: underline;
}

.single-post .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content a {
    color: #0b84c8;
    text-decoration: none;
}

.single-post .entry-content a:hover {
    text-decoration: underline;
}

/* Post navigation */
.post-navigation {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    max-width: 45%;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

/* Search Results Styles */
.search-results .page-header {
    margin-bottom: 40px;
}

.search-results .page-title span {
    color: #0b84c8;
    font-weight: 700;
}

.search-results-content {
    margin-bottom: 40px;
}

.search-results article {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.search-results article:hover {
    transform: translateY(-3px);
}

.search-results .entry-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.search-results .entry-title a {
    color: #333;
    text-decoration: none;
}

.search-results .entry-title a:hover {
    color: #0b84c8;
}

.search-results .entry-summary {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.search-results .entry-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 14px;
}

.search-results .entry-footer a {
    color: #0b84c8;
    text-decoration: none;
}

.search-results .entry-footer a:hover {
    text-decoration: underline;
}

/* Search sidebar */
.search-sidebar .widget {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-sidebar .widget-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #0b84c8;
    padding-bottom: 10px;
}

.search-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-sidebar .widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.search-sidebar .widget li:last-child {
    border-bottom: none;
}

.search-sidebar .widget a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-sidebar .widget a:hover {
    color: #0b84c8;
}

.search-sidebar .post-date,
.search-sidebar .post-count {
    font-size: 12px;
    color: #666;
    margin-left: 10px;
}

/* Search form */
.search-form {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #0b84c8;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-submit {
    background: #0b84c8;
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: #0056b3;
}

.search-icon {
    width: 16px;
    height: 16px;
}

/* 404 Error Page Styles */
.error-404 .page-header {
    margin-bottom: 40px;
    text-align: center;
}

.error-404 .page-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.error-404 .error-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-404 .error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.error-404 .error-content {
    text-align: center;
}

.error-404 .error-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.error-404 .error-actions {
    margin-top: 40px;
}

.error-404 .error-actions h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.error-404 .search-form-wrapper {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.error-404 .helpful-links,
.error-404 .categories-links {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.error-404 .helpful-links ul,
.error-404 .categories-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-404 .helpful-links li,
.error-404 .categories-links li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.error-404 .helpful-links li:last-child,
.error-404 .categories-links li:last-child {
    border-bottom: none;
}

.error-404 .helpful-links a,
.error-404 .categories-links a {
    color: #0b84c8;
    text-decoration: none;
    font-weight: 500;
}

.error-404 .helpful-links a:hover,
.error-404 .categories-links a:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination .page-numbers {
    background: white;
    color: #666;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #0b84c8;
    color: white;
    text-decoration: none;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    padding: 10px 20px;
    font-weight: 600;
}

/* Responsive design for blog elements */
@media (max-width: 768px) {
    .single-post .entry-title {
        font-size: 28px;
    }
    
    .single-post .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        max-width: 100%;
        text-align: center;
    }
    
    .search-results article {
        padding: 20px;
    }
    
    .search-results .entry-title {
        font-size: 20px;
    }
    
    .error-404 .page-title {
        font-size: 32px;
    }
    
    .error-404 .error-actions {
        margin-top: 30px;
    }
}

/* Popular Tags Widget Styles */
.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.popular-tags .tag-link {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.popular-tags .tag-link:hover {
    background: #0b84c8;
    color: white;
    text-decoration: none;
    border-color: #0b84c8;
}

/* Search Results specific styles */
.search-results-page .search-title span {
    color: #0b84c8;
    font-weight: 700;
}

.search-results-page .search-meta {
    color: #666;
    font-style: italic;
}
button.single_add_to_cart_product.button {
  display: none;
}
@media (min-width: 1025px) {
  .single-product-wrapper {
    padding: 0px 0;
  }
}
.woocommerce-variation.single_variation {
    margin-bottom: 20px;
}
.single-product-content .product-summary .cart {
    display: block !important;
}
.single-product-wrapper {
  padding: 40px 0;
  max-width: 1500px;
  margin: 0 auto;
}
  #mega-menu-main button.mobile-toggle {
    display: none;
  }

/* dl.tm-extra-product-options-totals {
  flex-wrap: nowrap;
  position: relative;
  margin-bottom: 10px;
  border: 1px solid #176994;
  height: auto;
  min-height: 80px;
  padding: 0px 20px;
  width: auto;
  max-width: 361px;
  border-radius: 4px;
} */
/* .archive.tax-product_cat span.woocommerce-Price-amount.amount {
  display: none !important;
} */
        /* .yith-rule-price {
            margin-bottom: 5px;
            font-size: 14px;
            line-height: 1.4;
        }
        .yith-rule-price strong {
            color: #333;
        }
        .yith-rule-price small {
            color: #777;
            font-size: 12px;
        }
        .ywcrbp_regular_price{
            display: none !important;
        }
        .admin-bar .ywcrbp_regular_price{
            display: block !important;
        }
		.ywcrbp_regular_sale_price{
			text-align: center;
			padding-bottom: 10px;
			display: flex;
		}
        .term-28789.term-aed-batteries .ywcrbp-role-price-rule.single-product{
            display: none !important;
        }
		.tc-epo-metadata.variation {
			display: none;
		}
		.cart_item.has-customization .tc-epo-metadata.variation {
			display: block;
		} */

/* ============================================================================
   IMPROVED SALE PRICE STYLING - "Was €X.XX, Now €X.XX" Format
   ============================================================================ */

/* Sale price format styling */
.sale-price-format {
    display: block;
    font-weight: 600;
}

.sale-price-format .was-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
    font-weight: 400;
    display: block;
}

.sale-price-format .now-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1em;
}

/* Regular price format */
.regular-price-format,
.from-price {
    display: block;
    font-weight: 600;
    color: #333;
}

/* ex VAT suffix styling */
.woocommerce-price-suffix {
    color: #666;
    font-size: 0.85em;
    font-weight: 400;
    margin-left: 5px;
}

/* Single Product Page Specific Styling */
.single-product .sale-price-format.single-product-sale,
.single-product .sale-price-format.single-variation-sale,
.single-product .sale-price-format.single-variable-sale {
    font-size: 24px;
    margin-bottom: 10px;
}

.single-product .sale-price-format .was-price {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.single-product .sale-price-format .now-price {
    display: block;
    font-size: 24px;
    color: #e74c3c;
    font-weight: 700;
}

.single-product .regular-price-format.single-product-regular,
.single-product .regular-price-format.single-variation-regular,
.single-product .regular-price-format.single-variable-regular {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* Hide default WooCommerce sale styling on single product pages */
.single-product .woocommerce-variation-price del,
.single-product .price del {
    display: none;
}

.single-product .woocommerce-variation-price ins,
.single-product .price ins {
    display: none;
}

.single-product .screen-reader-text {
    display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .sale-price-format {
        font-size: 14px;
    }
    
    .sale-price-format .was-price,
    .sale-price-format .now-price {
        display: block;
        margin-bottom: 2px;
    }
    
    .sale-price-format .now-price {
        font-size: 1em;
    }
    
    /* Single product mobile adjustments */
    .single-product .sale-price-format.single-product-sale,
    .single-product .sale-price-format.single-variation-sale,
    .single-product .sale-price-format.single-variable-sale {
        font-size: 18px;
    }
    
    .single-product .sale-price-format .was-price {
        font-size: 14px;
    }
    
    .single-product .sale-price-format .now-price {
        font-size: 20px;
    }
    
    .single-product .regular-price-format.single-product-regular,
    .single-product .regular-price-format.single-variation-regular,
    .single-product .regular-price-format.single-variable-regular {
        font-size: 18px;
    }
}

/* ============================================================================
   RELATED ACCESSORIES SECTION STYLING
   ============================================================================ */

.related-accessories-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.accessories-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #0b84c8;
    padding-bottom: 10px;
}

.accessories-table {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.accessories-table tbody tr {
    border: none;
}

.accessories-table tbody tr:hover {
    background-color: #f1f3f4;
}

.accessory-image-cell {
    width: 80px;
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.accessory-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

.accessory-image-link:hover .accessory-thumbnail {
    transform: scale(1.05);
}

.accessory-details-cell {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.accessory-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.accessory-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.accessory-link:hover {
    color: #0b84c8;
    text-decoration: none;
}

.accessory-action-cell {
    width: 150px;
    padding: 15px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.accessory-add-to-cart .button {
    background: #0b84c8;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.2s ease;
    min-width: 100px;
}

.accessory-add-to-cart .button:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.accessory-add-to-cart .added_to_cart {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    color: #28a745;
    text-decoration: none;
}

.woocommerce a.added_to_cart {
    margin-left: 10px;
}
.woocommerce-message::before {
    content: ""!important;
}
/* Mobile responsive */
@media (max-width: 768px) {
    .related-accessories-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .accessories-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .accessory-image-cell {
        width: 60px;
        padding: 10px;
    }
    
    .accessory-thumbnail {
        width: 45px;
        height: 45px;
    }
    
    .accessory-details-cell {
        padding: 10px 15px;
    }
    
    .accessory-name {
        font-size: 14px;
    }
        
    .accessory-action-cell {
        width: 120px;
        padding: 10px;
    }
    
    .accessory-add-to-cart .button {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .accessories-table {
        font-size: 14px;
    }
    
    .accessory-image-cell {
        width: 50px;
        padding: 8px;
    }
    
    .accessory-thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .accessory-details-cell {
        padding: 8px 10px;
    }
    
    .accessory-action-cell {
        width: 100px;
        padding: 8px;
    }
    
    .accessory-add-to-cart .button {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 70px;
    }
}

/* ============================================================================
   AJAX ADD TO CART ENHANCEMENTS
   ============================================================================ */

/* Loading state for add to cart button */
.single_add_to_cart_button.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.single_add_to_cart_button.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success state */
.single_add_to_cart_button.added {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Success message styling */
.woocommerce-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 12px 20px;
    margin: 15px 0;
    font-weight: 500;
    position: relative;
    animation: slideInDown 0.5s ease;
}


/* Error message styling */
.woocommerce-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 12px 20px;
    margin: 15px 0;
    font-weight: 500;
    position: relative;
    animation: slideInDown 0.5s ease;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for button states */
.single_add_to_cart_button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Mini cart update animation */
.woo-cart-count {
    transition: all 0.3s ease;
}

.woo-cart-count.updated {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}
.product-type-variable .product-summary p.price {
    display: none;
}
.product-summary p.stock {
    display: none;
}
.out-of-stock-product {
    opacity: 0.6;
    position: relative;
}
.out-of-stock-product::before {
    content: "Out of Stock";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
    text-transform: uppercase;
}
.out-of-stock-product .woocommerce-loop-product__title {
    text-decoration: line-through;
    }
.out-of-stock-product .price {
    opacity: 0.7;
}
.attachment-266x266, .thumbnail img {
    width: 100% !important;
    height: auto !important;
}
@media (max-width: 768px) {
  .header-search {
    display: block;
    position: absolute;
      top: 61px;
      z-index: 9999;
      left: 0px;
      width: 100%;
      padding: 10px;
      background-color: #0083C7;
      max-width: 100%;
  }
  .header-search .search-form {
    margin-bottom: 0px!important;
  }
}