.elementor-48 .elementor-element.elementor-element-ed13c81{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-48 .elementor-element.elementor-element-ec87f78{--display:flex;--margin-top:20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-8dd0b78 */.filter-tabs .filter-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.12);
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  transition:.2s ease;
}

.filter-tabs .filter-btn.active{
  background:#5a5a43; /* theme green/olive */
  color:#fff;
  border-color:#5a5a43;
}

.filter-tabs .filter-btn:hover{
  transform:translateY(-1px);
}

.filter-tabs .filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.12);
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s ease;
    color: #000;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e73b84d *//* ===== Common CSS - Shared across all pages ===== */

/* CSS Variables & Root */
:root {
    --olive-dark: #5a5a45;
    --olive-medium: #6b6b52;
    --olive-light: #7a7a64;
    --cream: #f5f3ee;
    --cream-light: #faf9f6;
    --white: #ffffff;
    --black: #1a1a1a;
    --text-dark: #333333;
    --text-muted: #666666;
    --gold: #c9a45c;
    --gold-light: #dfc07a;
    --border-light: #e5e5e5;
    --success: #4caf50;
    --danger: #e53935;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Top Banner ===== */
.top-banner {
    background: var(--olive-dark);
    color: var(--white);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.banner-slider {
    position: relative;
    height: 20px;
    overflow: hidden;
}

.banner-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    white-space: nowrap;
    transition: all 0.5s ease;
}

.banner-text.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.banner-nav {
    color: var(--white);
    opacity: 0.7;
    font-size: 12px;
    padding: 4px 8px;
    transition: var(--transition-fast);
}

.banner-nav:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== Header ===== */
.main-header {
    background: var(--olive-dark);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-medium);
}

.main-header.scrolled {
    padding: 12px 24px;
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-medium);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    width: 70px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-medium);
}

.desktop-nav {
    display: none;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    color: var(--white);
    font-size: 18px;
    padding: 8px;
    position: relative;
    transition: var(--transition-medium);
}

.icon-btn:hover {
    transform: translateY(-2px);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--olive-dark);
    z-index: 999;
    transition: var(--transition-slow);
    padding: 100px 24px 24px;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    transition: var(--transition-medium);
}

.mobile-nav.active li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav.active li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav.active li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav.active li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav.active li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
    padding-left: 10px;
}

/* ===== Footer ===== */
.main-footer {
    background: var(--olive-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-medium);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
}

/* ===== Page Header Banner ===== */
.page-header {
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://homewaremerchants.com/cdn/shop/files/Category_Banner_-_Tri-Ply.webp?v=1743503995&width=1920') center/cover;
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--olive-dark);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: var(--transition-slow);
}

.btn-primary:hover {
    background: var(--olive-medium);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--olive-dark);
    padding: 15px 35px;
    border: 2px solid var(--olive-dark);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
}

.btn-outline:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--olive-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--olive-medium);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--olive-dark);
}

::selection {
    background: var(--olive-dark);
    color: var(--white);
}

/* ===== Responsive ===== */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eb979b2 *//* ===== Products Page Styles ===== */

/* Products Filter Section */
.products-filter {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-light);
    border-radius: 30px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover {
    border-color: var(--olive-dark);
    color: var(--olive-dark);
}

.filter-btn.active {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    color: var(--white);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-dropdown select {
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--olive-dark);
}

/* Products Grid */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--olive-dark);
    color: var(--white);
}

.product-badge.sale {
    background: var(--danger);
    color: var(--white);
}

.product-badge.featured {
    background: var(--gold);
    color: var(--black);
}

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-medium);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.action-btn:hover {
    background: var(--olive-dark);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--olive-dark);
}

.original-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 14px;
    background: var(--olive-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: var(--olive-medium);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination button,
.pagination a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination button:hover,
.pagination a:hover,
.pagination .active {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tabs {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS */body {
    margin: 0;
}/* End custom CSS */