* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c9171f;
    --secondary: #111111;
    --soft-bg: #f8f1f1;
    --card-bg: #ffffff;
    --text: #222222;
    --muted: #666666;
    --border: #efd2d2;
    --success: #1f9d55;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--site-font-family, "Nunito", "Nunito Fallback", sans-serif);
    background: var(--soft-bg);
    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: #c90f17;
}

.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;
    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: #efefef;
    color: #111;
    font-size: 19px;
    cursor: pointer;
}

.nf-account-btn {
    height: 40px;
    min-width: 138px;
    padding: 0 16px;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.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: #fff;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.35);
}

.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: 900;
    margin-top: 3px;
}

.nf-menubar {
    background: #000;
}

.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: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nf-menu-item > a i {
    color: #c7c7c7;
    font-size: 13px;
    margin-top: 1px;
}

.nf-menu-item.has-submenu:hover > .nf-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nf-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(0,0,0,.14);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .18s ease;
    z-index: 50;
}

.nf-submenu ul,
.nf-sub-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nf-submenu li + li {
    margin-top: 4px;
}

.nf-submenu a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #60656f;
    padding: 11px 14px;
    border-radius: 8px;
    background: transparent;
}

.nf-submenu a:hover {
    background: #f1f2f5;
    color: #3f4650;
}

.nf-submenu-parent > a {
    font-weight: 800;
    color: #30343a;
}

.nf-sub-submenu {
    margin-top: 4px;
    margin-left: 10px;
    padding-left: 8px;
    border-left: 2px solid #ececec;
}

.nf-sub-submenu a {
    font-size: 13px;
    padding: 8px 12px;
}

/* 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: #fff;
    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;
    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: #efefef;
    border-left: 1px solid #ddd;
    color: #111;
    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: #111;
}

.nf-mobile-drawer-close {
    border: 0;
    background: transparent;
    color: #111;
    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: #1e1e1e;
    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 #e1baba;
    border-radius: 10px;
    color: var(--primary);
    background: #fff7f7;
    font-weight: 800;
}

.btn-full {
    width: 100%;
}

.btn-cart {
    width: 100%;
    min-height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(201, 23, 31, 0.18);
    border: 0;
    transition: all .2s ease;
}

.btn-cart:hover {
    background: #ab1118;
    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, #2b334a 0%, #8795b7 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: 22px 0;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
}

.section-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
}

.product-thumb-wrap {
    position: relative;
    background: #fff;
    aspect-ratio: 1 / 1;
    padding: 10px;
}

.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;
    min-height: 40px;
}

.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: #ffebeb;
    color: var(--primary);
    padding: 4px 7px;
    border-radius: 999px;
}

.free-delivery-badge {
    display: inline-flex;
    align-items: center;
    background: #e9fff0;
    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 #d8b6b6;
    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(--border);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

.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: #e9fff0;
    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(201, 15, 23, .12);
}

.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: #1d1d1d;
}

.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: #ffeaea;
    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: #fff7f7;
    border: 1px solid #f4d2d2;
    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;
}

.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;
}

.order-box-head p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.form-step-title {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 18px 0 12px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #f0d0d0;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: #fff;
}

.price-row .amount {
    font-weight: 900;
    text-align: right;
    margin-left: auto;
}

.price-row.base {
    background: #fff6f6;
}

.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: #fff9f2;
    border-color: #f5d0a9;
}

.price-row.fee .amount {
    color: #d97706;
    font-size: 16px;
}

.price-row.delivery {
    background: #f4fffe;
    border-color: #b8ece6;
}

.price-row.delivery .amount {
    color: #0f766e;
    font-size: 16px;
}

.price-row.final {
    background: #fff3f3;
    border-color: #f3bcbc;
}

.price-row.final .amount {
    color: var(--primary);
    font-size: 20px;
}

.order-free-delivery-note {
    background: #e9fff0;
    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: #222;
}

.form-control {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

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: #222;
    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: var(--primary);
    background: #fff5f5;
    color: var(--primary);
    box-shadow: 0 0 0 2px rgba(201, 23, 31, .08);
}

.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;
}

/* FOOTER */
.site-footer {
    margin-top: 36px;
    background: #070707;
    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;
}

.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;
    }
}