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

:root {
    --n-maxw: 1200px;
    --n-hdr-h: 80px;
    --n-ink: #ff8c94;
    --n-ink-mid: #e8757e;
    --n-ink-light: #ffb3b8;
    --n-accent: #7fdbda;
    --n-accent-hover: #6bc9c8;
    --n-cream: #fff8f5;
    --n-white: #ffffff;
    --n-bg: #fff0eb;
    --n-line: #ffe0d8;
    --n-text: #5a3a3a;
    --n-text-light: #9e7a7a;
    --n-tr: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --n-r-sm: 16px;
    --n-r-md: 24px;
    --n-r-lg: 32px;
    --n-r-xl: 48px;
    --n-r-full: 999px;
    --n-f-body: 'Nunito', -apple-system, sans-serif;
    --n-f-display: 'Quicksand', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--n-f-body); background: var(--n-cream); color: var(--n-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block;max-height: 100%; }
button { font-family: inherit; }
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.nx-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: rgba(255, 248, 245, 0.92);
    height: var(--n-hdr-h);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--n-line);
}
.nx-hdr-inner {
    max-width: var(--n-maxw);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nx-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nx-burger span { display: block; width: 24px; height: 3px; background: var(--n-ink); border-radius: var(--n-r-full); transition: var(--n-tr); }
.nx-logo {
    font-family: var(--n-f-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--n-ink);
    flex-shrink: 0;
    letter-spacing: -1px;
}
.nx-logo span { color: var(--n-accent); }
.nx-logo img { max-height: 40px; width: auto; display: block; flex-shrink: 0; }

.nx-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.nx-nav > a,
.nx-nav-item > a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--n-text-light);
    height: 100%;
    transition: var(--n-tr);
    border-radius: var(--n-r-full);
    text-decoration: none;
}
.nx-nav > a:hover,
.nx-nav-item:hover > a { color: var(--n-ink); background: var(--n-line); }

.nx-nav-item { position: relative; height: 100%; }
.nx-nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--n-white);
    border-radius: var(--n-r-lg);
    box-shadow: 0 16px 48px rgba(255, 140, 148, 0.18);
    padding: 20px;
    display: none;
    min-width: 200px;
    gap: 0;
    z-index: 2000;
    flex-direction: column;
    border: 2px solid var(--n-line);
    max-height: 500px;
    overflow-y: auto;
}
.nx-nav-item:hover .nx-nav-dropdown { display: flex; }
.nx-nav-dropdown-col { min-width: 160px; }
.nx-nav-dropdown-hdr {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--n-text);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--n-line);
    text-decoration: none;
    font-family: var(--n-f-display);
}
.nx-nav-dropdown-hdr:hover { color: var(--n-ink); }
.nx-nav-dropdown-col ul { list-style: none; padding: 0; margin: 0; }
.nx-nav-dropdown-col li { margin-bottom: 6px; }
.nx-nav-dropdown-col li a {
    font-size: 13px;
    color: var(--n-text-light);
    text-decoration: none;
    transition: color var(--n-tr);
    display: block;
    padding: 4px 8px;
    border-radius: var(--n-r-sm);
}
.nx-nav-dropdown-col li a:hover { color: var(--n-ink); background: var(--n-bg); }

.nx-hdr-acts { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nx-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--n-ink-light);
    font-size: 16px;
    transition: var(--n-tr);
    position: relative;
    background: var(--n-bg);
    border: none;
    cursor: pointer;
    border-radius: var(--n-r-full);
}
.nx-icon-btn:hover { color: var(--n-ink); background: var(--n-line); transform: scale(1.1); }
.nx-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    background: var(--n-accent);
    color: var(--n-white);
    font-size: 10px;
    font-weight: 800;
    border-radius: var(--n-r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 8px rgba(127, 219, 218, 0.4);
}

.nx-search-bar {
    background: var(--n-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.nx-search-bar.open { max-height: 80px; }
.nx-search-inner {
    max-width: var(--n-maxw);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    gap: 0;
}
.nx-search-inner input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--n-line);
    background: var(--n-white);
    color: var(--n-text);
    font-size: 15px;
    outline: none;
    font-weight: 600;
    border-radius: var(--n-r-full) 0 0 var(--n-r-full);
    border-right: none;
    font-family: inherit;
}
.nx-search-inner input::placeholder { color: var(--n-text-light); }
.nx-search-inner button {
    padding: 0 28px;
    background: var(--n-ink);
    color: var(--n-white);
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 var(--n-r-full) var(--n-r-full) 0;
    transition: var(--n-tr);
    font-family: inherit;
}
.nx-search-inner button:hover { background: var(--n-ink-mid); }

.nx-cart-wrap { position: relative; }
.nx-cart-popup {
    position: absolute;
    top: calc(100% + 12px);
    right: -12px;
    width: 340px;
    background: var(--n-white);
    border-radius: var(--n-r-lg);
    box-shadow: 0 16px 48px rgba(255, 140, 148, 0.18);
    padding: 20px;
    border: 2px solid var(--n-line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 2500;
}
.nx-cart-wrap:hover .nx-cart-popup,
.nx-cart-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }
.nx-cart-popup-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--n-line);
    font-size: 13px;
    font-weight: 700;
    color: var(--n-text);
    font-family: var(--n-f-display);
}
.nx-cart-popup-hdr a { color: var(--n-ink-light); font-size: 11px; }
.nx-cart-popup-hdr a:hover { color: var(--n-ink); }
.shop-cart-items { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 2px solid var(--n-line); }
.shop-cart-items:last-child { border-bottom: none; }
.shop-img { width: 56px; height: 56px; border-radius: var(--n-r-md); overflow: hidden; background: var(--n-bg); flex-shrink: 0; }
.shop-img img { width: 100%; height: 100%; object-fit: contain; }
.shop-info { flex: 1; min-width: 0; }
.shop-info h4 { font-size: 12px; font-weight: 700; color: var(--n-text); margin-bottom: 2px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shop-info h4 a { color: inherit; }
.shop-info h4 a:hover { color: var(--n-ink); }
.shop-info p { font-size: 11px; color: var(--n-text-light); }
.shop-delete { width: 28px; height: 28px; border-radius: var(--n-r-full); background: var(--n-bg); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--n-text-light); font-size: 12px; transition: var(--n-tr); flex-shrink: 0; }
.shop-delete:hover { background: var(--n-accent); color: #fff; }
.nx-cart-popup-ftr {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid var(--n-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nx-cart-subtotal { font-size: 15px; font-weight: 700; color: var(--n-text); }
.nx-cart-checkout-btn {
    padding: 10px 22px;
    background: var(--n-ink);
    color: var(--n-white);
    border: none;
    border-radius: var(--n-r-full);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--n-tr);
    font-family: inherit;
}
.nx-cart-checkout-btn:hover { background: var(--n-ink-mid); transform: scale(1.05); }

#jq-sideMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: var(--n-white);
    z-index: 3100;
    transition: left 0.35s ease;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(255, 140, 148, 0.15);
    border-radius: 0 var(--n-r-xl) var(--n-r-xl) 0;
}
#jq-sideMenu.active { left: 0; }
.nx-side-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid var(--n-line);
    font-size: 14px;
    font-weight: 700;
    color: var(--n-text);
    font-family: var(--n-f-display);
}
.nx-side-close {
    width: 36px;
    height: 36px;
    border-radius: var(--n-r-full);
    border: none;
    background: var(--n-bg);
    cursor: pointer;
    font-size: 14px;
    color: var(--n-text);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-side-close:hover { background: var(--n-line); color: var(--n-ink); }
.nx-menu-link {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--n-text);
    border-bottom: 2px solid var(--n-line);
    transition: var(--n-tr);
}
.nx-menu-link:hover { background: var(--n-bg); color: var(--n-ink); }
.wm-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}
.nx-menu-link { grid-column: 1; }
.jq-menu-arrow {
    grid-column: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--n-text-light);
    transition: var(--n-tr);
    margin-right: 12px;
}
.jq-menu-arrow:hover { color: var(--n-ink); }
.jq-menu-arrow.expanded { transform: rotate(90deg); color: var(--n-ink); }
.submenu { display: none; grid-column: 1 / -1; width: 100%; padding-left: 16px; background: var(--n-cream); }
.submenu.expanded { display: block; }

#jq-pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: var(--n-white);
    border-radius: var(--n-r-lg);
    padding: 40px 36px 32px;
    width: 92%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    z-index: 3000;
    display: none;
    box-shadow: 0 24px 64px rgba(255, 140, 148, 0.2);
    border: 2px solid var(--n-line);
}
#jq-close-pop {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: var(--n-bg);
    border: none;
    border-radius: var(--n-r-full);
    font-size: 14px;
    cursor: pointer;
    color: var(--n-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--n-tr);
}
#jq-close-pop:hover { background: var(--n-ink); color: #fff; }
#jq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(90, 58, 58, 0.4);
    z-index: 2990;
    display: none;
    backdrop-filter: blur(6px);
}

.products_box .pro_title {
    font-size: 22px;
     margin-top: 14px;
    font-weight: 700;
    color: var(--n-text);
    margin-bottom: 14px;
    line-height: 1.3;
    font-family: var(--n-f-display);
}
.products_box .box_price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.products_box .box_price .discount_price {
    font-size: 20px;
    font-weight: 700;
    color: var(--n-ink);
        text-decoration: line-through;
}
.products_box .box_price .price {
    font-size: 15px;
    color: var(--n-text-light);

}
.products_box select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--n-line);
    border-radius: var(--n-r-md);
    background: var(--n-white);
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--n-text);
    font-weight: 600;
    outline: none;
    font-family: inherit;
}
.products_box select:focus { border-color: var(--n-ink); }
.products_box .quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--n-line);
    border-radius: var(--n-r-md);
    width: fit-content;
    margin-bottom: 12px;
    overflow: hidden;
}
.products_box .quantity-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--n-bg);
    cursor: pointer;
    font-size: 16px;
    color: var(--n-text);
    font-weight: 700;
    transition: background var(--n-tr);
}
.products_box .quantity-btn:hover { background: var(--n-line); }
.products_box .quantity-input {
    width: 52px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 2px solid var(--n-line);
    border-right: 2px solid var(--n-line);
    font-size: 15px;
    font-weight: 700;
    color: var(--n-text);
    outline: none;
    background: var(--n-white);
    font-family: inherit;
}
.products_box .sku_code {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--n-text-light);
}
.products_box .sku_code span { font-weight: 700; white-space: nowrap; margin-right: 12px; }
.products_box .btn { display: flex; gap: 12px; margin-top: 14px; }
.products_box .btn .button {
    flex: 1;
    padding: 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--n-tr);
    border: none;
    border-radius: var(--n-r-full);
    font-family: inherit;
}
.products_box .btn .button:first-child { background: var(--n-ink); color: #fff; }
.products_box .btn .button:first-child:hover { background: var(--n-ink-mid); transform: scale(1.03); }
.products_box .btn .button:last-child { background: var(--n-bg); color: var(--n-text); border: 2px solid var(--n-line); }
.products_box .btn .button:last-child:hover { background: var(--n-line); }

.nx-footer {
    background: var(--n-ink);
    color: rgba(255,255,255,0.7);
    padding: 64px 24px 0;
    margin-top: 80px;
    border-radius: var(--n-r-xl) var(--n-r-xl) 0 0;
}
.nx-footer-main {
    max-width: var(--n-maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.nx-footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--n-white);
    margin-bottom: 20px;
    font-family: var(--n-f-display);
}
.nx-footer-col p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.nx-footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    transition: var(--n-tr);
}
.nx-footer-col a:hover { color: var(--n-white); transform: translateX(4px); }
.nx-newsletter {
    display: flex;
    gap: 0;
    margin-top: 16px;
    max-width: 320px;
}
.nx-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--n-white);
    font-size: 13px;
    outline: none;
    border-radius: var(--n-r-full) 0 0 var(--n-r-full);
    border-right: none;
    font-family: inherit;
}
.nx-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.nx-newsletter button {
    padding: 0 20px;
    background: var(--n-accent);
    color: var(--n-white);
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 var(--n-r-full) var(--n-r-full) 0;
    transition: var(--n-tr);
    font-family: inherit;
}
.nx-newsletter button:hover { background: var(--n-accent-hover); }
.nx-social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.nx-social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--n-r-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--n-white);
    font-size: 16px;
    transition: var(--n-tr);
}
.nx-social-links a:hover { background: var(--n-accent); transform: scale(1.15); }
.nx-payment-icons { display: flex; gap: 12px; align-items: center; }
.nx-payment-icons i { font-size: 28px; color: rgba(255,255,255,0.4); transition: var(--n-tr); }
.nx-payment-icons i:hover { color: var(--n-white); }
.nx-footer-bottom {
    max-width: var(--n-maxw);
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.nx-footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--n-tr); }
.nx-footer-bottom a:hover { color: var(--n-white); }

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--n-r-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--n-tr);
    border: none;
    font-family: inherit;
}
.nx-btn-primary { background: var(--n-ink); color: #fff; }
.nx-btn-primary:hover { background: var(--n-ink-mid); transform: scale(1.05); }
.nx-btn-outline { background: transparent; color: var(--n-white); border: 2px solid rgba(255,255,255,0.4); }
.nx-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--n-white); transform: scale(1.05); }
.nx-btn-outline-dark { background: transparent; color: var(--n-ink); border: 2px solid var(--n-ink); }
.nx-btn-outline-dark:hover { background: var(--n-ink); color: var(--n-white); transform: scale(1.05); }

.nx-card {
    background: var(--n-white);
    border-radius: var(--n-r-lg);
    overflow: hidden;
    transition: all var(--n-tr);
    border: 2px solid var(--n-line);
    box-shadow: 0 4px 20px rgba(255, 140, 148, 0.08);
}
.nx-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(255, 140, 148, 0.18); border-color: var(--n-ink-light); }

.nx-prod-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--n-bg);
    position: relative;
    border-radius: var(--n-r-lg) var(--n-r-lg) 0 0;
}
.nx-prod-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; background: var(--n-bg); }
.nx-card:hover .nx-prod-img img { transform: scale(1.06); }
.nx-prod-actions {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}
.nx-card:hover .nx-prod-actions { opacity: 1; }
.nx-prod-act-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--n-r-full);
    background: var(--n-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--n-text);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: var(--n-tr);
}
.nx-prod-act-btn:hover { background: var(--n-ink); color: #fff; transform: scale(1.15); }

.nx-prod-card {
    background: var(--n-white);
    border-radius: var(--n-r-lg);
    overflow: hidden;
    transition: all var(--n-tr);
    border: 2px solid var(--n-line);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(255, 140, 148, 0.08);
}
.nx-prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 140, 148, 0.18);
    border-color: var(--n-ink-light);
}
.nx-prod-img-wrap {
    position: relative;
    aspect-ratio: 1;
    /* background: var(--n-bg); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--n-r-lg) var(--n-r-lg) 0 0;
}
.nx-prod-img-wrap .nx-prod-img-link, .nx-prod-img-wrap .nx-prod-img-link img {
    display: block; width: 100%; height: 100%; object-fit: contain;
}
.nx-prod-card:hover .nx-prod-img-wrap img {
    transform: scale(1.06);
}
.nx-prod-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.nx-prod-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--n-accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--n-r-full);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(127, 219, 218, 0.4);
}
.nx-prod-card .nx-prod-actions {
    position: absolute;
    bottom: 14px;
    right: 14px;
    left: auto;
    transform: none;
    display: flex;
    gap: 8px;
    z-index: 4;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--n-tr);
}
.nx-prod-card:hover .nx-prod-actions {
    opacity: 1;
    transform: translateY(0);
}
.nx-prod-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nx-prod-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--n-ink-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.nx-prod-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--n-text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    min-height: 2.8em;
    font-family: var(--n-f-display);
}
.nx-prod-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}
.nx-prod-price .now {
    font-size: 16px;
    font-weight: 700;
    color: var(--n-text);
}
.nx-prod-price .was {
    font-size: 13px;
    color: var(--n-text-light);
    text-decoration: line-through;
}
.nx-prod-price .off {
    font-size: 10px;
    font-weight: 700;
    color: var(--n-accent);
    background: rgba(127, 219, 218, 0.15);
    padding: 4px 10px;
    border-radius: var(--n-r-full);
}

.nx-bread {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--n-text-light);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.nx-bread a:hover { color: var(--n-ink); }
.nx-bread span:last-child { color: var(--n-text); font-weight: 700; }

.nx-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.nx-pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: var(--n-r-full);
    border: 2px solid var(--n-line);
    background: var(--n-white);
    cursor: pointer;
    transition: var(--n-tr);
    font-size: 13px;
    font-weight: 700;
    color: var(--n-text);
}
.nx-pagination .page-item:hover { background: var(--n-bg); border-color: var(--n-ink); color: var(--n-ink); transform: scale(1.1); }
.nx-pagination .page-item.active-l { background: var(--n-ink); color: #fff; border-color: var(--n-ink); }

#to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: var(--n-r-full);
    background: var(--n-ink);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 148, 0.3);
}
#to-top.visible { opacity: 1; visibility: visible; }
#to-top:hover { background: var(--n-ink-mid); transform: scale(1.1); }

.successful_title {
    position: relative;
    width: 100%;
    max-width: var(--n-maxw);
    margin: 0 auto;
    background: var(--n-ink);
    color: var(--n-white);
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5000;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    animation: nxSlideDown 0.3s ease, nxFadeOut 0.5s ease 3s forwards;
    overflow: hidden;
    border-radius: 0 0 var(--n-r-lg) var(--n-r-lg);
}
@keyframes nxSlideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nxFadeOut { from { opacity: 1; transform: translateY(0); max-height: 200px; padding-top: 16px; padding-bottom: 16px; } to { opacity: 0; transform: translateY(-12px); max-height: 0; padding-top: 0; padding-bottom: 0; margin-top: 0; margin-bottom: 0; } }

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid var(--n-line);
    align-items: start;
}
.cart-item .item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--n-r-md);
    overflow: hidden;
    background: var(--n-bg);
    flex-shrink: 0;
}
.cart-item .item-image img { width: 100%; height: 100%; object-fit: contain; }
.item-details { min-width: 0; }
.item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--n-text);
    margin-bottom: 4px;
    display: block;
    line-height: 1.4;
    font-family: var(--n-f-display);
}
.item-title:hover { color: var(--n-ink); }
.item-sku {
    font-size: 11px;
    color: var(--n-text-light);
    margin-bottom: 10px;
}
.item-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-remove {
    padding: 8px 14px;
    background: transparent;
    border: 2px solid var(--n-line);
    border-radius: var(--n-r-full);
    font-size: 11px;
    color: var(--n-text-light);
    cursor: pointer;
    transition: var(--n-tr);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.btn-remove:hover { background: var(--n-ink); color: #fff; border-color: var(--n-ink); }
.item-price { text-align: right; white-space: nowrap; }
.price-current { display: block; font-size: 15px; font-weight: 700; color: var(--n-text); }
.price-original { display: block; font-size: 12px; color: var(--n-text-light); text-decoration: line-through; margin-top: 2px; }
.continue-shopping { margin-top: 24px; }
.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--n-ink-light);
    transition: var(--n-tr);
}
.continue-shopping-btn:hover { color: var(--n-ink); }
.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid var(--n-line);
    border-radius: var(--n-r-full);
    overflow: hidden;
}
.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--n-bg);
    cursor: pointer;
    font-size: 13px;
    color: var(--n-text);
    font-weight: 700;
}
.quantity-input {
    width: 44px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 2px solid var(--n-line);
    border-right: 2px solid var(--n-line);
    font-size: 13px;
    font-weight: 600;
    color: var(--n-text);
    outline: none;
    background: var(--n-white);
}

@media (max-width: 1024px) {
    .nx-nav { display: none; }
    .nx-burger { display: flex; }
    .nx-footer-main { grid-template-columns: repeat(2, 1fr); }
    .nx-hdr-inner { padding: 0 20px; }
}
@media (max-width: 768px) {
    .nx-cart-popup { display: none; }
    .nx-footer-main { grid-template-columns: 1fr; }
    .nx-footer { padding: 48px 20px 0; }
    .nx-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .successful_title { font-size: 11px; padding: 12px 20px; }
}
@media (max-width: 640px) {
    .nx-logo { font-size: 22px; }
    .nx-hdr-inner { padding: 0 16px; }
}


/* ===== Small / Big hide helpers ===== */
@media (max-width: 768px) {
    .small_hide { display: none !important; }
}
@media (min-width: 769px) {
    .big_hide { display: none !important; }
}

/* ===== Side Menu Search & Links ===== */
.nx-side-search {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid var(--nx-line);
}
.nx-side-search form {
    width: 100%;
    display: flex;
}
.nx-side-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--nx-line);
    background: var(--nx-bg);
    color: var(--nx-text);
    font-size: 13px;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.nx-side-search button {
    padding: 10px 18px;
    background: var(--nx-ink);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}
.nx-side-links {
    padding: 16px 24px;
    border-top: 1px solid var(--nx-line);
}
.nx-side-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--nx-text);
    border-bottom: 1px solid var(--nx-line);
    transition: var(--nx-tr);
    text-decoration: none;
}
.nx-side-link:last-child {
    border-bottom: none;
}
.nx-side-link:hover {
    color: var(--nx-accent);
}