/*
Theme Name: Livhoc
Author: Riyas
Description: Custom theme for Livhoc
Version: 1.0.0
*/

/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #67403D;
    --font-heading: 'Della Respira', serif;
    --font-body: 'Inter', sans-serif;
    --bg-light: #F9F9F9;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
}

h1,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

h2 {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    letter-spacing: 0.8px;
    font-weight: 400;
    /* Regular */
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #4a2c2a;
}


.btn-primary {
    background-color: transparent;
    border: 1px solid #333;
    color: #333;
    border-radius: 0;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@keyframes scrolltop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.page-header {
    transition: all 0.3s ease;
    background: #fff;
    z-index: 1000;
}

.page-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 0 15px 0 #e8e4db;
    animation: 0.5s scrolltop;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav-link:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: 0 0;
    transition: .4s linear;
}

.nav-link:hover:after {
    width: 100%;
    background: var(--primary-color);
}

.page-header.sticky .main-navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.page-header.hidden {
    transform: translateY(-100%);
}

/* Mega Menu Styles */
.has-mega-menu {
    position: static !important;
}

.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
    border-top: 1px solid #f2f2f2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.has-mega-menu:hover .mega-menu-wrapper {
    visibility: visible;
    opacity: 1;
}

.mega-menu-item {
    transition: transform 0.3s ease;
}

.mega-menu-item:hover {
    transform: translateY(-5px);
}

.mega-menu-image img {
    height: 30px;
    width: 30px;
    object-fit: cover;
}

.mega-menu-title {
    letter-spacing: 1px;
}

/* Responsive Mobile Header */
@media (max-width: 991px) {
    .page-header.sticky .main-navbar {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .container-header-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
        z-index: 10;
        top: -50%;
    }

    .navbar-brand img {
        width: 100px;
        height: auto;
    }

    /* Custom Toggler (Two Lines) */
    .custom-toggler {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 20px;
        height: 12px;
        background: transparent;
        border: none;
    }

    .toggler-line {
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    /* Mobile Offcanvas Customization */
    .mobile-menu-offcanvas {
        width: 320px !important;
        border-right: none;
    }

    .mobile-menu-offcanvas .offcanvas-header {
        padding: 20px 24px;
    }

    .mobile-menu-offcanvas .offcanvas-title {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #333;
    }

    .mobile-nav-link {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        color: #333;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .mobile-nav-link:hover {
        color: var(--primary-color);
    }

    .mobile-nav-item {
        border-color: #eee !important;
    }

    .cart-count-badge {
        position: absolute;
        top: -5px;
        right: -10px;
        background-color: var(--primary-color);
        color: #fff;
        font-size: 9px;
        min-width: 15px;
        height: 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .mobile-nav-item [aria-expanded="true"] .fa-chevron-down {
        transform: rotate(180deg);
    }

    .mobile-nav-item .fa-chevron-down {
        transition: transform 0.3s ease;
    }
}

.hero-slide-flex {
    display: flex;
    width: 100%;
    align-items: center;
}

/* Hero Slider Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-slider .hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 400;
    /* Regular */
    letter-spacing: 0.8px;
}

.hero-slider .hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
}

.hero-slider .hero-btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

/* Category Section */
.category-section .category-name {
    font-size: 13.5px;
    text-transform: capitalize;
    font-weight: 400;
    /* Regular */
    font-family: var(--font-body);
    color: #333;
    margin-top: 10px;
}

.category-section .category-image {
    max-height: 80px;
    max-width: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.category-item:hover .category-image {
    transform: scale(1.1);
}

.best-sellers .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    text-transform: uppercase;
    color: #333;
}

/* Latest Collection */
.collection-card .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    /* Regular */
    color: #333;
}

.collection-card .collection-image {
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
    /* Slight zoom */
}

.collection-card:hover .card-title {
    color: var(--primary-color);
}

/* Made to Measure */
.made-to-measure-img {
    max-height: 330px;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
}

.made-to-measure-title {
    font-size: 32px;
    font-weight: 400;
    /* Regular */
    font-family: 'Della Respira', serif;
    color: #fff;
}

.made-to-measure-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    /* Regular */
    font-size: 13.5px;
    color: #fff;
    line-height: 1.6;
}

.made-to-measure-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    /* Regular */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: margin-left 0.3s ease;
    display: inline-block;
}

.made-to-measure-link:hover {
    margin-left: 10px;
    color: #f0f0f0 !important;
}

/* WooCommerce Layout Alignment */
.woocommerce-container {
    padding: 30px 15px 60px 15px;
}

.woocommerce-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    margin-bottom: 30px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce-breadcrumb a {
    color: #999;
}

/* Responsiveness */
@media (max-width: 768px) {

    /* Reduce Section Spacing */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-section {
        margin-bottom: 1.5rem !important;
    }

    .hero-slider .swiper-slide {
        min-height: 350px !important;
        background-position: center center !important;
    }

    .hero-title {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 13px !important;
        margin-bottom: 1rem !important;
    }

    .hero-btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
    }

    .category-section h2,
    .latest-collection h2,
    .best-sellers h2,
    .made-to-measure h2,
    .who-we-are h2,
    h2 {
        font-size: 20px !important;
        margin-bottom: 1.5rem !important;
    }

    .btn,
    .button {
        padding: 8px 20px !important;
        font-size: 12px !important;
    }

    .hero-slide-flex .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .made-to-measure .row {
        text-align: center;
    }

    .made-to-measure img {
        margin-bottom: 20px;
    }

    .made-to-measure .ps-md-5 {
        padding-left: 0 !important;
    }


    /* WooCommerce Responsive Fixes */
    .woocommerce-header-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-bottom: 20px;
    }

    .woocommerce-result-count {
        margin-bottom: 5px !important;
    }

    .woocommerce-loop-controls-right {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
        padding: 0 !important;
        float: none !important;
    }

    .woocommerce div.product .product_title {
        font-size: 1.8rem !important;
        margin-top: 15px;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 1.2rem !important;
    }

    .woocommerce-breadcrumb {
        font-size: 10px !important;
        margin-bottom: 20px !important;
    }

    .woocommerce-products-header {
        margin-bottom: 20px;
    }

    .woocommerce-products-header__title,
    .page-title {
        font-size: 24px !important;
    }

    .woocommerce ul.products li.product {
        margin-bottom: 40px !important;
    }

    .product-label {
        top: 10px;
        left: 10px;
        font-size: 8px;
    }

    footer .col-md-6.text-end {
        text-align: center !important;
        margin-top: 15px;
    }

    /* Adjust navbar toggler */
    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* WooCommerce Shop Grid (3 Columns) */
.woocommerce ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px 20px !important;
    /* Fixed gap for better stability */
    padding: 0;
    list-style: none;
    margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    /* Remove WooCommerce clearfix */
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    width: calc(33.333% - 14px) !important;
    /* 3 columns with gap accounted for */
    display: inline-block;
}

/* Tablet: 2 Columns */
@media (max-width: 991px) {

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        width: calc(50% - 10px) !important;
    }
}

/* Mobile: 1 Column */
@media (max-width: 575px) {

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        width: 100% !important;
    }
}

.woocommerce span.onsale {
    background-color: var(--primary-color);
    color: #fff;
    min-height: 32px;
    min-width: 32px;
    padding: 0 5px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 50%;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #4a2c2a;
    border-color: #4a2c2a;
}

/* Single Product */
.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #333;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
}

.woocommerce-product-gallery {
    margin-bottom: 30px;
}

.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #ddd !important;
    padding: 0 !important;
}

.woocommerce-tabs ul.tabs li {
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid var(--primary-color) !important;
}

.woocommerce-tabs ul.tabs li a {
    color: #666 !important;
    font-family: var(--font-body);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-color) !important;
}

/* Archive/Shop Grid Adjustments */
.archive .card-img-top img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

/* Single Product Layout Overrides */
.woocommerce div.product {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    row-gap: 40px;
    /* Add gap for tabs/related products */
}

.woocommerce div.product div.images {
    width: 50%;
    float: none !important;
    padding-right: 30px;
}

.woocommerce div.product div.summary {
    width: 50%;
    float: none !important;
    padding-left: 30px;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .up-sells.products {
    width: 100%;
    clear: both;
}




/* Footer Utils */
.site-footer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
}

.site-footer a {
    font-size: 12px;
    font-weight: 400;
}

.newsletter-section input,
.newsletter-section button {
    font-size: 13.6px !important;
    color: #C2C2C2 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
}

.footer-newsletter-title {
    font-family: 'Inter', sans-serif;
    font-size: 13.6px;
    letter-spacing: 1.4px;
    color: #fff;
    font-weight: 400;
    /* Assuming regular as per previous requests */
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #C2C2C2 !important;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #C2C2C2 !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #C2C2C2 !important;
}

.placeholder-white::placeholder {
    color: #C2C2C2 !important;
}

/* ============================================
   WOOCOMMERCE CUSTOM STYLES (Category, Cart, Checkout, Account)
   ============================================ */

/* Category Archive Styles */
.woocommerce-products-header {
    text-align: left;
    margin-bottom: 40px;
    padding-top: 20px;
}

.woocommerce-products-header__title,
.page-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.woocommerce-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.woocommerce-result-count {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin: 0 !important;
}

.woocommerce-loop-controls-right {
    display: flex;
    gap: 30px;
}

.woocommerce-loop-controls-right a,
.woocommerce-ordering select {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.woocommerce-ordering {
    margin: 0 !important;
}

/* Product Card Styling */
.woocommerce ul.products li.product {
    background: transparent;
    margin-bottom: 60px !important;
    position: relative;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    background-color: transparent;
    padding: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    display: block;
}

.woocommerce ul.products li.product:hover .attachment-woocommerce_thumbnail {
    opacity: 0.8;
}

.woocommerce-loop-product__title {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #333;
    padding: 10px 0 5px 0 !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .price {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #666;
    margin-bottom: 0 !important;
}

/* Hide standard add to cart button */
.woocommerce ul.products li.product .button.add_to_cart_button {
    display: none !important;
}

/* Real Plus Icon Styling */
.product-actions-plus {
    position: absolute;
    bottom: 5px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover .product-actions-plus {
    opacity: 1;
}

.add-to-cart-plus-icon {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #333;
    text-decoration: none;
    line-height: 1;
    display: block;
}

.add-to-cart-plus-icon:hover {
    color: var(--primary-color);
}

/* Custom Product Labels (e.g., READY TO SHIP) */
.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #EBE4D8;
    /* Cream background from reference */
    padding: 4px 10px;
    font-size: 9px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #67403D;
    z-index: 10;
}

/* Cart Page Styles */
.woocommerce-cart-form {
    margin-top: 40px;
}

.woocommerce-cart table.cart {
    border: none;
    border-radius: 0;
}

.woocommerce-cart table.cart th {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 15px 12px;
    border-bottom: 1px solid #f2f2f2;
}

.woocommerce-cart table.cart td {
    padding: 20px 12px;
    border-bottom: 1px solid #f2f2f2;
}

.woocommerce-cart table.cart .product-thumbnail img {
    width: 80px;
}

.cart-collaterals {
    background: #f9f9f9;
    padding: 30px;
    margin-top: 40px;
}

.cart-collaterals h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Checkout Page Styles */
.woocommerce-checkout {
    margin-top: 40px;
}

.woocommerce-checkout h3 {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 10px;
}

.woocommerce-checkout .form-row label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 15px;
}

#order_review {
    background: #f9f9f9;
    padding: 30px;
}

/* My Account Styles */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    float: left;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 70%;
    float: right;
}

/* Buttons Theme Matching */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    border-radius: 0;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #67403D;
    color: #fff;
    border-color: #67403D;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero-section {
    padding: 40px 0 80px 0;
    background-color: #fff;
}

.about-hero-content {
    padding-right: 40px;
}

.about-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #000000;
    margin-bottom: 30px;
}

.about-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.about-hero-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-hero-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Philosophy Section */
.about-philosophy-section {
    padding: 30px 0 80px 0;
}

.philosophy-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 0.8px;
}

.philosophy-intro {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #333;
    margin-bottom: 0;
}

.philosophy-image {
    border-radius: 20px;
    overflow: hidden;
    background-color: #E8F0E8;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-image img {
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* Product Cards Section */
.about-product-cards-section {
    padding: 0;
    background-color: transparent;
}

.about-product-cards-section .row {
    row-gap: 20px;
}

.about-product-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.about-product-card:hover {
    transform: translateY(-5px);
}

.about-product-image {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.about-product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-product-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.about-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #323232;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.about-product-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {

    .about-hero-section,
    .about-philosophy-section,
    .about-product-cards-section {
        padding: 40px 0;
    }

    .about-hero-content {
        padding-right: 0;
        margin-top: 30px;
    }

    .about-intro-text {
        font-size: 14px;
    }

    .about-body-text {
        font-size: 12px;
    }

    .philosophy-title {
        font-size: 24px;
        text-align: center;
    }

    .philosophy-intro {
        font-size: 13px;
        text-align: center;
    }

    .philosophy-image {
        margin-top: 30px;
    }

    .about-product-image {
        min-height: 250px;
        padding: 10px;
    }

    .about-product-content {
        padding: 20px;
    }

    .about-product-title {
        font-size: 12px;
    }

    .about-product-text {
        font-size: 11px;
    }
}

/* ============================================
   STORES PAGE STYLES
   ============================================ */

/* Stores Page Section */
.stores-page-section {
    padding: 60px 0 80px 0;
    background-color: #fff;
}

.stores-page-section h2 {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.8px;
    margin-bottom: 50px;
}

/* Store Info Sidebar */
.store-info-sidebar {
    padding: 20px 40px 20px 0;
}

.store-name {
    font-family: 'Della Respira', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.8px;
    margin-bottom: 30px;
}

.store-details {
    margin-bottom: 30px;
}

.store-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.store-detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Get Directions Button */
.btn-get-directions {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #753B00;
    color: #753B00;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
}

.btn-get-directions:hover {
    background-color: #753B00;
    border-color: #753B00;
    color: #fff;
}

/* Store Images Grid */
.store-images-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-image-item {
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Styles for Stores Page */
@media (max-width: 991px) {
    .store-info-sidebar {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .stores-page-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .stores-page-section {
        padding: 40px 0 60px 0;
    }

    .stores-page-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .store-name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .store-info-sidebar {
        padding: 0;
    }

    .store-detail-label {
        font-size: 13px;
    }

    .store-detail-text {
        font-size: 13px;
    }

    .btn-get-directions {
        font-size: 11px;
        padding: 10px 25px;
        width: 100%;
        max-width: 300px;
    }

    .store-images-grid {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .stores-page-section {
        padding: 30px 0 40px 0;
    }

    .stores-page-section h2 {
        font-size: 22px;
    }

    .store-name {
        font-size: 18px;
    }

    .store-detail-label,
    .store-detail-text {
        font-size: 12px;
    }

    .btn-get-directions {
        font-size: 10px;
        padding: 8px 20px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Page Section */
.contact-page-section {
    padding: 60px 0 80px 0;
    background-color: #fff;
}

.contact-page-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.contact-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Contact Methods */
.contact-methods {
    margin-top: 30px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-method-icon-wrapper {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #333;
}

.contact-method-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.contact-method-content {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-link:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
}

.contact-input,
.contact-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 0;
    transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    border-bottom-color: #999;
    box-shadow: none;
    outline: none;
    background-color: #fff;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-contact-submit {
    display: inline-block;
    background-color: #67403D;
    border: 1px solid #67403D;
    color: #fff;
    padding: 14px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}

.btn-contact-submit:hover {
    background-color: #4a2c2a;
    border-color: #4a2c2a;
    color: #fff;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-page-section {
        padding: 50px 0 70px 0;
    }

    .contact-page-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 40px 0 60px 0;
    }

    .contact-page-title {
        font-size: 24px;
        text-align: center;
    }

    .contact-intro-text {
        font-size: 13px;
        text-align: center;
    }

    .contact-methods {
        text-align: center;
    }

    .contact-method-item {
        align-items: center;
    }

    .contact-input,
    .contact-textarea {
        font-size: 13px;
    }

    .btn-contact-submit {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding: 30px 0 40px 0;
    }

    .contact-page-title {
        font-size: 22px;
    }

    .contact-intro-text {
        font-size: 12px;
    }

    .contact-method-label,
    .contact-method-link {
        font-size: 12px;
    }

    .btn-contact-submit {
        font-size: 11px;
        padding: 10px 30px;
    }
}

/* ============================================
   CUSTOM PAGE STYLES
   ============================================ */

/* Global Button Style for Custom Page */
.btn-custom {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #753B00;
    color: #753B00;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #753B00;
    border-color: #753B00;
    color: #fff;
}

/* Custom Hero Section */
.custom-hero-section {
    padding: 0 0 20px 0;
}

.custom-hero-banner {
    border-radius: 20px;
    overflow: hidden;
    height: 78vh;
    /* Ensure height is preserved with background images */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.custom-hero-content {
    max-width: 370px;
    text-align: left;
}

.custom-hero-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: #67403D;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.custom-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #67403D;
    margin-bottom: 0;
}

/* Hero Content Section below banner */
.hero-content-section {
    background-color: #fff;
}

.hero-content-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Why Curate Section */
.why-curate-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.section-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    max-width: 977px;
}

/* Product Cards */
.product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    background: linear-gradient(135deg, #E8F0E8 0%, #F0F5F0 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.product-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

/* The Process Section */
.process-section {
    padding: 30px 0 80px 0;
}

.process-header {
    max-width: 900px;
}

.process-steps {
    margin-top: 60px;
}

.process-step {
    margin-bottom: 80px;
}

.process-image {
    border-radius: 15px;
    overflow: hidden;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
}


.process-content {
    padding: 20px;
}

.process-number {
    font-family: 'Della Respira', serif;
    font-size: 72px;
    font-weight: 400;
    color: #D9D9D9;
    line-height: 1;
    margin-bottom: 20px;
}

.process-title {
    font-family: 'Della Respira', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.process-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive Styles for Custom Page */
@media (max-width: 991px) {
    .custom-hero-section {
        padding: 0 0 40px 0;
    }

    .custom-hero-content {
        padding-right: 0;
        margin-top: 30px;
    }

    .custom-hero-title {
        font-size: 36px;
    }

    .custom-hero-subtitle {
        font-size: 18px;
    }

    .why-curate-section,
    .process-section {
        padding: 20px 0 50px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .process-number {
        font-size: 60px;
    }

    .process-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .custom-hero-section {
        padding: 0 0 30px 0;
    }

    .custom-hero-title {
        font-size: 28px;
        text-align: center;
    }

    .custom-hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .custom-hero-text {
        font-size: 13px;
        text-align: center;
    }

    .custom-hero-content {
        text-align: center;
    }

    .why-curate-section,
    .process-section {
        padding: 20px 0 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-intro {
        font-size: 13px;
    }

    .product-image {
        min-height: 250px;
        padding: 20px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-description {
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
    }

    .process-step {
        margin-bottom: 50px;
    }

    .process-image {
        margin-bottom: 20px;
    }

    .process-content {
        text-align: center !important;
        padding: 0;
    }

    .process-number {
        font-size: 48px;
    }

    .process-title {
        font-size: 20px;
    }

    .process-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .custom-hero-title {
        font-size: 24px;
    }

    .custom-hero-subtitle {
        font-size: 14px;
    }

    .custom-hero-text {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-intro {
        font-size: 12px;
    }

    .btn-custom {
        font-size: 11px;
        padding: 10px 25px;
    }

    .process-number {
        font-size: 40px;
    }

    .process-title {
        font-size: 18px;
    }
}

/* ============================================
   LIVHOC AUTH / LOGIN PAGE STYLES
   ============================================ */

/* Force Hide "My account" Title on Login Page */
.woocommerce-account:not(.logged-in) .page-title,
.woocommerce-account:not(.logged-in) .woocommerce-products-header,
.woocommerce-account:not(.logged-in) .woocommerce-breadcrumb,
.woocommerce-account:not(.logged-in) h1,
.woocommerce-account:not(.logged-in) .entry-header {
    display: none !important;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    margin: 0 !important;
}

.livhoc-login-container {
    background-color: #EBE4DC;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.livhoc-auth-wrapper {
    width: 100%;
    max-width: 570px;
    /* Increased to 1000px for a significantly wider look */
    margin: 0 auto;
}

.auth-view {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.auth-view.active {
    display: block;
    opacity: 1;
}

.auth-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.auth-card {
    background-color: transparent;
    border: 1px solid #D1CDC7 !important;
    border-radius: 8px;
    padding: 40px 30px;
    margin-bottom: 20px;
}



.auth-card label {
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 15px !important;
}

.auth-card .input-text {
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    background: transparent !important;
    padding: 12px 0 !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.auth-card .input-text:focus {
    border-bottom-color: #333 !important;
}

.password-input-wrapper {
    position: relative;
    border-bottom: 1px solid #ccc;
}

.password-input-wrapper .input-text {
    border-bottom: none !important;
}

.show-password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.auth-actions {
    margin-top: 40px;
}

.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
    width: 100%;
    background-color: #333 !important;
    color: #fff !important;
    border: none !important;
    padding: 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    cursor: pointer;
    display: block;
    margin-bottom: 25px !important;
}

.woocommerce-LostPassword {
    text-align: right !important;
}

.woocommerce-LostPassword a {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    color: #666 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 40px 0;
    color: #888;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.auth-separator span {
    padding: 0 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.signup-btn {
    width: 100%;
    background-color: transparent !important;
    color: #333 !important;
    border: 1px solid #ccc !important;
    padding: 15px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    text-align: center;
    display: block;
}

.signup-btn:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

/* Hide default WooCommerce password toggle */
.woocommerce-form-login .show-password-input,
.woocommerce-form-register .show-password-input {
    display: none !important;
}

@media (max-width: 768px) {
    .auth-title {
        font-size: 32px;
    }

    .auth-card {
        padding: 30px 15px;
        border: none !important;
    }

    .livhoc-register-link-section {
        padding: 0 15px;
    }

    .made-to-measure-link {
        font-size: 12px;
    }
}

/* ============================================
   LOGGED-IN MY ACCOUNT STYLES
   ============================================ */
.woocommerce-account h1.entry-title,
.woocommerce-account .page-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    margin-right: 60px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f2f2f2;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #f2f2f2;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--primary-color) !important;
}

.woocommerce-MyAccount-content {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.woocommerce-MyAccount-content p {
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content mark {
    background: transparent;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
}

/* ============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================ */
.woocommerce-container {
    padding: 40px 15px;
    /* Reduced padding */
}

.woocommerce ul.products li.product {
    margin-bottom: 30px !important;
}

.product-actions-plus {
    opacity: 1;
}

.woocommerce div.product {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.woocommerce div.product div.images {
    width: 50% !important;
    padding-right: 40px !important;
    /* Reduced padding */
    margin-bottom: 0 !important;
}

.woocommerce div.product div.summary {
    width: 50% !important;
    padding-left: 10px !important;
    margin-bottom: 0 !important;
}

/* Meta Top (SKU, Wishlist, Share) */
.product-meta-top {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 8px;
    /* Reduced spacing */
}

.product-sku-cat .sku {
    color: #333;
    font-weight: 500;
}

.product-sku-cat .posted_in a {
    color: #999;
    pointer-events: none;
}

/* Product Title */
.woocommerce div.product .product_title {
    font-family: 'Della Respira', serif !important;
    font-size: 24px !important;
    /* Updated size */
    font-weight: 500 !important;
    /* Updated weight */
    color: #333 !important;
    margin-bottom: 12px !important;
    /* Reduced spacing */
    line-height: 1.2;
    letter-spacing: 1px !important;
    /* Added letter-spacing */
}

/* Short Description / Static Description Headings */
.woocommerce-product-details__short-description,
.livhoc-description-content {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    /* Updated weight */
    font-weight: 400 !important;
    /* Updated size */
    line-height: 1.6;
    color: #777;
    margin-bottom: 0 !important;
    /* Reduced spacing */
}

.woocommerce div.product form.cart {
    margin-bottom: 0 !important;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    /* Updated weight */
    color: #333 !important;
    margin-bottom: 5px !important;
    /* Reduced spacing */
}

/* Cart / Buttons Area */
.cart-flex-container {
    display: flex;
    gap: 12px;
    /* Reduced gap */
    margin-bottom: 30px;
    /* Reduced spacing */
}

.woocommerce .quantity .qty {
    width: 80px !important;
    height: 44px !important;
    background: transparent !important;
    border: 1px solid #E2E2E2 !important;
    border-radius: 0 !important;
    /* Square sharp look */
}

/* Buttons */
.single_add_to_cart_button,
.buy-now-button {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 !important;
    text-align: center;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    /* Updated size */
    font-weight: 400 !important;
    /* Updated weight */
    letter-spacing: 1.4px !important;
    /* Updated spacing */
    text-transform: uppercase !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    flex: 1;
}

.single_add_to_cart_button {
    background-color: #67403D !important;
    /* Updated color */
    color: #fff !important;
    border: none !important;
}

.buy-now-button {
    background-color: transparent !important;
    color: #67403D !important;
    /* Updated color */
    border: 1px solid #67403D !important;
    /* Updated color */
}

.single_add_to_cart_button:hover {
    background-color: #4a2c2a !important;
}

.buy-now-button:hover {
    background-color: #67403D !important;
    color: #fff !important;
}

/* Product Description (Static) */
.livhoc-product-description-section {
    margin-bottom: 25px;
    /* Reduced spacing */
}

.livhoc-product-description-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #333;
    margin-bottom: 15px;
}

/* Accordions */
.product-accordions .accordion-item {
    border-color: #F0F0F0 !important;
}

.product-accordions .accordion-button {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #333 !important;
    padding: 12px 0 !important;
    /* Reduced padding */
}

.product-accordions .accordion-button:after {
    width: 12px;
    height: 12px;
    background-size: 12px;
}

/* Similar Products Area */
section.related.products {
    margin-top: 20px !important;
    padding-top: 30px !important;
    border-top: 1px solid #F0F0F0;
}

section.related.products h2 {
    font-family: 'Della Respira', serif !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    color: #333 !important;
    text-align: left !important;
    margin-bottom: 50px !important;
    text-transform: none !important;
}

.woocommerce ul.products li.product .product-img-wrapper img {
    border-radius: 12px !important;
    background-color: #f9f9f9;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-top: 15px !important;
}

.woocommerce ul.products li.product .price {
    font-size: 12px !important;
    color: #888 !important;
    font-weight: 400 !important;
    margin-top: 5px !important;
}

/* WooCommerce Breadcrumb Refinement */
.woocommerce-breadcrumb {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 40px !important;
}

/* Single Product Mobile Responsiveness */
@media (max-width: 768px) {
    .woocommerce-container {
        padding: 20px 15px !important;
    }

    .woocommerce div.product {
        flex-direction: column !important;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 30px !important;
    }

    .woocommerce div.product .product_title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 18px !important;
    }

    .cart-flex-container {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .woocommerce .quantity .qty {
        width: 100% !important;
    }

    .single_add_to_cart_button,
    .buy-now-button {
        width: 100% !important;
        flex: none !important;
    }

    section.related.products h2 {
        font-size: 20px !important;
        margin-bottom: 30px !important;
    }
}

.woocommerce-breadcrumb a {
    color: #999 !important;
    text-decoration: none !important;
}

/* Image Gallery Fixes & Arrows */
.woocommerce div.product div.images .flex-viewport {
    border: none !important;
}

.woocommerce div.product div.images img {
    border-radius: 4px;
}

/* Swiper Gallery Styles */
.product-main-slider {
    position: relative;
    overflow: hidden;
}

.product-thumbs-slider {
    overflow: hidden;
}

.product-thumbs-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.product-thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.product-thumbs-slider .swiper-slide img {
    border-radius: 4px;
    width: 100%;
}

/* Swiper Arrows (Custom Icon Styles) */
.product-main-slider .swiper-button-next,
.product-main-slider .swiper-button-prev {
    width: 40px;
    height: 44px;
    background-color: rgba(242, 242, 242, 0.7);
    transition: all 0.3s ease;
}

.product-main-slider .swiper-button-next:after,
.product-main-slider .swiper-button-prev:after {
    content: "";
    /* Hide default Swiper icons */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
}

.product-main-slider .swiper-button-prev:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzMwXzE0NTMiIHN0eWxlPSJtYXNrLXR5cGU6YWxwaGEiIG1hc2tVbml0cz0idXNlclNwYWNlT25Vc2UiIHg9IjAiIHk9IjAiIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSI+CjxyZWN0IHg9IjI1IiB5PSIyNSIgd2lkdGg9IjI1IiBoZWlnaHQ9IjI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxODAgMjUgMjUpIiBmaWxsPSIjRDlEOUQ5Ii8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF8zMF8xNDUzKSI+CjxwYXRoIGQ9Ik02LjkyNDQ3IDEyLjE0ODRMMTkuNDc2NiAxMi4xNDg0TDE5LjQ3NjYgMTIuODc3Nkw2LjkyNDQ3IDEyLjg3NzZMMTMuMDE4MiAxOC45NzE0TDEyLjQ5NzQgMTkuNDkyMkw1LjUxODIyIDEyLjUxM0wxMi40OTc0IDUuNTMzODVMMTMuMDE4MiA2LjA1NDY4TDYuOTI0NDcgMTIuMTQ4NFoiIGZpbGw9IiMzMjMyMzIiLz4KPC9nPgo8L3N2Zz4K);
}

.product-main-slider .swiper-button-next:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzMwXzE0NTAiIHN0eWxlPSJtYXNrLXR5cGU6YWxwaGEiIG1hc2tVbml0cz0idXNlclNwYWNlT25Vc2UiIHg9IjAiIHk9IjAiIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSI+CjxyZWN0IHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0iI0Q5RDlEOSIvPgo8L21hc2s+CjxnIG1hc2s9InVybCgjbWFzazBfMzBfMTQ1MCkiPgo8cGF0aCBkPSJNMTguMDc1NSAxMi44NTk0SDUuNTIzNDRWMTIuMTMwMkgxOC4wNzU1TDExLjk4MTggNi4wMzY0NkwxMi41MDI2IDUuNTE1NjJMMTkuNDgxOCAxMi40OTQ4TDEyLjUwMjYgMTkuNDc0TDExLjk4MTggMTguOTUzMUwxOC4wNzU1IDEyLjg1OTRaIiBmaWxsPSIjMzIzMjMyIi8+CjwvZz4KPC9zdmc+Cg==);
}

.product-main-slider .swiper-button-next {
    right: 0px;
}

.product-main-slider .swiper-button-prev {
    left: 0px;
}

.product-main-slider .swiper-button-next:hover,
.product-main-slider .swiper-button-prev:hover {
    background-color: rgba(242, 242, 242, 1);
}


/* Ensure images and summary are aligned high */
.woocommerce div.product {
    align-items: flex-start;
}

.product-accordions .accordion-button:after {
    filter: grayscale(1);
    opacity: 0.5;
}

/* Similar Products / Related Products Title */
.related.products>h2 {
    font-family: 'Della Respira', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-transform: none;
}

/* ============================================
   CART PAGE STYLES
   ============================================ */
.woocommerce-cart .page-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
}

.woocommerce-cart table.cart {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    margin-bottom: 50px !important;
}

.woocommerce-cart table.cart thead {
    border-bottom: 1px solid #ECECEC;
}

.woocommerce-cart table.cart th {
    padding: 20px 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #333 !important;
    background: transparent !important;
}

.woocommerce-cart table.cart td {
    padding: 30px 0 !important;
    border-top: none !important;
    border-bottom: 1px solid #F4F4F4 !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.cart .product-thumbnail img {
    width: 100px !important;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.woocommerce-cart table.cart .product-name a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.woocommerce-cart table.cart .product-name a:hover {
    color: #67403D;
}

.woocommerce-cart table.cart .product-price span,
.woocommerce-cart table.cart .product-subtotal span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
}

.woocommerce-cart table.cart td.actions {
    padding: 30px 0 !important;
    border-bottom: none !important;
}

.woocommerce-cart table.cart td.actions .coupon {
    float: left;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px !important;
    height: 44px;
    border: 1px solid #E2E2E2 !important;
    border-radius: 0 !important;
    padding: 0 15px !important;
    font-size: 13px;
    margin-right: 10px !important;
}

.woocommerce-cart .button {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 30px !important;
    background-color: #67403D !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    transition: background 0.3s;
}

.woocommerce-cart .button:hover {
    background-color: #4a2c2a !important;
}

.woocommerce-cart .button[name="update_cart"] {
    background-color: transparent !important;
    color: #67403D !important;
    border: 1px solid #67403D !important;
}

.woocommerce-cart .button[name="update_cart"]:hover {
    background-color: #67403D !important;
    color: #fff !important;
}

/* Cart Collaterals */
.cart-collaterals {
    display: flex;
    justify-content: flex-end;
}

.cart-totals {
    width: 400px !important;
    float: none !important;
}

.cart-totals h2 {
    font-family: 'Della Respira', serif;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px !important;
    text-transform: none !important;
}

.cart-totals table.shop_table {
    border: none !important;
    border-radius: 0 !important;
}

.cart-totals table.shop_table tr th,
.cart-totals table.shop_table tr td {
    border-top: none !important;
    border-bottom: 1px solid #F4F4F4 !important;
    padding: 15px 0 !important;
    background: transparent !important;
}

.cart-totals table.shop_table tr th {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.cart-totals table.shop_table tr td {
    text-align: right !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.cart-totals table.shop_table tr.order-total th,
.cart-totals table.shop_table tr.order-total td {
    border-bottom: none !important;
    padding-top: 25px !important;
}

.cart-totals table.shop_table tr.order-total td span {
    font-size: 20px !important;
    color: #67403D !important;
}

/* Main Transaction Buttons (Proceed to Checkout & Place Order)
   Supports both Classic and Block-based layouts */
.wc-proceed-to-checkout a.checkout-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-button__button,
.woocommerce-checkout #place_order,
.wc-block-components-checkout-place-order-button {
    height: 45px !important;
    line-height: 45px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-top: 20px !important;
    background-color: #323232 !important;
    color: #fff !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: background-color 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
}

.wc-proceed-to-checkout a.checkout-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-button__button:hover,
.woocommerce-checkout #place_order:hover,
.wc-block-components-checkout-place-order-button:hover {
    background-color: #67403D !important;
    color: #fff !important;
}

.woocommerce-cart table.cart .product-remove a.remove {
    font-size: 24px !important;
    font-weight: 300 !important;
    color: #999 !important;
    text-decoration: none !important;
    background: transparent !important;
}

.woocommerce-cart table.cart .product-remove a.remove:hover {
    color: #67403D !important;
}

.woocommerce-cart table.cart .product-quantity .quantity input {
    width: 60px !important;
    height: 40px !important;
    padding: 0 !important;
    border: 1px solid #E2E2E2 !important;
    border-radius: 0 !important;
    background: transparent !important;
    text-align: center !important;
}

/* Empty Cart Block Refinement (Gutenberg) */
.wp-block-woocommerce-empty-cart-block {
    padding: 100px 0 !important;
    text-align: center;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
    font-family: 'Della Respira', serif !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 30px !important;
}

/* Hide the "New in Store" section and separator in empty cart block */
.wp-block-woocommerce-empty-cart-block .wp-block-separator,
.wp-block-woocommerce-empty-cart-block h2:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block .wc-block-product-new,
.wp-block-woocommerce-empty-cart-block .wc-block-grid {
    display: none !important;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 40px !important;
    background-color: #67403D !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.woocommerce-checkout .page-title {
    font-family: 'Della Respira', serif;
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 40px;
}

.woocommerce-checkout h3 {
    font-family: 'Della Respira', serif;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.woocommerce-checkout .col2-set {
    margin-bottom: 40px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout .form-row label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    height: 48px;
    padding: 10px 15px;
    border: 1px solid #E2E2E2;
    border-radius: 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.woocommerce-checkout .form-row textarea {
    height: 120px;
}

.woocommerce-checkout .form-row input.input-text:focus {
    border-color: #67403D;
}

/* Order Review Section */
#order_review_heading {
    border-top: 1px solid #ECECEC;
    padding-top: 50px;
    margin-top: 50px;
}

.woocommerce-checkout-review-order-table {
    border: none !important;
    border-radius: 0 !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border-top: none !important;
    border-bottom: 1px solid #F4F4F4 !important;
    padding: 15px 0 !important;
    background: transparent !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.2px;
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 400;
}

.woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout-review-order-table tr.order-total td {
    border-bottom: none !important;
    padding-top: 25px !important;
}

.woocommerce-checkout-review-order-table tr.order-total td span {
    font-size: 20px !important;
    font-weight: 600;
    color: #67403D !important;
}

/* Payment Section */
#payment {
    background: #F9F7F5 !important;
    border-radius: 0 !important;
    padding: 30px !important;
    margin-top: 30px;
}

#payment ul.payment_methods {
    border-bottom: 1px solid #E2E2E2 !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

#payment ul.payment_methods li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

#payment div.payment_box {
    background: #EBE4DC !important;
    color: #333 !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    border-radius: 0 !important;
}

#payment div.payment_box::before {
    border-bottom-color: #EBE4DC !important;
}


/* Block Checkout Support */
.wc-block-checkout__form-column,
.wc-block-checkout__sidebar {
    font-family: 'Inter', sans-serif !important;
}

.wc-block-components-checkout-step__title {
    font-family: 'Della Respira', serif !important;
    font-size: 20px !important;
}

@media (max-width: 768px) {

    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100% !important;
        float: none !important;
    }
}

@media (max-width: 768px) {
    .cart-collaterals {
        justify-content: flex-start;
    }

    .cart-totals {
        width: 100% !important;
    }

    .woocommerce-cart table.cart td.actions .coupon .input-text {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .footer-newsletter-title {
        text-align: left;
    }
}

@media (min-width: 769px) {
    .navbar>.container {
        padding: 0;
    }
}