/* ==========================================================================
   Iron Hammer — Premium Ecommerce Theme
   ========================================================================== */

:root {
	--ih-bg: #faf8f4;
	--ih-bg-white: #ffffff;
	--ih-text: #1a1a1a;
	--ih-text-muted: #6b6b6b;
	--ih-accent: #1a1a1a;
	--ih-border: #e8e4dc;
	--ih-cream: #f3efe8;
	--ih-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--ih-font-display: Georgia, "Times New Roman", serif;
	--ih-container: 1280px;
	--ih-gutter: 24px;
	--ih-radius: 2px;
	--ih-transition: 0.25s ease;
	--ih-header-height: 72px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ih-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ih-text);
	background: var(--ih-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Container */
.ih-container {
	width: 100%;
	max-width: var(--ih-container);
	margin: 0 auto;
	padding: 0 var(--ih-gutter);
}

/* Buttons */
.ih-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: all var(--ih-transition);
}

.ih-btn--dark {
	background: var(--ih-accent);
	color: #fff;
	border-color: var(--ih-accent);
}

.ih-btn--dark:hover {
	background: #333;
	border-color: #333;
}

.ih-btn--outline {
	background: transparent;
	color: var(--ih-text);
	border-color: var(--ih-text);
}

.ih-btn--outline:hover {
	background: var(--ih-text);
	color: #fff;
}

/* Announcement */
.ih-announcement {
	background: var(--ih-accent);
	color: #fff;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.06em;
}

.ih-announcement p {
	margin: 0;
	padding: 10px 0;
}

/* Header */
.ih-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 248, 244, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--ih-border);
}

.ih-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: var(--ih-header-height);
	gap: 24px;
}

.ih-logo-text,
.ih-footer-logo-text {
	font-family: var(--ih-font-display);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.ih-nav--desktop {
	display: none;
	justify-content: center;
}

.ih-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.ih-menu-item {
	position: relative;
}

.ih-menu-item > a {
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 0;
	display: inline-block;
	transition: opacity var(--ih-transition);
}

.ih-menu-item > a:hover {
	opacity: 0.6;
}

.ih-submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	background: var(--ih-bg-white);
	border: 1px solid var(--ih-border);
	padding: 16px 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all var(--ih-transition);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ih-menu-item--has-children:hover > .ih-submenu,
.ih-menu-item--has-children.is-open > .ih-submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.ih-submenu .ih-menu-item > a {
	display: block;
	padding: 10px 24px;
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: 14px;
}

.ih-submenu-toggle {
	display: none;
}

.ih-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ih-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--ih-text);
	transition: opacity var(--ih-transition);
}

.ih-icon-btn:hover {
	opacity: 0.6;
}

.ih-cart-count {
	position: absolute;
	top: 4px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	background: var(--ih-accent);
	color: #fff;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
}

.ih-cart-count:empty,
.ih-cart-count[data-count="0"] {
	display: none;
}

.ih-mobile-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
}

.ih-mobile-toggle span {
	display: block;
	width: 100%;
	height: 1.5px;
	background: var(--ih-text);
	transition: all var(--ih-transition);
}

.ih-mobile-toggle.is-active span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.ih-mobile-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.ih-mobile-toggle.is-active span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* Search panel */
.ih-search-panel {
	border-bottom: 1px solid var(--ih-border);
	background: var(--ih-bg-white);
	padding: 16px 0;
}

.ih-search-form {
	display: flex;
	gap: 12px;
}

.ih-search-form input[type="search"] {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--ih-border);
	background: var(--ih-bg);
	font-size: 15px;
}

/* Mobile menu */
.ih-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: min(360px, 88vw);
	height: 100vh;
	background: var(--ih-bg-white);
	z-index: 200;
	transform: translateX(-100%);
	transition: transform var(--ih-transition);
	border-right: 1px solid var(--ih-border);
	overflow-y: auto;
}

.ih-mobile-menu.is-open {
	transform: translateX(0);
}

.ih-mobile-menu__inner {
	padding: calc(var(--ih-header-height) + 24px) 24px 40px;
}

.ih-menu--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.ih-menu--mobile .ih-menu-item {
	border-bottom: 1px solid var(--ih-border);
}

.ih-menu--mobile .ih-menu-item > a {
	display: block;
	padding: 16px 0;
}

.ih-menu--mobile .ih-submenu {
	position: static;
	transform: none;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	border: none;
	box-shadow: none;
	padding: 0 0 12px 16px;
	display: none;
}

.ih-menu--mobile .ih-menu-item.is-open > .ih-submenu {
	display: block;
}

.ih-menu--mobile .ih-submenu-toggle {
	display: inline-flex;
	position: absolute;
	right: 0;
	top: 12px;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
}

.ih-menu--mobile .ih-submenu-toggle span {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1.5px solid var(--ih-text);
	border-bottom: 1.5px solid var(--ih-text);
	transform: rotate(45deg);
	transition: transform var(--ih-transition);
}

.ih-menu--mobile .ih-menu-item.is-open > .ih-submenu-toggle span {
	transform: rotate(-135deg);
}

.ih-mobile-menu__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--ih-border);
}

.ih-mobile-menu__actions a {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ih-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 150;
}

.ih-overlay.is-visible {
	display: block !important;
}

/* Hero */
.ih-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--ih-cream);
}

.ih-hero__media {
	position: absolute;
	inset: 0;
}

.ih-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ih-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.1) 60%, transparent 100%);
}

.ih-hero__content {
	position: relative;
	z-index: 1;
	padding: 80px 0 64px;
	color: #fff;
	max-width: 640px;
}

.ih-hero__eyebrow,
.ih-eyebrow {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 16px;
	opacity: 0.85;
}

.ih-hero h1 {
	font-family: var(--ih-font-display);
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 20px;
	letter-spacing: 0.02em;
}

.ih-hero__subtitle {
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 32px;
	opacity: 0.9;
	max-width: 480px;
}

/* Sections */
.ih-section {
	padding: 72px 0;
}

.ih-section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 40px;
	gap: 16px;
}

.ih-section-title {
	font-family: var(--ih-font-display);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
}

.ih-section-link {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	white-space: nowrap;
}

.ih-section-link:hover {
	opacity: 0.6;
}

/* Product grid */
.ih-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.ih-product-card {
	background: var(--ih-bg-white);
	border: 1px solid var(--ih-border);
	transition: box-shadow var(--ih-transition);
}

.ih-product-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.ih-product-card__link {
	display: block;
}

.ih-product-card__image {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--ih-cream);
}

.ih-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ih-product-card:hover .ih-product-card__image img {
	transform: scale(1.03);
}

.ih-product-card__body {
	padding: 16px 16px 12px;
}

.ih-product-card__title {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 8px;
}

.ih-product-card__price {
	font-size: 14px;
	color: var(--ih-text-muted);
}

.ih-product-card__price .amount {
	color: var(--ih-text);
}

.ih-product-card--placeholder {
	opacity: 0.85;
}

.ih-product-card__actions {
	padding: 0 16px 16px;
}

.ih-product-card .button,
.ih-product-card .add_to_cart_button,
.ih-product-card .ih-loop-add-to-cart {
	display: block;
	width: 100%;
	padding: 12px 16px;
	background: var(--ih-accent) !important;
	color: #fff !important;
	border: 1px solid var(--ih-accent) !important;
	border-radius: 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.4;
	transition: background var(--ih-transition), border-color var(--ih-transition);
}

.ih-product-card .button:hover,
.ih-product-card .add_to_cart_button:hover,
.ih-product-card .ih-loop-add-to-cart:hover {
	background: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
}

.ih-product-card .added_to_cart {
	display: block;
	margin-top: 10px;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--ih-text-muted);
}

.ih-product-card .added_to_cart:hover {
	color: var(--ih-text);
}

/* Featured collection */
.ih-featured-collection {
	background: var(--ih-bg-white);
	border-top: 1px solid var(--ih-border);
	border-bottom: 1px solid var(--ih-border);
}

.ih-featured-collection__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.ih-featured-collection__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--ih-cream);
}

.ih-featured-collection__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ih-featured-collection__copy h2 {
	font-family: var(--ih-font-display);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 400;
	margin: 0 0 20px;
	line-height: 1.2;
}

.ih-featured-collection__copy p {
	color: var(--ih-text-muted);
	margin: 0 0 28px;
	max-width: 480px;
	line-height: 1.8;
}

/* Category blocks */
.ih-category-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.ih-category-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	padding: 24px 16px;
	background: var(--ih-bg-white);
	border: 1px solid var(--ih-border);
	text-align: center;
	transition: all var(--ih-transition);
}

.ih-category-card:hover {
	background: var(--ih-accent);
	color: #fff;
	border-color: var(--ih-accent);
}

.ih-category-card__label {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Guide section */
.ih-guide-section {
	background: var(--ih-cream);
}

.ih-guide-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.ih-guide-copy h2 {
	font-family: var(--ih-font-display);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 400;
	margin: 0 0 20px;
}

.ih-guide-copy p {
	color: var(--ih-text-muted);
	margin: 0 0 16px;
	line-height: 1.8;
}

.ih-guide-visual {
	aspect-ratio: 4 / 3;
	background: var(--ih-bg-white);
	border: 1px solid var(--ih-border);
	overflow: hidden;
}

.ih-guide-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Blog */
.ih-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.ih-blog-card {
	background: var(--ih-bg-white);
	border: 1px solid var(--ih-border);
}

.ih-blog-card__link {
	display: block;
}

.ih-blog-card__image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ih-cream);
}

.ih-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ih-blog-card__body {
	padding: 20px;
}

.ih-blog-card__body time {
	font-size: 12px;
	color: var(--ih-text-muted);
	letter-spacing: 0.04em;
}

.ih-blog-card__body h3 {
	font-size: 18px;
	font-weight: 500;
	margin: 8px 0 10px;
	line-height: 1.4;
}

.ih-blog-card__body p {
	font-size: 14px;
	color: var(--ih-text-muted);
	margin: 0;
	line-height: 1.6;
}

/* Newsletter */
.ih-newsletter-section {
	background: var(--ih-accent);
	color: #fff;
}

.ih-newsletter-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
}

.ih-newsletter-copy h2 {
	font-family: var(--ih-font-display);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 400;
	margin: 0 0 12px;
}

.ih-newsletter-copy p {
	margin: 0;
	opacity: 0.8;
	line-height: 1.7;
}

.ih-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ih-newsletter-form input[type="email"] {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	color: #fff;
	font-size: 15px;
}

.ih-newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.ih-newsletter-form .ih-btn--dark {
	background: #fff;
	color: var(--ih-accent);
	border-color: #fff;
}

.ih-newsletter-form .ih-btn--dark:hover {
	background: var(--ih-cream);
}

/* Footer */
.ih-footer {
	background: var(--ih-bg-white);
	border-top: 1px solid var(--ih-border);
	padding: 64px 0 32px;
	margin-top: 0;
}

.ih-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.ih-footer-brand p {
	color: var(--ih-text-muted);
	font-size: 14px;
	line-height: 1.7;
	margin: 16px 0 0;
	max-width: 320px;
}

.ih-footer-col h3 {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.ih-footer-col ul li,
.ih-footer-menu li {
	margin-bottom: 10px;
}

.ih-footer-col a,
.ih-footer-menu a {
	font-size: 14px;
	color: var(--ih-text-muted);
	transition: color var(--ih-transition);
}

.ih-footer-col a:hover,
.ih-footer-menu a:hover {
	color: var(--ih-text);
}

.ih-footer-bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--ih-border);
}

.ih-footer-bottom p {
	margin: 0;
	font-size: 13px;
	color: var(--ih-text-muted);
}

/* Inner pages */
.ih-main {
	padding: 48px 0 72px;
}

.ih-page-header {
	margin-bottom: 40px;
}

.ih-page-title {
	font-family: var(--ih-font-display);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 400;
	margin: 0;
}

.ih-archive-description {
	color: var(--ih-text-muted);
	margin-top: 12px;
}

.ih-entry-content {
	max-width: 760px;
	line-height: 1.8;
}

.ih-entry-content > * + * {
	margin-top: 1.25em;
}

.ih-page-featured-image {
	margin-bottom: 32px;
}

.ih-empty-state {
	color: var(--ih-text-muted);
	text-align: center;
	padding: 48px 0;
}

.ih-404 {
	text-align: center;
	padding: 80px 0;
}

.ih-404 h1 {
	font-family: var(--ih-font-display);
	font-size: clamp(32px, 5vw, 48px);
	margin: 0 0 16px;
}

.ih-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

.ih-pagination {
	margin-top: 48px;
}

.ih-pagination .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.ih-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border: 1px solid var(--ih-border);
	font-size: 14px;
}

.ih-pagination .page-numbers.current {
	background: var(--ih-accent);
	color: #fff;
	border-color: var(--ih-accent);
}

/* WooCommerce overrides */
.ih-woocommerce-main .woocommerce-breadcrumb {
	font-size: 13px;
	margin-bottom: 24px;
	color: var(--ih-text-muted);
}

.ih-woocommerce-main .woocommerce-products-header__title {
	font-family: var(--ih-font-display);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ih-woocommerce-main ul.products {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 0;
	padding: 0;
}

.ih-woocommerce-main ul.products::before,
.ih-woocommerce-main ul.products::after {
	display: none;
}

.ih-woocommerce-main ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	background: var(--ih-bg-white);
	border: 1px solid var(--ih-border);
	padding: 0;
}

.ih-woocommerce-main ul.products li.product a img {
	margin: 0;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.ih-woocommerce-main ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	padding: 16px 16px 4px;
}

.ih-woocommerce-main ul.products li.product .price {
	padding: 0 16px 12px;
	font-size: 14px;
	color: var(--ih-text-muted);
}

.ih-woocommerce-main ul.products li.product .button,
.ih-woocommerce-main ul.products li.product .add_to_cart_button,
.ih-woocommerce-main ul.products li.product .ih-loop-add-to-cart {
	display: block;
	width: calc(100% - 32px);
	margin: 0 16px 16px;
	padding: 12px 16px;
	background: var(--ih-accent) !important;
	color: #fff !important;
	border: 1px solid var(--ih-accent) !important;
	border-radius: 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.4;
}

.ih-woocommerce-main ul.products li.product .button:hover,
.ih-woocommerce-main ul.products li.product .add_to_cart_button:hover,
.ih-woocommerce-main ul.products li.product .ih-loop-add-to-cart:hover {
	background: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
}

.ih-woocommerce-main ul.products li.product .added_to_cart {
	display: block;
	margin: -8px 16px 16px;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--ih-text-muted);
}

.ih-woocommerce-main .woocommerce-result-count,
.ih-woocommerce-main .woocommerce-ordering {
	margin-bottom: 24px;
	font-size: 14px;
}

.ih-woocommerce-main div.product {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.ih-woocommerce-main div.product .product_title {
	font-family: var(--ih-font-display);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 400;
}

.ih-woocommerce-main .woocommerce-tabs {
	margin-top: 48px;
}

.ih-woocommerce-main table.shop_table {
	border: 1px solid var(--ih-border);
}

.ih-woocommerce-main .woocommerce-message,
.ih-woocommerce-main .woocommerce-info,
.ih-woocommerce-main .woocommerce-error {
	border-top-color: var(--ih-accent);
}

.ih-woocommerce-main .button,
.ih-woocommerce-main button.button,
.ih-woocommerce-main input.button {
	background: var(--ih-accent) !important;
	color: #fff !important;
	border-radius: 0;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 14px 24px;
}

.ih-woocommerce-main .button:hover {
	background: #333 !important;
}

/* Responsive */
@media (min-width: 640px) {
	.ih-product-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.ih-category-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ih-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ih-woocommerce-main ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (min-width: 900px) {
	.ih-mobile-toggle {
		display: none;
	}

	.ih-nav--desktop {
		display: flex;
	}

	.ih-header-inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.ih-logo {
		justify-self: start;
	}

	.ih-header-actions {
		justify-self: end;
	}

	.ih-product-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.ih-featured-collection__grid,
	.ih-guide-grid {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}

	.ih-category-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.ih-blog-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.ih-newsletter-inner {
		grid-template-columns: 1fr 1fr;
	}

	.ih-newsletter-form {
		flex-direction: row;
	}

	.ih-newsletter-form input[type="email"] {
		flex: 1;
	}

	.ih-footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}

	.ih-woocommerce-main ul.products {
		grid-template-columns: repeat(4, 1fr) !important;
	}

	.ih-woocommerce-main div.product {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.ih-hero {
		min-height: 85vh;
	}
}
