/*
Theme Name: Shilajit Storefront Child
Theme URI: https://example.com/
Author: ShilajitNorth
Description: Child theme for Storefront customized for ShilajitNorth — brand colors, product styles, and product trust blocks.
Template: storefront
Version: 1.0.1
*/

/* Import parent theme styles if needed */
@import url("../storefront/style.css");

/* Brand color variables (ShilajitNorth - warm/golden tones) */
:root{
	--sh-acc:#b89248; /* gold */
	--sh-accent-dark:#6b4f2b; /* dark brown */
	--sh-bg:#fffaf6;
	--sh-text:#2b2b2b;
}

/* Basic overrides */
body{background:var(--sh-bg);color:var(--sh-text)}

/* Header / site title */
.site-title a, .site-title { color:var(--sh-accent-dark) !important; }

/* Primary CTA buttons */
.wp-block-button .wp-block-button__link,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
	background:var(--sh-acc) !important;
	color:#ffffff !important;
	border-radius:6px !important;
	padding:10px 18px !important;
}

/* Product price and badges */
.price, .woocommerce-Price-amount { color:var(--sh-accent-dark) !important; font-weight:600 }

/* Trust badges area */
.sh-trust-badges{display:flex;gap:12px;align-items:center;margin:12px 0}
.sh-trust-badges .badge{background:#fff;padding:8px 10px;border-radius:6px;border:1px solid #eee;font-size:13px;color:var(--sh-accent-dark)}

/* Make images responsive in product gallery */
.woocommerce-product-gallery__image img{max-width:100%;height:auto}

/* Custom mobile tweaks */
@media(max-width:768px){
	.wp-block-button .wp-block-button__link{padding:12px 20px}
}

