/* Paint Pen People - Modern 2025 Design */
/* Updated 2025-11-05 for header/cart alignment and layout stability */

:root {
	--success-green: #2f855a;
	--dark-orange: #a43f00;
	--text-dark: #222;
	--shadow-sm: 0 1px 4px rgba(0,0,0,0.12);
	--shadow-md: 0 3px 8px rgba(0,0,0,0.15);
	--shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

/* RESET */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* BODY */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: #f5f5f5;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* TRUST BAR */
.trust-bar {
	background: #de5200;
	color: white;
	text-align: center;
	padding: 15px 0;
	font-size: 20px;
	font-weight: 700;
	z-index: 1;
	margin-bottom: 15px;
}
.trust-item {
	display: inline-block;
	margin: 0 15px;
}
@media (max-width: 768px) {
	.trust-bar { font-size: 14px; padding: 10px; }
	.trust-item { display: block; margin: 5px 0; }
}

/* HEADER */
.site-header {
	background: white;
	box-shadow: var(--shadow-sm);
	z-index: 100;
}
.site-logo {
	font-size: 2em;
	color: #de5200;
	margin: 20px 0 5px;
	font-weight: 700;
	text-align: center;
}
.tagline {
	text-align: center;
	color: #555;
	margin-bottom: 20px;
	font-size: 1.1em;
}

/* NAVIGATION */
.main-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	margin-bottom: 20px;
	padding: 0 10px;
}
.main-nav a {
	background: #de5200;
	color: white;
	text-decoration: none;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 22px;
	font-weight: 700;
	transition: background 0.2s;
	white-space: nowrap;
}
.main-nav a:hover { background: var(--dark-orange); }
@media (max-width: 768px) {
	.main-nav { flex-direction: column; }
	.main-nav a { text-align: center; padding: 14px; font-size: 24px; font-weight: 700; }
}

/* SEARCH + CART WRAP */
.hero-search-wrap {
	width: 100%;
	padding: 5px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.hero-search-wrap input#searchBox {
	width: 320px;
	max-width: 95%;
	padding: 10px 14px;
	border: 8px solid #de5200 !important;
	border-radius: 30px !important;
	font-size: 16px;
	font-weight: 700;
	color: #333;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	flex-shrink: 1;
}
.hero-search-wrap input#searchBox:focus {
	outline: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* CART ICON */
.header-cart-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.cart-icon-img {
	width: 34px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(623%) hue-rotate(2deg) brightness(102%) contrast(98%);
	transition: transform 0.15s ease;
}
.cart-icon-img:hover {
	transform: scale(1.1);
}

/* HERO */
.hero {
	 text-align: center;
    padding: 0;  /* REMOVE padding */
    background: none;  /* REMOVE white box */
    margin: 15px 0 30px 0;  /* Tight top, breathing room bottom */
    border-radius: 0;  /* REMOVE */
    box-shadow: none;  /* REMOVE */
}
.hero h2 {
	font-size: 2em;
    color: #222;  /* BLACK not orange #222*/
    margin-bottom: 15px;
    font-weight: 700;
}
.hero-subtitle {
	color: #666;
    font-size: 1.1em;
    margin: 0;
}
/* PRODUCT GRID */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin: 40px 0;
}
.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
	.product-grid { 
		grid-template-columns: 1fr; 
	}
}

/* PRODUCT CARD */
.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
}

.product-content {
    padding: 25px;
}

/* Add this NEW rule */
.product-image {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Keep your existing .product-image img rule */


.product-content {
    padding: 25px;
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.featured-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #de5200;
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	z-index: 10;
}
/* IMAGE + VIDEO */
.media-row {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
}
.media-col { display: flex; flex-direction: column; }
.media-img {
	width: 300px;
	max-width: 100%;
	border-radius: 10px;
	display: block;
}
.media-video {
	width: 300px;
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.media-caption {
	font-size: 14px;
	margin-top: 8px;
	color: #555;
	font-weight: 600;
	text-align: center;
}
@media (max-width: 768px) {
	.media-row { flex-direction: column; align-items: center; }
	.media-img, .media-video { width: 80%; max-width: 320px; }
}

/* BUY BOX */
.buybox {
	text-align:center;
	margin:35px auto;
	padding:25px;
	max-width:420px;
	border-radius:12px;
	background:#fffdf7;
	box-shadow:0 4px 12px rgba(0,0,0,0.10);
}
.buybox-header {
	text-align: center;
	font-size:22px;
	font-weight:800;
	margin-bottom:18px;
	color:#000;
	text-transform:uppercase;
	letter-spacing:0.5px;
}
.quantity-options label {
	display:block;
	font-size:20px;
	font-weight:700;
	padding:6px 0;
	cursor:pointer;
}
.add-to-cart-btn {
	background:#de5200;
	color:#fff;
	font-weight:700;
	font-size:18px;
	padding:12px 24px;
	border:none;deal
	border-radius:8px;
	cursor:pointer;
	margin-top:15px;
	transition:background 0.2s;
}
.add-to-cart-btn:hover {
	background:#b84500;
}

/* PRICE HIGHLIGHT *//* RESTORE ORIGINAL PRICE BOX STYLE */

/* Slimmer price box, no NEW RELEASE badge */
.price-highlight {
	background: #f5e6d3;  /* saturated beige */
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	text-align: center;
	color: #222;  /* dark text */
	border: 2px solid #de5200;  /* orange border */
}

.price-highlight .price {
	display: block;
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 4px;
}

.price-highlight .subtext {
	display: block;
	font-size: 2px;
	opacity: 0.9;
	color: #de5200
}


.price-highlight .deal-badge {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	opacity: 0.9;
}

.price-highlight .price {
	display: block;
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 5px;
}

.price-highlight .subtext {
	display: block;
	font-size: 1.1em;
	/* opacity: 0.9; */
	weight:700
}

.price-highlight .deal-badge {
	background:#de5200;
	color:#fff;
	padding:6px 10px;
	border-radius:6px;
	font-weight:700;
	margin-right:8px;
}
.price-highlight .subtext {
	display:block;
	font-size:16px;
	font-weight:500;
	color:#444;
	margin-top:4px;
}

/* FOOTER */
.site-footer {
	background:#fff;
	text-align:center;
	padding:20px 0;
	margin-top:40px;
	font-size:14px;
	color:#555;
	border-top:1px solid #ddd;
}
.footer-links a {
	color:#de5200;
	text-decoration:none;
	font-weight:600;
	margin:0 5px;
}
.footer-links a:hover { text-decoration:underline; }
