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

/* ============================================
   NEWDS.CO Theme - v2.0
   1024px container, minimal luxury design
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #8D7865;
    padding-top: 68px;
    min-height: 100%;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

p, a, li, span, label, input, button, select, textarea {
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Container ---------- */
.nw-container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .nw-container {
        padding: 0 18px;
    }
}

/* ---------- Buttons ---------- */
.nw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nw-btn--primary {
    background: #1a1a1a;
    color: #fff;
}
.nw-btn--primary:hover {
    background: #333;
    opacity: 1;
}
.nw-btn--outline {
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #8D7865;
}
.nw-btn--outline:hover {
    background: #1a1a1a;
    color: #fff;
    opacity: 1;
}

/* ============================================
   HEADER
   ============================================ */
.nw-header {
    background: #ffffff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.nw-header .nw-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nw-header__left {
    flex: 1;
    display: flex;
    align-items: center;
}
.nw-header__center {
    flex: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nw-header__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.nw-header__logo {
    display: flex;
    align-items: center;
}
.nw-header__logo-img {
    height: 24px;
    width: auto;
}
.nw-header__logo:hover {
    opacity: 1;
}
.nw-header__menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #8D7865;
    display: flex;
    align-items: center;
}
.nw-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D7865;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nw-header__icon:hover {
    opacity: 0.6;
}
.nw-header__icon--cart {
    position: relative;
}

/* Hide account and cart icons on mobile (they're in footer nav) */
@media (max-width: 768px) {
    .nw-header__icon--cart,
    .nw-header__right > a[aria-label="My Account"] {
        display: none;
    }
}

/* Search Overlay */
.nw-search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 10002;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nw-search.is-open {
    opacity: 1;
    visibility: visible;
}
.nw-search__inner {
    width: 100%;
    max-width: 600px;
    padding: 0 24px;
    position: relative;
}
.nw-search__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #8D7865;
    padding-bottom: 8px;
}
.nw-search__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #8D7865;
    background: transparent;
    padding: 8px 0;
}
.nw-search__input::placeholder {
    color: #b0a89f;
}
.nw-search__submit {
    background: none;
    border: none;
    cursor: pointer;
    color: #8D7865;
    padding: 4px;
    display: flex;
    align-items: center;
}
.nw-search__close {
    position: absolute;
    top: -50px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8D7865;
    padding: 4px;
    display: flex;
    align-items: center;
}

/* Search Results */
.nw-search__results {
    display: none;
    margin-top: 20px;
    max-height: 60vh;
    overflow-y: auto;
}
.nw-search__result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0eeec;
    text-decoration: none;
    transition: background 0.2s ease;
}
.nw-search__result-item:last-child {
    border-bottom: none;
}
.nw-search__result-item:hover {
    opacity: 0.7;
}
.nw-search__result-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.nw-search__result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nw-search__result-title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nw-search__result-price {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #8D7865;
    font-weight: 500;
}
.nw-search__no-results {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #888;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .nw-search {
        padding-top: 60px;
    }
    .nw-search__input {
        font-size: 16px;
    }
    .nw-search__inner {
        padding: 0 18px;
    }
    .nw-search__close {
        top: -40px;
        right: 18px;
    }
}
.nw-header__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #8D7865;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Slide-out Nav */
.nw-header__nav {
    position: fixed;
    top: 0;
    left: -420px;
    width: 420px;
    height: 100vh;
    background: #ffffff;
    z-index: 10001;
    padding: 28px 40px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.nw-header__nav.is-open {
    left: 0;
}

@media (max-width: 768px) {
    .nw-header__nav {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        padding: 24px 28px;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nw-header__nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}
.nw-header__nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #8D7865;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

/* Primary menu */
.nw-header__nav-primary {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nw-header__nav-primary > li {
    border-bottom: 1px solid #f0eeec;
    position: relative;
}
.nw-header__nav-primary > li > a {
    display: block;
    padding: 16px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #8D7865;
    text-transform: uppercase;
    text-decoration: none;
}
.nw-header__nav-primary > li > a:hover {
    opacity: 0.6;
}
.nw-header__nav-toggle {
    position: absolute;
    right: 0;
    top: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #8D7865;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.nw-header__nav-toggle.is-open {
    transform: rotate(180deg);
}

/* Submenu */
.nw-header__nav-submenu {
    list-style: none;
    padding: 0 0 12px 16px;
    margin: 0;
    display: none;
}
.nw-header__nav-submenu.is-open {
    display: block;
}
.nw-header__nav-submenu li a {
    display: block;
    padding: 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666666;
    text-decoration: none;
}
.nw-header__nav-submenu li a:hover {
    color: #8D7865;
    opacity: 1;
}

/* Secondary links */
.nw-header__nav-secondary {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nw-header__nav-secondary a {
    display: block;
    padding: 14px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #8D7865;
    text-decoration: none;
    text-transform: uppercase;
}
.nw-header__nav-secondary a:hover {
    color: #8D7865;
    opacity: 1;
}

/* Social */
.nw-header__nav-social {
    margin-top: 30px;
    padding-top: 20px;
}
.nw-header__nav-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666666666;
    text-decoration: none;
}
.nw-header__nav-social a:hover {
    color: #8D7865;
    opacity: 1;
}

/* Overlay */
.nw-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nw-header__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.nw-main {
    min-height: calc(100vh - 68px - 300px);
    padding: 0 0 40px;
}
.nw-home {
    padding: 0;
}

.nw-section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #8D7865;
    letter-spacing: 3px;
}

.nw-page-title {
    padding: 30px 0 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: left;
}

@media (max-width: 768px) {
    .nw-section-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .nw-page-title {
        padding: 20px 0 16px;
        margin-bottom: 16px;
    }
}

/* ============================================
   HERO SECTION - Banner Slider
   ============================================ */
.nw-hero {
    padding: 0;
}
.nw-hero-slider {
    position: relative;
    overflow: hidden;
}
.nw-hero-slider__track {
    position: relative;
}
.nw-hero-slider__slide {
    display: none;
    width: 100%;
}
.nw-hero-slider__slide.is-active {
    display: block;
}
.nw-hero-slider__inner {
    display: flex;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    min-height: 320px;
}
.nw-hero-slider__content {
    flex: 1;
    padding: 40px 40px 40px 24px;
}
.nw-hero-slider__title {
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}
.nw-hero-slider__subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}
.nw-hero-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, opacity 0.3s ease;
}
.nw-hero-slider__btn:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
}
.nw-hero-slider__btn svg {
    color: #ffffff;
}
.nw-hero-slider__image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    align-self: stretch;
}
.nw-hero-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.nw-hero-slider__img-mobile {
    display: none;
}
@media (max-width: 768px) {
    .nw-hero-slider__img-desktop {
        display: none;
    }
    .nw-hero-slider__img-mobile {
        display: block;
    }
    /* If no mobile image exists, show desktop */
    .nw-hero-slider__image img:only-child {
        display: block;
    }
}
.nw-hero-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.nw-hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}
.nw-hero-slider__dot.is-active {
    background: #ffffff;
}
.nw-hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .nw-hero-slider__inner {
        min-height: 220px;
    }
    .nw-hero-slider__content {
        padding: 10px 20px;
    }
    .nw-hero-slider__title {
        font-size: 18px;
    }
    .nw-hero-slider__subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .nw-hero-slider__btn {
        font-size: 14px;
        padding: 8px 22px;
    }
}

/* ============================================
   OFFERS TICKER - Infinite Slider
   ============================================ */
.nw-ticker {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #f0eeec;
    padding: 14px 0;
}
.nw-ticker__track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.nw-ticker__set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nw-ticker__item {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #8D7865;
    text-transform: uppercase;
    white-space: nowrap;
}
.nw-ticker__sep {
    display: inline-flex;
    align-items: center;
    margin: 0 24px;
    flex-shrink: 0;
}
.nw-ticker__sep svg {
    display: block;
}

@media (max-width: 768px) {
    .nw-ticker {
        padding: 11px 0;
    }
    .nw-ticker__item {
        font-size: 11px;
    }
    .nw-ticker__sep {
        margin: 0 18px;
    }
}

/* ============================================
   FEATURES / USPs
   ============================================ */
.nw-features {
    padding: 40px 0;
}
.nw-features__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.nw-features__item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nw-features__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nw-features__icon svg {
    width: 100%;
    height: 100%;
}
.nw-features__label {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #8D7865;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nw-features {
        padding: 20px 0;
    }
    .nw-features__grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        gap: 8px;
    }
    .nw-features__item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        min-width: 0;
    }
    .nw-features__icon {
        width: 32px;
        height: 32px;
    }
    .nw-features__label {
        font-size: 12px;
        white-space: normal;
        line-height: 1.3;
    }
}

/* ============================================
   CATEGORIES - Circle Slider
   ============================================ */
.nw-categories {
    padding: 50px 0;
}
.nw-categories .nw-section-title {
    max-width: 1024px;
    margin: 0 auto 36px;
    padding: 0 24px;
}
.nw-categories__slider {
    overflow: hidden;
    position: relative;
}
.nw-categories__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 24px;
    justify-content: center;
}
.nw-categories__track::-webkit-scrollbar {
    display: none;
}
.nw-categories__item {
    flex: 0 0 auto;
    text-decoration: none;
}
.nw-categories__item:hover {
    opacity: 1;
}
.nw-categories__circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid #c4b9ad;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.nw-categories__item:hover .nw-categories__circle {
    border-color: #8D7865;
    background: rgba(141, 120, 101, 0.05);
}
.nw-categories__name {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #8D7865;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .nw-categories {
        padding: 20px 0;
    }
    .nw-categories .nw-section-title {
        margin-bottom: 24px;
    }
    .nw-categories__track {
        gap: 16px;
        padding: 10px 16px;
        justify-content: flex-start;
    }
    .nw-categories__circle {
        width: 100px;
        height: 100px;
    }
    .nw-categories__name {
        font-size: 11px;
    }
}

/* ============================================
   FEATURED PRODUCTS - Slider
   ============================================ */
.nw-featured {
    padding: 50px 0;
}
.nw-featured .nw-section-title {
    margin-bottom: 30px;
}
.nw-featured__slider {
    overflow: hidden;
    position: relative;
}
.nw-featured__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 24px 10px;
    cursor: grab;
}
.nw-featured__track:active {
    cursor: grabbing;
}
.nw-featured__track::-webkit-scrollbar {
    display: none;
}
.nw-featured__item {
    flex: 0 0 240px;
    min-width: 240px;
}

/* Arrows - desktop only, on hover */
.nw-featured__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0dcd8;
    background: #ffffff;
    color: #8D7865;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: opacity 0.2s ease, background 0.2s ease;
    opacity: 0;
}
.nw-featured__arrow--left {
    left: 12px;
}
.nw-featured__arrow--right {
    right: 12px;
}
.nw-featured__arrow:hover {
    background: #f5f3f1;
}

@media (min-width: 769px) {
    .nw-featured__arrow {
        display: flex;
    }
    .nw-featured__slider:hover .nw-featured__arrow {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .nw-featured {
        padding: 20px 0;
    }
    .nw-featured__track {
        gap: 16px;
        padding: 0 16px 10px;
    }
    .nw-featured__item {
        flex: 0 0 180px;
        min-width: 180px;
    }
}

/* ============================================
   WHO WE ARE
   ============================================ */
.nw-about {
    padding: 60px 0;
}
.nw-about > .nw-section-title {
    margin-bottom: 40px;
    text-align: center;
}
.nw-about__wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.nw-about__image {
    flex: 0 0 45%;
    max-width: 45%;
}
.nw-about__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}
.nw-about__content {
    flex: 1;
}
.nw-about__heading {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #8D7865;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.nw-about__content p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666666;
    margin-bottom: 16px;
}
.nw-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid #8D7865;
    border-radius: 4px;
    color: #8D7865;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.3s ease, opacity 0.3s ease;
}
.nw-about__btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}
.nw-about__btn:hover svg {
    color: #ffffff;
}
.nw-about__btn svg {
    color: #8D7865;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .nw-about {
        padding: 20px 0;
    }
    .nw-about__wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .nw-about__image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .nw-about__content {
        text-align: center;
    }
    .nw-about__content {
        width: 100%;
    }
    .nw-about__heading {
        font-size: 13px;
    }
    .nw-about__content p {
        font-size: 13px;
    }
}

/* ============================================
   MOBILE FIXED FOOTER NAV
   ============================================ */
.nw-mobile-footer {
    display: none;
}

@media (max-width: 768px) {
    .nw-mobile-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: #ffffff;
        border-top: 1px solid #f0eeec;
        padding: 10px 0;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        justify-content: space-around;
        align-items: center;
    }
    .nw-mobile-footer__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-decoration: none;
        position: relative;
    }
    .nw-mobile-footer__item:hover {
        opacity: 1;
    }
    .nw-mobile-footer__item svg {
        width: 22px;
        height: 22px;
    }
    .nw-mobile-footer__item span {
        font-family: "Montserrat", sans-serif;
        font-size: 10px;
        font-weight: 500;
        color: #8D7865;
    }
    .nw-mobile-footer__count {
        position: absolute;
        top: -4px;
        right: -6px;
        background: #8D7865;
        color: #ffffff !important;
        font-size: 9px;
        font-weight: 600;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    /* Add bottom padding to body so content doesn't hide behind footer */
    body {
        padding-bottom: 70px;
    }

    /* Add bottom padding to site footer */
    .nw-footer {
        padding-bottom: 70px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.nw-footer {
    background: #F9F8F7;
    padding: 40px 0 0;
}
.nw-footer__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.nw-footer__logo {
    display: inline-block;
    margin-bottom: 8px;
}
.nw-footer__logo-img {
    height: 22px;
    width: auto;
}
.nw-footer__logo:hover {
    opacity: 1;
}
.nw-footer__tagline {
    font-size: 13px;
    color: #888;
}
.nw-footer__links h4,
.nw-footer__social h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8D7865;
    margin-bottom: 16px;
}
.nw-footer__links ul {
    list-style: none;
    padding: 0;
}
.nw-footer__links ul li {
    margin-bottom: 10px;
}
.nw-footer__links ul li a {
    font-size: 13px;
    color: #666666;
}
.nw-footer__links ul li a:hover {
    color: #8D7865;
    opacity: 1;
}
.nw-footer__social-links {
    display: flex;
    gap: 12px;
}
.nw-footer__social-links a {
    color: #8D7865;
}
.nw-footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}
.nw-footer__bottom p {
    font-size: 12px;
    color: #888;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
        font-size: 14px;
    }
    .nw-header {
        padding: 16px 0;
    }
    .nw-header__logo-img {
        height: 20px;
    }
    .nw-header__right {
        gap: 16px;
    }
    .nw-footer__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nw-header__logo-img {
        height: 18px;
    }
    .nw-header__right {
        gap: 14px;
    }
    .nw-footer__wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .nw-footer__brand {
        text-align: center;
    }
    .nw-footer__section h4 {
        text-align: center;
    }
    .nw-footer__section ul {
        align-items: center;
    }
    .nw-footer__social-links {
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade in on scroll */
.nw-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.nw-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add to cart button feedback */
.nw-product-card__add.added {
    animation: nw-cart-pop 0.4s ease;
}
@keyframes nw-cart-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Cart icon bounce in header */
.nw-header__icon--cart.nw-bounce {
    animation: nw-bounce 0.5s ease;
}
@keyframes nw-bounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* Category circle hover scale */
.nw-categories__circle {
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.nw-categories__item:hover .nw-categories__circle {
    transform: scale(1.05);
}

/* Featured product card hover lift */
.nw-featured__item .nw-product-card__image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nw-featured__item:hover .nw-product-card__image {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Shop product card hover lift */
li.nw-product-card .nw-product-card__image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
li.nw-product-card:hover .nw-product-card__image {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Button hover transitions */
.nw-hero-slider__btn,
.nw-about__btn,
.nw-btn {
    transition: all 0.3s ease;
}
.nw-hero-slider__btn:hover,
.nw-about__btn:hover {
    transform: translateY(-1px);
}

/* Header nav slide-in items stagger */
.nw-header__nav.is-open .nw-header__nav-primary > li {
    opacity: 0;
    animation: nw-slide-in 0.3s ease forwards;
}
.nw-header__nav.is-open .nw-header__nav-primary > li:nth-child(1) { animation-delay: 0.05s; }
.nw-header__nav.is-open .nw-header__nav-primary > li:nth-child(2) { animation-delay: 0.1s; }
.nw-header__nav.is-open .nw-header__nav-primary > li:nth-child(3) { animation-delay: 0.15s; }
.nw-header__nav.is-open .nw-header__nav-primary > li:nth-child(4) { animation-delay: 0.2s; }
.nw-header__nav.is-open .nw-header__nav-primary > li:nth-child(5) { animation-delay: 0.25s; }
@keyframes nw-slide-in {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Smooth section title reveal */
.nw-section-title {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Image slider crossfade */
.nw-product-card__slide {
    transition: opacity 0.4s ease;
}

/* Hero slider crossfade */
.nw-hero-slider__slide {
    transition: opacity 0.5s ease;
}

   ============================================ */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.skip-link:focus {
    clip: auto;
    display: block;
    height: auto;
    left: 5px;
    top: 5px;
    width: auto;
    z-index: 100000;
    background: #fff;
    padding: 15px;
}

/* ============================================
   COLLECTION PAGE (Custom URL)
   ============================================ */
.nw-collection {
    padding: 40px 0;
}
.nw-collection__title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #8D7865;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.nw-collection__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-bottom: 36px;
}
.nw-collection__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .nw-collection__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .nw-collection__title {
        font-size: 20px;
    }
}

/* ============================================
   UTILITY
   ============================================ */


/* ============================================
   FORM ELEMENTS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="date"],
textarea,
select {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #8D7865;
    background: #ffffff;
    border: 1px solid #e0dcd8;
    border-radius: 4px;
    padding: 12px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    border-color: #8D7865;
    box-shadow: 0 0 0 3px rgba(141, 120, 101, 0.08);
}
input::placeholder,
textarea::placeholder {
    color: #b0a89f;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238D7865' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8D7865;
    display: block;
    margin-bottom: 6px;
}
input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 2px solid #c4b9ad;
    border-radius: 3px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}
input[type="radio"] {
    border-radius: 50%;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background: #8D7865;
    border-color: #8D7865;
}
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Buttons (general) */
button,
input[type="submit"],
.button {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Quantity input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
    text-align: center;
    max-width: 80px;
}

/* Form rows */
.form-row {
    margin-bottom: 16px;
}
.form-row label {
    margin-bottom: 6px;
}

/* WooCommerce form overrides */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
    color: #8D7865 !important;
    border: 1px solid #e0dcd8 !important;
    border-radius: 4px !important;
    padding: 12px 14px !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #8D7865 !important;
    box-shadow: 0 0 0 3px rgba(141, 120, 101, 0.08) !important;
    outline: none !important;
}
.woocommerce form .form-row label {
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #8D7865 !important;
}

/* WooCommerce buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
    font-family: "Montserrat", sans-serif !important;
    background-color: #8D7865 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 12px 24px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    transition: background 0.3s ease !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #place_order:hover {
    background-color: #7a6856 !important;
    opacity: 1 !important;
}

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.entry-content {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    max-width: 800px;
}
.entry-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 16px 0;
    padding: 0;
    display: none; /* Hide duplicate h2 since page title already shows */
}
.entry-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    margin: 28px 0 12px 0;
    padding: 0;
}
.entry-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 20px 0 10px 0;
}
.entry-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin: 0 0 16px 0;
}
.entry-content strong {
    color: #2c2c2c;
    font-weight: 600;
}
.entry-content ul,
.entry-content ol {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
    color: #666666;
}
.entry-content ul li,
.entry-content ol li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 8px;
    padding-left: 4px;
}
.entry-content ul li::marker {
    color: #8D7865;
}
.entry-content a {
    color: #8D7865;
    text-decoration: none;
}
.entry-content a:hover {
    color: #2c2c2c;
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 13px;
}
.entry-content table th,
.entry-content table td {
    padding: 10px 14px;
    border: 1px solid #f0eeec;
    text-align: left;
}
.entry-content table th {
    background: #faf9f8;
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
.entry-content table td {
    color: #666666;
}

@media (max-width: 768px) {
    .entry-content {
        font-size: 13px;
    }
    .entry-content h3 {
        font-size: 14px;
        margin: 24px 0 10px 0;
    }
    .entry-content p,
    .entry-content ul li,
    .entry-content ol li {
        font-size: 13px;
    }
    .entry-content table td,
    .entry-content table th,
    .entry-content table {
        border: none !important;
    }
}
