:root{
    --primary:#1f6bf0;
    --secondary:#111827;
    --text:#111827;

    --primary-soft: rgba(31,107,240,.08);
    --primary-border: rgba(31,107,240,.2);
    --primary-bg-light: rgba(31,107,240,.05);
    --primary-bt-br: color-mix(var(--primary) 20%, transparent);
    --primary-bt-bg: color-mix(var(--primary) 10%, transparent);
    --primary-pd-bg: color-mix(var(--primary) 5%, transparent);
    --primary-body: color-mix(var(--primary) 1%, transparent);
    --primary-bg-dark: color-mix(var(--primary) 30%, transparent);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--site-font-family, "Nunito", "Nunito Fallback", sans-serif);
    background: var(--primary-body);
    color: var(--text);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 24px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    font-family: var(--site-font-family, "Nunito", "Nunito Fallback", sans-serif);
}

.site-header input,
.site-header button,
.site-header a,
.site-header span,
.site-header strong,
.site-header small,
.site-header div,
.site-header li,
.site-header ul,
.site-header nav,
.site-header form {
    font-family: inherit;
}

.site-header i,
.site-header .fa,
.site-header .fa-solid,
.site-header .fa-regular,
.site-header .fa-brands,
.site-header [class^="fa-"],
.site-header [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal;
    line-height: 1;
}

.site-header .fa-solid,
.site-header .fa-regular {
    font-weight: 900 !important;
}

.site-header .fa-brands {
    font-weight: 400 !important;
}

.nf-header {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.nf-topbar {
    background: #ffffff;
}

.nf-topbar .container,
.nf-menubar .container {
    width: min(1192px, calc(100% - 24px));
    margin: 0 auto;
}

.nf-topbar-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nf-left-group {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    min-width: 0;
}

.nf-logo-link {
    display: inline-flex;
    align-items: center;
    min-width: 140px;
    max-width: 150px;
}

.nf-logo {
    max-width: 140px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nf-logo-text {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: .9;
}

.nf-search {
    flex: 1;
    min-width: 260px;
    max-width: 480px;
    height: 38px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--primary-bt-br);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nf-search input {
    flex: 1;
    height: 38px;
    border: 0;
    outline: none;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.nf-search button {
    width: 48px;
    height: 38px;
    border: 0;
    border-left: 1px solid #ddd;
    background: var(--primary);
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
}

.nf-account-btn {
    height: 40px;
    min-width: 138px;
    padding: 0 16px;
    border: 1px solid var(--primary-bt-br);
    border-radius: 10px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    background: var(--primary-bt-bg);
}

.nf-account-btn i {
    font-size: 15px;
}

.nf-right-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nf-call-box,
.nf-cart-box {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    padding-left: 18px;
    border-left: 1px solid var(--primary);
}

.nf-call-box i,
.nf-cart-box i {
    font-size: 30px;
    line-height: 1;
}

.nf-call-box div,
.nf-cart-box div {
    display: flex;
    flex-direction: column;
    line-height: 1.02;
}

.nf-call-label,
.nf-cart-label {
    font-size: 12px;
    font-weight: 700;
}

.nf-call-number,
.nf-cart-total {
    font-size: 16px;
    font-weight: 700;
    margin-top: 3px;
}

.nf-menubar {
    background: var(--primary);
}

.nf-nav {
    width: 100%;
}

.nf-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    min-height: 40px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.nf-menu::-webkit-scrollbar {
    display: none;
}

.nf-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.nf-menu-item > a {
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nf-menu-item > a i {
    color: #fff;
    font-size: 13px;
    margin-top: 1px;
}


.nf-header,
.nf-topbar,
.nf-menubar,
.nf-nav,
.nf-menu,
.nf-menu-item {
    overflow: visible;
}

.nf-menu-item.has-submenu {
    position: relative;
}

.nf-menu-item.has-submenu:hover > .nf-submenu,
.nf-menu-item.has-submenu:focus-within > .nf-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nf-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: all .18s ease;
    z-index: 99999;
}

.nf-submenu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.nf-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.nf-submenu li {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.nf-submenu li + li {
    margin-top: 6px;
}

.nf-submenu a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: #ffffff;
    color: #4b5563 !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
    white-space: nowrap;
    text-decoration: none;
}

.nf-submenu a:hover {
    background: var(--primary-bt-bg);
    color: var(--primary) !important;
}

.nf-submenu-parent > a {
    font-weight: 800;
    color: #111827 !important;
}

.nf-sub-submenu {
    list-style: none;
    margin: 6px 0 0 12px;
    padding: 0 0 0 12px;
    border-left: 2px solid #ececec;
    display: block;
}

.nf-sub-submenu li {
    margin: 0;
    padding: 0;
}

.nf-sub-submenu li + li {
    margin-top: 4px;
}

.nf-sub-submenu a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    background: transparent;
    color: #6b7280 !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    white-space: nowrap;
}

.nf-sub-submenu a:hover {
    background: #f8fafc;
    color: #111827 !important;
}




/* MOBILE TOPBAR */
.nf-mobile-topbar {
    display: none;
}

.nf-mobile-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 180px;
    min-width: 0;
    flex: 1;
}

.nf-mobile-logo {
    max-width: 170px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nf-mobile-logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: .9;
}

.nf-mobile-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nf-mobile-icon-btn {
    background: transparent;
    border: 0;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    padding: 0;
    width: 34px;
    height: 34px;
}

.nf-mobile-icon-btn i {
    font-size: 26px;
    line-height: 1;
}

.nf-mobile-cart-btn {
    position: relative;
}

.nf-mobile-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nf-mobile-search {
    display: none;
}

.nf-mobile-search-form {
    width: 100%;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--primary-bt-br);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nf-mobile-search-form input {
    flex: 1;
    height: 40px;
    border: 0;
    outline: none;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.nf-mobile-search-form button {
    width: 50px;
    height: 40px;
    border: 0;
    background: var(--primary);
    border-left: 1px solid #ddd;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* MOBILE DRAWER */
.nf-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .22s ease;
}

.nf-mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nf-mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 28px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .22s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.nf-mobile-drawer.is-open .nf-mobile-drawer-panel {
    transform: translateX(0);
}

.nf-mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
    z-index: 1;
}

.nf-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    border-bottom: 1px solid #ececec;
}

.nf-mobile-drawer-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--secondary);
}

.nf-mobile-drawer-close {
    border: 0;
    background: transparent;
    color: var(--secondary);
    font-size: 24px;
    cursor: pointer;
}

.nf-mobile-drawer-body {
    padding: 10px 12px 20px;
    overflow-y: auto;
}

.nf-mobile-menu,
.nf-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nf-mobile-menu-item {
    border-bottom: 1px solid #efefef;
}

.nf-mobile-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nf-mobile-menu-row > a {
    display: block;
    flex: 1;
    padding: 14px 6px;
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
}

.nf-mobile-submenu-toggle {
    border: 0;
    background: transparent;
    color: #666;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-shrink: 0;
}

.nf-mobile-submenu-toggle i {
    transition: transform .18s ease;
}

.nf-mobile-menu-item.is-open .nf-mobile-submenu-toggle i {
    transform: rotate(180deg);
}

.nf-mobile-submenu {
    display: none;
    padding: 0 0 8px 10px;
}

.nf-mobile-menu-item.is-open .nf-mobile-submenu {
    display: block;
}

.nf-mobile-submenu li a {
    display: block;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #4d5560;
    border-radius: 8px;
}

.nf-mobile-submenu li a:hover {
    background: #f3f4f6;
}

body.nf-mobile-menu-open {
    overflow: hidden;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--primary);
    background: var(--primary-bt-bg);
    font-weight: 800;
}

.btn-full {
    width: 100%;
}

.btn-cart {
    width: 100%;
    min-height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    border: 0;
    transition: all .2s ease;
}

.btn-cart:hover,
.btn-primary:hover {
    filter: brightness(.94);
    transform: translateY(-1px);
}

.btn-cart:disabled {
    background: #cfcfcf;
    color: #666;
    box-shadow: none;
    cursor: not-allowed;
}

.mt-12 {
    margin-top: 12px;
}

/* HERO */
.hero-section {
    padding: 18px 0 8px;
}

.hero-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 14px;
    min-height: 320px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    box-shadow: var(--shadow);
}

.hero-content {
    padding: 34px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-text {
    font-size: 16px;
    max-width: 540px;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.hero-image-wrap img {
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .25));
}

/* SECTION */
.section {
    padding: 0;
    margin-top: 25px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}

.section-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-bt-bg);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-thumb-wrap {
    position: relative;
}

.product-badge-top {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.product-badge-left {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    display:none;
}

.product-badge-right {
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.product-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    height: 40px;
    overflow: hidden;
    color: var(--secondary);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.price-old {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
}

.discount-tag {
    font-size: 11px;
    font-weight: 800;
    background: var(--primary-bt-bg);
    color: var(--primary);
    padding: 4px 7px;
    border-radius: 999px;
}

.free-delivery-badge {
    display: inline-flex;
    align-items: center;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}

.product-actions {
    margin-top: auto;
}

.empty-box {
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    color: var(--muted);
}

/* PRODUCT DETAILS */
.product-details-section {
    padding: 22px 0 40px;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

.breadcrumb-wrap a {
    color: var(--primary);
    font-weight: 700;
}

.product-page-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.product-left-col,
.product-right-col {
    min-width: 0;
}

.product-right-col {
    position: sticky;
    top: 110px;
    align-self: start;
}

.product-gallery-card,
.product-content-card,
.order-box-sticky {
    background: #fff;
    border: 1px solid var(--primary-bt-br);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .01);
}

.product-gallery-card {
    padding: 18px;
}

.product-main-image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-page-discount,
.product-page-free-badge {
    position: absolute;
    top: 14px;
    z-index: 2;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    padding: 7px 10px;
}

.product-page-discount {
    left: 14px;
    background: var(--primary);
    color: #fff;
}

.product-page-free-badge {
    right: 14px;
    background: var(--success-bg);
    color: #0b8f4d;
}

.product-thumb-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.thumb-item {
    border: 1px solid #e6d3d3;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 4px;
}

.thumb-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .06);
}

.thumb-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.product-content-card {
    padding: 22px;
    margin-top: 18px;
}

.product-title-big {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--secondary);
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.product-sale-price {
    font-size: 30px;
    color: var(--primary);
    font-weight: 900;
}

.product-regular-price {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
}

.product-discount-chip {
    background: var(--primary-bt-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
}

.product-short-box {
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--primary-pd-bg);
    border: 1px solid var(--primary-bg-dark);
    color: #333;
    margin-bottom: 18px;
}

.product-benefits-box,
.product-description-box {
    margin-top: 20px;
}

.product-benefits-box h3,
.product-description-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.product-benefits-box ul {
    padding-left: 28px;
    color: #333;
    display: grid;
    gap: 10px;
}

.product-description-text {
    color: #3b3b3b;
    line-height: 1.75;
}

.order-box-sticky {
    padding: 20px;
}

.order-box-head h3 {
    font-size: 28px;
    margin-bottom: 6px;
    color: var(--secondary);
}

.order-box-head p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.form-step-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin: 18px 0 12px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--primary-bg-dark);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: #fff;
}

.price-row .amount {
    font-weight: 700;
    text-align: right;
    margin-left: auto;
}

.price-row.base {
    background: var(--primary-pd-bg);
}

.price-row.base .amount {
    color: var(--primary);
    font-size: 18px;
}

.price-row.discount {
    background: #f6fff7;
    border-color: #bfe7c5;
}

.price-row.discount .amount {
    color: #16a34a;
    font-size: 16px;
}

.price-row.fee {
    background: var(--primary-pd-bg);
    border-color: var(--primary-bg-dark);
}

.price-row.fee .amount {
    color: var(--warning);
    font-size: 16px;
}

.price-row.delivery {
    background: var(--info-bg);
    border-color: #b8ece6;
}

.price-row.delivery .amount {
    color: var(--info);
    font-size: 16px;
}

.price-row.final {
    background: var(--primary-pd-bg);
    border-color: var(--primary-bg-dark);
}

.price-row.final .amount {
    color: var(--primary);
    font-size: 20px;
}

.order-free-delivery-note {
    background: var(--success-bg);
    color: #0b8f4d;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 12px;
}

.order-form-box label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.payment-method-list {
    display: grid;
    gap: 10px;
}

.delivery-area-row-desktop {
    display: grid;
    gap: 10px;
}

.payment-method-card {
    display: block;
    cursor: pointer;
}

.payment-method-input,
.delivery-area-input {
    display: none;
}

.payment-method-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-weight: 700;
    transition: .2s ease;
}

.payment-method-title {
    color: var(--secondary);
    font-weight: 700;
}

.payment-method-offer {
    font-size: 12px;
    font-weight: 800;
    color: #16a34a;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 5px 8px;
    white-space: nowrap;
}

.payment-method-input:checked + .payment-method-box,
.delivery-area-input:checked + .payment-method-box {
    border-color: #b8ece6;
    background: var(--info-bg);
    color: var(--primary);
}

.secure-order-note {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.order-field-error {
    color: #d93025;
    font-size: 12px;
    display: block;
    margin-top: 6px;
}

.mobile-inline-order-section {
    display: none;
}

.mobile-order-bar {
    display: none;
}

/* HOME PREMIUM */
.home-v2 {
    padding: 10px;
}

@media (min-width: 1000px) {
    div#top-products,
    div#featured-products {
        height: 430px;
        overflow: hidden;
    }
}

/* SLIDER */
.home-v2-slider-section {
    position: relative;
    margin-bottom: 24px;
}

.home-v2-slider-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.home-v2-slider-track {
    display: flex;
    will-change: transform;
}

.home-v2-slide {
    min-width: 100%;
    flex: 0 0 100%;
    position: relative;
}

.home-v2-slide img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 14px;
}

.home-v2-slide-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(17, 17, 17, 0.48);
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.home-v2-slide-content h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
}

.home-v2-slide-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.home-v2-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: var(--secondary);
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.home-v2-slider-btn-prev {
    left: 14px;
}

.home-v2-slider-btn-next {
    right: 14px;
}

.home-v2-slider-btn:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .home-v2-slide img {
        height: 220px;
    }

    .home-v2-slide-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }

    .home-v2-slide-content h2 {
        font-size: 16px;
    }

    .home-v2-slide-content p {
        font-size: 12px;
    }

    .home-v2-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .home-v2-slider-btn-prev {
        left: 10px;
    }

    .home-v2-slider-btn-next {
        right: 10px;
    }
}

#prev,
#next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    color: var(--secondary);
    font-size: 26px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#prev {
    left: 14px;
}

#next {
    right: 14px;
}

#prev:hover,
#next:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .slide img {
        height: 220px;
    }

    #prev,
    #next {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    #prev {
        left: 10px;
    }

    #next {
        right: 10px;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

/* GRID */
.grid {
    display: grid;
    gap: 10px;
}

.grid-5 {
    grid-template-columns: repeat(2,1fr);
}

.grid-list {
    grid-template-columns: repeat(2,1fr);
}

@media(min-width:1000px) {
    .grid-5,
    .grid-list {
        grid-template-columns: repeat(5,1fr);
    }
}

/* CARD */
.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.thumb {
    position: relative;
}

.thumb img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: #fff;
    padding: 4px 6px;
    font-size: 11px;
}

.product-badge-right {
    background: #dcfce7;
    color: #15803d;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.info {
    padding: 10px;
}

.info h4 {
    font-size: 13px;
    margin: 0;
    color: var(--secondary);
}

.price {
    margin-top: 5px;
}

.price strong {
    color: var(--primary);
}

.price span {
    text-decoration: line-through;
    font-size: 12px;
    color: #999;
}

/* FOOTER */
.site-footer {
    margin-top: 36px;
    background: var(--secondary);
    color: #ddd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
    padding: 34px 0;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 800;
}

.footer-text,
.footer-links a {
    font-size: 14px;
    color: #c8c8c8;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 0;
    font-size: 13px;
    color: #b7b7b7;
    text-align: center;
}

/* THANK YOU */
.thankyou-section {
    padding: 80px 0;
    text-align: center;
}

.thankyou-card {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.thankyou-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.thankyou-title {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.thankyou-text {
    color: #666;
    margin-bottom: 25px;
}

.thankyou-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .nf-menu {
        gap: 26px;
    }

    .nf-logo {
        max-width: 130px;
    }

    .nf-search {
        max-width: 430px;
    }

    .nf-account-btn {
        min-width: 124px;
        padding: 0 14px;
    }
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-title {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .nf-topbar-inner {
        display: none;
    }

    .nf-mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 60px;
        gap: 12px;
    }

    .nf-mobile-search {
        display: block;
        padding: 6px 0 10px;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 24px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-page-wrap {
        grid-template-columns: 1fr;
    }

    .product-right-col {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .nf-menubar {
        display: none;
    }

    .nf-mobile-logo {
        max-width: 150px;
        max-height: 40px;
    }

    .nf-mobile-logo-link {
        max-width: 170px;
    }

    .product-right-col {
        display: none;
    }

    .mobile-inline-order-section {
        display: block;
        margin-top: 18px;
        scroll-margin-top: 90px;
    }

    .delivery-area-row-desktop {
        grid-template-columns: 1fr;
    }

    .payment-method-box {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 769px) {
    .delivery-area-row-desktop {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-card {
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-title {
        font-size: 13px;
        min-height: 36px;
    }

    .price-current {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-title-big {
        font-size: 28px;
    }

    .product-sale-price {
        font-size: 24px;
    }

    .product-thumb-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .mobile-order-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(10px);
        border-top: 1px solid #ead1d1;
        z-index: 120;
    }

    .mobile-order-price {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    .mobile-order-price small {
        font-size: 12px;
        color: #666;
    }

    .mobile-order-price strong {
        color: var(--primary);
        font-size: 20px;
        font-weight: 900;
    }

    .mobile-order-btn {
        min-width: 140px;
    }

    body {
        padding-bottom: 82px;
    }
}

@media print {
    .site-header,
    .btn-print,
    .btn-back,
    .mobile-order-bar {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .order-card {
        box-shadow: none;
    }
}

/* CATEGORY PAGE */
.category-page-v2 .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.category-page-v2 .product-card {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 100%;
    background: #fff;
    border: 1px solid var(--primary-bt-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.category-page-v2 .product-thumb-wrap {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    flex: 0 0 auto;
}

.category-page-v2 .product-thumb {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-page-v2 .product-body {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: #fff;
    flex: 1 1 auto;
}

.category-page-v2 .product-title {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: var(--secondary);
    text-decoration: none;
    min-height: 40px;
}

.category-page-v2 .product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.category-page-v2 .price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.category-page-v2 .price-old {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}

.category-page-v2 .discount-tag {
    font-size: 11px;
    font-weight: 800;
    background: var(--primary-bt-bg);
    color: var(--primary);
    padding: 4px 7px;
    border-radius: 999px;
}

.category-page-v2 .free-delivery-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #eefaf0;
    color: #15803d;
    font-size: 11px;
    font-weight: 600;
}

.category-page-v2 .product-actions {
    margin-top: auto;
}

.category-page-v2 .product-actions .btn.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: none;
}

.category-page-v2 .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 999px;
}

@media (min-width: 768px) {
    .category-page-v2 .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1000px) {
    .category-page-v2 .product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}


















.review-simple-section{
    margin-top:24px;
    padding:14px;
    border-radius:20px;
    overflow:hidden;
}

.review-simple-titlebar{
    background:#1f6bf0;
    padding:12px 16px;
    text-align:center;
    margin-bottom:14px;
}

.review-simple-titlebar h2{
    margin:0;
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.review-simple-stage{
    position:relative;
    height:620px;
    overflow:hidden;
}

.review-simple-track{
    position:relative;
    width:100%;
    height:100%;
}

.review-simple-slide{
    position:absolute;
    top:50%;
    left:50%;
    width:74%;
    max-width:500px;
    min-width:320px;
    transform:translate(-50%, -50%);
    opacity:0;
    z-index:1;
    transition:transform .4s ease, opacity .4s ease;
    will-change:transform, opacity;
}

.review-simple-slide.center{
    transform:translate(-50%, -50%) scale(1);
    opacity:1;
    z-index:3;
}

.review-simple-slide.left{
    transform:translate(calc(-50% - 170px), -50%) scale(.86);
    opacity:.22;
    z-index:1;
}

.review-simple-slide.right{
    transform:translate(calc(-50% + 170px), -50%) scale(.86);
    opacity:.22;
    z-index:1;
}

.review-simple-slide.hidden{
    transform:translate(-50%, -50%) scale(.7);
    opacity:0;
    z-index:0;
    pointer-events:none;
}

.review-simple-card{
    position:relative;
    width:100%;
    height:560px;
    background:linear-gradient(180deg,#2f7cf7 0%, #1f6bf0 100%);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.review-simple-heading{
    position:absolute;
    top:34px;
    left:0;
    right:0;
    text-align:center;
    line-height:1;
    z-index:2;
}

.review-simple-main{
    display:block;
    font-family:'Sora', sans-serif;
    font-size:56px;
    font-weight:700;
    color:#ffd85e;
    letter-spacing:-2px;
}

.review-simple-script{
    display:block;
    font-family:'Rochester', cursive;
    font-size:75px;
    color:#fff;
    margin-top:-14px;
    text-shadow:0 2px 0 rgba(0,0,0,.35), 0 6px 12px rgba(0,0,0,.25);
    transform:rotate(-5deg);
}

.review-simple-arrow{
    position:absolute;
    top:108px;
    left:24px;
    color:#fff;
    font-size:30px;
    transform:rotate(12deg);
    z-index:2;
}

.review-simple-image{
    position:absolute;
    left:50%;
    top:170px;
    transform:translateX(-50%);
    width:84%;
    height:300px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    z-index:2;
}

.review-simple-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#fff;
}

.review-simple-badge{
    position:absolute;
    left:18px;
    bottom:18px;
    width:220px;
    background:#fff4f2;
    border-radius:22px;
    padding:12px 16px;
    z-index:3;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.review-simple-name{
    color:#1f6bf0;
    font-size:20px;
    font-weight:800;
    line-height:1.2;
}

.review-simple-role{
    font-size:12px;
    color:#777;
    margin:4px 0 6px;
}

.review-simple-stars{
    color:#f4b000;
    font-size:22px;
    line-height:1;
}

.review-simple-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.35);
    color:#fff;
    font-size:28px;
    z-index:5;
    cursor:pointer;
}

.review-simple-prev{ left:10px; }
.review-simple-next{ right:10px; }

.review-simple-dots{
    position:absolute;
    left:50%;
    bottom:8px;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:6;
}

.review-simple-dots button{
    width:14px;
    height:6px;
    border:none;
    border-radius:999px;
    background:#f1b7bc;
    cursor:pointer;
}

.review-simple-dots button.active{
    width:28px;
    background:#1f6bf0;
}

@media (max-width: 640px){
    .review-simple-stage{
        height:430px;
    }

    .review-simple-slide{
        width:74%;
        max-width:none;
        min-width:230px;
    }

    .review-simple-slide.center{
        transform:translate(-50%, -48%) scale(1);
    }

    .review-simple-slide.left{
        transform:translate(calc(-50% - 118px), -48%) scale(.86);
    }

    .review-simple-slide.right{
        transform:translate(calc(-50% + 118px), -48%) scale(.86);
    }

    .review-simple-card{
        height:365px;
        border-radius:18px;
    }

    .review-simple-heading{
        top:28px;
    }

    .review-simple-main{
        font-size:28px;
    }

    .review-simple-script{
        font-size:40px;
        margin-top:-8px;
    }

    .review-simple-arrow{
        top:72px;
        left:16px;
        font-size:26px;
    }

    .review-simple-image{
        top:114px;
        width:84%;
        height:210px;
        border-radius:16px;
    }

    .review-simple-badge{
        left:10px;
        bottom:14px;
        width:160px;
        padding:10px 14px;
        border-radius:18px;
    }

    .review-simple-name{
        font-size:14px;
    }

    .review-simple-role{
        font-size:10px;
        margin-bottom:4px;
    }

    .review-simple-stars{
        font-size:18px;
    }

    .review-simple-nav{
        width:38px;
        height:38px;
        font-size:24px;
    }
}


#home-product-loader{
    font-size:14px;
    font-weight:700;
    color:#666;
}

#home-load-more-btn{
    display:block;
}


.product-anchor-menu{
    display:flex;
    gap:10px;
    margin:18px 0 20px;
    flex-wrap:wrap;
}

.product-anchor-menu a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 18px;
    border-radius:10px;
    border:1px solid rgba(16,117,233,.20);
    background:rgba(16,117,233,.08);
    color:#1075E9 !important;
    font-size:14px;
    font-weight:700;
    line-height:1;
    text-decoration:none !important;
    transition:all .2s ease;
}

.product-anchor-menu a:hover{
    background:#1075E9;
    color:#ffffff !important;
    border-color:#1075E9;
}

.product-anchor-menu a:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(16,117,233,.18);
}

.product-anchor-menu a.active{
    background:#1075E9;
    color:#ffffff !important;
    border-color:#1075E9;
}

.product-faq-section{
    margin-top:24px;
}

.product-faq-card{
    background:#fff;
    border:1px solid var(--primary-bt-br);
    border-radius:16px;
    padding:22px;
    box-shadow:0 4px 14px rgba(0,0,0,.01);
}

.product-faq-head{
    margin-bottom:16px;
}

.product-faq-kicker{
    display:inline-block;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--primary);
    background:var(--primary-bt-bg);
    border:1px solid var(--primary-bg-dark);
    border-radius:999px;
    padding:6px 10px;
    margin-bottom:10px;
}

.product-faq-head h3{
    margin:0;
    font-size:24px;
    color:var(--secondary);
}

.product-faq-item{
    border:1px solid var(--primary-bt-br);
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}

.product-faq-question{
    width:100%;
    border:0;
    background: var(--primary-pd-bg);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 20px;
    text-align:left;
    font-size:18px;
    font-weight:700;
    color:#1f2937;
    cursor:pointer;
}

.product-faq-question:hover{
    background:#fafafa;
}

.product-faq-icon{
    flex:0 0 auto;
    width:28px;
    height:28px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary-bt-bg);
    color:var(--primary);
    font-size:18px;
    font-weight:800;
    line-height:1;
}

.product-faq-question.is-open .product-faq-icon{
    transform:rotate(45deg);
}

.product-faq-answer{
    display:none;
    padding:0 20px 18px;
    border-top:1px solid var(--primary-bt-br);
}

.product-faq-answer.is-open{
    display:block;
}

.product-faq-answer p{
    margin:16px 0 0;
    font-size:16px;
    line-height:1.7;
    color:#4b5563;
}

@media (max-width: 767px){
    .product-faq-card{
        padding:16px;
    }

    .product-faq-head h3{
        font-size:20px;
    }

    .product-faq-question{
        font-size:16px;
        padding:16px;
    }

    .product-faq-answer{
        padding:0 16px 16px;
    }
}

/* AJAX Search */

.nf-left-group,
.nf-search{
    overflow:visible !important;
}

.header-search-wrap{
    position:relative !important;
    flex:1;
}

.ajax-search-results{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    width:100%;
    min-width:520px;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.16);

    z-index:99999999;

    overflow:hidden;
}

.ajax-search-item{
    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 14px;

    text-decoration:none;

    color:#111;

    border-bottom:1px solid #f3f4f6;

    transition:.2s;
}

.ajax-search-item:hover{
    background:#f8fafc;
}

.ajax-search-item img{
    width:55px;
    height:55px;
    border-radius:10px;
    object-fit:cover;
    flex-shrink:0;
}

.ajax-search-item strong{
    display:block;
    font-size:14px;
    line-height:1.4;
}

.ajax-search-item span{
    display:block;
    margin-top:4px;
    color:var(--primary);
    font-weight:700;
}

.ajax-search-empty{
    padding:18px;
    text-align:center;
    color:#64748b;
}

@media(max-width:768px){

.ajax-search-results{
    min-width:auto;
    width:100%;
}

}