.elementor-234 .elementor-element.elementor-element-e14c443{--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-234 .elementor-element.elementor-element-bb9c366{--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-234 .elementor-element.elementor-element-b9e3e5a{--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-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-400ca81 *//* ===== 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);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== 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;
}



.logo img {
    width: 70px;
}

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;
}

/* ===== Loader ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--olive-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;

}

.logo-img {
    height: 60px;
    width: auto;

    transition: var(--transition-medium);
}

.logo:hover .logo-img {}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* ===== 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-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: var(--transition-medium);
}

.logo:hover .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.logo-h,
.logo-m {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
}

.logo-h {
    font-size: 16px;
}

.logo-m {
    font-size: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.2;
}

.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 {
    width: 100%;
}

.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);
}

.icon-btn:hover i {
    animation: wobble 0.5s ease;
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.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;
}

.cart-count.bounce,
.wishlist-count.bounce {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }
}

/* ===== 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 {
    color: var(--gold);
    padding-left: 10px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.slide.active .slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.7s;
}

.slide.active .slide-desc {
    opacity: 0.9;
    transform: translateY(0);
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.9s;
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.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(--white);
    padding: 15px 35px;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-medium);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: var(--transition-medium);
    cursor: pointer;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Shipping Badge */
.shipping-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.badge-content {
    background: var(--olive-medium);
    color: var(--white);
    padding: 16px 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-medium);
}

.badge-content:hover {
    padding-right: 16px;
}

.badge-close {
    color: var(--white);
    font-size: 18px;
    opacity: 0.7;
    writing-mode: horizontal-tb;
    transition: var(--transition-fast);
}

.badge-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== Features Bar ===== */
.features-bar {
    background: var(--white);
    padding: 30px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    border-bottom: 1px solid var(--border-light);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    transition: var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 32px;
    color: var(--olive-dark);
    transition: var(--transition-medium);
}

.feature-item:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

.feature-item strong {
    display: block;
    font-size: 14px;
    color: var(--black);
}

.feature-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Section Titles ===== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.section-title.light {
    color: var(--white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ===== Tagline Section ===== */
.tagline-section {
    background: var(--cream);
    padding: 80px 24px;
    text-align: center;
}

.highlight {
    color: var(--olive-dark);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 4px;
    text-decoration-color: var(--gold);
}

/* ===== Categories Section ===== */
.categories-section {
    padding: 80px 24px;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(30px);
    transition: var(--transition-medium);
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.category-overlay span {
    font-size: 13px;
    opacity: 0.8;
    display: block;
    margin-bottom: 16px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-medium);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateX(0);
}

.category-link:hover {
    gap: 12px;
}

/* ===== Products Section ===== */
.products-section {
    background: var(--olive-dark);
    padding: 80px 24px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-medium);
}

.filter-btn:hover {
    border-color: var(--white);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
}

.product-img-main,
.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-img-hover {
    opacity: 0;
}

.product-card:hover .product-img-main {
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.sale {
    background: var(--danger);
    color: var(--white);
}

.product-badge.new {
    background: var(--success);
    color: var(--white);
}

.product-badge.featured {
    background: var(--gold);
    color: var(--black);
}

.product-actions {
    position: absolute;
    right: 16px;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-medium);
    z-index: 2;
}

.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;
    color: var(--text-dark);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.action-btn:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: scale(1.1);
}

.action-btn.active {
    background: var(--danger);
    color: var(--white);
}

.product-info {
    padding: 24px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--gold);
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 4px;
}

.product-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--olive-dark);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--olive-dark);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-add-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    background: var(--olive-medium);
    transform: translateY(-2px);
}

.btn-add-cart.clicked {
    transform: scale(0.95);
}

.btn-add-cart.options {
    background: var(--olive-light);
}

.view-all-wrapper {
    text-align: center;
    margin-top: 48px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 40px;
    border: 2px solid var(--white);
    border-radius: 6px;
    transition: var(--transition-medium);
}

.btn-view-all:hover {
    background: var(--white);
    color: var(--olive-dark);
    gap: 16px;
}

/* ===== Best Buy Section ===== */
.best-buy-section {
    background: var(--cream);
    padding: 100px 24px;
    overflow: hidden;
}

.best-buy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.best-buy-image .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.best-buy-image img {
    width: 100%;
    transition: var(--transition-slow);
}

.best-buy-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.badge-percent {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
}

.best-buy-info .info-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.best-buy-info h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
}

.best-buy-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.countdown-timer {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.countdown-item {
    text-align: center;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    min-width: 70px;
}

.countdown-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1;
}

.countdown-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.price-now {
    font-size: 36px;
    font-weight: 700;
    color: var(--olive-dark);
}

.price-was {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--olive-dark);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-medium);
}

.btn-secondary:hover {
    background: var(--olive-medium);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== Trending Section ===== */
.trending-section {
    padding: 80px 24px;
    background: var(--white);
    overflow: hidden;
}

.trending-slider {
    overflow: hidden;
    margin-top: 40px;
}

.trending-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.trending-track::-webkit-scrollbar {
    display: none;
}

.trending-card {
    flex: 0 0 220px;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-medium);
    cursor: pointer;
}

.trending-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.trending-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.trending-info {
    padding: 16px;
    text-align: center;
}

.trending-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trending-info span {
    font-size: 16px;
    font-weight: 700;
    color: var(--olive-dark);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 24px;
    background: var(--olive-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--olive-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: var(--black);
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-medium) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    background: var(--white);
    transition: var(--transition-medium);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.4);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-medium);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ===== Instagram Section ===== */
.instagram-section {
    padding: 80px 24px 40px;
    background: var(--cream);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 90, 69, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.insta-overlay i {
    font-size: 32px;
    color: var(--white);
    transform: scale(0.5);
    transition: var(--transition-medium);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

/* ===== Footer ===== */
.main-footer {
    background: var(--olive-dark);
}

.footer-top {
    padding: 60px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
}

.footer-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-col .logo-icon {
    width: 45px;
    height: 45px;
}

.footer-col>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.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;
    color: var(--white);
    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-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--gold);
    width: 16px;
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px;
}

.footer-bottom .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods i:hover {
    color: var(--white);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 24px;
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom .footer-links a:hover {
    color: var(--gold);
}

/* ===== 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;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

/* ===== Quick View Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transition: var(--transition-medium);
}

.modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    height: 500px;
    background: var(--cream);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
}

.modal-info h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--black);
    margin-bottom: 16px;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
}

.modal-rating span {
    color: var(--text-muted);
    margin-left: 8px;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.qty-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.qty-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.qty-btn:hover {
    background: var(--olive-dark);
    color: var(--white);
}

.modal-quantity input {
    width: 60px;
    height: 44px;
    border: 1px solid var(--border-light);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.modal-quantity input:focus {
    outline: none;
}

.modal-cart {
    width: auto;
    padding: 16px 32px;
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        left: 5%;
        right: 5%;
    }

    .best-buy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 12px;
        gap: 20px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 16px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 300px;
    }

    .modal-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 55vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-desc {
        font-size: 14px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 16px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-text {
        display: none;
    }
}

/* ===== Hover Effects ===== */
@media (hover: hover) {
    .product-card:hover .product-title {
        color: var(--olive-dark);
    }
}

/* ===== Scrollbar Styling ===== */
::-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 Styling ===== */
::selection {
    background: var(--olive-dark);
    color: var(--white);
}

/* ===== Offer Modal Popup ===== */
.offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.offer-modal.active {
    opacity: 1;
    visibility: visible;
}

.offer-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.offer-modal-box {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.7) translateY(80px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-modal.active .offer-modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.offer-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.offer-close-btn:hover {
    background: var(--olive-dark);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.offer-modal-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.offer-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.offer-modal.active .offer-modal-img img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #e53935, #ff5252);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.offer-modal-content {
    padding: 28px;
    text-align: center;
}

.offer-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.offer-modal-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--olive-dark);
    margin-bottom: 8px;
}

.offer-modal-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.offer-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cream);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px dashed var(--olive-light);
}

.offer-code span {
    font-size: 13px;
    color: var(--text-muted);
}

.offer-code strong {
    font-size: 18px;
    color: var(--olive-dark);
    letter-spacing: 2px;
}

.offer-shop-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.offer-shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(90, 90, 69, 0.4);
}

.offer-shop-btn:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 480px) {
    .offer-modal-box {
        max-width: 95%;
        border-radius: 16px;
    }

    .offer-modal-img {
        height: 180px;
    }

    .offer-modal-content {
        padding: 20px;
    }

    .offer-modal-content h2 {
        font-size: 26px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-b9e3e5a */nav.desktop-nav li {
    list-style: none;
}

nav.desktop-nav li a {
    color: #fff;
    text-transform: uppercase;
}

.products-filter {
    top: 0;
}



/* ================================
   PRODUCT PAGE – CLEANUP + STYLE
================================= */

/* Remove duplicate notices (sometimes theme prints twice) */
.single-product .woocommerce-notices-wrapper + .woocommerce-notices-wrapper {
  display: none !important;
}

/* Make Woo notice premium */
.single-product .woocommerce-notices-wrapper .woocommerce-message,
.single-product .woocommerce-notices-wrapper .woocommerce-info,
.single-product .woocommerce-notices-wrapper .woocommerce-error {
  border: 0 !important;
  border-left: 4px solid #6b6a4a !important; /* your olive */
  background: #f6f6f2 !important;
  padding: 14px 16px !important;
  margin: 18px auto !important;
  border-radius: 10px !important;
  max-width: 1180px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  font-size: 14px;
}

/* Button in notice */
.single-product .woocommerce-message .button,
.single-product .woocommerce-info .button {
  background: #6b6a4a !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  border: 0 !important;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.single-product .woocommerce-message .button:hover,
.single-product .woocommerce-info .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}


/* Page width + breathing room */
.single-product div.product {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 16px 40px;
}

/* Gallery + summary grid */
@media (min-width: 992px){
  .single-product div.product {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: start;
  }

  .single-product div.product .woocommerce-product-gallery {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
  }

  .single-product div.product .summary {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    position: sticky;
    top: 110px;
  }
}

/* Card look */
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Product image nicer */
.single-product .woocommerce-product-gallery__wrapper img {
  border-radius: 14px;
  transform: translateZ(0);
}


/* Title */
.single-product .product_title {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px !important;
  color: #1f1f1f;
  letter-spacing: -0.3px;
}

/* Price */
.single-product p.price,
.single-product span.price {
  font-size: 20px !important;
  font-weight: 700;
  color: #6b6a4a !important; /* olive */
  margin-bottom: 16px !important;
}

/* Meta */
.single-product .product_meta {
  margin-top: 18px;
  font-size: 13px;
  color: #666;
}
.single-product .product_meta a { color: #6b6a4a; }


/* Quantity + button row */
.single-product form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0 8px !important;
}

.single-product .quantity input.qty {
  height: 46px;
  width: 80px !important;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
  font-weight: 600;
}

/* Main add to cart button */
.single-product button.single_add_to_cart_button {
  height: 46px;
  background: #6b6a4a !important; /* olive */
  color: #fff !important;
  border-radius: 12px !important;
  border: 0 !important;
  padding: 0 18px !important;
  font-weight: 700 !important;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.single-product button.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

.single-product button.single_add_to_cart_button:active {
  transform: translateY(0px) scale(.98);
}

/* Tabs area */
.single-product .woocommerce-tabs {
  max-width: 1180px;
  margin: 26px auto 0;
  padding: 0 16px 40px;
}

.single-product .woocommerce-tabs ul.tabs {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f3ef;
  color: #222 !important;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
  background: #6b6a4a;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Tab panel */
.single-product .woocommerce-tabs .panel {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}


/* ==============================
   HOMEWARE CART (WooCommerce)
   ============================== */

:root{
  --hw-accent: #5c5a3f;   /* olive theme */
  --hw-bg: #f6f6f2;
  --hw-card: #ffffff;
  --hw-text: #111827;
  --hw-muted: #6b7280;
  --hw-border: rgba(17,24,39,.10);
  --hw-radius: 16px;
}

/* Page background + spacing */
.woocommerce-cart .site-main,
.woocommerce-cart main{
  background: var(--hw-bg);
  padding: 40px 0;
}

/* Container width fix */
.woocommerce-cart .woocommerce{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Remove default table ugliness */
.woocommerce-cart table.shop_table{
  border: 0 !important;
  background: transparent !important;
}

/* Grid layout: cart left, totals right */
.woocommerce-cart .woocommerce-cart-form{
  background: var(--hw-card);
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.woocommerce-cart .cart-collaterals{
  margin-top: 18px;
}

@media (min-width: 992px){
  .woocommerce-cart .woocommerce{
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 22px;
    align-items: start;
  }
  .woocommerce-cart .woocommerce-cart-form{
    margin: 0;
  }
  .woocommerce-cart .cart-collaterals{
    margin: 0;
  }
}

/* Cart table row spacing */
.woocommerce-cart table.cart tbody tr{
  background: #fff;
  border: 1px solid var(--hw-border);
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce-cart table.cart tbody tr + tr{
  margin-top: 12px;
}

.woocommerce-cart table.cart thead th{
  color: var(--hw-muted);
  font-weight: 700;
  letter-spacing: .02em;
  border: 0 !important;
  padding: 12px 10px;
}

.woocommerce-cart table.cart td{
  border: 0 !important;
  padding: 16px 10px;
  vertical-align: middle;
  color: var(--hw-text);
}

/* Thumbnail */
.woocommerce-cart table.cart img{
  width: 70px !important;
  height: 70px !important;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--hw-border);
  padding: 6px;
}

/* Product name + price */
.woocommerce-cart .product-name a{
  color: var(--hw-text);
  font-weight: 700;
  text-decoration: none;
}
.woocommerce-cart .product-name a:hover{
  color: var(--hw-accent);
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal{
  font-weight: 700;
}

/* Remove item link */
.woocommerce-cart .product-remove a{
  color: #ef4444 !important;
  font-size: 20px;
}
.woocommerce-cart .product-remove a:hover{
  background: rgba(239,68,68,.10) !important;
  border-radius: 10px;
}

/* Quantity box */
.woocommerce-cart .quantity .qty{
  width: 90px !important;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--hw-border);
  background: #fff;
  font-weight: 700;
  color: var(--hw-text);
}

/* Coupon row */
.woocommerce-cart .coupon{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-cart .coupon input.input-text{
  min-width: 220px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--hw-border);
  padding: 0 12px;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit{
  background: var(--hw-accent) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 12px !important;
 
  font-weight: 800 !important;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover{
  opacity: .95;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

/* Update cart button align */
.woocommerce-cart button[name="update_cart"]{
  margin-top: 12px;
}

/* Totals card */
.woocommerce-cart .cart-collaterals .cart_totals{
  background: var(--hw-card);
  border: 1px solid var(--hw-border);
  border-radius: var(--hw-radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.woocommerce-cart .cart_totals h2{
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}

.woocommerce-cart .cart_totals table{
  border: 0 !important;
}

.woocommerce-cart .cart_totals th{
  color: var(--hw-muted);
  font-weight: 700;
  border: 0 !important;
  padding: 10px 0;
}
.woocommerce-cart .cart_totals td{
  border: 0 !important;
  padding: 10px 0;
  text-align: right;
  font-weight: 800;
}

/* Checkout button full width */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 14px 18px !important;
  border-radius: 14px !important;
}

/* Mobile cleanup */
@media (max-width: 768px){
  .woocommerce-cart .woocommerce{
    padding: 0 14px;
  }
  .woocommerce-cart table.cart td{
    padding: 12px 8px;
  }
  .woocommerce-cart table.cart img{
    width: 60px !important;
    height: 60px !important;
  }
}


/* ==============================
   FIX CART PAGE CONTAINER SPACING
   ============================== */

/* Main cart wrapper */
.woocommerce-cart #site-content .post-inner,
.woocommerce-cart .post-inner.thin {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box;
}

/* Woo block container fix */
.woocommerce-cart .wp-block-woocommerce-cart {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px !important;
}

/* Prevent full stretch */
.woocommerce-cart .entry-content {
  max-width: 100% !important;
}

/* Desktop layout spacing */
@media (min-width: 992px) {

  .woocommerce-cart .wp-block-woocommerce-cart {
    padding: 30px 25px !important;
  }

}

/* Tablet */
@media (max-width: 991px) {

  .woocommerce-cart #site-content .post-inner,
  .woocommerce-cart .post-inner.thin {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

}

/* Mobile */
@media (max-width: 576px) {

  .woocommerce-cart #site-content .post-inner,
  .woocommerce-cart .post-inner.thin {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .woocommerce-cart .wp-block-woocommerce-cart {
    padding: 12px !important;
  }

}



/* ================================
   WooCommerce Checkout Layout
================================ */

/* Main checkout container */
.woocommerce-checkout .woocommerce,
.woocommerce-checkout .wc-block-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Left–Right space */
    box-sizing: border-box;
}

/* Two-column layout (Form + Order Summary) */
.woocommerce-checkout .col2-set,
.wc-block-checkout__main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Left side (Billing / Contact) */
.woocommerce-checkout .col2-set .col-1,
.wc-block-checkout__form {
    padding-right: 20px;
}

/* Right side (Order Summary) */
.woocommerce-checkout .col2-set .col-2,
.wc-block-checkout__sidebar {
    padding-left: 20px;
}

/* Order Summary Box */
.wc-block-checkout__order-summary,
.woocommerce-checkout-review-order {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

/* ================================
   Tablet View
================================ */
@media (max-width: 1024px) {

    .woocommerce-checkout .col2-set,
    .wc-block-checkout__main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2,
    .wc-block-checkout__form,
    .wc-block-checkout__sidebar {
        padding: 0;
    }

}


/* ================================
   Mobile View
================================ */
@media (max-width: 768px) {

    .woocommerce-checkout .woocommerce,
    .woocommerce-checkout .wc-block-checkout {
        padding: 0 15px;
    }

    .wc-block-checkout__order-summary,
    .woocommerce-checkout-review-order {
        padding: 15px;
    }

}/* End custom CSS */