/* fuel-prices.css — IndiaRealTime Fuel Prices
   Page shell (header, footer, .wrap/.ir-wrap, .pghead, .ir-bc, fonts,
   colors) comes from the theme's own ir-tokens.css/ir-home-v2.css/ir-home.css,
   loaded before this file. Only the fuel-price-specific pieces below are
   this plugin's own, using the theme's CSS custom properties throughout. */

.irf-price-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 28px;
}

.irf-price-card {
	background: var(--wh, #fff);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 22px 20px;
	text-align: center;
	box-shadow: var(--sh, 0 1px 4px rgba(0,0,0,.06));
}

.irf-price-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--mt, #5B5650);
	margin-bottom: 8px;
}

.irf-price-value {
	font-size: 2em;
	font-weight: 700;
	color: var(--tx, #1A1C22);
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
}

.irf-price-unit {
	font-size: 12px;
	color: var(--mt, #5B5650);
	margin-top: 4px;
}

.irf-note {
	font-size: 13px;
	color: var(--mt, #5B5650);
	background: var(--bg, #F4F3EF);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 10px 14px;
	margin-bottom: 28px;
}

/* State index grid (/fuel-price/) - one card per state/UT, standard card
   pattern matching this site's other index pages (currency, location). */
.irf-state-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}

.irf-state-card {
	display: block;
	background: var(--wh, #fff);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 16px 18px;
	box-shadow: var(--sh, 0 1px 4px rgba(0,0,0,.06));
	text-decoration: none;
	transition: box-shadow .2s, transform .2s;
}

.irf-state-card:hover {
	box-shadow: var(--sh-h, 0 12px 36px rgba(0,0,0,.16));
	transform: translateY(-2px);
}

.irf-state-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--tx, #1A1C22);
}

.irf-state-capital {
	font-size: 12px;
	color: var(--mt, #5B5650);
	margin-bottom: 10px;
}

.irf-state-prices {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	font-size: 12.5px;
	color: var(--mt, #5B5650);
	border-top: 1px solid var(--bd, #E5E3DC);
	padding-top: 10px;
}

.irf-state-prices b {
	display: block;
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
	font-size: 14px;
	color: var(--tx, #1A1C22);
	font-weight: 700;
}
