@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Sans-serif;
}

:root {
  --red-primary: #e51a2a;
  --blue-primary: #394e99;
}

body {
    font-family: Inter, sans-serif;
    color: #222
}

img {
    width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

a:hover,
a:focus,
a:active {
	color: var(--red-primary);
}


/* =======================================================
         HEADER TOP
========================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    border-bottom: 1px solid #e5e5e5;
}

.header-top {
    display: grid;
    grid-template-columns: 1.4fr auto 1fr auto;
    align-items: center;
    gap: 35px;
    padding: 15px 50px;
}

.header-contact-left{
    display:flex;
    align-items:center;
    gap:28px;
}

.header-contact-left a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#000;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

.logo {
    font-size: 0px;
    letter-spacing: 3px;
    text-align: center;
}

img.custom-logo{
    width:200px;
}

.header-contact-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    color:#444;
    font-size:14px;
    white-space:nowrap;
}

.header-contact-right i,
.header-contact-left i{
    color:#000;
}


.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    text-align: right;
    font-size: 16px;
}

.header-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
    position: relative;
}

.header-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #000;
    stroke-width: 1.8;
}

.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.inline-search-form {
    width: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.inline-search-form input {
    width: 220px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.header-search-wrapper.active .inline-search-form {
    width: 240px;
    margin-left: 10px;
}

.cart-icon .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 11px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======================================================
         NAVIGATION BAR
========================================================== */

.main-nav {
    border-top: 1px solid #eee;
    padding: 14px 0;
    text-align: center;
}

.main-nav a {
    margin: 0 18px;
    font-size: 15px;
}

ul#menu-primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

ul#menu-primary-menu li a:hover {
    color: var(--red-primary) !important;
}


/* =======================================================
         HAMBURGER BUTTON
========================================================== */

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =======================================================
         MOBILE MENU
========================================================== */

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height 0.35s ease;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-menu.open {
    max-height: 100vh;
}

.mobile-menu a,
.mobile-menu li a {
    display: block;
    padding: 13px 20px;
    font-size: 15px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
    list-style: none;
}

.mobile-menu a:hover,
.mobile-menu li a:hover {
    color: var(--red-primary);
    background-color: #fdf5f5;
}

.mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu-section-title {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    background: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
}


/* =======================================================
         HERO
========================================================== */ 
        
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* overlay color */
        z-index: 1;   /* FIX */
}

.hero-content {
    position: relative;
    z-index: 2;   /* text upar rahe */
    padding-top: 80px;
}

.hero-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 6vw, 8.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2em;
}

.hero p {
    margin: 10px 0px 50px;
    font-size: 40px;
    color: #fff;
}

.hero .btn {
    padding: 12px 30px;
    border: none;
    background: #fff;
    cursor: pointer;
}


       .ms-clearance-section {
            padding: 80px 20px;
            position: relative;
            margin-top: -180px;
            z-index: 999;
        }

        .ms-clearance-container {
            max-width: 1300px;
            margin: auto
        }

        .ms-clearance-wrapper {
            background: #fff;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08)
        }

        .ms-clearance-header {
            text-align: center;
            margin-bottom: 40px
        }

        .ms-clearance-header span {
            color: #c1573c;
            font-size: 13px;
            letter-spacing: 3px;
            font-weight: bold
        }

        .ms-clearance-header h2 {
            font-size: 42px;
            margin: 12px 0
        }
.ms-clearance-description{

    margin:15px 0;

    color:#666;

    font-size:15px;

    line-height:1.7;

}
        .ms-clearance-header p {
            max-width: 650px;
            margin: auto;
            color: #666;
            line-height: 1.7
        }

        .ms-clearance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px
        }

        .ms-clearance-card {
            border: 1px solid #eee;
            border-radius: 18px;
            overflow: hidden;
            background: #fff;
            transition: .3s
        }

        .ms-clearance-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
        }

        .ms-clearance-image {
            position: relative;
            height: 260px;
            background: #fafafa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px
        }

        .ms-clearance-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain
        }

        .ms-clearance-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #c1573c;
            color: #fff;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 12px
        }

        .ms-clearance-content {
            padding: 22px
        }

        .ms-clearance-content h3 {
            margin-bottom: 12px
        }

        .ms-clearance-price {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 14px
        }

        .ms-clearance-old-price {
            text-decoration: line-through;
            color: #888
        }

        .ms-clearance-new-price {
            font-size: 28px;
            font-weight: bold;
            color: #c1573c
        }

        .ms-clearance-stock {
            display: inline-block;
            background: #edf7ed;
            color: #c1573c;
            padding: 8px 14px;
            border-radius: 20px
        }


/* =======================================================
         COMMON SECTION
========================================================== */ 
        
.section {
    padding: 40px 70px 40px 70px;
}

.section h2 {
    /*font-size: 28px;*/
    font-size: 35px;
    margin-bottom: 15px;
}

/* =======================================================
         CATEGORIES Section Home Page
========================================================== */ 

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category {
    background: #fff;
    border-radius: 10px;
}

.category a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.category p {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}


/* =======================================================
         PRODUCTS Section Home Page
========================================================== */ 


.best-sellers h2{
    text-align: left;
}
.section-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.best-sellers .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.image-wrap {
    background: #f6f6f4;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-wrap img {
    max-height: 100%;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.info {
    padding: 20px 10px 10px;
}

.info p {
    font-size: 13px;
    color: #555;
    margin: 6px 0 0;
}

.product-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 10px 10px;
}
.title-price {
    align-items: center;
    position: relative;
}

.title-price h3 {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.title-price span, .amount {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
}

.wishlist {
    display: none;
    color: #8b7a4a;
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
}

.product:hover .wishlist {
    display: inline-block;
}






/*=========================== monthly special =================================================*/



    .wws-section,
    .wws-section * {
        box-sizing: border-box;
    }

    .wws-section {
        font-family: 'Inter', sans-serif;
        color: #2b241d;
        padding: 70px 24px;
        background: #efeae3;
    }

    .wws-section a { text-decoration: none; color: inherit; }
    .wws-section img { display: block; width: 100%; margin: 0; padding: 0; }
    .wws-section button { font-family: inherit; border: none; background: none; cursor: pointer; margin: 0; padding: 0; }

    .wws-card {
        position: relative;
        max-width: 1420px;
        margin: 0 auto;
        background: #faf6f0;
        border-radius: 22px;
        padding: 56px 64px 44px;
        box-shadow: 0 30px 70px rgba(60, 42, 22, .08);
    }

    /* ---------- SAVE BADGE ---------- */

    .wws-save-badge {
        position: absolute;
        top: 44px;
        right: 56px;
        width: 128px;
        height: 128px;
        border-radius: 50%;
        background: #c1573c;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 20px 40px rgba(193, 87, 60, .35);
    }

    .wws-save-badge .star { font-size: 11px; margin-bottom: 4px; opacity: .9; }
    .wws-save-badge .save-label { font-size: 9.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }
    .wws-save-badge .save-pct { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; line-height: 1.1; margin: 2px 0; }
    .wws-save-badge .save-off { font-size: 10.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; opacity: .9; }

    /* ---------- HEADER ---------- */

    .wws-top { text-align: center; margin-bottom: 46px; }

    .wws-eyebrow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #c1573c;
        margin: 0 0 20px;
    }

    .wws-eyebrow .line { width: 46px; height: 1px; background: rgba(193, 87, 60, .4); }
    .wws-eyebrow .diamond { width: 6px; height: 6px; background: #c1573c; transform: rotate(45deg); }

    .wws-title {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        font-size: 46px;
        color: #241d15;
        margin: 0 0 14px;
    }

    .wws-subtitle { font-size: 15.5px; color: #8a8072; font-weight: 400; margin: 0; }

    /* ---------- CONTENT GRID ---------- */

    .wws-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.4fr;
        gap: 26px;
        margin-bottom: 40px;
    }

    /* hero */
    .wws-hero {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        min-height: 460px;
        background: #e5ddcd;
    }

    .wws-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .wws-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 38px 34px;
        background: linear-gradient(100deg, rgba(250, 246, 240, .96) 0%, rgba(250, 246, 240, .8) 42%, rgba(250, 246, 240, 0) 70%);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .wws-hero-eyebrow {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c1573c;
        margin: 0 0 14px;
    }

    .wws-hero-title {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        font-size: 30px;
        line-height: 1.25;
        color: #241d15;
        margin: 0 0 16px;
        max-width: 230px;
    }

    .wws-hero-desc {
        font-size: 14px;
        line-height: 1.7;
        color: #6b6154;
        max-width: 220px;
        margin: 0 0 26px;
    }

    .wws-hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #c1573c;
        color: #fff;
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: .6px;
        text-transform: uppercase;
        padding: 14px 22px;
        border-radius: 8px;
        width: fit-content;
        transition: .3s ease;
    }

    .wws-hero-btn:hover { background: #a8462e; color: #fff; transform: translateX(3px); }
    .wws-hero-btn svg { width: 14px; height: 14px; }

    /* ---------- PRODUCT SLIDER ---------- */

    .wws-slider { position: relative; overflow: hidden; }

    .wws-track {
        display: flex;
        gap: 20px;
        transition: transform .55s cubic-bezier(.65, 0, .35, 1);
    }

    .wws-product {
        --visible: 3;
        flex: 0 0 calc((100% - (var(--visible) - 1) * 20px) / var(--visible));
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(89, 66, 40, .08);
        display: flex;
        flex-direction: column;
        transition: transform .35s ease, box-shadow .35s ease;
    }

    .wws-product:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 45px rgba(60, 42, 22, .12);
    }

    .wws-product-media {
        position: relative;
        aspect-ratio: 1 / 0.92;
        overflow: hidden;
        background: #f3ede3;
    }

    .wws-product-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .wws-product:hover .wws-product-media img { transform: scale(1.05); }

    .wws-discount-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: #f6ddc9;
        color: #b5602f;
        font-size: 11.5px;
        font-weight: 700;
        padding: 5px 11px;
        border-radius: 20px;
    }

    .wws-product-body { padding: 18px 18px 20px; }

    .wws-product-name {
        font-size: 15px;
        font-weight: 600;
        color: #241d15;
        margin: 0 0 10px;
    }

    .wws-price-row {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin: 0 0 12px;
    }

    .wws-price-old { font-size: 13px; color: #a89e8c; text-decoration: line-through; }
    .wws-price-new { font-size: 16px; font-weight: 700; color: #c1573c; }

    .wws-rating-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wws-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 13px;
        color: #4d4739;
        font-weight: 500;
    }

    .wws-rating svg { width: 13px; height: 13px; fill: #c1573c; }
    .wws-rating .count { color: #a89e8c; font-weight: 400; }

    .wws-add-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1.5px solid rgba(193, 87, 60, .35);
        color: #c1573c;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s ease;
        flex-shrink: 0;
    }

    .wws-add-btn:hover { background: #c1573c; border-color: #c1573c; color: #fff; }
    .wws-add-btn svg { width: 14px; height: 14px; }


    /* ---------- FEATURES ---------- */

    .wws-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 26px 8px;
        background: #fff;
        border-radius: 14px;
        margin-bottom: 34px;
        list-style: none;
        margin: 0;
    }

    .wws-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 24px;
        position: relative;
    }

    .wws-feature:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 34px;
        background: rgba(89, 66, 40, .12);
    }

    .wws-feature-icon { width: 34px; height: 34px; flex-shrink: 0; color: #c1573c; }
    .wws-feature-icon svg { width: 100%; height: 100%; }
    .wws-feature-title { font-size: 13.5px; font-weight: 600; color: #241d15; margin: 0 0 2px; }
    .wws-feature-desc { font-size: 12px; color: #8a8072; margin: 0; }

    /* ---------- NAV ---------- */

    .wws-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
    }

    .wws-nav-arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid rgba(89, 66, 40, .18);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8a8072;
        transition: .3s ease;
    }

    .wws-nav-arrow:hover { color: #fff; background: #c1573c; border-color: #c1573c; }
    .wws-nav-arrow:disabled { opacity: .3; pointer-events: none; }
    .wws-nav-arrow svg { width: 15px; height: 15px; }

    .wws-dots { display: flex; gap: 9px; }

    .wws-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d8d1c4;
        cursor: pointer;
        transition: .3s ease;
    }

    .wws-dot.active { background: #c1573c; width: 22px; border-radius: 5px; }


/**============================ aussie section =================================================*/


.aussie{
    background:#faf8f4;
    padding:110px 20px;
    color:#222;
}

.aussie .container{
    max-width:1300px;
    margin:auto;
}

.aussie .top-title{
    text-align:center;
    margin-bottom:80px;
}

.aussie .top-title span{
    font-size:13px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#c1573c;
    display:block;
    margin-bottom:18px;
}

.aussie .top-title h2{
    font-size:clamp(2rem,4vw,54px);
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.aussie .top-title p{ 
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.aussie .grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.aussie .image{
    position:relative;
}

.aussie .image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.aussie .badge{
    position:absolute;
    right:-35px;
    bottom:35px;
    width:170px;
    height:170px;
    border-radius:50%;
    background:#c1573c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:25px;
    font-size:15px;
    font-weight:600;
    line-height:1.6;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.aussie .content{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.aussie .item{
    display:flex;
    gap:25px;
}

.aussie .no{
    font-size:18px;
    font-weight:700;
    color:#c1573c;
    min-width:55px;
    position:relative;
}

.aussie .no::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:35px;
    height:2px;
    background:#c1573c;
}

.aussie .text h3{
    font-size:24px;
    margin-bottom:12px;
}

.aussie .text p{
    line-height:1.9;
    color:#666;
    font-size:16px;
}

.aussie .visit{
    margin-top:20px;
    padding:28px 35px;
    background:#f1ebe2;
    border-left:5px solid #c1573c;
}

.aussie .visit strong{
    display:block;
    font-size:22px;
    margin-bottom:12px;
}

.aussie .visit p{
    color:#555;
    line-height:1.8;
}


    
/*========================================== customer reviews ==========================================================*/
    .ww-reviews,
    .ww-reviews * {
        box-sizing: border-box;
    }

    .ww-reviews {
        font-family: 'Inter', sans-serif;
        background: #f6f1e7;
        color: #241d15;
        position: relative;
        padding: 130px 0 110px;
        overflow: hidden;
    }

    .ww-reviews a { text-decoration: none; color: inherit; }
    .ww-reviews img { display: block; width: 100%; margin: 0; padding: 0; }

    .ww-container {
        width: min(1200px, 92%);
        margin: 0 auto;
    }

    .ww-top {
        text-align: center;
        margin-bottom: 76px;
    }

    .ww-eyebrow {
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #c1573c;
        margin: 0 0 18px;
    }

    .ww-title {
        font-family: 'Fraunces', serif;
        font-size: 48px;
        font-weight: 600;
        line-height: 1.15;
        color: #241d15;
        margin: 0 0 16px;
    }

    .ww-desc {
        max-width: 560px;
        margin: 0 auto;
        font-size: 16.5px;
        line-height: 1.8;
        color: #6b6154;
        font-weight: 300;
    }

    /* ---------- COVERFLOW STAGE ---------- */

    .ww-stage {
        position: relative;
        height: 430px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ww-card {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 400px;
        background: #fffdf9;
        border: 1px solid rgba(89, 66, 40, .14);
        border-radius: 10px;
        padding: 44px 38px;
        text-align: center;
        box-shadow: 0 25px 55px rgba(60, 42, 22, .1);
        transition: transform .7s cubic-bezier(.65, 0, .35, 1),
                    opacity .7s ease,
                    filter .7s ease,
                    box-shadow .7s ease,
                    border-color .7s ease;
        cursor: pointer;
        margin: 0;
    }

    .ww-card.is-center {
        box-shadow: 0 40px 80px rgba(60, 42, 22, .18);
        border-color: rgba(165, 113, 63, .35);
        cursor: default;
    }

    .ww-quote-mark {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-size: 46px;
        color: #c1573c;
        line-height: 1;
        margin: 0 0 14px;
    }

    .ww-stars {
        display: flex;
        gap: 4px;
        justify-content: center;
        margin: 0 0 18px;
    }

    .ww-stars svg { width: 14px; height: 14px; fill: #c1573c; }

    .ww-quote-text {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-weight: 500;
        font-size: 19px;
        line-height: 1.55;
        color: #2f2618;
        margin: 0 0 26px;
    }

    .ww-card.is-center .ww-quote-text {
        font-size: 22px;
    }

    .ww-divider {
        width: 30px;
        height: 1.5px;
        background: rgba(89, 66, 40, .3);
        margin: 0 auto 20px;
    }

    .ww-reviewer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .ww-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #f6f1e7;
        box-shadow: 0 0 0 1px rgba(89, 66, 40, .25);
        margin: 0;
    }

    .ww-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .ww-name {
        font-family: 'Fraunces', serif;
        font-weight: 600;
        font-size: 16px;
    }

    .ww-detail {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        color: #8c8272;
        letter-spacing: .4px;
        text-transform: uppercase;
    }

    /* ---------- PROGRESS ---------- */

    .ww-progress {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 56px;
        padding: 0;
        list-style: none;
    }

    .ww-progress-seg {
        width: 30px;
        height: 3px;
        border-radius: 3px;
        background: rgba(89, 66, 40, .18);
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .ww-progress-seg.active { background: rgba(165, 113, 63, .25); }

    .ww-progress-seg .ww-fill {
        position: absolute;
        inset: 0;
        background: #c1573c;
        transform: scaleX(0);
        transform-origin: left;
    }

    .ww-progress-seg.active .ww-fill {
        animation: ww-fillBar 4s linear forwards;
    }

    @keyframes ww-fillBar {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }


/* ===============================================================================================================================================================================
                                                                                   FOOTER
=============================================================================================================================================================================== */ 


.ergocraft-footer{
    border-top:1px solid #ddd;
    padding:60px 80px 40px;
    background:#fff;
    color:#111;
}

/* TOP AREA */
.footer-top{
    display:grid;
    grid-template-columns:1.4fr 0fr 1fr 1fr;
    gap:40px;
    align-items:start;
}

.footer-col h4{
    font-size:14px;
    font-weight:500;
    margin-bottom:18px;
}

.footer-col p,
.footer-col a{
    font-size:13px;
    color:#444;
    line-height:1.7;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a:hover,
.footer-social a:hover,
.footer-bottom a:hover{
    color: var(--red-primary) !important;
}


/* Divider */
.footer-divider{
    width:1px;
    background:#ddd;
    height:100%;
}

/* BOTTOM */
.footer-bottom{
    margin-top:60px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    align-items:center;
    font-size:13px;
        border-top: 1px solid #ddd;
    padding-top: 20px;
}

.footer-brand strong{
    font-size:16px;
    letter-spacing:1px;
}

.footer-brand p{
    margin-top:6px;
    color:#555;
}

.footer-contact a{
    display:block;
        color: #000;
    font-weight: bold;
    text-decoration:none;
}

.footer-social a{
    margin-right:14px;
    font-size:14px;
    text-decoration:none;
    color:#111;
}

.footer-copy{
    text-align:right;
    color:#555;
}



/* ======================================================================================================================================================================================
                                                                                                  ABOUT PAGE ONLY
======================================================================================================================================================================================= */ 


/* hero */
.about-hero{
height:420px;
display:flex;
align-items:center;
justify-content:center;
position:relative;
padding: 80px 20px 0px;
}
.about-hero::after{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}
.about-hero h1{
position:relative;
color:#fff;
font-family:'Playfair Display',serif;
font-size:36px;
font-weight:400;
max-width:720px;
text-align:center;
line-height:1.35;
z-index: 999;
}

/* first content */
.about-block{
padding:40px 80px;
display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:start;
}
.about-block h2{
font-size:24px;
font-weight:500;
margin-bottom:18px;
}
.about-block p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:14px;
}

/* image blocks spacing */
.about-img{margin-top:40px}


/* ======================================================
         SHOWROOM Section 
========================================================== */ 

.showroom {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
    background: #f6f6f3;
    margin: 0px 70px;
}

.showroom-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 40px;
}
.showroom-heading{
    color: var(--red-primary);
    font-family: "Inter" Sans-Serif;
    font-size:32px;
    font-weight: 400;
}
.showroom button {
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid #222;
    background: none;
    cursor: pointer;
    width: 130px;
}

.showroom-right {
    overflow: hidden;
    position: relative;
}

.showroom-right img {
    width: 110%; 
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.2s ease-out;
}



/*========================== WooCommerce =================================*/








/*=========== woocommerce ==================*/
/* ================= Modern My Account UI ================= */


/* ================= CATEGORY PAGE ================= */
.category-page { padding:110px 20px 60px }
.breadcrumb { font-size:13px;color:#777;margin-bottom:18px; }
.category-title { font-family:'Playfair Display',serif;font-size:34px;font-weight:400; }
.category-layout { display:grid; grid-template-columns:260px 1fr; gap:20px; }


/* ===============================
   SIDEBAR BASE
=================================*/

.filters {
    border-top:1px solid #CECDC3;
}

.filters .wp-block-woocommerce-product-filters {
    flex-direction: column;
    gap: 0;
}

/* Hide mobile overlay button (desktop) */
.wc-block-product-filters__open-overlay {
    display: none;
}

/* Remove overlay behavior */
.wc-block-product-filters__overlay {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
}

.wc-block-product-filters__overlay-wrapper,
.wc-block-product-filters__overlay-dialog {
    all: unset;
    display: block;
}

.wc-block-product-filters__overlay-header,
.wc-block-product-filters__overlay-footer {
    display: none;
}


/* FILTER WRAPPER */
.filters {
    border-top: 1px solid #eee;
}

/* HEADING STYLE */
.filters .wp-block-heading {
    position: relative;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

/* Hover effect */
.filters .wp-block-heading:hover {
    color: #000;
}

/* Modern Chevron Arrow */
.filters .wp-block-heading::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Arrow rotate when active */
.filters .wp-block-heading.active::after {
    transform: translateY(-50%) rotate(-135deg);
    border-color: #000;
}






/* Hide filter content by default */
.filters .wc-block-product-filter-checkbox-list,
.filters .wc-block-product-filter-price-slider,
.filters .wc-block-product-filter-removable-chips {
    display: none;
    margin-top: 15px;
}

/* Active state */
.filters .filter-active .wc-block-product-filter-checkbox-list,
.filters .filter-active .wc-block-product-filter-price-slider,
.filters .filter-active .wc-block-product-filter-removable-chips {
    display: block;
}

.filters .filter-active .wp-block-heading::after {
    transform: rotate(180deg);
}

/* ===============================
   CHECKBOX STYLING
=================================*/

.wc-block-product-filter-checkbox-list__item {
    margin-bottom: 10px;
}

.wc-block-product-filter-checkbox-list__label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.wc-block-product-filter-checkbox-list__input {
    accent-color: #8b7a4a;
}

/* ===============================
   PRICE SLIDER
=================================*/

.wc-block-product-filter-price-slider__range {
    height: 3px;
    background: #ddd;
    position: relative;
}

.wc-block-product-filter-price-slider .range-bar {
    background: #8b7a4a;
}

.wc-block-product-filter-price-slider input[type="range"] {
    pointer-events: none;
    position: absolute;
    height: 3px;
    background: none;
}

.wc-block-product-filter-price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    background: #8b7a4a;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Price text */
.wc-block-product-filter-price-slider__left input,
.wc-block-product-filter-price-slider__right input {
    border: none;
    font-size: 14px;
    width: 80px;
}

/* ===============================
   CLEAR BUTTON
=================================*/

/* Clear Filters Wrapper */
.wc-block-product-filter-clear-button {
    margin-top: 15px;
}

/* Button Base Style */
.wc-block-product-filter-clear-button .wp-block-button__link {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd !important;
    border-radius: 30px;
    padding: 10px 18px !important;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

/* Hover Effect */
.wc-block-product-filter-clear-button .wp-block-button__link:hover {
    background-color: var(--red-primary) !important ;
    color: #EEEDE6 ;
    border-color: #000 !important;
}
.wc-block-product-filters__overlay-content > p:empty {
    display: none;
}
li.product.type-product.status-publish.instock.product-type-variable,
li.product.type-product.status-publish.instock.product-type-simple{
    list-style: none;
}
 /*top bar */
.category-topbar { display:flex; justify-content:space-between; font-size:13px; color:#666;  }

 /*products grid */
.category-products { display:grid; grid-template-columns:repeat(3,1fr); gap:12px 12px; }


.yith-wcwl-add-to-wishlist a {
    font-size: 20px;
    text-decoration: none;
}

.yith-wcwl-add-to-wishlist a:before {
    content: "\2661"; /* outline heart */
    font-size: 22px;
}

.yith-wcwl-wishlistexistsbrowse a:before,
.yith-wcwl-wishlistaddedbrowse a:before {
    content: "\2665"; /* filled heart */
    color: red;
}
/* Hide wishlist text */
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button a,
.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a,
.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
span.yith-wcwl-add-to-wishlist-button__label{
    font-size: 0;
}

/* Show only heart icon */
.yith-wcwl-add-to-wishlist a:before {
    font-size: 22px;
}


/* ===== Wishlist Page Layout ===== */
/* ============================= */
/* ERGO STYLE WISHLIST LAYOUT */
/* ============================= */
/* ===== ERGO WISHLIST LAYOUT ===== */

.ergo-wishlist {
    max-width: 760px;
    margin: 0 auto;
}
.ergo-wishlist p{
    text-align: center;
}

.ergo-wishlist-table {
    width: 100%;
    border-collapse: collapse;
}
.ergo-wishlist-table tr:first-child {
    border-top: 1px solid #e5e5e5;
}
.ergo-wishlist-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.ergo-wishlist-table td {
    padding: 55px 0;
    vertical-align: middle;
}
.wishlist-title h2{
    font-size: 48px;
    font-weight: 400;
}
.woocommerce .wishlist-title{
    margin-bottom: 0 !important;
}
/* columns */
.ergo-remove {
    width: 50px;
}

.ergo-thumb {
    width: 110px;
}

.ergo-info {
    /*width: 100%;*/
    padding-left: 10px;
}

.ergo-action {
    width: 220px;
    text-align: right;
}

/* image */
/*.ergo-thumb img {*/
/*    width: 85px;*/
/*}*/
/* FORCE SHOW WISHLIST IMAGE */

.ergo-thumb {
    width: 120px !important;
    min-width: 120px !important;
    display: table-cell !important;
    overflow: visible !important;
}

.ergo-thumb a {
    display: block !important;
}

.ergo-thumb img {
    width: 90px !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* text */
.ergo-title {
    font-size: 17px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.ergo-price {
    font-size: 15px;
    margin-bottom: 6px;
}

.ergo-date {
    font-size: 13px;
    /*color: #777;*/
}

/* remove icon */
.ergo-remove a {
    font-size: 22px;
    text-decoration: none;
}

/* button */
.ergo-action .button {
    background: #F6F6F3 !important;
    border: none !important;
    padding: 15px 44px !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500!important;
    color: #212529 !important;
}

.ergo-action .button:hover {
    background: #111;
    color: #fff;
}


article#post-20022 {
    padding-top: 130px !important;
}
.post-20022 .entry-header {
    display: none;
}
.wishlist-title-container{
    text-align: center;
}

.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon,
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon{
    color: var(--red-primary) !important;
}

.track-wrapper{
    padding: 30px 20px 0px 20px !important;
}

/* ===================================== */
/* COMPLETE MODERN CHECKOUT PAGE DESIGN */
/* ===================================== */
body.woocommerce-checkout {
    padding-top: 120px !important; 
}

/* -------- 1️⃣ Remove Default Title -------- */
.woocommerce-checkout .entry-title,
.woocommerce-checkout h1.wp-block-post-title {
    display: none !important;
}

/* -------- 2️⃣ Fix Sticky Header Overlap -------- */
body.woocommerce-checkout {
    padding-top: 90px; /* adjust if header height different */
}

/* -------- 3️⃣ Center Page Layout -------- */

body.woocommerce-checkout .wp-block-woocommerce-checkout {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* -------- 4️⃣ Card Style Sections -------- */
.wc-block-components-checkout-step {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 25px;
}

/* Section Headings */
.wc-block-components-checkout-step h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* -------- 5️⃣ Input Fields Modern -------- */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-textarea textarea:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
    outline: none;
}

/* -------- 6️⃣ Order Summary Box -------- */
.wc-block-components-sidebar {
    padding-left: 30px;
}
.wp-block-woocommerce-checkout-order-summary-totals-block{
    padding-bottom: 0 !important;
}
.wc-block-components-totals-wrapper {
    background: #fafafa;
    padding: 25px;
    border: 1px solid #eee;
    padding: 16px 0 16px 0;
}
.wc-block-components-totals-item{
    padding-bottom: 16px;
}
/* Product rows */
.wc-block-components-order-summary-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.wc-block-components-order-summary-item:last-child {
    border-bottom: none;
}

/* -------- 7️⃣ Coupon Box -------- */
.wc-block-components-checkout-step--coupon {
    border: 1px dashed #ddd;
    border-radius: 12px;
    padding: 20px;
}

/* -------- 8️⃣ Payment Methods -------- */
.wc-block-components-payment-method {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
}

/* -------- 9️⃣ Place Order Button -------- */
.wc-block-components-checkout-place-order-button {
    background: #000;
    color: #fff;
    border-radius: 40px;
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.wc-block-components-checkout-place-order-button:hover {
    background: #333;
}


/* ================================= */
/* MODERN EMPTY CART PAGE DESIGN */
/* ================================= */

/* Center Entire Empty Cart Section */
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
    text-align: center;
}

/* Main Empty Cart Wrapper */
.woocommerce-cart .woocommerce {
    margin: 100px auto;
    padding: 60px 40px;
    /*border: 1px solid #eee;*/
    /*border-radius: 20px;*/
    background: #fff;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
}

/* Empty Cart Text */
.woocommerce-cart .cart-empty {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #111;
}

/* Shop Button */
.woocommerce-cart .return-to-shop a.button {
    background-color: var(--red-primary);
    color: #EEEDE6;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Hover Effect */
.woocommerce-cart .return-to-shop a.button:hover {
    background: #333;
    color: #EEEDE6;
}

/* Optional: Add Icon Before Text */
.woocommerce-cart .cart-empty::before {
   content: "🛒";
    position: absolute;
    top: 0;
    left: 20%;
    transform: translateX(-50%);
    font-size: 48px;
}


/* Remove Cart Page Title */
.woocommerce-cart .entry-title,
.woocommerce-cart h1.wp-block-post-title,
.woocommerce-cart .page-title {
    display: none !important;
}
.woocommerce-cart .woocommerce {
    /*margin: 177px auto 100px auto !important;*/
}
p.collection-section__slide-desc {
    color: #fff;
}

/* ========================= */
/* MODERN BLOG DETAIL UI */
/* ========================= */
/* =============================== */
/* REMOVE THEME DEFAULT FLOATS */
/* =============================== */

#primary,
#secondary {
    float: none !important;
}

/* =============================== */
/* MAIN WRAPPER */
/* =============================== */

.site-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* =============================== */
/* FLEX LAYOUT */
/* =============================== */

.site-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* =============================== */
/* LEFT SIDE - POST CONTENT */
/* =============================== */

#primary {
    /*width: 75%;*/
}

/* =============================== */
/* RIGHT SIDE - SIDEBAR */
/* =============================== */

#secondary {
    width: 25%;
}

/* =============================== */
/* MAKE SIDEBAR STICKY */
/* =============================== */

#secondary {
    position: sticky;
    top: 100px;
}


/* ================================
   RESET PASSWORD PAGE MODERN UI
================================ */

form.woocommerce-ResetPassword.lost_reset_password{
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

header.woocommerce-Address-title.title{
    position: relative;
}

/*==========================================================================*/

.privacy-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}
/* ===== HERO ===== */
.privacy-hero {
    background: linear-gradient(to right, #111, #2b2b2b);
    color: #fff;
    padding: 120px 0 50px 0;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.privacy-hero p {
    opacity: 0.85;
    font-size: 16px;
    color: #fff;
}

/* ===== CONTENT ===== */
.privacy-content {
    padding: 60px 0;
    line-height: 1.9;
}

.privacy-content h2 {
    font-size: 22px;
    margin-top: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-content p {
    color: #555;
    margin-bottom: 15px;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: #555;
}

/* ===== FOOT NOTE ===== */
.privacy-note {
    background: #f8f8f8;
    padding: 40px;
    margin-top: 60px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

/*===================================================*/

.term-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* ===== HERO ===== */
.terms-hero {
    background: linear-gradient(to right, #000, #2c2c2c);
    color: #fff;
    padding: 130px 0 50px 0;
    text-align: center;
}

.terms-hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.terms-hero p {
    opacity: 0.85;
    color: #fff;
}

/* ===== CONTENT ===== */
.terms-content {
    padding: 60px 0;
    line-height: 1.9;
}

.terms-content h2 {
    font-size: 22px;
    margin-top: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-content p {
    color: #555;
    margin-bottom: 15px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content li {
    margin-bottom: 8px;
    color: #555;
}

.terms-note {
    background: #f5f5f5;
    padding: 40px;
    margin-top: 60px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}


/*<!--=========================================================================================================================*/
/*                                         CONTACT PAGE CSS                                                                        */
/*   ========================================================================================================================== -->*/




.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
	position: relative;
    z-index: 2;
}

/* ================= HERO ================= */
.contact-hero {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    padding: 140px 0;
    position: relative;
    color: #fff;
    text-align: center;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
	z-index:1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ================= INTRO CONTENT ================= */
.contact-intro {
    padding: 70px 0 40px;
    text-align: center;
}

.contact-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-intro p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.7;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* FORM */
.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 14px !important;
    margin-bottom: 20px;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 15px;
    transition: 0.3s;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    border-color: #000;
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.btn-modern {
    background: #000;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.btn-modern:hover {
    background: #444;
}

/* INFO */
.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #5c5a5a;
    margin-bottom: 5px;
}
.info-item p{
    color: #000;
    font-weight: 600;
}
/* MAP */
.contact-map {
    margin-top: 60px;
}

/* EXTRA SECTION */
.extra-info {
    padding: 80px 0;
    background: #f9f9f9;
}

.extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.extra-grid h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.extra-grid p {
    color: #666;
    line-height: 1.7;
}


/* Product Card */
.products .product{
    /*position: relative;*/
}

/* Image Wrapper */
.products .product .image-wrap{
    /*position: relative;*/
    /*overflow: hidden;*/
}

/* Badges Container */
.products .product .badges{
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Common Badge */
.products .product .badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 28px;
    padding: 0 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

/* Sale Badge */
.products .product .badge.sale{
    background: #c1573c;
}

/* New Badge */
.products .product .badge.new{
    background: #1b4332;
}

/* Simple Product Cart */
.product-det-info .cart{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
}

.product-det-info .quantity{
    margin:0;
}

.product-det-info .qty{
    width:70px;
    height:52px;
    border:1px solid #ddd;
    text-align:center;
    font-size:16px;
}

.product-det-info .single_add_to_cart_button{
    height:52px;
    padding:0 35px;
    background:#1f2d3d;
    color:#fff;
    border:none;
    font-size:14px;
    letter-spacing:1px;
    cursor:pointer;
    transition:.3s;
}

.product-det-info .single_add_to_cart_button:hover{
    background:#000;
}