/* ═══════════════════════════════════════════
   Neore — Shop Page
   ═══════════════════════════════════════════ */

.n-shop-wrapper { background: var(--bg); min-height: 100vh; }

/* ── Product Grid ── */
.n-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding: 14px 14px 24px;
	margin: 0;
	list-style: none;
}
@media(min-width:481px){.n-product-grid{grid-template-columns:repeat(3,1fr);gap:20px;padding:16px 20px 28px}}
@media(min-width:768px){.n-product-grid{padding:20px 28px 32px}}
@media(min-width:1024px){.n-product-grid{grid-template-columns:repeat(4,1fr);gap:24px;max-width:1240px;margin-left:auto;margin-right:auto;padding:24px 28px 40px}}

/* ── Product Card ── */
.n-product-card {
	background: var(--wh);
	border-radius: var(--rs);
	overflow: hidden;
	box-shadow: 0 1px 8px rgba(0,0,0,.06);
	list-style: none;
}
.n-prod-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}
.n-product-card { transition: transform .12s ease, box-shadow .12s ease; }
.n-product-card:active { transform: scale(.97); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
@media(min-width:1024px){
	.n-product-card:hover{box-shadow:0 6px 24px rgba(0,0,0,.12);transform:translateY(-2px)}
}

/* ── Image ── */
.n-prod-img-wrap {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--g1);
	flex-shrink: 0;
}
.n-prod-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Out of stock overlay ── */
.n-prod-oos{position:absolute;inset:0;background:rgba(0,0,0,.45);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;color:#fff;letter-spacing:.04em}

/* ── Badge ── */
.n-prod-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--rd);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 3px 6px;
	border-radius: 4px;
	line-height: 1.3;
	white-space: nowrap;
}

/* ── Info ── */
.n-prod-info { padding: 10px 10px 6px; flex: 1; }
.n-prod-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--bk);
	line-height: 1.4;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.n-prod-price-row{display:flex;align-items:baseline;gap:5px;flex-wrap:wrap}
.n-prod-price{font-size:14px;font-weight:600;color:var(--bk)}
.n-prod-strike{font-size:10px;color:var(--g4);text-decoration:line-through}

/* ── CTA ── */
.n-prod-cta {
	margin: 6px 10px 10px;
	background: var(--or);
	color: #fff;
	text-align: center;
	padding: 7px 0;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .02em;
	transition: background .15s, color .15s, box-shadow .15s;
}
@media(min-width:1024px){
	.n-prod-cta:hover{background:#fff;color:var(--or);box-shadow:inset 0 0 0 1.5px var(--or)}
}
.n-prod-cta:active{background:#fff;color:var(--or);box-shadow:inset 0 0 0 1.5px var(--or)}

@media(min-width:481px){
	.n-prod-name{font-size:13px}
	.n-prod-price{font-size:15px}
	.n-prod-cta{font-size:13px;padding:10px 0}
}

/* ── Load More ── */
.n-load-more-wrap { padding: 4px 14px 40px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
@media(min-width:481px){ .n-load-more-wrap { padding: 4px 20px 48px; } }
@media(min-width:768px){ .n-load-more-wrap { padding: 4px 28px 56px; } }
.n-load-more-btn {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 9px 18px; background: var(--wh);
	color: var(--bk); font-size: 13px; font-weight: 600;
	border: 1.5px solid var(--g2); border-radius: var(--rs);
	text-decoration: none; -webkit-tap-highlight-color: transparent;
	transition: border-color .12s ease, color .12s ease, transform .12s ease;
}
.n-load-more-btn:active { border-color: var(--or); color: var(--or); transform: scale(.97); }

/* ── Empty ── */
.n-shop-empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 80px 24px; text-align: center; color: var(--g4); }
.n-shop-empty p { font-size: 15px; font-weight: 500; margin: 0; }
.n-shop-back-btn { display: inline-block; padding: 13px 32px; background: var(--or); color: #fff; text-decoration: none; border-radius: var(--rm); font-weight: 600; font-size: 15px; }
