/* Extras din <style> inline (CSP) — pagina ghiduri */
.ghiduri-hub { padding: 64px 0 88px; background: var(--bg); }
/* IDENTIC cu .products-grid din index.html */
.ghiduri-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

/* ── Product-card style (aliniat cu homepage + categorii) ── */
.product-card { position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; cursor: pointer; isolation: isolate; box-shadow: 0 4px 12px rgba(0,30,60,0.08); transition: translate 700ms cubic-bezier(0.16,1,0.3,1), box-shadow 400ms ease; text-decoration: none; color: inherit; display: block; }
.product-card:hover { translate: 0 -6px; box-shadow: 0 30px 60px -16px rgba(0,30,60,0.30); }
.product-card img.product-hero { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.55); transition: transform 1500ms cubic-bezier(0.16,1,0.3,1); z-index: 0; display: block; }
.product-card:hover img.product-hero { transform: scale(1.65); }
.product-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,30,60,0.55) 65%, rgba(0,30,60,0.92) 100%); z-index: 1; pointer-events: none; transition: opacity 500ms ease; }
.product-card .product-tag { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 12px; border-radius: 50px; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 0.74em; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.product-card .product-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px 24px; z-index: 2; }
.product-card h3 { font-family: 'Lora', 'Lora Fallback', Georgia, serif; font-weight: 600; font-size: 1.5em; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 8px; color: #fff; }
.product-card p { font-size: 0.86em; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0 0 14px; }
.product-features { list-style: none; padding: 0; margin: 0 0 14px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 500ms ease, opacity 400ms ease 100ms; }
.product-card:hover .product-features { max-height: 180px; opacity: 1; }
.product-features li { font-size: 0.82em; color: rgba(255,255,255,0.92); margin-bottom: 6px; padding-left: 14px; position: relative; }
.product-features li::before { content: '·'; position: absolute; left: 4px; color: var(--accent); font-weight: bold; }
.product-cta { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 50px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.20); color: #fff; font-size: 0.85em; font-weight: 600; transition: background 300ms ease, border-color 300ms ease; }
.product-card:hover .product-cta { background: var(--accent); border-color: var(--accent); }
.product-cta-arrow { display: inline-block; transition: transform 300ms ease; }
.product-card:hover .product-cta-arrow { transform: translateX(4px); }

@media (max-width: 1024px) { .ghiduri-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ghiduri-hub-grid { grid-template-columns: 1fr; gap: 20px; } .ghiduri-hub { padding: 48px 0 64px; } }
html.theme-night .ghiduri-hub { background: var(--bg); }
