.elementor-71 .elementor-element.elementor-element-1912f76{--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-71 .elementor-element.elementor-element-ec87f78{--display:flex;}/* 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 *//* ===== Categories Page Styles ===== */

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.categories-intro h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--black);
    margin-bottom: 16px;
}

.categories-intro p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.category-card.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-medium);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(90, 90, 69, 0.9) 0%, rgba(90, 90, 69, 0.4) 100%);
}

.category-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.category-name {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.category-card.large .category-name {
    font-size: 36px;
}

.category-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Featured Categories */
.featured-categories {
    background: var(--cream);
    padding: 80px 0;
}

.featured-categories h2 {
    font-family: var(--font-display);
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.featured-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.featured-cat-item {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-medium);
    cursor: pointer;
}

.featured-cat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-cat-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--olive-dark);
    transition: var(--transition-medium);
}

.featured-cat-item:hover .featured-cat-icon {
    background: var(--olive-dark);
    color: var(--white);
}

.featured-cat-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 8px;
}

.featured-cat-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 400px;
    }

    .featured-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card,
    .category-card.large {
        grid-column: span 1;
        height: 300px;
    }

    .category-name {
        font-size: 24px;
    }

    .category-card.large .category-name {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .featured-cat-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS */body {
    margin: 0;
}/* End custom CSS */