/*
Theme Name: Charlotte Home Furnishings
Description: A fast-loading WooCommerce theme for home furnishings with customizable homepage sections
Author: Md Rafiqul Islam
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: chf-theme
Tags: e-commerce, woocommerce, home-decor, customizable
*/

:root {
    --primary: #36523D;
    --secondary: #6E0908;
    --header-bg: #16241A;
    --dark-green: #16241A;
    --color-danger: #C70000;
    --bg: #FFFFFF;
    --text: #080C09;
    --muted: #5A5C4C;
    --white: #FFFFFF;
    --accent: #E4EADE;
    --btn-white: #F3F4F1;
    --btn-white-active: #CBD2C4;
    --footer-text: #BABEBB;
    --font-main: 'Onest', Arial, sans-serif;
    --font-title: 'Frank Ruhl Libre', serif;
    --font-hero: 'Playfair Display', serif;
    --font-family-inter: 'Inter', serif;
    --container-width: 1440px;
    
    /* Animation variables */
    --animation-duration: 0.6s;
    --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --stagger-delay: 0.1s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--animation-duration) var(--animation-easing);
}
.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade-in {
    opacity: 0;
    transition: opacity var(--animation-duration) var(--animation-easing);
}
.animate-fade-in.animate-in {
    opacity: 1;
}
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--animation-duration) var(--animation-easing);
}
.animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--animation-duration) var(--animation-easing);
}
.animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--animation-duration) var(--animation-easing);
}
.animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}
/* Staggered animations */
.animate-stagger-1 { transition-delay: calc(var(--stagger-delay) * 1); }
.animate-stagger-2 { transition-delay: calc(var(--stagger-delay) * 2); }
.animate-stagger-3 { transition-delay: calc(var(--stagger-delay) * 3); }
.animate-stagger-4 { transition-delay: calc(var(--stagger-delay) * 4); }
.animate-stagger-5 { transition-delay: calc(var(--stagger-delay) * 5); }
.animate-stagger-6 { transition-delay: calc(var(--stagger-delay) * 6); }

.notification {
    position: fixed;
    top: 30px;
    right: 20px;
    background: #333;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

.notification-warning {
    background: #ffc107;
    color: #333;
}

@media (max-width: 480px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

#nm-loading{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:#fff;
	z-index:100000;
	opacity:0.6;
}
#nm-loading .nm-spinner{
	position:absolute;
	top:calc(50% - 65px);
	left:calc(50% - 65px);
}
.nm-spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.nm-path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

* { 
    box-sizing: border-box; 
}
body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
}
a{
    color: var(--primary);
    text-decoration: none;
}
a:hover{
    color:var(--secondary);
}
p {
    margin-top: 0;
    margin-bottom: 10px;
}
ul {
    list-style: none;
    padding-left: 0;
}
.main-header {
    position: relative;
    top: 0;
    z-index: 10;
    transition: all 0.3s var(--animation-easing);
}
.main-header.sticky {
    position: sticky;
    top:-35px;
    animation: slideDown 0.5s var(--animation-easing);
    box-shadow: 0 4px 20px rgba(54,82,61,0.1);
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.max-container{
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
}
.header-top {
    background-color: var(--header-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 40px 7px 40px;
}
/* .main-header.sticky .header-top{
    display: none;
} */
.nav-links {
    display: flex;
    justify-content: center;
}
.nav-links > li{
    list-style: none;
    margin: 0 16px;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--animation-easing);
    padding: 4px 0;
    position: relative;
    overflow: hidden;
}
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s var(--animation-easing);
}
.nav-links a:hover::before {
    width: 100%;
}
/* .nav-links a:hover { 
    color: var(--secondary); 
} */
.header-actions{
    background: rgba(1, 4, 1, 0.12);
    backdrop-filter: blur(4px);
}
.header-actions .header-actions-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 4px 40px;
    gap: 60px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}
.header-actions .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}
.header-actions .action-buttons{
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-actions .search-bar{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}
.header-actions .search-bar input {
    width: 100%;
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    outline: none;
    padding: 12px 16px;
}
.header-actions .search-bar input::placeholder {
    color: var(--muted);
    font-size: 14px;
}
.header-actions .search-bar .search-btn {
    position: absolute;
    right: 16px;
    top: 47%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.header-actions .account-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: none;
    order: 1;
    flex-grow: 0;
    gap: 20px;
    padding-left: 24px;
}
.header-actions .account-menu > a{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--dark-green);
    cursor: pointer;
    text-decoration: none;
}
.header-actions .account-menu > a:hover {
    color: var(--secondary);
}
.header-actions .account-menu > a:hover svg {
    fill: var(--secondary);
}
/* .header-actions button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 14px;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 500;
  text-transform: uppercase;
} */
.header-categories {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 12px 0 16px 0;
    background: var(--accent);
}
.cat-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}
.cat-btn:hover { 
    background: var(--btn-white); 
}
/* === Mega Menu Styles === */
.mega-menu {
    position: relative;
    background: var(--header-bg);
    z-index: 20;
    padding: 0 24px;
    border-top: 1px solid var(--white);
}
.mega-menu .ubermenu .auto-col-menu + .ubermenu-submenu > .ubermenu-autocolumn > .ubermenu-submenu > .ubermenu-column{
    width: 100%;
}
.hero {
    position: relative;
    margin-top: -60px;
    background: #f8f8f8;
    overflow: hidden;
}
.hero-main-img {
    width: 100vw;
    height: auto;
    display: block;
}
.hero-bg {
    position: relative;
    /* top: -40px; */
    z-index: 0;
}
.hero-banners{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; 
}
@media (max-width: 768px) {
    .hero-banners > div{
        width: 48%;
    }
}
.hero-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    gap: 321px;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}
.hero-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: none;
    align-self: stretch;
    flex-grow: 1;
}
.hero-content h1 {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 54px;
    line-height: 59px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    color: var(--primary);
    line-height: 1.1;
    animation: heroTextSlide 1s var(--animation-easing) 0.3s both;
}
.hero-content h1 span {
    font-size: 46px;
    color: rgba(13, 5, 0, 0.8);
    text-transform: none;
}
.hero-description{
    display: inline-block;
    width: 380px;
    animation: heroTextSlide 1s var(--animation-easing) 0.6s both;
}

@keyframes heroTextSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-description p {
    font-size: 18px;
    color: #515151;
    margin-bottom: 32px;
}
.btn, .button, input[type="submit"] {
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 30px;
    /* box-shadow: 0 0 12px #BBE2C2 inset; */
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0px 0px 12px #BBE2C2;
    backdrop-filter: blur(3.9px);
    cursor: pointer;
    outline: none;
    transition: all 0.3s var(--animation-easing);
    position: relative;
    overflow: hidden;
}
.btn::before,
.button::before,
.single_add_to_cart_button::before,
input[type="submit"]::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s var(--animation-easing);
}
.btn:hover::before,
.button:hover::before,
.single_add_to_cart_button:hover::before,
input[type="submit"]:hover::before {
    left: 100%;
}
.btn:hover,
.button:hover,
.single_add_to_cart_button:hover,
input[type="submit"]:hover { 
    background: var(--secondary); 
    color: var(--white);
    transform: translateY(-2px);
}
.btn.disabled, .button.disabled, input[type="submit"].disabled, .woocommerce a.button.disabled {
    background: #888888 !important;
    pointer-events: none;
}
.btn-link{
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s var(--animation-easing);
}
.btn-link:hover{
    color: var(--secondary);
}
.btn-hero { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    text-transform: uppercase;
}
.btn-secondary{
    background: var(--accent);
    color: var(--dark-green);
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    text-decoration: none;
    padding: 10px 30px;
    letter-spacing: -0.01em;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}
.btn-secondary:hover{
    background: var(--secondary);
    color: var(--white);
}
.btn-outline {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.01em;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 2px;
    padding: 8px 16px;
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}
.btn-outline:hover { 
    border-color: var(--secondary); 
    color: var(--secondary); 
}
.btn > .icon{
    margin-left: 10px;
}
.top-collections .top-collection-container{
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 80px 40px 40px 40px;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.top-collections .section-header,
.reviews-section .section-header{
    background: url('assets/images/back-art.svg') no-repeat center top;
    max-width: 710px;
    margin: 0 auto;
    padding: 10px 50px 50px 50px;
}
.section-header h2 {
    font-family: var(--font-title);
    font-size: 50px;
    font-weight: 400;
    margin: 0 0 16px 0;
    padding-bottom: 20px;
    color: var(--text);
    position: relative;
}
.top-collections .section-header h2::after,
.reviews-section .section-header h2::after{
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: url('assets/images/line-2.svg') no-repeat center center;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.section-header p {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
}
.collections-list {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.collection-left{
    /* flex: 1; */
    min-width: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    aspect-ratio: 3/4;
    color: white;
    display: flex;
    align-items: flex-end;
    border-radius: 4px;
    transition: all 0.4s var(--animation-easing);
    overflow: hidden;
}

.collection-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(54,82,61,0.1), rgba(110,9,8,0.1));
    opacity: 0;
    transition: opacity 0.4s var(--animation-easing);
}

.collection-left:hover::before {
    opacity: 1;
}

.collection-left:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.collection-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.collection-right .collection-card{
    /* flex: 1 1 calc(50% - 10px);
    aspect-ratio: 4/3;
    min-width: 200px; */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: flex-end;
    border-radius: 4px;
    transition: all 0.4s var(--animation-easing);
    overflow: hidden;
}

.collection-right .collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(54,82,61,0.1), rgba(110,9,8,0.1));
    opacity: 0;
    transition: opacity 0.4s var(--animation-easing);
}

.collection-right .collection-card:hover::before {
    opacity: 1;
}

.collection-right .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.collection-right .collection-card.card-full {
    width: 100%;
    aspect-ratio: 4/2;
}
.collection-right .bottom-row {
    display: flex;
    gap: 40px;
}
.collection-right .bottom-row .collection-card{
    flex: 1;
    aspect-ratio: 4/3;
}
.collection-card .card-content {
    position: relative;
    z-index: 2;
    padding: 32px 24px 32px 24px;
    /* background: linear-gradient(180deg, rgba(67, 59, 47, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(4px); */
    width: 100%;
    border-radius: 4px;
}
.collection-card .btn {
    transition: all 0.3s var(--animation-easing);
    transform: translateY(10px);
    /* opacity: 0.8; */
}
.collection-card:hover .btn {
    transform: translateY(0);
    opacity: 1;
}
.collection-card h3 {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: -0.01em;
    color: var(--white);
    text-shadow: 0px 1px 15px #000000;
    margin: 0 0 34px 0;
    padding-right: 25%;
}
.home-category-section {
    background: var(--white);
}
.home-category-section .category-section-container{
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 80px 15px;
    background: var(--white);
}
.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.category-header h2 {
    font-family: var(--font-title);
    font-size: 50px;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: var(--text);
}
.category-tabs {
    display: flex;
    gap: 32px;
    margin-top: 16px;
}
.cat-tab {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 18px;
    font-family: var(--font-main);
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 24px 15px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--animation-easing);
    position: relative;
    overflow: hidden;
}
.cat-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    transition: all 0.3s var(--animation-easing);
    transform: translateX(-50%);
}
.cat-tab.active::before,
.cat-tab:hover::before {
    width: 100%;
    background: url('assets/images/line-3.svg') no-repeat bottom center; 
}
.category-tab-content {
    position: relative;
}
.category-tab-content .tab-content{
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--animation-easing);
    pointer-events: none;
    position: absolute;
    width: 100%;
}
.category-tab-content .tab-content.tab-active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: static;
}
.woocommerce ul.products,
.product-list {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.woocommerce ul.products > li.product,
.product-card {
    background: #fff;
    border-radius: 8px;
    width: 325px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.3s var(--animation-easing);
    overflow: hidden;
}
ul.products > li:hover,
.product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
ul.products > li .woocommerce-loop-product__link{
    width: 100%;
}
ul.products > li .product-image,
.product-card .product-image{
    width: 100%;
    text-align: center;
}
ul.products > li .product-image img,
.product-card .product-image img {
    margin-bottom: 12px;
    transition: transform 0.4s var(--animation-easing);
    width: 100%;
    height: auto;
}
ul.products > li:hover .product-image img,
.product-card:hover .product-image img {
    transform: scale(1.05);
}
ul.products > li .btn-secondary,
.product-card .btn-secondary {
    transition: all 0.3s var(--animation-easing);
    transform: translateY(5px);
}
ul.products > li:hover .btn-secondary,
.product-card:hover .btn-secondary {
    transform: translateY(0);
}
.product-card .product-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 2px;
    text-transform: uppercase;
}
.product-card .product-badge.bestseller { background: var(--secondary); }
ul.products > li .product-sku,
.product-card .product-sku {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
}
ul.products > li h2,
.product-card .product-info h3,
.product-card .product-info h3 a{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: var(--text);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
ul.products > li h2,
.product-card .product-info h3{
    margin-top: 0;
    margin-bottom: 16px;
}
ul.products > li .product-bottom,
.product-card .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
ul.products > li .price,
ul.products > li .product-price,
.product-card .product-price {
    font-family: var(--font-title);
    font-size: 28px;
    color: var(--secondary);
    font-weight: 500;
}
ul.products > li .price del,
ul.products > li .product-price del,
.product-card .product-price del{
    display: none !important;
}
ul.products > li .price ins,
ul.products > li .product-price ins,
.product-card .product-price ins{
    text-decoration: none !important;
}
ul.products > li .price.range-price,
ul.products > li .product-price.range-price,
.product-card .product-price.range-price{
    font-size: 15px;
}
.category-card {
    background: #fff;
    border-radius: 8px;
    width: 325px;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.category-card h2{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    color: color(--text);
    margin-top: 0px;
    margin-bottom: 40px;
}
.category-tab-footer, .reviews-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.category-banner-section{
    background: url('assets/images/cat-banner.jpg') no-repeat top center/cover;
    position: relative;
    overflow: hidden;
}
.category-banner-section .category-banner-content{
    max-width: 784px;
    margin: 0px auto;
    padding: 140px 0;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.1s linear;
}
.category-banner-icon {
    perspective: 600px;
    display: inline-block;
}
.category-banner-icon img {
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    transform-style: preserve-3d;
}
.category-banner-icon:hover img {
    transform: rotateY(180deg);
}
.category-banner-section .category-banner-content .category-banner-title{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 43px;
    align-items: center;
    text-align: center;
    letter-spacing: -0.01em;
    color: var(--text);
    position: relative;
    margin-bottom:30px;
    padding-bottom:35px;
}
.category-banner-section .category-banner-content .category-banner-title::after{
    content: "";
    width: 500px;
    height: 4px;
    background: url('assets/images/line-5.svg') no-repeat center center;
    position: absolute;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
}
.category-banner-section .category-banner-content .category-banner-text{
    max-width: 660px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    text-align: center;
    color: var(--dark-green);
    margin: 0 auto 30px;
}
.category-banner-section .category-banner-content .category-banner-btn{
    width: 300px;
    display: inline-block;
}
.reviews-section {
    background: var(--white);
}
.reviews-section .review-container{
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 20px 15px 80px;
}
.review-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.review-card {
    background: var(--accent);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(54,82,61,0.08);
    width: 48%;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s var(--animation-easing);
    overflow: hidden;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:10px;
}
.review-header .review-user{
    max-width: 70px;
}
.review-header .review-user img{
    border-radius: 5px;
}
.review-header .review-info{
    width: 100%;
}
.review-info .review-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-stars {
    color: #F79E1B;
    letter-spacing: -3px;
}
.review-date{
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    color: var(--muted);
}
.review-user {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
}
.review-name { font-weight: 600; color: var(--text); }
.review-verified {
    background: #BCCAAF;
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 2px;
    font-family: var(--font-family-inter);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    margin-left: 10px;
}
.review-location { 
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%; 
    color: var(--muted);
}
.review-product {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #515343;
    font-weight: 400;
    line-height: 22px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 20px;
}
.review-product::before{
    content: "";
    width: 100%;
    height: 4px;
    background: url('assets/images/line-4.svg') no-repeat top center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.review-product::after{
    content: "";
    width: 100%;
    height: 4px;
    background: url('assets/images/line-4.svg') no-repeat top center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.review-product a{
    color: #515343;
}
.review-product img{
    max-width: 56px;
}
.review-text {
    color: var(--muted);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.main-footer {
    background: var(--dark-green) url('assets/images/footer-bg.jpg') no-repeat top center;
    color: #fff;
}
.footer-container{
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 60px 20px 0 20px;
}
.footer-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-col {
    width: 15%;
    margin-bottom: 24px;
    transition: transform 0.3s var(--animation-easing);
}
.footer-col:hover {
    transform: translateY(-3px);
}
.footer-col.footer-info{
    width: 30%;
}
.footer-col.footer-newsletter{
    width: 40%;
}
.footer-logo {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-title {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.footer-contact div { 
    margin-bottom: 6px; 
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: var(--footer-text);
}
.footer-contact a{
    color: var(--footer-text);
    text-decoration: none;
}
.footer-contact a:hover{
    text-decoration: underline;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: var(--footer-text);
}
.footer-col li a{
    color: var(--footer-text);
    text-decoration: none;
}
.footer-col li a:hover{
    text-decoration: underline;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.newsletter-form input[type="email"] {
    padding: 10px 16px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    flex: 1;
}
.newsletter-form .btn{
    display: flex;
}
.footer-desc {
    font-size: 13px;
    color: var(--footer-text);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top: 1px solid #36523D; */
    padding: 24px 0;
    margin-top: 24px;
    flex-wrap: wrap;
    position: relative;
}
.footer-bottom::before{
    content: "";
    width: 100%;
    height: 4px;
    background: url('assets/images/line-6.svg') no-repeat top center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.footer-bottom > div{
    width: 33.3%;
}
.footer-links ul{
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 24px;
}
.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
}
.footer-payments{
    text-align: center;
}
.footer-payments img, .footer-social a {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}
.footer-social{
    text-align: right;
}
.footer-social a:last-child, .footer-payments img:last-child { 
    margin-right: 0; 
}
.chf-addon-section-title{
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #080C09;
}
.chf-addon-selection{
    text-align: center;
    border-radius: 16px;
    cursor: pointer;
}
.chf-addon-selection:hover{
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.chf-addon-selection .chf-selection-title{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #080C09;
    padding-left: 20px;
    padding-bottom: 20px;
    text-align: left;
}
#addonModalLabel{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #080C09;
}
#cartSuccessModal .modal-xl,
#addonModal .modal-xl{
    max-width: 1040px;
}
#addonModal ul.products {
    gap: 20px 15px;
}
#cartSuccessModal .modal-title,
#addonModal .modal-title{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #080C09;
}
#cartSuccessModal .modal-header,
#addonModal .modal-header{
    border-bottom: none;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.loading {
    animation: pulse 2s infinite;
}
/* Responsive Animations */
@media (max-width: 768px) {
    .animate-on-scroll,
    .animate-slide-left,
    .animate-slide-right {
        transform: translateY(20px);
    }
    
    .collection-card:hover,
    .product-card:hover {
        transform: none;
    }
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(54, 82, 61, 0.3);
    transition: all 0.3s var(--animation-easing, cubic-bezier(0.4, 0, 0.2, 1));
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(110, 9, 8, 0.4);
}
.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}
.scroll-to-top svg {
    transition: transform 0.3s ease;
}
.scroll-to-top:hover svg {
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-to-top {
        transition: opacity 0.3s ease;
    }
    
    .scroll-to-top:hover {
        transform: none;
    }
}

/* Blog/Archive Styles */
.main-content {
    padding: 20px 0;
    min-height: 60vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--animation-easing), box-shadow 0.3s var(--animation-easing);
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s var(--animation-easing);
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-title {
    margin: 0 0 15px 0;
    font-family: var(--font-title);
    font-size: 24px;
    line-height: 1.3;
}

.post-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s var(--animation-easing);
}

.post-title a:hover {
    color: var(--primary);
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--muted);
}

.post-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid var(--accent);
    color: var(--text);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s var(--animation-easing);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-family: var(--font-title);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
}

.no-posts p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 20px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Category Page */
.category-banner-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #eeeeec;
    padding: 0;
    margin: 0; 
}
.category-banner-wrapper .shoppable-image-container{
    display: block;
    max-width: none;
    width: 100%;
}
.category-banner-wrapper .shoppable-image-container .shoppable-image-wrapper{
    display: block;
}
.category-banner-wrapper .shoppable-image-container .shoppable-image{
    max-width: none;
    width: 100%;
}
.woocommerce-breadcrumb{
    font-family: var(--font-family-inter);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    color: var(--dark-green);
    display: flex;
    gap: 5px;
    align-items: center;
}
.woocommerce-breadcrumb a,
.woocommerce-breadcrumb .delimiter{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: var(--muted);
    text-decoration: none;
}
.woocommerce-products-header__title{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: var(--text);
}
.woocommerce-products-header .term-description{
    margin-bottom: 30px;
    color: var(--muted);
}
.woo-category-section{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.woo-category-section .woo-left-sidebar{
    width: 325px;
}
.woo-category-section .woo-cat-products{
    flex: 1;
}
ul.products{
    margin: 0;
    padding: 0;
}
ul.products li.product {
    list-style: none;
}
.woo-cat-products ul.products{
    margin: 20px 0 30px 0 !important;
}
.woo-cat-products .woocommerce-result-count{
    margin: 0;
    display: inline-flex;
    width: 50%;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: var(--muted);
}
.woo-cat-products .woocommerce-ordering{
    display: inline-flex;
    width: 49%;
    justify-content: end;
}
.woo-cat-products .woocommerce-ordering select{
    background: #fff;
    border: none;
    width: 130px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.01em;
    color: var(--dark-green);
}
.woocommerce-pagination{
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
ul.page-numbers{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:15px;
}
ul.page-numbers > li > span,
ul.page-numbers > li > a{
    padding: 2px;
    width: 28px;
    height: 28px;
    background: var(--btn-white);
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: var(--muted);
}
ul.page-numbers > li .page-numbers.current,
ul.page-numbers > li .page-numbers:hover{
    background: var(--btn-white-active);
    color: var(--text);
}
.woo-left-sidebar .pwf-field-item-title{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    color: var(--muted);
    position: relative;
    text-transform: none;
    cursor: pointer;
}
.woo-left-sidebar .pwf-field-item-title::before {
    position: absolute;
    top: 3px;
    right: 10px;
    content: "";
    width: 24px;
    height: 24px;
    background: url('assets/images/arrow-down-green.svg');
    background-size: contain;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.woo-left-sidebar .pwf-field-inner.closed .pwf-field-item-title::before {
    transform: rotate(0deg);
}
.woo-left-sidebar .pwf-field-inner.closed .pwf-field-item-container,
.woo-left-sidebar .pwf-field-inner.closed #filter-index {
    display: none;
}
.woo-left-sidebar .pwf-woo-filter-inner .pwf-field-item{
    padding: 0px 8px;
    border-bottom: 1px solid var(--accent);
    margin-bottom: 16px;
}
.woo-left-sidebar .pwf-woo-filter-inner .pwf-field-item:first-child{
    border-top: 1px solid var(--accent);
    padding-top: 16px;
}
.pwf-field-item.pwf-field-item-radiolist .pwf-radiolist-item:first-child {
    display: none !important;
}
.pwf-field-item .pwf-radiolist-label .pwf-input-container, .pwf-rating-radio-type .pwf-input-container{
    border: 1px solid #CBD2C4;
    border-radius: 4px;
}
.pwf-field-item .pwf-radiolist-label > .pwf-input-container::after, .pwf-rating-radio-type .pwf-input-container::after{
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    content: "\e905";
    font-family: pwficons;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #36523D;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
}
.pwf-item-label .pwf-title-container .text-title{
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: #5A5C4C !important;
}
.filter-category-menu > li{
    margin-bottom: 8px;
}
.filter-category-menu > li > a{
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: #5A5C4C;
}
#filter-index {
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 4px 2px;
    user-select: none;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    margin-bottom: 20px;
}
#filter-index span {
    padding: 4px 6px;
    border-radius: 4px;
    color: #5A5C4C;
    cursor: pointer;
}
#filter-index span.selected{
    color: #080C09;
}
#filter-index span.inactive{
    color: #ccc;
    pointer-events: none;
}
#filter-index span:not(.inactive):hover {
    background-color: #f0f0f0;
    color: #080C09;
}
.woo-left-sidebar .noUi-horizontal{
    height: 4px;
}
.woo-left-sidebar .pwf-field-item .noUi-connect{
    background: var(--muted);
}
.woo-left-sidebar .pwf-field-item .noUi-horizontal .noUi-handle{
    width: 24px;
    height: 24px;
    background: var(--btn-white);
    border: 1px solid var(--btn-white);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
    border-radius: 40px;
    cursor: pointer;
    top: -12px;
}
.woo-left-sidebar .pwf-field-item .noUi-horizontal .noUi-tooltip{
    display: none;
}
.woo-left-sidebar .pwf-range-slider-labels{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: var(--muted);
}
.woo-left-sidebar .pwf-woo-filter-notes{
    margin-bottom: 20px;
}
.woo-left-sidebar .pwf-colorlist-item{
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    margin-bottom: 20px;
}
.woo-left-sidebar .pwf-colorlist-item::before{
    content: attr(title);
    display: inline-block;
    width: 100%;
    height: 21px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #080C09;
    transform: translateY(30px);
}
.page-title{
    margin-bottom: 30px;
}
.page-title h1{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: #000000;
}
.page-subtitle h2{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
}
.cart-empty-message{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #454545;
    margin-bottom: 40px;
}
.return-to-shop{
    text-align: center;
}
.cart-item-container .chf-cart-item{
    margin-bottom: 10px;
}
.chf-cart-item img{
    width: 80px;
    height: auto;
    border-radius: 8px;
}
.chf-product-title{
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #080C09;
}
.chf-product-title a{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.01em;
    color: #080C09;
}
.chf-product-sku{
    font-style: normal;
    font-weight: 200;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #5A5C4C;
}
.chf-quantity-controls {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    border: 1px solid #E4EADE;
    border-radius: 8px;
    overflow: hidden;
}
.chf-quantity-controls input[type="number"] {
    width: 40px;
    height: 48px;
    text-align: center;
    background: #fff;
    border:none;
    outline: none;
    -moz-appearance: textfield;
    font-family: var(--font-family-inter);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #5D5D5D;
}
.chf-quantity-controls input[type="number"]::-webkit-outer-spin-button,
.chf-quantity-controls input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.chf-quantity-controls .chf-quantity-btn {
    width: 40px;
    height: 48px;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    color: #5D5D5D;
    transition: background-color 0.3s ease;
}
.chf-quantity-controls .chf-quantity-btn:hover {
    background: var(--btn-white-active);
}
.chf-item-price{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: right;
    letter-spacing: -0.01em;
    color: #6E0908;
}
.chf-item-price del{
    display: none;
}
.chf-item-price ins{
    text-decoration: none;
}
.chf-remove-item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    color: #5D5D5D;
    transition: background-color 0.3s ease;
}
.chf-remove-item:hover {
    background: var(--color-danger);
    color:#fff;
}
.woocommerce .cart-item-right .cart_totals{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 24px;
    background: #F6F6F6;
    border-radius: 16px;
    width: 100%;
}
.cart-item-right .cart_totals h2{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 0;
}
.cart-item-right .cart_totals .cart-total-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.cart-item-right .cart_totals .cart-total-row .cart-total-info{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #4F4F4F;
}
.cart-item-right .cart_totals .cart-total-row .cart-total-value{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    color: #000000;
}
.cart-item-right .coupon-box{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0px;
    width: 293px;
    height: 65px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}
.cart-item-right .coupon-box .coupon-input{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 2px;
    width: 152px;
    border-radius: 4px;
}
.cart-item-right .coupon-box .coupon-input label{
    font-family: var(--font-family-inter);
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #000000;
    width: 100%;
}
.cart-item-right .coupon-box .coupon-input input{
    padding: 4px 16px;
    width: 152px;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid #B0B0B0;
    border-radius: 8px;
}
.cart-item-right .coupon-box button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 14px !important;
    width: 141px;
    height: 45px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.cart-item-right .button.checkout-btn{
    width: 100%;
    text-transform: uppercase;
    text-align: center;
}
/* Contact Page */
.contact_page {
    background-color: rgb(241 241 241 / 26%);
    padding: 60px 0;
}
.contact_form{
    padding: 60px 0;
}
.contact_address {
    margin-top: 40px;
}
.contact_address ul {
    width: 100%;
    display: grid;
	position: relative;
    text-align: center;
    grid-template-columns: repeat(3, 1fr);
}
.contact_address ul::before {
    content: "";
    width: 100%;
    top: 41px;
    position: absolute;
    z-index: -1;
    border-top: 1px solid rgb(112 112 112 / 58%);
}
.contact_address .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    border: 1px solid var(--primary);
    background-color: #fff;
    color:var(--primary);
}
.contact_address .icon i {
    font-size: 34px;
    line-height: 40px;
    color: var(--primary);
}
.contact_address .icon p {
	color: var(--primary);
}
.contact_address h6 {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    letter-spacing: 0.54px;
    margin-top: 25px;
    color: var(--muted);
}
.contact_address h6 a {
    color: var(--muted);
}
.contact_address h6 a:hover {
    color: var(--primary);
}
.contact_form .form-group {
    margin-bottom: 20px;
}
.contact_form input[type="text"], .contact_form input[type="number"], .contact_form input[type="email"], .contact_form input[type="tel"], .contact_form textarea{
    width: 100%;
    height: 70px;
    padding: 0 12px;
    outline: none;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    border-radius: 8px;
    color: var(--muted);
    border: 1px solid #A1A1A1;
}
.contact_form input::placeholder, .contact_form textarea::placeholder{
	color: #AEACAC;
}
.contact_form textarea{
	height: 152px;
    padding: 12px;
}
.map_iframe iframe{
	width: 100%;
}
.abt_charlotte_home_furnishing{
    margin-bottom: 60px;
}
.right_colm {
    width: 100%;
    text-align: center;
    padding: 0 80px;
}
.left_colm .img_bx img {
    width: 100%;
}
.abt_charlotte_home_furnishing .section-title h3 {
    font-size: 30px;
    line-height: 45px;
    position: relative;
    margin-bottom: 35px;
    color: var(--primary);
}
.abt_charlotte_home_furnishing .section-title h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    right: 0;
    margin: 0 auto;
    width: 180px;
    border-bottom: 1px solid var(--primary);
}
.blog-section h2{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
    color: #080C09;
    margin-bottom: 30px;
    margin-top: 40px;
}
.blog-post-lists{
    padding: 0px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.blog-post-lists .blog-post{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 30px 20px;
    width: 325px;
}
.blog-post-lists .blog-post img{
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.blog-section .blog-post .post-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
.blog-section .blog-post .post-date{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #5A5C4C;
}
.blog-section .blog-post h4, .blog-section .blog-post h4 a{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #080C09;
    margin: 0;
}
.blog-section .blog-post .post-short-content{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #5A5C4C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-section .blog-post .read-more{
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    text-transform: uppercase;
    color: #36523D;
}
.featured-blog-section{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
}
.featured-blog-section .main-featured{
    display: flex;
    flex: none;
    width: calc(50% - 10px);
}
.featured-blog-section .main-featured .blog-post{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
    max-width: 100%;
}
.featured-blog-section .main-featured .blog-post img{
    max-width: 100%;
}
.featured-blog-section .featured-right-posts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    flex: none;
    order: 1;
    flex-grow: 1;
    width: calc(50% - 10px);
}
.featured-blog-section .featured-right-posts .blog-post{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}
.featured-blog-section .featured-right-posts .blog-post .post-image{
    width: 325px;
    height: 200px;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.featured-blog-section .featured-right-posts .blog-post .post-image img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.featured-blog-section .featured-right-posts .blog-post .post-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    flex: none;
    order: 1;
    flex-grow: 1;
    width: calc(100% - 350px);
}
.page-featured-image{
    width: 100%;
    height: 560px;
    border-radius: 16px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin-bottom: 30px;
}
.page-featured-image img{
    height: 560px;
    width: 100%;
    object-fit: cover;
}
.single-post-content{
    max-width: 880px;
    margin:0 auto;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #5A5C4C;
}
.single-post-content img{
    border-radius: 16px;
}
.single-post-content p{
    margin-bottom: 24px;
}
.single-post-content strong{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #080C09;
}
.wp-singular.page .text_content{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #5A5C4C;
}
.wp-singular.page .text_content p{
    margin-bottom: 24px;
}
.wp-singular.page .text_content strong{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #080C09;
}
.header-actions .account-menu > a.mobile-search-btn,
.header-actions .account-menu > a.mobile-menu-btn{
    display: none;
}
.mobile-sidebar-header {
    display: none;
}
#toggleSidebar {
    padding: 0px 48px 0 8px;
    border: none;
    background: none;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #5A5C4C;
    position: relative;
}
#toggleSidebar::after{
    content:"";
    width: 24px;
    height: 24px;
    background: url('assets/images/filter-icon.svg');
    position: absolute;
    right: 3px;
    top: 0px;
}
#closeSidebar.close-btn {
    background: none;
    border: none;
    font-size: 14px;
    position: absolute;
    top: 0px;
    right: 5px;
    cursor: pointer;
    z-index: 100;
}
body.no-scroll {
    overflow: hidden;
}
.xt_woofc-footer{
    display: flex;
}
.xt_woofc-footer .xt_woofc-cart{
    display: block;
    height: var(--xt-woofc-checkout-btn-height);
    line-height: var(--xt-woofc-checkout-btn-height);
    text-align: center;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    transition: all .5s;
    transform: translateX(0);
    overflow: hidden;
    opacity: 0;
    word-wrap: initial;
    color: #fff;
    padding: 0 20px;
    width: 110px;
}
.xt_woofc-cart-open .xt_woofc-footer .xt_woofc-cart{
    opacity: 1;
    transition: color .2s,opacity .3s,visibility .3s,transform .5s ease,border-radius .5s;
    background: var(--primary);
}
.xt_woofc-footer .xt_woofc-checkout{
    width: 100%;
    font-size: 20px !important;
}
.empty-cart-bg{
    width: 100%;
    height: 240px;
    background: #D1D1D1;
    margin-bottom: 40px;
}
.woocommerce-cart .return-to-shop{
    display: none;
}
.woo-reviews-tabs{
    margin-bottom: 40px;
}
.woo-review-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.woo-review-head .woo-reviews-title{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    color: #080C09;
    border: none;
    margin: 0;
    padding: 0;
}
.woo-review-head-right{
    display: flex;
}
.woo-review-head-right .woo-reviews-filters{
    margin-bottom: 0;
}
.woo-review-head-right .woo-reviews-write-review{
    margin-left: 5px;
}
.woo-review-head-right .woo-reviews-sort{
    display: inline;
    width: 135px;
    margin-top: -20px;
}
.woo-review-head-right .woo-reviews-write-review a {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0px 0px 12px #BBE2C2;
    backdrop-filter: blur(3.9px);
    border-radius: 4px;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    overflow: hidden;
}
.woo-reviews-summary{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 20px;
    background: #F3F4F1;
    border-radius: 16px;
}
.woo-reviews-summary .woo-reviews-average{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}
.woo-reviews-rating-bars{
    max-width: none;
}
.woo-reviews-rating-stars{
    width: 125px;
}
.review-list{
    justify-content: flex-start;
}
.woo-reviews-average-rating{
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    color: #36523D;
}
.woo-reviews-based-on{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #5A5C4C;
}
.woo-reviews-rating-bar-container{
    height: 16px;
    background-color: #fff;
}
.woo-reviews-rating-bar{
    background: #F79E1B;
    border-radius: 16px;
}
.woo-reviews-rating-count{
    font-family: var(--font-family-inter);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.01em;
    color: #454545;
}
.review-header + .review-text{
    position: relative;
    padding-top: 15px;
}
.review-header + .review-text::before {
    content: "";
    width: 100%;
    height: 4px;
    background: url('assets/images/line-4.svg') no-repeat top center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top,
    .mega-menu{
        display: none;
    }
    .main-header.sticky{
        top: 0px;
    }
    .header-actions .header-actions-container{
        padding: 8px 16px;
        width: 100vw;
    }
    .header-actions .logo{
        width: 144px;
    }
    .header-actions .logo img{
        max-width: 100%;
    }
    .header-actions .search-bar{
        display: none;
    }
    .header-actions .account-menu{
        flex-grow: 1;
        justify-content: flex-end;
        padding-left: 0;
    }
    .header-actions .account-menu > a{
        font-size: 0;
        gap:0;
    }
    .header-actions .account-menu > a.user-btn,
    .header-actions .account-menu > a.wishlist-top-btn{
        display: none;
    }
    .header-actions .account-menu > a.mobile-search-btn,
    .header-actions .account-menu > a.mobile-menu-btn{
        display: flex;
    }
    .hero{
        margin-top: 0;
    }
    .hero-container{
        flex-direction: column;
        padding: 24px 15px;
        gap: 0;
    }
    .hero-content h1{
        font-size: 24px;
    }
    .hero-content h1 span{
        font-size: 24px;
    }
    .hero-description{
        width: 100%;
    }
    .top-collections .top-collection-container{
        padding: 40px 20px 40px 20px;
    }
    .top-collections .section-header, .reviews-section .section-header{
        padding: 10px 10px 50px 10px;
    }
    .collection-right .bottom-row{
        gap:20px;
    }
    .collection-right .bottom-row .collection-card {
        aspect-ratio: 1/2;
    }
    .collection-card .card-content{
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-header h2{
        font-size: 32px;
    }
    .collections-list{
        flex-direction: column;
        gap:20px;
    }
    .collection-right{
        gap:20px;
    }
    .collection-card .card-content {
        background: none;
        backdrop-filter: none;
    }
    .collection-card h3{
        font-size: 20px;
        line-height: 120%;
        margin-bottom: 10px;
        padding-right: 0;
    }
    .category-tabs{
        flex-direction: column;
        gap:10px;
    }
    ul.products > li, .product-card{
        width: 100%;
    }
    .review-card{
        width: 100%;
    }
    .home-category-section .category-section-container{
        padding: 30px 15px;
    }
    .product-list .category-card{
        flex-grow: 1;
    }
    .category-card h2{
        font-size: 32px;
        line-height: 120%;
    }
    .category-banner-section .category-banner-content{
        padding: 30px 15px;
    }
    .category-banner-section .category-banner-content .category-banner-title{
        font-size: 28px;
        line-height: 120%;
    }
    .category-banner-section .category-banner-content .category-banner-btn,
    .reviews-footer a,
    .category-tab-footer a{
        width: 100%;
    }
    .hero-banners .shoppable-image-container{
        margin: 0;
    }
    .hero-banners .shoppable-image-wrapper{
        display: block;
    }
    .hero-banners .shoppable-image{
        height: 225px;
        width: 100%;
        object-fit: cover;
    }
    .footer-content{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-content .footer-col{
        width: 100%;
    }
    .footer-content .footer-col.footer-menu,
    .footer-content .footer-col.footer-account-menu{
        width: 50%;
    }
    .footer-newsletter .btn{
        padding: 10px 20px;
    }
    .footer-bottom{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .footer-bottom > div{
        width: 100%;
    }
    .footer-social{
        text-align: center;
    }
    .woo-category-section .woo-left-sidebar{
        width: 100%;
    }
    .mobile-sidebar-header {
        display: block;
        text-align: right;
    }
    .category_leftsidebar{
        border-right: none;
        box-shadow: none;
        position: fixed;
        top: 0;
        left: -350px;
        width: 350px;
        height: 100%;
        background: #fff;
        transition: transform 0.3s ease;
        z-index: 10000;
        padding: 30px 20px;
        overflow: auto;
    }
    .category_leftsidebar.active {
        transform: translateX(350px);
    }
    .mobile-sidebar-overlay{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 9999;
    }
    .mobile-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .woo-cat-products .woocommerce-ordering{
        width: 48%;
    }
    .single-product .product-details-section{
        padding-left: 0;
    }
    .single-product .product-main-content{
        display: block;
    }
    .single-product .product-images-section{
        width: 100%;
    }
    .single-product .main-image-container{
        height: 340px;
    }
    .single-product .product-thumbnail{
        width: 60px;
        height: 60px;
    }
    .single-product .image-count-overlay{
        width: 60px;
        height: 23px;
        left: calc(50% - 30px);
        top: calc(50% - 12px);
        font-size: 22px;
        line-height: 23px;
    }
    .single-product .product-title{
        flex: none;
        order: 3;
        max-width: 100%;
    }
    .single-product .product-title h1{
        font-size: 24px;
        line-height: 120%;
    }
    .single-product .single_add_to_cart_button{
        min-width: 165px;
    }
    .single-product .product-additional-info .related.products > h2{
        font-size: 32px;
        line-height: 120%;
    }
    .single-product .woo-review-head{
        flex-direction: column;
        gap: 20px;
    }
    .single-product .woo-review-head .woo-reviews-title{
        font-size: 32px;
        line-height: 120%;
    }
    .single-product .woo-review-head-right {
        width: 100%;
        justify-content: space-between;
    }
    .single-product .product-additional-info .woo-reviews-summary{
        flex-direction: column;
    }
    .featured-blog-container{
        display: none;
    }
    .blog-post-lists .blog-post{
        width: 100%;
    }
}