/*
Theme Name: SangamShop
Theme URI: https://sangamshop.com
Author: SangamShop
Author URI: https://sangamshop.com
Description: Premium WooCommerce block theme for SangamShop.com — "Bridging Your Needs." Built natively on WordPress 7.0 Full Site Editing, Gutenberg blocks, and theme.json. No page builder required.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sangamshop
Tags: e-commerce, full-site-editing, block-theme, custom-colors, custom-logo, editor-style, wide-blocks, woocommerce

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* -----------------------------------------------------------------------
   Most visual styling lives in theme.json (colors, typography, spacing).
   This file only holds things theme.json cannot express: print rules,
   small WooCommerce/editor fixes, and progressive-enhancement CSS.
   ----------------------------------------------------------------------- */

/* Skip link (accessibility) */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999999;
	padding: 0.75em 1.25em;
	background: var(--wp--preset--color--royal-blue);
	color: var(--wp--preset--color--white);
	text-decoration: none;
}
.skip-link:focus {
	left: 0;
}

/* Sticky header */
.sangam-sticky-header {
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(10, 61, 145, 0.08);
}

/* Product card hover lift (progressive enhancement) */
.woocommerce ul.products li.product,
.wp-block-woocommerce-product-template li {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border-radius: var(--wp--custom--radius--card, 12px);
}
.woocommerce ul.products li.product:hover,
.wp-block-woocommerce-product-template li:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(10, 61, 145, 0.12);
}

/* Sale / badge styling using brand gold */
.woocommerce span.onsale {
	background: var(--wp--preset--color--primary-gold);
	color: var(--wp--preset--color--white);
	border-radius: 999px;
	font-weight: 600;
}

/* Buy Now button (custom, paired with Woo's native Add to Cart) */
.sangam-buy-now {
	background: var(--wp--preset--color--royal-blue);
	color: var(--wp--preset--color--white);
	border-radius: 999px;
	padding: 0.75em 1.75em;
	font-weight: 600;
	display: inline-block;
	text-decoration: none;
}
.sangam-buy-now:hover {
	opacity: 0.9;
}

/* Mega menu basic expand affordance (mobile fallback) */
@media (max-width: 768px) {
	.sangam-mega-menu .wp-block-navigation__submenu-container {
		position: static;
	}
}

/* Print */
@media print {
	.sangam-sticky-header,
	.sangam-no-print {
		display: none !important;
	}
}
