/* Print Shop Pro — main stylesheet */

:root {
	--psp-primary: #0f4c81;
	--psp-primary-dark: #0a3a63;
	--psp-accent: #ffb100;
	--psp-text: #232833;
	--psp-text-light: #6b7280;
	--psp-bg-alt: #f5f7fa;
	--psp-white: #ffffff;
	--psp-border: #e5e9f0;
	--psp-radius: 10px;
	--psp-container: 1200px;
	--psp-shadow: 0 6px 20px rgba(15, 76, 129, 0.08);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--psp-text);
	background: var(--psp-white);
	line-height: 1.6;
}

a { color: var(--psp-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.psp-container {
	max-width: var(--psp-container);
	margin: 0 auto;
	padding: 0 20px;
}

.psp-section { padding: 64px 0; }
.psp-section-title {
	font-size: clamp(22px, 3vw, 32px);
	margin: 0 0 32px;
	text-align: center;
}

/* Buttons */
.psp-btn {
	display: inline-block;
	background: var(--psp-accent);
	color: var(--psp-primary-dark);
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 999px;
	transition: transform .15s ease, box-shadow .15s ease;
}
.psp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.15); color: var(--psp-primary-dark); }
.psp-btn-outline { background: transparent; border: 2px solid var(--psp-primary); color: var(--psp-primary); }
.psp-btn-sm { padding: 8px 18px; font-size: 14px; }
.psp-btn-light { background: var(--psp-white); color: var(--psp-primary); }
.psp-btn-header { padding: 10px 22px; }

/* Top bar */
.psp-topbar { background: var(--psp-primary-dark); color: #dce6f0; font-size: 13px; }
.psp-topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; flex-wrap: wrap; gap: 6px; }
.psp-topbar-item { margin-right: 16px; }
.psp-topbar-social a { color: #dce6f0; margin-left: 14px; }

/* Header */
.psp-header { background: var(--psp-white); box-shadow: 0 2px 8px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 100; }
.psp-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; }
.psp-site-title { font-size: 22px; font-weight: 800; color: var(--psp-primary); }
.psp-main-nav { flex: 1; display: flex; justify-content: center; }
.psp-main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.psp-main-nav a { color: var(--psp-text); font-weight: 600; }
.psp-main-nav a:hover { color: var(--psp-primary); }
.psp-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 6px; }
.psp-menu-toggle span { width: 24px; height: 2px; background: var(--psp-text); display: block; }

/* Hero */
.psp-hero { position: relative; overflow: hidden; height: min(70vh, 560px); background: var(--psp-primary); }
.psp-hero-slides { position: relative; height: 100%; }
.psp-hero-slide {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	background-color: var(--psp-primary);
	opacity: 0; visibility: hidden;
	transition: opacity .6s ease;
	display: flex; align-items: center;
}
.psp-hero-slide.is-active { opacity: 1; visibility: visible; }
.psp-hero-overlay { background: linear-gradient(90deg, rgba(10,58,99,.85) 0%, rgba(10,58,99,.35) 70%); width: 100%; padding: 40px 0; }
.psp-hero-overlay h1 { color: #fff; font-size: clamp(28px, 4vw, 46px); max-width: 640px; margin: 0 0 16px; }
.psp-hero-overlay p { color: #e7edf5; max-width: 520px; font-size: 18px; margin: 0 0 24px; }

/* Category grid */
.psp-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
}
.psp-category-card {
	background: var(--psp-bg-alt);
	border-radius: var(--psp-radius);
	overflow: hidden;
	text-align: center;
	border: 1px solid var(--psp-border);
	transition: box-shadow .15s ease, transform .15s ease;
}
.psp-category-card:hover { box-shadow: var(--psp-shadow); transform: translateY(-3px); }
.psp-category-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.psp-category-placeholder {
	display: block; width: 100%; aspect-ratio: 4/3;
	background: repeating-linear-gradient(45deg, #e5e9f0, #e5e9f0 10px, #eef1f6 10px, #eef1f6 20px);
}
.psp-category-placeholder-lg { aspect-ratio: 1/1; border-radius: var(--psp-radius); }
.psp-category-name { display: block; padding: 12px 8px; font-weight: 700; color: var(--psp-text); }

/* Product rows / grid */
.psp-product-row { background: var(--psp-bg-alt); }
.psp-product-row-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.psp-product-row-head .psp-section-title { margin: 0; text-align: left; }
.psp-view-all { font-weight: 700; white-space: nowrap; }

.psp-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}
.psp-product-card {
	background: var(--psp-white);
	border: 1px solid var(--psp-border);
	border-radius: var(--psp-radius);
	padding: 16px;
	text-align: center;
	transition: box-shadow .15s ease, transform .15s ease;
}
.psp-product-card:hover { box-shadow: var(--psp-shadow); transform: translateY(-3px); }
.psp-product-thumb { display: block; margin-bottom: 12px; border-radius: 6px; overflow: hidden; }
.psp-product-thumb img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.psp-product-title { font-size: 16px; margin: 0 0 8px; }
.psp-product-title a { color: var(--psp-text); }
.psp-product-price { margin-bottom: 12px; font-size: 14px; color: var(--psp-text-light); }
.psp-price-label { display: block; }
.psp-price { display: block; font-size: 20px; font-weight: 800; color: var(--psp-primary); }
.psp-product-price-lg .psp-price { font-size: 28px; }

/* USP / why choose us */
.psp-usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; text-align: center; }
.psp-usp-item h3 { color: var(--psp-primary); font-size: 20px; }
.psp-usp-item p { color: var(--psp-text-light); }

/* Testimonials */
.psp-testimonials { background: var(--psp-bg-alt); }
.psp-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.psp-testimonial-card { background: var(--psp-white); border-radius: var(--psp-radius); padding: 28px; border: 1px solid var(--psp-border); margin: 0; }
.psp-testimonial-card p { font-size: 16px; font-style: italic; }
.psp-testimonial-card footer { margin-top: 16px; display: flex; flex-direction: column; }
.psp-testimonial-card footer span { color: var(--psp-text-light); font-size: 14px; }

/* CTA */
.psp-cta { background: var(--psp-primary); color: #fff; text-align: center; }
.psp-cta h2 { font-size: clamp(22px, 3vw, 30px); margin-top: 0; }
.psp-cta p { color: #dce6f0; margin-bottom: 24px; }

/* Page header (used on inner pages) */
.psp-page-header { padding-bottom: 32px; background: var(--psp-bg-alt); text-align: center; }
.psp-page-content { max-width: 820px; }
.psp-single-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.psp-product-cat-label a { font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }

/* Footer */
.psp-footer { background: var(--psp-primary-dark); color: #cfdcea; }
.psp-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 56px 20px; }
.footer-widget-title { color: #fff; font-size: 16px; margin-top: 0; }
.psp-footer-list { list-style: none; margin: 0; padding: 0; }
.psp-footer-list li { margin-bottom: 8px; }
.psp-footer-list a { color: #cfdcea; }
.psp-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
	.psp-footer-grid { grid-template-columns: repeat(2, 1fr); }
	.psp-single-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
	.psp-main-nav { position: fixed; top: 0; right: -280px; width: 260px; height: 100vh; background: var(--psp-white); flex-direction: column; box-shadow: -6px 0 20px rgba(0,0,0,.1); transition: right .2s ease; padding: 80px 24px; }
	.psp-main-nav.is-open { right: 0; }
	.psp-main-nav ul { flex-direction: column; gap: 18px; }
	.psp-menu-toggle { display: flex; }
	.psp-header-inner { flex-wrap: nowrap; }
	.psp-btn-header { display: none; }
	.psp-footer-grid { grid-template-columns: 1fr; padding: 40px 20px; }
}
