/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

html {
    scroll-behavior: smooth;
    /* Gives a smooth sliding effect to anchors */
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.wc-block-components-button:hover .wc-block-components-button__text {
    color: #fff;
}

.wc-block-components-sidebar-layout.wc-block-cart {
    padding-top: 50px;
}

/* ==========================================================================
   front-page
   ========================================================================== */
.custom-front-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    background-color: #fafafa;
}

.fp-hero {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.fp-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.fp-subtitle {
    font-size: 1.25rem;
    color: #596a7b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.fp-products-section {
    padding: 80px 20px;
	background-color: #fff;
}

.fp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fp-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
	    width: 100%;
}

    height: 250px;
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fp-no-image {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.fp-product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-product-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fp-product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.fp-product-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fp-product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.fp-product-price span.woocommerce-Price-amount {
    color: inherit;
}

.fp-btn-view {
    display: inline-block;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fp-btn-view:hover {
    background-color: #1a252f;
    color: #fff;
}

/* ==========================================================================
   header
   ========================================================================== */


.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 999;
    max-width: 100% !important;
}



.site-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Because of RTL in HTML, this means Right */
}

.site-logo a {
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

.site-navigation {
    flex: 2;
    display: flex;
    justify-content: center;
    /* Centered in the middle */
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
}

.site-navigation a {
    text-decoration: none;
    color: #596a7b;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: inline-block;
}

/* Base state for the underline effect */
.site-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    right: 0;
    /* Starts from right because of RTL */
    background-color: #27ae60;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

/* Hover state changes color and grows underline */
.site-navigation a:hover {
    color: #27ae60;
}

.site-navigation a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* Active/Clicking state - gives it a satisfying bounce down */
.site-navigation a:active {
    transform: scale(0.92);
}

.site-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Because of RTL in HTML, this means Left */
}

.cart-link {
    background: #f4f6f8;
    padding: 8px 18px;
    border-radius: 30px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.cart-link:hover {
    background: #e2e8f0;
    color: #1a252f;
}

/* ==========================================================================
   About & Contact
   ========================================================================== */
.fp-about-section,
.fp-contact-section {
    padding: 80px 20px;
}

.fp-about-section {
    background-color:  var(--lufa-cream, #f0eae0) !important;
    text-align: center;
}

.fp-about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #596a7b;
}

.fp-contact-section {
    background-color: #fafafa;
    text-align: center;
}

.fp-contact-content {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #596a7b;
}

.contact-email {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #f0eae0;
    color: #ecf0f1;
    padding: 60px 0 0 0;
    font-family: 'Inter', sans-serif;
    margin-top: auto;

    /* Override Elementor parent theme limitations */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
	

  color: var(--bg-color) !important;
  border-top: 1px solid rgba(244, 239, 223, 0.2) !important;
}

.footer-container {
    width: 100%;
    padding: 0 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-desc {
    color: var(--lufa-green);
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 400px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
       color: var(--lufa-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #27ae60;
}

.footer-bottom {
    background-color: #141d24;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.copyright {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive (Mobile Header)
   ========================================================================== */

.site-actions {
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: flex;
    align-items: center;
    position: relative;
}

.hamburger-inner {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, opacity 0.2s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Active state for hamburger (X) */
.mobile-menu-toggle.is-active .hamburger-inner {
    background-color: transparent;
    /* hide the middle line */
}

.mobile-menu-toggle.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        padding: 0;
        flex-direction: column;
        display: none;
        /* Hidden by default on mobile */
        border-top: 1px solid #eaeaea;
    }

    .site-navigation.is-active {
        display: flex;
    }

    .site-navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .site-navigation li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .site-navigation li:last-child {
        border-bottom: none;
    }

    .site-navigation a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
    }

    .site-navigation a::after {
        display: none;
        /* remove hover line on mobile */
    }
}

/* ==========================================================================
   WooCommerce Cart Page
   ========================================================================== */

body.woocommerce-cart {
    background-color: #fafafa;
}

.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #596a7b;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 40px;
    width: 100%;
}

.woocommerce table.shop_table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 700;
    padding: 20px;
    border-bottom: 2px solid #eaeaea;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-top: none;
}

.woocommerce table.shop_table th:first-child {
    border-top-right-radius: 16px;
}

.woocommerce table.shop_table th:last-child {
    border-top-left-radius: 16px;
}

.woocommerce table.shop_table td {
    padding: 25px 20px;
    border-bottom: 1px solid #eaeaea;
    border-top: none;
    vertical-align: middle;
}

.woocommerce-cart .woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}

/* Product Info */
.woocommerce table.shop_table .product-name a {
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.woocommerce table.shop_table .product-name a:hover {
    color: #27ae60;
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Remove button */
.woocommerce a.remove {
    color: #e74c3c !important;
    font-weight: bold;
    font-size: 1.2rem;
    border: 1px solid #e74c3c;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    transition: all 0.2s ease;
}

.woocommerce a.remove:hover {
    background: #e74c3c !important;
    color: #ffffff !important;
}

/* Product Thumbnail */
.woocommerce table.shop_table .product-thumbnail img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Quantity Input */
.woocommerce .quantity .qty {
    border: 1px solid #eaeaea;
    border-radius: 30px;
    padding: 8px 15px;
    width: 80px;
    text-align: center;
    font-family: inherit;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
}

/* Coupon & Update Buttons */
.woocommerce table.shop_table .actions {
    padding: 25px 20px;
    background: #fdfbfb;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.woocommerce .coupon .input-text {
    border: 1px solid #eaeaea;
    border-radius: 30px;
    padding: 12px 20px;
    width: 200px;
    font-family: inherit;
    color: #2c3e50;
    box-shadow: none;
    background: #ffffff;
}

.woocommerce button.button,
.woocommerce a.button {
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-transform: none;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background-color: #1a252f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Checkout / Proceed Button */
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #27ae60;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #219653;
}

/* Disabled State */
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
    opacity: 0.6;
    background-color: #596a7b;
    color: #ffffff;
    cursor: not-allowed;
    transform: none;
}

/* Cart Collaterals (Totals) */
.woocommerce .cart-collaterals .cart_totals {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    float: left;
    /* Good for RTL */
}

html[dir="ltr"] .woocommerce .cart-collaterals .cart_totals {
    float: right;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
    margin-top: 0;
}

.woocommerce .cart-collaterals .cart_totals table.shop_table {
    border: none;
    box-shadow: none;
    margin-bottom: 20px;
    border-radius: 0;
    background: transparent;
}

.woocommerce .cart-collaterals .cart_totals table.shop_table th,
.woocommerce .cart-collaterals .cart_totals table.shop_table td {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    background: transparent;
    text-transform: none;
    font-size: 1rem;
    letter-spacing: normal;
}

.woocommerce .cart-collaterals .cart_totals table.shop_table th {
    color: #596a7b;
    font-weight: 600;
    border-top-right-radius: 0;
}

.woocommerce .cart-collaterals .cart_totals table.shop_table .order-total th,
.woocommerce .cart-collaterals .cart_totals table.shop_table .order-total td {
    border-bottom: none;
    font-size: 1.25rem;
}

.woocommerce .cart-collaterals .cart_totals table.shop_table .order-total td strong .amount {
    color: #27ae60;
    font-weight: 800;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout {
    padding-bottom: 0;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    border-radius: 30px;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .woocommerce .cart-collaterals .cart_totals {
        width: 100%;
        max-width: none;
        float: none;
        margin-top: 30px;
    }

    .woocommerce table.shop_table .actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .woocommerce .coupon {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .woocommerce .coupon .input-text {
        width: 100%;
    }

    .woocommerce .coupon button {
        width: 100%;
    }
}

/* ==========================================================================
   Empty Cart State & Cross-Sells (New in store)
   ========================================================================== */
.wp-block-woocommerce-cart {
    margin: auto;
}

.woocommerce-cart .cart-empty {
    text-align: center;
    font-size: 1.5rem;
    color: #596a7b;
    margin: 60px auto;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    font-weight: 500;
}

/* The WooCommerce sad face icon and border */
p.cart-empty.woocommerce-info {
    border-top-color: #27ae60;
}

p.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-bottom: 80px;
}

.woocommerce-cart .return-to-shop a.button {
    background-color: #27ae60;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.woocommerce-cart .return-to-shop a.button:hover {
    background-color: #219653;
}

/* ==========================================================================
   Cart Page Products Grid (Cross-sells / Up-sells / Recent Products)
   ========================================================================== */

.woocommerce-cart .cross-sells>h2,
.woocommerce-cart section.products>h2,
.woocommerce-cart .cart-collaterals h2,
.woocommerce-cart .woocommerce>h2:not(.cart_totals > h2) {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    margin-top: 80px;
}



.woocommerce-cart ul.products::before,
.woocommerce-cart ul.products::after {
    display: none;
}

.woocommerce-cart ul.products li.product {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100% !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}

.woocommerce-cart ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart ul.products li.product a.woocommerce-LoopProduct-link {
    text-decoration: none;
    display: block;
    flex-grow: 1;
}

.woocommerce-cart ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 25px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #fdfbfb;
}

.woocommerce-cart ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.woocommerce-cart ul.products li.product .price {
    font-size: 1.4rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.woocommerce-cart ul.products li.product .price del {
    color: #95a5a6;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 8px;
}

.woocommerce-cart ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce-cart ul.products li.product .button {
    margin-top: auto;
    width: 100%;
    background-color: #2c3e50;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 30px;
}

.woocommerce-cart ul.products li.product .button:hover {
    background-color: #1a252f;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .woocommerce-cart ul.products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .woocommerce-cart .cross-sells>h2,
    .woocommerce-cart section.products>h2,
    .woocommerce-cart .woocommerce>h2:not(.cart_totals > h2) {
        font-size: 2rem;
        margin-bottom: 30px;
        margin-top: 50px;
    }
}
/* LUFA Custom Styling */
:root {
  --primary-color: #4a5b4c;
  --bg-color: #f5efdf;
}
body {
  background-color: var(--bg-color) !important;
  color: var(--primary-color) !important;
}
/*
h1, h2, h3, h4, h5, h6, a, p, span {
  color: var(--primary-color) !important;
}
*/
.site-header {
  background-image: url('/wp-content/uploads/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 200px;
}

/* ==========================================================================
   LUFA HIGH-END BRAND OVERRIDE (AI GENERATED)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary-color: #4a5b4c !important;
  --bg-color: #f4efdf !important;
  --accent-color: #3b483c !important;
  --text-muted: #6e8471 !important;
}

body, .custom-front-page {
  background-color: var(--bg-color) !important;
  color: var(--primary-color) !important;
  font-family: 'Lato', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .fp-title, .fp-section-title, .logo-text, .product-title, .site-title {
  font-family: 'Playfair Display', serif !important;
  color: var(--primary-color) !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
}

.site-header {
  background-color: var(--bg-color) !important;
  border-bottom: 1px solid rgba(74, 91, 76, 0.1) !important;
  background-image: url('/wp-content/uploads/logo.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  min-height: 250px !important;
}

/* Hide default text logo since we have the image */
.logo-text, .site-logo { display: none !important; }

.site-navigation a {
  color: var(--primary-color) !important;
  font-family: 'Lato', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 0.95rem !important;
}

.site-navigation a::after {
  background-color: var(--primary-color) !important;
  height: 1px !important;
}

.site-navigation a:hover {
  color: var(--accent-color) !important;
}

/* High-end Buttons */
.cart-link, .fp-btn-view, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button {
  background-color: var(--primary-color) !important;
  color: var(--bg-color) !important;
  border-radius: 2px !important; 
  font-family: 'Lato', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 400 !important;
  border: 1px solid var(--primary-color) !important;
  transition: all 0.3s ease !important;
  padding: 12px 28px !important;
}

.cart-link:hover, .fp-btn-view:hover, .woocommerce button.button:hover, .woocommerce a.button:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: var(--primary-color) !important;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
}

/* Products grid & Cards */
.fp-product-card {
  background-color: #faf5e8 !important;
  border: 1px solid rgba(74, 91, 76, 0.15) !important;
  box-shadow: none !important;
  border-radius: 0 !important; 
}

.fp-product-card:hover {
  box-shadow: 0 15px 30px rgba(74, 91, 76, 0.08) !important;
  transform: translateY(-4px) !important;
}

.fp-hero {
  background: var(--bg-color) !important;
  border-bottom: 1px solid rgba(74, 91, 76, 0.1) !important;
}

.footer-bottom {
  background-color: var(--accent-color) !important;
}

.footer-links h4::after {
  background-color: var(--bg-color) !important;
}

.fp-product-price, .woocommerce table.shop_table .product-price, .woocommerce table.shop_table .product-subtotal {
  color: var(--primary-color) !important;
  font-family: 'Playfair Display', serif !important;
}

.woocommerce table.shop_table th {
  background-color: var(--bg-color) !important;
  color: var(--primary-color) !important;
  border-bottom: 1px solid var(--primary-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.woocommerce table.shop_table {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid rgba(74, 91, 76, 0.1) !important;
}

.fp-no-image {
  color: var(--primary-color) !important;
  opacity: 0.3;
}
.fp-product-image-placeholder {
  background: rgba(74, 91, 76, 0.05) !important;
}

/* LUFA V6.2 SURGICAL FIX */
:root { --lufa-cream: #f0eae0; --lufa-green: #4a5b4c; }
.site-logo { display: flex !important; min-width: 150px !important; }
.site-header { background-image: none !important; min-height: auto !important; background-color: var(--lufa-cream) !important; padding: 10px 0 !important; }

.lufa-v6-header .lufa-logo-img { height: 60px !important; width: auto !important; display: block !important; opacity: 1 !important; visibility: visible !important; }
.fp-hero { padding: 45px 20px !important; background-color: var(--lufa-cream) !important; }


/* ==========================================================================
   LUFA V7 - PREMIUM AESTHETIC POLISH
   ========================================================================== */
.lufa-v6-header .lufa-logo-img {
    height: 85px !important; /* Increased presence */
    transition: all 0.3s ease !important;
}

.lufa-v6-header .site-navigation ul {
    gap: 40px !important; /* Better spacing between links */
}

.lufa-v6-header .site-navigation a {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    color: var(--lufa-green) !important;
}

.lufa-v6-header .cart-link {
    background-color: var(--lufa-green) !important;
    color: var(--lufa-cream) !important;
    padding: 8px 22px !important;
    border-radius: 40px !important; /* Premium pill shape */
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 12px rgba(74, 91, 76, 0.1) !important;
}

.lufa-v6-header .cart-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(74, 91, 76, 0.15) !important;
}

.fp-hero {
    padding: 30px 20px !important; /* Even more compact */
}

.fp-title {
    font-size: 3.2rem !important;
    font-weight: 750 !important;
    margin-bottom: 5px !important;
    letter-spacing: -0.5px !important;
}

.fp-subtitle {
    font-size: 1.25rem !important;
    opacity: 0.9 !important;
    font-weight: 450 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

.fp-section-title {
    font-size: 2.4rem !important;
    margin-bottom: 40px !important;
    position: relative !important;
    display: inline-block !important;
}

.fp-section-title::after {

 position: absolute;
 bottom: -10px;
 left: 50%;
 transform: translateX(-50%);
 width: 60px;
 height: 2px;
 background-color: var(--lufa-green);
 opacity: 0.2;
}


/* ==========================================================================
   LUFA V8 - SYMMETRICAL CENTERED HEADER (APPEND ONLY)
   ========================================================================== */
.lufa-v6-header .header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important; /* Keep original order, RTL handles direction */
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.lufa-v6-header .site-navigation,
.lufa-v6-header .site-logo,
.lufa-v6-header .site-actions {
    flex: 1 !important; /* Forces equal 33.3% width folders */
    display: flex !important;
    align-items: center !important;
}

/* RTL Specific Positional Justification */
.lufa-v6-header .site-navigation {
    justify-content: center; /* Right side in RTL */
}

.lufa-v6-header .site-logo {
    justify-content: right /* Optically Centered */
}

.lufa-v6-header .site-actions {
    justify-content: flex-end !important; /* Left side in RTL */
}

/* Vertically aligning mobile toggle if present */
.lufa-v6-header .mobile-menu-toggle {
    margin-right: 15px !important;
}
.lufa-v6-header .mobile-menu-toggle:hover, .lufa-v6-header .mobile-menu-toggle:focus {
	    background-color: transparent;
}


/* ==========================================================================
   LUFA V10 - ENHANCED OUT OF STOCK (PROMINENT)
   ========================================================================== */
.fp-product-card.is-out-of-stock {
    position: relative !important;
}

.fp-product-card.is-out-of-stock .fp-product-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 239, 223, 0.4); /* Subtle cream overlay */
    z-index: 5;
    pointer-events: none;
}

.fp-out-of-stock-badge {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    background-color: #8b0000 !important; /* Elegant Dark Red */
    color: #fff !important;
    padding: 12px 24px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    z-index: 25 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    border-bottom-left-radius: 15px !important;
    border-radius: 0 0 0 15px !important;
    letter-spacing: 0.5px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
}

.fp-product-card.is-out-of-stock .fp-product-image-placeholder img {
    opacity: 0.4 !important;
    filter: grayscale(1) !important;
    transition: all 0.6s ease !important;
}

.fp-product-card.is-out-of-stock .fp-product-title,
.fp-product-card.is-out-of-stock .fp-product-price {
    opacity: 0.5 !important;
}



/* ==========================================================================
   LUFA V11 - SUBTLE GREY OUT OF STOCK BADGE
   ========================================================================== */
.fp-out-of-stock-badge {
    background-color: #555555 !important; /* Subtle Charcoal Grey */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}
.fp-product-category { font-size: 0.85rem; color: #8fa193; text-transform: uppercase; margin-bottom: 5px; display: block; font-weight: 500; }
.fp-product-badge { position: absolute; top: 15px; left: 15px; background-color: rgba(255, 255, 255, 0.95) !important; color: #4a5b4c !important; padding: 4px 12px !important; font-size: 0.72rem !important; font-weight: 700 !important; border-radius: 4px !important; text-transform: uppercase !important; z-index: 10 !important; text-decoration: none !important; box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important; transition: all 0.3s ease !important; letter-spacing: 0.5px !important; } .fp-product-badge:hover { background-color: #4a5b4c !important; color: #ffffff !important; transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important; }


/* ==========================================================================
   PRODUCT GRID — DEFINITIVE BLOCK (replaces all previous attempts)
   CSS Grid + direction:rtl for RTL column ordering
   One block only — no patches, no duplicates
   ========================================================================== */

/* --[ GRID CONTAINER ]-- */
.fp-product-grid,
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products,
.elementor-widget-container ul.products {
    display: flex;
    gap: 20px;
    direction: rtl;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

/* --[ GRID ITEMS ]-- */


/* --[ PRODUCT CARD ]-- */
.fp-product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none !important;
    width: calc(33.3% - 20px);
}

.fp-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --[ IMAGE AREA ]-- */
.fp-product-image-placeholder {
    height: 400px;
    background: #f5f2e9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.fp-product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fp-no-image {
    color: rgba(0,0,0,0.1);
    font-size: 3rem;
}

/* --[ CATEGORY BADGE — LEFT side in RTL ]-- */
.fp-product-badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    background-color: rgba(255,255,255,0.95) !important;
    color: #4a5b4c !important;
    padding: 4px 12px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    z-index: 10 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}
.fp-product-badge:hover {
    background-color: #4a5b4c !important;
    color: #ffffff !important;
}

/* --[ OUT-OF-STOCK BADGE — RIGHT side in RTL ]-- */
.fp-out-of-stock-badge {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    background: rgba(120,120,115,0.85) !important;
    color: #ffffff !important;
    padding: 4px 14px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    z-index: 11 !important;
    border-radius: 0 0 0 8px !important;
    letter-spacing: 0.5px !important;
}

/* --[ CARD CONTENT ]-- */
.fp-product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
    direction: rtl;
	background-color: #fff;
    text-align: center;
}
.fp-product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5b4c;
    margin: 0 0 8px 0;
}
.fp-product-excerpt {
    font-size: 0.9rem;
    color: #718096;
    margin: 0 0 16px 0;
    line-height: 1.5;
}
.fp-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a5b4c;
    margin-top: auto;
    margin-bottom: 16px;
}
.fp-btn-view {
    display: block;
    width: 100%;
    padding: 12px;
    background: #4a5b4c;
    color: #ffffff !important;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.3s ease;
    box-sizing: border-box;
}
.fp-btn-view:hover { background: #3d4a3e; }
.fp-btn-view.fp-btn-disabled {
    background: #b0b7af !important;
    /*
	cursor: default !important;
    pointer-events: none !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
	*/
	
	background-color: #6e8471 !important; /* Muted Green */
    border-color: #6e8471 !important;
    color: rgba(255, 255, 255, 0.6) !important;
   
    
}

/* --[ OUT-OF-STOCK CARD STATE ]-- */
.fp-product-card.fp-out-of-stock .fp-product-image-placeholder img,
.fp-product-card.fp-out-of-stock .fp-no-image {
    opacity: 0.6;
}

/* --[ RESPONSIVE ]-- */
@media (max-width: 960px) {
    .fp-product-grid,
    ul.products,
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .elementor-widget-container ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .fp-product-grid,
    ul.products,
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .elementor-widget-container ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   NEW HERO SECTION REDESIGN (APRIL 2026)
   ========================================================================== */
.fp-hero-section {
    position: relative !important;
    background-image: url('https://www.lu-fa.com/wp-content/uploads/2026/04/hero1-1.jpg') !important;
    background-size: cover !important;
    background-position: center -360px;
    height: 75vh !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.fp-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 1 !important;
}

.fp-hero-container {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    max-width: 850px !important;
    direction: rtl !important;
    margin: 0 auto !important;
	    top: -300px;
}

.fp-hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
    color: #ffffff !important;
}

.fp-hero-subtitle {
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
    font-weight: 400 !important;
    margin-bottom: 25px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    opacity: 0.95 !important;
    color: #ffffff !important;
    border: none !important;
}

.fp-hero-description {
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(1rem, 3vw, 1.2rem) !important;
    line-height: 1.8 !important;
    font-weight: 300 !important;
    margin: 0 auto !important;
    max-width: 700px !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2) !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .fp-hero-section {
        height: 60vh !important;
        min-height: 380px !important;
    }
    .fp-hero-title { font-size: 2.5rem !important; }
}

.fp-hero-section {
    height: 100vh !important;
    min-height: 600px !important;
}

/* Hero Logo positioning - Added 2026-04-05 */
.fp-hero-logo {
    position: absolute !important;
    top: 40px !important;
    right: 60px !important;
    z-index: 100 !important;
}

.fp-hero-logo img {
    height: 140px !important;
    width: auto !important;
    display: block !important;
}



/* Hero Layering Corrected - Added 2026-04-05 */
.fp-hero-overlay {
    z-index: 1 !important;
}

.fp-hero-container {
    z-index: 2 !important;
    position: relative !important;
}

.fp-hero-logo {
    z-index: 3 !important;
    position: absolute !important;
}

/* Hero Layering Revised (Under Overlay) - Added 2026-04-05 */
.fp-hero-logo {
    z-index: 1 !important;
    filter: brightness(1.25) contrast(1.1) !important;
}

.fp-hero-overlay {
    z-index: 2 !important;
    pointer-events: none !important;
}

.fp-hero-container {
    z-index: 3 !important;
    position: relative !important;
}

/* --- Premium Contact Section Redesign (Added 2026-04-05) --- */

.contact .fp-container {
    max-width: 800px !important;
    margin: 0 auto;
}

.fp-contact-content {
    margin: 0 auto 60px auto;
    text-align: center;
    max-width: 650px;
}

.fp-contact-content p {
    font-size: 1.25rem;
    color: #4a5b4c;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Lato', sans-serif;
}

.contact-email {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--lufa-green);
    letter-spacing: 0.5px;
    display: inline-block;
    border-bottom: 2px solid rgba(74, 91, 76, 0.2);
    padding-bottom: 5px;
}

/* Contact Form 7 Bespoke Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wpcf7-form p {
    margin: 0 !important;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-text, 
.wpcf7-textarea {
    width: 100% !important;
    padding: 18px 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(74, 91, 76, 0.15) !important;
    border-radius: 12px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 1.1rem !important;
    color: #4a4a4a !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
    box-sizing: border-box !important;
	margin-top: 10px;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
    outline: none !important;
    border-color: var(--lufa-green) !important;
    box-shadow: 0 4px 15px rgba(74, 91, 76, 0.08) !important;
    transform: translateY(-1px);
}

.wpcf7-textarea {
    height: 180px !important;
    resize: none !important;
}

/* Submit Button - Premium Branding */
.wpcf7-submit {
    width: auto !important;
    min-width: 250px;
    margin: 20px auto 0 auto !important;
    padding: 20px 50px !important;
    background-color: var(--lufa-green) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 100px !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    letter-spacing: 1px;
    cursor: pointer !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 25px rgba(74, 91, 76, 0.25) !important;
    display: block !important;
}

.wpcf7-submit:hover {
    background-color: #3b483c !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(74, 91, 76, 0.35) !important;
}

.wpcf7-submit:active {
    transform: translateY(-2px) scale(1.0) !important;
}

/* Mobile Adjustments (Critical) */
@media (max-width: 768px) {
    .contact {
        padding: 80px 20px !important;
    }
    
    .fp-contact-content p {
        font-size: 1.1rem;
    }
    
    .contact-email {
        font-size: 1.3rem;
    }
    
    .wpcf7-text, 
    .wpcf7-textarea {
        padding: 15px 18px !important;
        font-size: 1rem !important;
    }
    
    .wpcf7-submit {
        width: 100% !important;
        padding: 18px !important;
        font-size: 1.25rem !important;
    }
}

/* --- Refined Contact Layout (Center & 2-Col Desktop) - Added 2026-04-05 --- */
/* Override previous centering/layout styles */
.contact .fp-section-title {
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    float: none !important;
}

.fp-contact-content {
    text-align: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.wpcf7-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 850px !important;
    margin: 0 auto !important;
}

/* Target first two paragraphs for 2-column layout */
.wpcf7-form p:nth-of-type(1),
.wpcf7-form p:nth-of-type(2) {
    grid-column: span 1 !important;
}

/* Everything else spans full width */
.wpcf7-form p:nth-of-type(n+3),
.wpcf7-form .wpcf7-submit {
    grid-column: 1 / -1 !important;
}

.wpcf7-submit {
    justify-self: center !important;
    margin-top: 30px !important;
}

/* Force centering for the text and elements */
#contact .fp-container {
    text-align: center !important;
}

/* Mobile: Stack items vertically */
@media (max-width: 768px) {
    .wpcf7-form {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .wpcf7-form p:nth-of-type(n) {
        grid-column: 1 / -1 !important;
    }
    
    .wpcf7-submit {
        width: 100% !important;
        margin-top: 20px !important;
    }
}

/* --- Final Refinements: Right-Align Labels & Unified Block Width - Added 2026-04-05 --- */
.fp-contact-content {
    max-width: 850px !important;
    margin: 0 auto 50px auto !important;
}

/* Force everything in the contact block to feel like a single cohesive unit */
#contact .fp-container {
    max-width: 850px !important;
    margin: 0 auto !important;
}

.wpcf7-form p {
    text-align: right !important;
    color: var(--lufa-green) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
}

/* Re-center the submit button wrapper specifically */
.wpcf7-form p:last-child {
    text-align: center !important;
}

.wpcf7-submit {
    justify-self: center !important;
}

/* Clear branding for the response message */
.wpcf7-response-output {
    text-align: center !important;
    border-radius: 8px !important;
    margin: 20px auto 0 auto !important;
}

/* --- Correcting Message Field Span & Unified Grid - Added 2026-04-05 --- */
/* Reset grid behavior and ensure the message row spans both columns */
.wpcf7-form p {
    margin-bottom: 0 !important;
}

.wpcf7-form-control-wrap {
    width: 100% !important;
    display: block !important;
}

.wpcf7-form p:nth-of-type(1),
.wpcf7-form p:nth-of-type(2) {
    grid-column: span 1 !important;
}

/* Ensure the 3rd element (usually Message or Subject) and everything after spans full width */
.wpcf7-form p:nth-of-type(n+3) {
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

/* Specifically target the textarea for absolute certainty */
.wpcf7-textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

/* Center the submit button across the grid */
.wpcf7-submit {
    grid-column: 1 / -1 !important;
    width: auto !important;
    min-width: 280px !important;
}

/* --- Final Contact Grid Alignment Fix - Added 2026-04-05 --- */
/* Reset any previous grid-span logic to avoid conflicts */
.wpcf7-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 850px !important;
    margin: 0 auto !important;
}

/* Force all form paragraphs to take full width by default */
.wpcf7-form p {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-bottom: 0 !important;
}

/* Override only the first two visible input blocks to share the same row */
.wpcf7-form p:nth-of-type(1),
.wpcf7-form p:nth-of-type(2) {
    grid-column: span 1 !important;
}

/* Force the third paragraph (usually the Message) to span both columns */
.wpcf7-form p:nth-of-type(3), 
.wpcf7-form p:has(textarea) {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
}
.wpcf7-form p:nth-of-type(3) label {
	width: 100%;
}
/* Ensure the textarea and submit button are perfectly centered/full-width */
.wpcf7-textarea {
    width: 100% !important;
    max-width: 100% !important;
}

.wpcf7-submit {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
}
.wpcf7-form label {
    font-size: 14px;
}

/* --- Mobile Menu Robust Fix (Added 2026-04-05) --- */
@media (max-width: 768px) {
   .fp-hero-logo {
        top: 25px !important;
        right: 25px !important;
    }
    .fp-hero-logo img {
        height: 100px !important;
    }

   /* Ensure the mobile nav is hidden by default using high specificity */
    header.site-header.lufa-v6-header .site-navigation {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #ffffff !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
        z-index: 9999 !important;
        width: 100% !important;
        padding: 0 !important;
    }

    /* Override to show when active */
    header.site-header.lufa-v6-header .site-navigation.is-active {
        display: flex !important;
    }
	.fp-hero-container {
		top: initial;
	}
	.fp-product-card {
		width: 100%;
	}
	.footer-info {
		text-align: center;
	}
	.footer-links {
		text-align: center;
	}


    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        min-height: 80px !important;
    }

    /* Center Logo optically */
    .site-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 5 !important;
    }

    .site-logo img {
        height: 50px !important; /* Scaled for mobile */
    }

    /* Site Actions split via display: contents */
    .site-actions {
        display: contents !important;
    }

    /* Cart - Right side (RTL) */
    .cart-link {
        order: 1 !important;
        font-size: 0 !important; /* Hides  עגלה */
        display: flex !important;
        align-items: center !important;
        z-index: 10 !important;
        padding-right: 15px !important;
    }

    .cart-link .cart-icon {
        font-size: 1.6rem !important;
        line-height: 1 !important;
    }

    /* Hamburger - Left side (RTL) */
    .mobile-menu-toggle {
        order: 3 !important;
        margin-left: 15px !important;
        margin-right: 0 !important;
        z-index: 10 !important;
    }
    
    /* Ensure Nav starts at 100% width and correct position */
    .site-header.lufa-v6-header .site-navigation {
        top: 80px !important; /* Match min-height of header */
    }
	.lufa-v6-header .site-logo {
		justify-content: center /* Optically Centered */;
	}
	.cart-text {
		display: none;
	}
	.lufa-v6-header .cart-link {		
		padding: 8px 6px !important;		
		right: 15px;
		position: absolute;
	}
	.lufa-v6-header .lufa-logo-img {
		height: 60px !important;
	}
	.lufa-v6-header .header-container {
		padding: 0px 0px 0px 0px;
	}
	.header-scrolled .site-header {
		padding: 0px !important;
	}
	.lufa-v6-header .site-navigation ul {
		gap: 0px !important;
	}
	.woocommerce .woocommerce-breadcrumb {
		margin: 10px 0px 10px 0px;
	}
}

/* ==========================================================================
   CONSOLIDATED PREMIUM CUSTOM STYLES (Restored 2026-04-05)
   ========================================================================== */

/* 1. Sticky Header Behavior - Homepage Only */
.home .site-header {
    position: fixed !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateY(-20px) !important;
    background-color: var(--lufa-cream, #f0eae0) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

.home.header-scrolled .site-header {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* 2. Hero Logo positioning & filters */
.fp-hero-logo {
    position: absolute !important;
    top: 60px !important;
    right: 80px !important;
    z-index: 1 !important;
}

.fp-hero-logo img {
    height: 160px !important;
    width: auto !important;
    display: block !important;
    filter: brightness(1.2) contrast(1.1) !important;
}

.fp-hero-overlay {
    z-index: 2 !important;
}
.woocommerce .woocommerce-breadcrumb {
    margin: 0;
    padding: 15px 0px;
}
.woocommerce .products ul, .woocommerce ul.products {
    margin: 0px;
    padding-bottom: 50px !important;
}
.product_meta {
	flex-direction: column;
    display: flex;
    gap: 10px;
}
.related.products h2 {
	text-align: center;
}
.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0px;
    padding-bottom: 50px;
	    text-align: center;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: none;
}
.content-area {
	background-color: #fff;
}
/* 3. --- Premium Contact Section Redesign --- */
.contact {
    
	 
    background-color: #fff!important;
  
	
	padding: 120px 20px !important;
   
    position: relative;
    overflow: hidden;
}

.fp-contact-content {
    max-width: 850px !important;
    margin: 0 auto 50px auto !important;
    text-align: center !important;
}

.wpcf7-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    max-width: 850px !important;
    margin: 0 auto !important;
}

.wpcf7-form p {
    text-align: right !important;
    color: var(--lufa-green) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

.wpcf7-form p:nth-of-type(1),
.wpcf7-form p:nth-of-type(2) {
    grid-column: span 1 !important;
}

.wpcf7-form p:last-child {
    text-align: center !important;
}

.wpcf7-text, .wpcf7-textarea {
    width: 100% !important;
    padding: 18px 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(74, 91, 76, 0.15) !important;
    border-radius: 12px !important;
    transition: all 0.4s ease !important;
}

.wpcf7-submit {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    background-color: var(--lufa-green) !important;
    color: #ffffff !important;
    padding: 20px 60px !important;
    border-radius: 100px !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
}
.cart-link .emoji {
    width: 30px !important;
    height: 30px !important;
}
/* 4. Mobile Header & Menu Fixes */
@media (max-width: 768px) {
	.woocommerce .products ul, .woocommerce ul.products {
		padding-bottom: 0px !important;
	}
	.woocommerce div.product .woocommerce-tabs .panel {
		padding-bottom: 20px;
	}
	.fp-products-section {
		padding: 30px 20px;		
	}
	.cart-link .emoji {
		height: 1em !important;
		width: 1em !important;
	}
	   
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        min-height: 85px !important;
    }

    .site-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }

    .site-actions {
        display: contents !important;
    }

    .cart-link {
        order: 1 !important;
        font-size: 0 !important;
    }

    .cart-link .cart-icon {
        font-size: 1.6rem !important;
    }

    .mobile-menu-toggle {
        order: 3 !important;
        margin-left: 15px !important;
    }

    header.site-header.lufa-v6-header .site-navigation {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #ffffff !important;
        z-index: 9999 !important;
    }

    header.site-header.lufa-v6-header .site-navigation.is-active {
        display: flex !important;
    }
	.woocommerce .woocommerce-breadcrumb {
		margin: 10px 0px 10px 0px;
	}
	.site-header {
		padding: 0px 0 !important;
	}
	.contact {
		padding: 30px 20px 0px 20px!important;
	}
	.wc-block-components-sidebar-layout.wc-block-cart {
		padding-top: 10px;
	}
	.fp-hero-logo {
		position: absolute !important;
		top: auto !important;
		right: 115px !important;
		z-index: 1 !important;
		bottom: 150px;
	}
	.wpcf7-form p:nth-of-type(1), .wpcf7-form p:nth-of-type(2) {
		grid-column: span 2 !important;
	}
	.lufa-v6-header .site-logo {
        justify-content: center /* Optically Centered */;
        right: 8px;
        position: relative !important;
        top: 30px !important;
    }
}