:root {
    --primary-color: #bc8c48;
    --primary-color-hover: #121212;
    --text-color: #1d1d1f;
    --bg-color: #ffffff;
    --bg-light: #faf8f9;
    --border-color: #e5e5e5;
    --font-family: 'DM Sans', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 60px 0;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}
a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--text-color);
}
h2 {
    font-size: 2.5rem;
}
.text-center { text-align: center; }

/* Layout Elements */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: var(--section-padding);
}
.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-color-hover);
    color: #fff;
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}
.btn-secondary:hover {
    background-color: var(--text-color);
    color: #fff;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    flex: 1;
}
.header-center {
    flex: 2;
    text-align: center;
}
.header-right {
    justify-content: flex-end;
    gap: 20px;
}
.site-title {
    font-size: 1.5rem;
    margin: 0;
}
.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.main-navigation a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}
.header-icons button, .header-icons a {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.cart-customlocation {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    margin-right: 15px;
}
.mobile-menu-toggle .icon-bar {
    width: 25px;
    height: 2px;
    background: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
}
.heroSwiper .swiper-slide {
    height: 600px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.heroSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}
.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 600px;
    padding: 20px;
}
.hero-content h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Grids */
.category-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* WooCommerce Overrides */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    text-align: center;
}
.woocommerce ul.products li.product img {
    margin-bottom: 15px;
}
.woocommerce ul.products li.product .price {
    color: var(--primary-color);
}
.woocommerce ul.products li.product .button {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
}
.woocommerce ul.products li.product .button:hover {
    background-color: var(--primary-color-hover);
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.usp-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}
.usp-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.close-search-overlay {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--heading-color);
}
.search-overlay-content {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}
.search-overlay-content form {
    position: relative;
}
.search-overlay-content input[type="search"] {
    width: 100%;
    padding: 20px 0;
    font-size: 2rem;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    color: var(--heading-color);
}
.search-overlay-content input[type="search"]:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}
.search-overlay-content button[type="submit"] {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}
.footer-top {
    padding: 40px 0 30px;
}
.footer-widgets-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-widget ul {
    list-style: none;
}
.footer-widget ul li {
    margin-bottom: 10px;
}
.footer-newsletter-form {
    display: flex;
    margin-top: 15px;
}
.footer-newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 3px 0 0 3px;
}
.footer-newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}
.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 991px) {
    .category-grid, .products-grid, .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .header-center {
        display: none; /* Hide desktop menu */
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .heroSwiper .swiper-slide {
        height: 400px;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 576px) {
    .category-grid, .products-grid, .usp-grid {
        grid-template-columns: 1fr;
    }
    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--primary-color);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-color-light);
}
.faq-item.active .faq-question {
    color: var(--primary-color);
}
.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}
.faq-question .icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Custom Grid for Footer */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.footer-widget {
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
}
@media (max-width: 991.98px) {
    .col-lg-4, .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offset-lg-1 {
        margin-left: 0;
    }
}

/* Custom Single Product Page */
.custom-single-product-wrapper {
    font-family: 'DM Sans', sans-serif;
}
.custom-single-product-wrapper .product_title {
    line-height: 1.2;
}
.custom-single-product-wrapper .price-wrap .amount {
    font-size: 1.8rem;
    font-weight: 700;
}
.custom-single-product-wrapper .add-to-cart-wrap form.cart {
    display: flex;
    gap: 15px;
    align-items: center;
}
.custom-single-product-wrapper .add-to-cart-wrap .quantity input {
    padding: 10px;
    width: 70px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}
.custom-single-product-wrapper .add-to-cart-wrap button.single_add_to_cart_button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.custom-single-product-wrapper .add-to-cart-wrap button.single_add_to_cart_button:hover {
    background: #966f39;
}

/* Mini Cart Drawer */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mini-cart-drawer.active {
    right: 0;
}
.mini-cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mini-cart-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}
.close-mini-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: 0.3s ease;
}
.close-mini-cart:hover {
    color: var(--primary-color);
}
.mini-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.mini-cart-content .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mini-cart-content .woocommerce-mini-cart {
    flex: 1;
}
.mini-cart-content .woocommerce-mini-cart__buttons a {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 4px;
}

/* Checkout Page Styling */
.woocommerce-checkout h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}
.woocommerce-checkout form .form-row {
    margin-bottom: 20px;
}
.woocommerce-checkout form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout form .form-row select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
}
.woocommerce-checkout #order_review_heading {
    margin-top: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}
.woocommerce-checkout #order_review {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.woocommerce-checkout table.shop_table th {
    background: #f5f5f5;
    padding: 15px;
}
.woocommerce-checkout table.shop_table td {
    padding: 15px;
}
.woocommerce-checkout #payment {
    background: #fff;
    border-radius: 5px;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #eee;
}
.woocommerce-checkout #payment .place-order {
    padding: 20px 0 0 0;
}
.woocommerce-checkout #payment button#place_order {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}
.woocommerce-checkout #payment button#place_order:hover {
    background-color: #966f39;
}
/* ==========================================================================
   CART PAGE STYLES (ENHANCED)
   ========================================================================== */
.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}
.woocommerce-cart .woocommerce-cart-form {
    flex: 1;
    min-width: 60%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.woocommerce-cart .cart-collaterals {
    flex: 0 0 350px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.woocommerce-cart table.shop_table {
    border: none;
    border-radius: 0;
}
.woocommerce-cart table.shop_table th {
    background: transparent;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 15px 10px;
    color: var(--text-color);
}
.woocommerce-cart table.shop_table td {
    border-top: none;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 10px;
    vertical-align: middle;
}
.woocommerce-cart table.shop_table .product-thumbnail img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.woocommerce-cart table.shop_table .product-remove a.remove {
    color: #e74c3c !important;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 300;
}
.woocommerce-cart table.shop_table .product-remove a.remove:hover {
    background: #e74c3c !important;
    color: #fff !important;
}
.woocommerce-cart .actions {
    padding: 20px 0 0 0 !important;
    border: none !important;
}
.woocommerce-cart .actions .coupon input.input-text {
    width: 200px;
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
}
.woocommerce-cart .actions .button {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}
.woocommerce-cart .actions .button:hover {
    background-color: var(--primary-color-hover);
}
.woocommerce-cart .cart-collaterals h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.woocommerce-cart .cart-collaterals table.shop_table th, 
.woocommerce-cart .cart-collaterals table.shop_table td {
    padding: 15px 0;
}
.woocommerce-cart .cart-collaterals .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 15px !important;
    font-size: 1.1rem !important;
    margin-top: 20px;
    transition: 0.3s !important;
}
.woocommerce-cart .cart-collaterals .checkout-button:hover {
    background-color: var(--primary-color-hover) !important;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE ENHANCEMENTS
   ========================================================================== */
.woocommerce div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}
.woocommerce div.product div.images {
    flex: 1;
    min-width: 40%;
    max-width: 500px;
    margin-bottom: 2em;
}
.woocommerce div.product div.images img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 100%;
    height: auto;
    object-fit: cover;
}
.woocommerce div.product div.summary {
    flex: 1;
    min-width: 40%;
}
.woocommerce div.product .product_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}
.woocommerce div.product p.price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}
.woocommerce div.product form.cart {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.woocommerce div.product form.cart .quantity input.qty {
    width: 70px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 1.1rem;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
    height: 50px;
    border-radius: 25px;
    padding: 0 40px;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: #fff;
    transition: 0.3s;
    border: none;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
}

/* Tabs & Reviews */
.woocommerce div.product .woocommerce-tabs {
    width: 100%;
    margin-top: 60px;
    clear: both;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    border-bottom: 2px solid var(--border-color);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    list-style: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    display: inline-block;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px 0;
    line-height: 1.8;
}

/* Related Products */
.woocommerce .related.products {
    width: 100%;
    margin-top: 60px;
}
.woocommerce .related.products h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   MOBILE MENU OVERHAUL & RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
    .header-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        display: block !important;
        padding: 80px 30px 30px 30px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }
    
    .header-center.is-open {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-navigation ul li {
        width: 100%;
    }

    .main-navigation ul li a {
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-toggle {
        z-index: 10000;
        position: relative;
    }

    .mobile-menu-toggle.active .icon-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .icon-bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .icon-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dim overlay */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 9998;
        transition: 0.3s;
    }
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
    }
    body.menu-open {
        overflow: hidden;
    }
}

/* ==========================================================================
   POLISH UI ENHANCEMENTS (CART, CHECKOUT, PRODUCT CARD, SEARCH)
   ========================================================================== */

/* Cart Page Overlap Fix */
.woocommerce-cart .site-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Cart Buttons Upgrade (Apply Coupon & Proceed to Checkout) */
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    transition: 0.3s !important;
    border: none !important;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.woocommerce-cart table.cart td.actions .coupon .button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: var(--primary-color-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Checkout Buttons (Side-by-Side) */
.woocommerce-checkout #payment .place-order {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.woocommerce-checkout #payment .place-order .button {
    flex: 1;
    min-width: 200px;
    margin: 0 !important; /* Override standard margins */
    border-radius: 30px !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    font-weight: 600 !important;
}
/* Ensure the WhatsApp button styling matches closely but keeps green */
#payment .place-order a.button.alt[href*='wa.me'] {
    background-color: #25D366 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}
#payment .place-order a.button.alt[href*='wa.me']:hover {
    background-color: #1ebe57 !important;
    transform: translateY(-2px);
}

/* Product Card Title Link & Hover */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    position: relative;
    z-index: 10;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    pointer-events: auto; /* Ensure title is clickable */
    transition: 0.3s;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
    color: var(--primary-color);
}
/* Brown overlay on product image hover */
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    transition: 0.4s ease;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
    opacity: 0.8;
    filter: sepia(0.3) hue-rotate(-20deg); /* Subtle brown tint */
}
/* Ensure star rating is visible and styled */
.woocommerce ul.products li.product .star-rating {
    margin: 10px auto;
    font-size: 0.9em;
    color: var(--primary-color);
}

/* Single Product Reviews Section (Centered) */
#reviews {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background: #fcfcfc;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
#reviews h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}
#reviews .commentlist {
    text-align: left;
    padding: 0;
}
#reviews #review_form_wrapper {
    margin-top: 40px;
    text-align: left;
}
#reviews .stars {
    justify-content: center;
    display: flex;
}

/* Footer Copyright Centering */
.footer-bottom .site-info {
    text-align: center;
    justify-content: center !important;
    width: 100%;
}

/* Search Overlay Upgrade */
.search-overlay {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}
.search-overlay-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}
.search-form {
    display: flex;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    transition: 0.3s;
}
.search-form:focus-within {
    border-bottom-color: var(--primary-color);
}
.search-form label {
    flex: 1;
    margin: 0;
}
.search-form input.search-field {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    padding: 10px 0;
    width: 100%;
    font-weight: 300;
}
.search-form input.search-field::placeholder {
    color: rgba(255,255,255,0.4);
}
.search-form button.search-submit {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 20px;
}
.search-form button.search-submit:hover {
    transform: scale(1.1);
}
.close-search-overlay {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    transition: 0.3s;
}
.close-search-overlay:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}


/* ==========================================================================
   MOBILE & CHECKOUT POLISH (REFINEMENTS)
   ========================================================================== */

/* 1. Header Hide/Show & Glassy Effect (Mobile) */
.site-header {
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 999;
}
.site-header.header-hidden {
    transform: translateY(-100%);
}
@media (max-width: 768px) {
    .site-header {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 10px 0 !important;
    }
    .site-header .custom-logo {
        max-width: 120px; /* Make logo smaller on mobile */
    }
}

/* 2. Footer Copyright Adjustment */
.footer-bottom .site-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    text-align: center;
}
.footer-bottom .site-info span {
    display: none; /* Hide the separator pipe if any */
}

/* 3. Mobile Menu Close Button Placement */
@media (max-width: 768px) {
    .header-center.is-open {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding-top: 60px;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        display: block !important;
    }
    /* Move close button to right inside menu */
    .mobile-menu-toggle.active {
        position: fixed;
        top: 15px;
        right: 15px; /* Moved to the other side */
        z-index: 1001;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.05);
        border-radius: 50%;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
}

/* 4. Search Overlay Mobile Polish */
@media (max-width: 768px) {
    .search-overlay-content {
        width: 90%;
        margin-top: 20vh;
    }
    .search-form input.search-field {
        font-size: 1.5rem;
    }
    .search-form button.search-submit {
        font-size: 1.5rem;
    }
    .close-search-overlay {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* 5. Checkout Layout (Centered on Desktop) */
@media (min-width: 992px) {
    .woocommerce-checkout .col2-set {
        max-width: 700px;
        margin: 0 auto 40px auto;
        float: none;
        width: 100%;
    }
    .woocommerce-checkout #order_review_heading {
        max-width: 700px;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    .woocommerce-checkout #order_review {
        max-width: 700px;
        margin: 0 auto;
        float: none;
        width: 100%;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        animation: slideUpFade 0.6s ease;
    }
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Checkout Button Spacing Polish */
.woocommerce-checkout #payment .place-order {
    justify-content: center;
    gap: 20px;
}
.woocommerce-checkout #payment .place-order .button {
    flex: 1;
}


/* ==========================================================================
   FINAL POLISH (CHECKOUT, FOOTER, MINI-CART, MOBILE MENU)
   ========================================================================== */

/* 1. Checkout Billing Details Width & Layout */
@media (min-width: 992px) {
    .woocommerce-checkout .col2-set {
        max-width: 700px;
        margin: 0 auto 40px auto;
        float: none;
        width: 100%;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
}
/* Ensure form fields span properly */
.woocommerce-checkout .col2-set .form-row {
    width: 100%;
}
.woocommerce-checkout .col2-set .form-row-first,
.woocommerce-checkout .col2-set .form-row-last {
    width: 48%;
    float: left;
}
.woocommerce-checkout .col2-set .form-row-last {
    float: right;
}

/* 2. Button Animations */
.woocommerce-checkout #payment .place-order .button {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
}
.woocommerce-checkout #payment .place-order .button:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

/* 3. Footer Visibility Fix */
.site-footer, .footer-bottom, .site-info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.footer-bottom {
    background: #111;
    color: #fff;
    padding: 20px 0;
}
.footer-bottom .site-info {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #aaa;
}
.footer-bottom .site-info a {
    color: var(--primary-color);
}

/* 4. Mobile Menu Visibility & Styling */
@media (max-width: 768px) {
    .header-center.is-open {
        background: #ffffff !important; /* Pure white background */
        color: #000 !important;
    }
    .main-navigation ul li a {
        color: #000 !important;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 15px 20px;
        display: block;
        text-align: center;
    }
}

/* 5. Mini-Cart Dropdown Polish */
.widget_shopping_cart_content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.widget_shopping_cart_content .woocommerce-mini-cart__total {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
    width: 100%;
    margin: 0 !important;
    text-align: center;
    border-radius: 30px !important;
    padding: 12px 20px !important;
    font-weight: bold;
    text-transform: uppercase;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}


/* ==========================================================================
   FINAL POLISH 2 (CART SPACING, CHECKOUT ALIGNMENT, FOOTER FIX)
   ========================================================================== */

/* 1. Cart Page Spacing & Styling */
.woocommerce-cart .site-main {
    padding-top: 30px !important;
}
.woocommerce-cart .entry-header {
    margin-bottom: 20px;
}
.woocommerce-cart .entry-header .entry-title {
    margin-top: 0;
}
/* Proceed to Checkout Button Overflow Fix */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: inline-block;
    padding: 15px 30px !important;
    white-space: normal;
    height: auto;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    border-radius: 30px;
}
/* Quantity Input Upgrade */
.woocommerce .quantity .qty {
    width: 70px;
    height: 45px;
    border-radius: 25px;
    border: 1px solid #ddd;
    text-align: center;
    padding: 0 10px;
    font-size: 1rem;
    background: #f9f9f9;
}
/* Apply Coupon Layout */
.woocommerce-cart table.cart td.actions .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px !important;
    height: 45px;
    border-radius: 25px;
    border: 1px solid #ddd;
    padding: 0 20px;
}
.woocommerce-cart table.cart td.actions .coupon .button {
    height: 45px;
    padding: 0 25px !important;
    border-radius: 25px !important;
    white-space: nowrap;
    margin: 0 !important;
}

/* 2. Checkout Layout Centering & Remove Shadow */
.woocommerce-checkout .woocommerce {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.woocommerce-checkout h3#order_review_heading,
.woocommerce-checkout .col2-set {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}
.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review {
    box-shadow: none !important;
    border: 1px solid #eee;
    background: transparent !important;
    padding: 20px 0 !important;
}

/* 3. Footer Copyright Text Color */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 30px 0;
}
.footer-bottom .site-info {
    color: #ffffff !important;
    font-size: 0.95rem;
}
.footer-bottom .site-info a {
    color: var(--primary-color) !important;
    font-weight: 600;
    display: inline !important;
}
.footer-bottom .site-info p {
    margin: 5px 0;
    color: #ffffff !important;
}
.footer-bottom .site-info .whatsapp-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

/* ==========================================================================
   FINAL POLISH 3 (SIDE CART / MINI CART FIXES)
   ========================================================================== */

/* 1. Side Cart Close Button Adjustment */
.xoo-wsc-header .xoo-wsc-close,
#side-cart .close-cart,
.widget_shopping_cart .close,
.cart-sidebar-close {
    margin-top: 15px !important;
    font-size: 1.5rem !important;
    padding: 10px !important;
}

/* 2. Mini-Cart Item Remove Button */
.woocommerce-mini-cart-item a.remove,
.widget_shopping_cart_content .remove {
    font-size: 1.5rem !important;
    width: 25px !important;
    height: 25px !important;
    line-height: 25px !important;
    background: transparent !important;
    color: red !important;
    font-weight: bold !important;
}
.woocommerce-mini-cart-item a.remove:hover {
    background: red !important;
    color: white !important;
    border-radius: 50%;
}

/* 3. Empty Cart Icon Clickable */
/* Assuming cart icon is always clickable, ensure z-index */
.cart-toggle {
    z-index: 10;
    position: relative;
}


/* ==========================================================================
   FINAL POLISH 4 (MOUSE CURSOR, CART TOTALS, SIDE CART TITLE)
   ========================================================================== */

/* 1. Prevent PC Mouse from Spinning (Use Website Loader) */
body.woocommerce-cart, 
body.woocommerce-checkout,
.woocommerce .blockUI.blockOverlay,
.blockUI.blockOverlay {
    cursor: default !important;
}

/* 2. Fix Cart Totals Overflowing Cream Background */
.cart-collaterals {
    overflow: hidden !important;
    padding-bottom: 40px !important;
}
.cart-collaterals .cart_totals {
    width: 100% !important;
    padding-bottom: 20px !important;
}

/* 3. Side Cart Title Adjustments (Make it bigger & visible) */
.xoo-wsc-header,
.mini-cart-header,
.widget_shopping_cart_content .widgettitle {
    padding-top: 50px !important;
    align-items: center !important;
}
.xoo-wsc-header .xoo-wsc-sm-txt,
.xoo-wsc-header span,
.mini-cart-header h4,
.widget_shopping_cart_content .widgettitle {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-top: 15px !important;
    color: #333 !important;
}

/* 4. Empty Cart Fixes (Cart Icon) */
.cart-toggle.empty .cart-count {
    display: none !important;
}


/* ==========================================================================
   FINAL POLISH 5 (FLOATING BUTTONS)
   ========================================================================== */

.floating-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.floating-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.whatsapp-support {
    right: 25px;
    background: #25D366;
}
.whatsapp-support:hover {
    background: #1eb956;
}
.back-to-top {
    left: 25px;
    background: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==========================================================================
   FINAL POLISH 6 (HERO BUTTON, WOOCOMMERCE MESSAGES, PRODUCT CARD)
   ========================================================================== */

/* 1. Hero Button Empty Fix */
.hero-btn:empty {
    display: none !important;
}

/* 2. Product Card Blank Brown Circle Fix */
.woocommerce ul.products li.product .button {
    width: auto !important;
    height: auto !important;
    border-radius: 25px !important; /* Pill shape */
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    color: #fff !important;
    background: var(--primary-color) !important;
    margin-top: 10px !important;
    display: inline-block !important;
}
.woocommerce ul.products li.product .button:hover {
    background: #a97f39 !important;
}
/* Ensure the title is clickable */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    pointer-events: auto !important;
    display: block !important;
}

/* 3. WooCommerce Notice "View Cart" Button Upgrade */
.woocommerce-message {
    border-top-color: var(--primary-color) !important;
    background: #fbf9f5 !important;
    border-radius: 8px !important;
    padding: 15px 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    gap: 15px;
}
.woocommerce-message .button.wc-forward {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 8px 25px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    transition: 0.3s !important;
    margin: 0 !important;
    font-weight: 600 !important;
}
.woocommerce-message .button.wc-forward:hover {
    background: #a97f39 !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* ==========================================================================
   FINAL POLISH 7 (CART LAYOUT FIX, BACK TO TOP POSITION)
   ========================================================================== */

/* 1. Cart Page Flexbox Fix for Notices */
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
    width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 20px;
}

/* 2. Move Back-to-Top Button above WhatsApp on the Right */
.back-to-top {
    left: auto !important;
    right: 25px !important;
    bottom: 90px !important;
}


/* ==========================================================================
   FINAL POLISH 8 (REVIEWS SECTION, PRODUCT TITLE LINK)
   ========================================================================== */

/* 1. Make sure entire product card is clickable except buttons */
.woocommerce ul.products li.product {
    position: relative;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    position: static;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
.woocommerce ul.products li.product .product-hover-actions {
    position: absolute;
    z-index: 10;
}
.woocommerce ul.products li.product .button {
    position: relative;
    z-index: 10;
}

/* 2. Modern Reviews Section Styling */
#reviews {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}
#reviews h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
}
.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.woocommerce-Reviews .commentlist li {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #fafafa;
}
.woocommerce-Reviews .commentlist .meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}
.woocommerce-Reviews .commentlist .meta strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.woocommerce-Reviews .commentlist .description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}
#review_form_wrapper {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
}
#review_form_wrapper .comment-reply-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: block;
}
#review_form_wrapper .comment-form p {
    margin-bottom: 20px;
}
#review_form_wrapper .comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
#review_form_wrapper .comment-form input[type="text"],
#review_form_wrapper .comment-form input[type="email"],
#review_form_wrapper .comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}
#review_form_wrapper .comment-form input[type="text"]:focus,
#review_form_wrapper .comment-form input[type="email"]:focus,
#review_form_wrapper .comment-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
    outline: none;
}
#review_form_wrapper .comment-form .submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
#review_form_wrapper .comment-form .submit:hover {
    background: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* ==========================================================================
   FINAL POLISH 9 (EMPTY CART CENTER, REVIEW FORM POLISH)
   ========================================================================== */
.woocommerce-cart .cart-empty, 
.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-top: 20px;
}

/* Reviews Submit Button Polish */
#review_form #respond #submit {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 10px;
}
#review_form #respond #submit:hover {
    background: #111;
}

/* Ensure review form fields look good on mobile */
.comment-form-author, .comment-form-last-name, .comment-form-email {
    margin-bottom: 15px !important;
}
@media (max-width: 768px) {
    #review_form .comment-form > div {
        flex-direction: column;
    }
}
.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
    margin: auto !important;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}
/* ==========================================================================
   ULTIMATE CHECKOUT POLISH (Overrides previous rules)
   ========================================================================== */

.woocommerce-checkout .woocommerce {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review {
    width: 100% !important;
    max-width: 100% !important;
    background: #fff !important;
    padding: 35px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05) !important;
    border: 1px solid #eaeaea !important;
    margin-bottom: 40px !important;
    float: none !important;
}

.woocommerce-checkout #order_review_heading {
    text-align: center !important;
    font-size: 1.8rem !important;
    margin: 40px 0 25px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.woocommerce-checkout .col2-set .form-row {
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
}

.woocommerce-checkout .col2-set .form-row-first,
.woocommerce-checkout .col2-set .form-row-last {
    width: 100% !important;
    float: none !important;
}

@media (min-width: 992px) {
    .woocommerce-checkout .col2-set .form-row-first {
        width: 48% !important;
        float: left !important;
    }
    .woocommerce-checkout .col2-set .form-row-last {
        width: 48% !important;
        float: right !important;
    }
    
    form.checkout.woocommerce-checkout {
        display: grid !important;
        grid-template-columns: 55% 40% !important;
        justify-content: space-between !important;
        align-items: start !important;
    }
    
    .woocommerce-checkout #customer_details {
        grid-column: 1 !important;
        grid-row: 1 / 3 !important;
        margin: 0 !important;
    }
    
    form.checkout.woocommerce-checkout h3#order_review_heading {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }
    
    form.checkout.woocommerce-checkout #order_review {
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin: 0 !important;
    }
}

@media (max-width: 767px) {
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review {
        padding: 25px 20px !important;
    }
}

/* Mobile Overrides (Fixes) */
@media (max-width: 768px) {
    /* Make site title smaller on mobile to save space */
    .site-branding .site-title {
        font-size: 1.15rem;
        line-height: 1.2;
    }
    
    /* Adjust Hero Image for mobile */
    .heroSwiper .swiper-slide {
        height: 400px;
        background-position: center center;
        background-size: cover;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    /* Ensure Mobile Menu Drawer is above WhatsApp floating button */
    .header-center.is-open {
        z-index: 10000 !important;
    }
    .mobile-menu-toggle.active {
        z-index: 10001 !important;
    }
}

/* Further Polish & Fixes */
@media (max-width: 768px) {
    /* Make Hero Image fit entirely without cropping */
    .heroSwiper .swiper-slide {
        height: auto !important;
        aspect-ratio: 2/1 !important;
        background-size: contain !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
    }
    .heroSwiper .swiper-slide::before {
        display: none !important; /* Hide black overlay on mobile so flyer text is visible */
    }
    /* Reduce floating button size on mobile */
    .floating-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
        bottom: 15px !important;
    }
    .whatsapp-support { right: 15px !important; }
    .back-to-top { left: 15px !important; }
}

/* Fix Hero Button Clickability */
.heroSwiper .swiper-slide::before {
    pointer-events: none !important;
}
.hero-content, .hero-content a.button {
    pointer-events: auto !important;
    z-index: 99 !important;
    position: relative;
}

/* Header Search Dropdown (Replaces Fullscreen Overlay) */
.search-overlay {
    height: auto !important;
    bottom: auto !important;
    background: #fff !important;
    backdrop-filter: none !important;
    padding: 30px 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease !important;
    display: block !important;
}
.search-overlay.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.search-form {
    border-bottom: 2px solid var(--primary-color) !important;
}
.search-form input.search-field {
    color: #333 !important;
    font-size: 1.5rem !important;
}
.search-form input.search-field::placeholder {
    color: #999 !important;
}
.close-search-overlay {
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    color: #999 !important;
    width: auto !important;
    height: auto !important;
    font-size: 2rem !important;
    right: 20px !important;
}
.close-search-overlay:hover {
    color: var(--primary-color) !important;
    transform: translateY(-50%) rotate(90deg) !important;
    background: transparent !important;
}

/* Further Bug Fixes & Polish */
html, body, .site-main {
    overflow-x: hidden; /* Fix horizontal scroll on mobile */
}

/* Single Product Title Mobile */
@media (max-width: 768px) {
    .product_title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
    }
    
    /* Stack Floating Buttons Together */
    .whatsapp-support { right: 15px !important; bottom: 15px !important; left: auto !important; }
    .back-to-top { right: 15px !important; bottom: 75px !important; left: auto !important; }
}

/* Hide Update Cart Button */
button[name="update_cart"] {
    display: none !important;
}

/* Apply Coupon Layout Fix */
.woocommerce-cart table.cart td.actions .coupon {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Wrap on small screens */
    margin-bottom: 10px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 180px !important;
    height: 45px !important;
    padding: 0 15px !important;
    margin: 0 !important;
}
.woocommerce-cart table.cart td.actions .coupon .button {
    height: 45px !important;
    padding: 0 20px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Cart Notification Message Fix */
.woocommerce-message {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.woocommerce-message::before {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

/* Quantity Plus/Minus Buttons Styling */
.quantity.buttons_added {
    display: flex;
    align-items: center;
}
.quantity.buttons_added .minus, .quantity.buttons_added .plus {
    width: 35px;
    height: 45px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.2s;
    border-radius: 0;
}
.quantity.buttons_added .minus:hover, .quantity.buttons_added .plus:hover {
    background: #e1e1e1;
}
.quantity.buttons_added .qty {
    width: 50px !important;
    height: 45px !important;
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    margin: 0 !important;
    text-align: center;
}

/* --- NEW FIXES: Cart, Checkout, Menu Clickability --- */

/* 1. Ensure Mobile Menu is Above Everything and Clickable */
.header-center.is-open {
    z-index: 999999 !important;
    pointer-events: auto !important;
}
/* Hide WhatsApp when Menu is open to prevent overlap */
body.menu-open .whatsapp-support,
body.menu-open .back-to-top {
    display: none !important;
}

/* 2. Cart Page Layout Fixes (Mobile & Desktop) */
[name="update_cart"] {
    display: none !important;
}
.woocommerce-cart table.cart td.actions .coupon .button {
    width: auto !important;
    flex: none !important;
    padding: 0 25px !important;
}
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce {
        flex-direction: column;
        gap: 20px;
    }
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        flex: 100% !important;
        min-width: 100% !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    /* Checkout Buttons */
    .woocommerce-checkout #payment button#place_order,
    .woocommerce-checkout .button {
        width: 100% !important;
        padding: 15px !important;
        font-size: 1.1rem !important;
        height: auto !important;
        white-space: normal !important;
        border-radius: 30px !important;
    }
}

/* 3. Footer Copyright Text Space Fix */
.footer-bottom {
    padding: 16px 0 !important;
}

/* 4. Product Card Hover Icons Contrast Fix (High Contrast) */
.woocommerce ul.products li.product .product-hover-actions a {
    background-color: #8c6239 !important; /* High contrast dark brown */
    color: #ffffff !important;
    opacity: 1 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.woocommerce ul.products li.product .product-hover-actions a i {
    color: #ffffff !important;
}
.woocommerce ul.products li.product .product-hover-actions a:hover {
    background-color: #222 !important;
}

/* 5. Product Card Add to Cart Button Visibility Fix */
.woocommerce ul.products li.product .button.add_to_cart_button {
    background-color: #111111 !important; /* Premium Black */
    color: #ffffff !important;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.woocommerce ul.products li.product .button.add_to_cart_button:hover {
    background-color: var(--primary-color) !important; /* Theme Color on hover */
}

/* Fix Mobile Menu Drawer getting covered by dim overlay */
body.menu-open .site-header {
    z-index: 99999 !important;
}

/* 6. Enhanced Search Overlay (Desktop & Mobile) */
.search-overlay {
    height: auto !important;
    background: #ffffff !important;
    padding: 20px 0 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    border-top: 1px solid #eee;
    z-index: 1000 !important;
}
.search-overlay-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px 0 20px;
}
.search-form {
    border-bottom: 2px solid var(--primary-color) !important;
    display: flex;
    align-items: center;
}
.search-form input.search-field {
    font-size: 1.15rem !important;
    border: none !important;
    background: transparent !important;
    flex: 1;
    padding: 12px 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
.search-submit {
    background: transparent !important;
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    padding: 10px !important;
    border: none !important;
}
.close-search-overlay {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.5rem !important;
    color: #999 !important;
    background: none !important;
    border: none !important;
}
.close-search-overlay:hover {
    color: var(--primary-color) !important;
    transform: translateY(-50%) rotate(90deg) !important;
}

/* ==========================================================================
   PREMIUM REVIEW FORM UPGRADE
   ========================================================================== */

/* Main wrapper */
#reviews {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

/* Tab heading override */
.woocommerce-tabs .panel#tab-reviews h2,
.woocommerce-Reviews-title {
    display: none !important; /* We'll show our own styled heading */
}

/* Outer card container - WHITE */
#review_form_wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0ebe3;
    position: relative;
    overflow: hidden;
}

#review_form_wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), #a07840);
    border-radius: 16px 0 0 16px;
}

/* Heading */
#review_form_wrapper h3,
#review_form_wrapper #reply-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Gold underline */
#review_form_wrapper #reply-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-top: 10px;
    border-radius: 2px;
}

/* Comment form layout */
#review_form_wrapper .comment-form {
    margin-top: 28px;
}

/* Name row - flex layout */
#review_form_wrapper .comment-form > div[style*="display:flex"],
#review_form_wrapper .comment-form > .comment-form-name-row {
    display: flex !important;
    gap: 18px;
    margin-bottom: 5px;
}

/* Labels */
#review_form_wrapper label {
    display: block;
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* First Name + Last Name side by side */
.comment-form .comment-form-first-name,
.comment-form .comment-form-last-name {
    display: inline-block;
    width: calc(50% - 8px);
    vertical-align: top;
    margin-bottom: 16px !important;
}

.comment-form .comment-form-first-name {
    margin-right: 14px;
}

.comment-form .comment-form-email {
    margin-bottom: 16px !important;
}

#review_form_wrapper label .required {
    color: var(--primary-color);
    margin-left: 2px;
}

/* Inputs and textarea */
#review_form_wrapper input[type="text"],
#review_form_wrapper input[type="email"],
#review_form_wrapper textarea {
    width: 100%;
    background: #fafaf8 !important;
    border: 1.5px solid #e8e0d5 !important;
    border-radius: 10px !important;
    padding: 13px 16px !important;
    color: #1a1a1a !important;
    font-size: 0.97rem !important;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
}

#review_form_wrapper input[type="text"]:focus,
#review_form_wrapper input[type="email"]:focus,
#review_form_wrapper textarea:focus {
    border-color: var(--primary-color) !important;
    background: #fffdf8 !important;
    box-shadow: 0 0 0 3px rgba(192, 140, 80, 0.12) !important;
}

#review_form_wrapper input::placeholder,
#review_form_wrapper textarea::placeholder {
    color: #bbb !important;
}

/* Textarea height */
#review_form_wrapper textarea#comment {
    min-height: 150px;
    resize: vertical;
}

/* Paragraph wrappers spacing */
#review_form_wrapper .comment-form p {
    margin-bottom: 14px;
}

/* Star Rating */
#review_form_wrapper .comment-form-rating {
    margin-bottom: 16px;
    margin-top: 4px;
}

#review_form_wrapper .comment-form-rating label {
    margin-bottom: 8px;
    color: #555;
}

#review_form_wrapper .stars {
    display: flex !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
    justify-content: flex-start !important;
}

#review_form_wrapper .stars a {
    font-size: 2rem !important;
    color: #ddd !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    text-decoration: none !important;
}

#review_form_wrapper .stars a:hover,
#review_form_wrapper .stars a.active,
#review_form_wrapper .stars:hover a,
#review_form_wrapper .stars a.star-1:hover ~ a {
    color: var(--primary-color) !important;
}

#review_form_wrapper .stars a:hover {
    transform: scale(1.2) !important;
}

/* WooCommerce star ::before override */
#review_form_wrapper p.stars a::before {
    font-size: 2rem !important;
    color: #ddd !important;
}

#review_form_wrapper p.stars.selected a.active::before,
#review_form_wrapper p.stars:hover a::before,
#review_form_wrapper p.stars.selected a::before {
    color: var(--primary-color) !important;
}

/* Submit button */
#review_form_wrapper #respond input#submit,
#review_form_wrapper input[type="submit"],
#review_form_wrapper .form-submit input {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a07840 100%) !important;
    color: #fff !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 15px 45px !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.35s ease !important;
    box-shadow: 0 6px 20px rgba(192, 140, 80, 0.3) !important;
    width: auto !important;
    margin-top: 8px !important;
    display: inline-block !important;
}

#review_form_wrapper #respond input#submit:hover,
#review_form_wrapper input[type="submit"]:hover,
#review_form_wrapper .form-submit input:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    transform: translateY(-2px) !important;
}

/* Existing reviews list */
#comments.woocommerce-Reviews {
    margin-bottom: 40px;
}

.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.woocommerce-Reviews .commentlist .comment {
    background: #f9f6f1;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.woocommerce-Reviews .commentlist .comment .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.woocommerce-Reviews .commentlist .comment .meta .author {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

.woocommerce-Reviews .commentlist .comment .meta time {
    color: #999;
    font-size: 0.85rem;
}

.woocommerce-Reviews .commentlist .comment .star-rating {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.woocommerce-Reviews .commentlist .comment .description p {
    color: #555;
    line-height: 1.75;
    font-size: 0.97rem;
}

/* Gravatar hidden */
.woocommerce-Reviews .commentlist .comment img.avatar {
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #review_form_wrapper {
        padding: 30px 20px;
    }
    #review_form_wrapper h3,
    #review_form_wrapper #reply-title {
        font-size: 1.5rem;
    }
    #review_form_wrapper .comment-form > div[style*="display:flex"] {
        flex-direction: column !important;
        gap: 0 !important;
    }
}

