

.hookshop-product__body {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hookshop-product__title {
	margin-bottom: 0.5rem;
}

.hookshop-product__description {
	margin: 1rem 0;
}

.hookshop-gallery__main-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.hookshop-gallery__thumbs {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

.hookshop-gallery__thumb {
	padding: 0;
	border: 2px solid transparent;
	background: none;
	cursor: pointer;
	border-radius: 4px;
	line-height: 0;
}

.hookshop-gallery__thumb.is-active,
.hookshop-gallery__thumb:hover {
	border-color: currentColor;
}

.hookshop-gallery__thumb img {
	display: block;
	border-radius: 2px;
}

.hookshop-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	padding: 2rem;
}

.hookshop-lightbox[hidden] {
	display: none;
}

.hookshop-lightbox__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.hookshop-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	line-height: 1;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 0.5rem;
}

.hookshop-price {
	font-size: 1.25rem;
	font-weight: 600;
}

.hookshop-price__regular del {
	opacity: 0.6;
	font-weight: 400;
	margin-right: 0.5rem;
}

.hookshop-stock {
	display: inline-block;
	padding: 0.15rem 0.6rem;
	border-radius: 3px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
}

.hookshop-stock--in-stock {
	background: #d7e9f7;
	color: #0a5a9c;
}

.hookshop-stock--low-stock {
	background: #fdf0d5;
	color: #8a6116;
}

.hookshop-stock--out-of-stock {
	background: #fbdada;
	color: #a1272b;
}

.hookshop-stock--backorder {
	background: #e6dcf7;
	color: #5b2a97;
}

.hookshop-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
}

.hookshop-add-to-cart__qty-label {
	font-size: 0.85rem;
}

.hookshop-add-to-cart input[type='number'] {
	width: 4.5rem;
	padding: 0.4rem;
}

.hookshop-add-to-cart__button {
	position: relative;
	padding: 0.6rem 1.25rem;
	cursor: pointer;
}

.hookshop-add-to-cart__button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.hookshop-add-to-cart__spinner {
	display: none;
	width: 0.9rem;
	height: 0.9rem;
	margin-left: 0.5rem;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-top-color: currentColor;
	border-radius: 50%;
	vertical-align: middle;
	animation: hookshop-spin 0.6s linear infinite;
}

.hookshop-add-to-cart.is-loading .hookshop-add-to-cart__spinner {
	display: inline-block;
}

@keyframes hookshop-spin {
	to {
		transform: rotate(360deg);
	}
}

.hookshop-add-to-cart__feedback {
	width: 100%;
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
}

.hookshop-add-to-cart__feedback.is-success {
	color: #1a7e34;
}

.hookshop-add-to-cart__feedback.is-error {
	color: #a1272b;
}

.hookshop-archive__title {
	margin-bottom: 1.5rem;
}

.hookshop-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.5rem;
}

.hookshop-card {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	overflow: hidden;
}

.hookshop-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hookshop-card__image img {
	width: 100%;
	height: auto;
	display: block;
}

.hookshop-card__title {
	font-size: 1rem;
	margin: 0.5rem 0.75rem 0.25rem;
}

.hookshop-card__price {
	margin: 0 0.75rem 0.75rem;
	font-weight: 600;
}

.hookshop-card__price del {
	opacity: 0.6;
	font-weight: 400;
	margin-right: 0.4rem;
}

.hookshop-archive {
	color: var(--hookshop-ink-soft, #3d3c38);
	font-family: Arial, Helvetica, sans-serif;
}

.hookshop-archive__description {
	max-width: 760px;
	margin: -1rem 0 2rem;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.05rem;
	line-height: 1.7;
}

.hookshop-category-section {
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hookshop-section-title {
	margin: 0 0 1.2rem !important;
	padding: 0 0 0.65rem !important;
	border: 0 !important;
	border-bottom: 2px solid var(--hookshop-coral, #e57373) !important;
	color: var(--hookshop-ink, #111111) !important;
	font-family: Georgia, 'Times New Roman', serif !important;
	font-size: clamp(1.4rem, 3vw, 1.85rem) !important;
	font-weight: 400 !important;
}

.hookshop-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 1.5rem);
}

.hookshop-category-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--hookshop-rule, #ddd7cc);
	border-radius: 4px;
	background: #ffffff;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.hookshop-category-card:hover,
.hookshop-category-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.hookshop-category-card__link {
	display: grid;
	grid-template-columns: minmax(130px, 32%) minmax(0, 1fr);
	height: 100%;
	color: inherit !important;
	text-decoration: none !important;
}

.hookshop-category-card__image {
	min-height: 150px;
	overflow: hidden;
	background: var(--hookshop-cream, #f6f3ed);
}

.hookshop-category-card__img,
.hookshop-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hookshop-category-card__img--placeholder,
.hookshop-card__img--placeholder,
.hookshop-gallery--placeholder .hookshop-gallery__main-image {
	object-fit: contain;
}

.hookshop-category-card__content {
	min-width: 0;
	padding: 1.35rem clamp(1rem, 2.5vw, 1.5rem);
}

.hookshop-category-card__title {
	margin: 0 !important;
	color: var(--hookshop-ink, #111111) !important;
	font-family: Georgia, 'Times New Roman', serif !important;
	font-size: 1.45rem !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
}

.hookshop-category-card__count {
	color: var(--hookshop-muted, #716f69);
	font-size: 0.9em;
	font-weight: 400;
}

.hookshop-category-card__description {
	margin: 0.55rem 0 0;
	color: var(--hookshop-muted, #716f69);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.9rem;
	line-height: 1.55;
}

.hookshop-category-card__browse {
	display: inline-block;
	margin-top: 0.8rem;
	color: #9f2529;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.hookshop-category-grid {
		grid-template-columns: 1fr;
	}

	.hookshop-category-card__link {
		grid-template-columns: 108px minmax(0, 1fr);
	}

	.hookshop-category-card__image {
		min-height: 138px;
	}

	.hookshop-category-card__content {
		padding: 1rem 0.9rem;
	}

	.hookshop-category-card__title {
		font-size: 1.2rem !important;
	}

	.hookshop-category-card__description {
		font-size: 0.8rem;
	}

	.hookshop-category-card__browse {
		font-size: 0.68rem;
	}
}

.hookshop-products-section {
	margin-top: 2rem;
}

.hookshop-product-grid {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.hookshop-card {
	border-color: var(--hookshop-rule, #ddd7cc);
	background: #ffffff;
}

.hookshop-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--hookshop-cream, #f6f3ed);
}

@media (min-width: 768px) {
	.hookshop-product__body {
		flex-direction: row;
	}

	.hookshop-product__gallery-col {
		flex: 1 1 45%;
		max-width: 45%;
	}

	.hookshop-product__summary {
		flex: 1 1 55%;
	}
}

body.single-shop_product footer.site-footer,
body.single-shop_product .site-footer,
body.single-shop_product #colophon,
body.single-shop_product .footer-widgets,
body.single-shop_product .widget-area.footer-widget-area,
body.single-shop_product footer .widget-area {
	display: none !important;
}

body.single-shop_product {
	padding-bottom: 50px;
}

body.single-shop_product #right-sidebar,
body.single-shop_product aside.sidebar-container {
	display: none !important;
}

body.single-shop_product #primary,
body.single-shop_product .content-area {
	width: 100% !important;
	max-width: none !important;
}

.hookshop-product {
	box-sizing: border-box;
	width: 100%;
	color: var(--hookshop-ink-soft, #3d3c38);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

.hookshop-product__body {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	align-items: start;
	gap: clamp(1.75rem, 5vw, 4rem);
	max-width: 100%;
}

.hookshop-product__gallery-col {
	min-width: 0;
	max-width: none;
	padding: clamp(0.6rem, 2vw, 1rem);
	border: 1px solid var(--hookshop-rule, #ddd7cc);
	border-radius: 4px;
	background: var(--hookshop-cream, #f6f3ed);
}

.hookshop-gallery__main-image {
	width: 100%;
	border-radius: 2px;
	background: #ffffff;
}

.hookshop-gallery__thumbs {
	gap: 0.65rem;
	margin-top: 0.75rem;
}

.hookshop-gallery__thumb {
	border: 2px solid transparent !important;
	background: #ffffff !important;
}

.hookshop-gallery__thumb.is-active,
.hookshop-gallery__thumb:hover,
.hookshop-gallery__thumb:focus-visible {
	border-color: var(--hookshop-orange, #e97d32) !important;
}

.hookshop-product__summary {
	min-width: 0;
	padding-top: 0.2rem;
}

.hookshop-price {
	margin: 0 0 0.85rem;
	color: var(--hookshop-ink, #111111);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.8rem, 3vw, 2.25rem);
	font-weight: 400;
	line-height: 1.2;
}

.hookshop-stock {
	margin: 0 0 1.25rem;
	padding: 0.35rem 0.65rem;
	border-radius: 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.hookshop-stock--in-stock {
	background: #e5f1e8;
	color: #236038;
}

.hookshop-stock-summary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1.25rem;
}

.hookshop-stock-summary .hookshop-stock {
	margin-bottom: 0;
}

.hookshop-stock-quantity {
	margin: 0;
	color: var(--hookshop-muted, #716f69);
	font-size: 0.86rem;
	font-weight: 700;
}

.hookshop-product__description {
	margin: 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--hookshop-rule, #ddd7cc);
	color: var(--hookshop-ink-soft, #3d3c38);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.05rem;
	line-height: 1.75;
}

.hookshop-product__description > :first-child {
	margin-top: 0;
}

.hookshop-add-to-cart {
	display: grid;
	grid-template-columns: auto minmax(74px, 92px) minmax(170px, 1fr);
	align-items: end;
	gap: 0.65rem;
	margin: 1.5rem 0 0;
	padding: 1.2rem;
	border: 1px solid var(--hookshop-rule, #ddd7cc);
	border-left: 4px solid var(--hookshop-coral, #e57373);
	border-radius: 3px;
	background: var(--hookshop-cream, #f6f3ed);
}

.hookshop-add-to-cart__qty-label {
	align-self: center;
	color: var(--hookshop-muted, #716f69);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hookshop-add-to-cart input[type='number'] {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0.65rem;
	border: 1px solid #9d9a94 !important;
	border-radius: 3px;
	background: #ffffff !important;
	color: var(--hookshop-ink, #111111) !important;
	font: inherit;
}

.hookshop-add-to-cart input[type='number']:focus {
	border-color: var(--hookshop-ink, #111111) !important;
	box-shadow: 0 0 0 3px rgba(229, 115, 115, 0.22);
	outline: 0;
}

.hookshop-product .hookshop-add-to-cart__button {
	min-height: 48px;
	margin: 0;
	padding: 0.75rem 1rem !important;
	border: 1px solid var(--hookshop-orange, #e97d32) !important;
	border-radius: 3px !important;
	background: var(--hookshop-orange, #e97d32) !important;
	box-shadow: none !important;
	color: #ffffff !important;
	font-family: Georgia, 'Times New Roman', serif !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-transform: none !important;
}

.hookshop-product .hookshop-add-to-cart__button:hover,
.hookshop-product .hookshop-add-to-cart__button:focus-visible {
	border-color: var(--hookshop-ink, #111111) !important;
	background: var(--hookshop-ink, #111111) !important;
}

.hookshop-product .hookshop-add-to-cart__button:disabled {
	border-color: #a5a29c !important;
	background: #a5a29c !important;
	color: #ffffff !important;
}

.hookshop-add-to-cart__feedback {
	grid-column: 1 / -1;
	margin: 0;
}

.hookshop-product__hook-link,
.hookshop-product__canonical-link {
	margin-top: 1.25rem;
	font-size: 0.88rem;
}

.hookshop-product__hook-link a,
.hookshop-product__canonical-link a {
	color: #0645ad !important;
}

@media (max-width: 820px) {
	.hookshop-product__body {
		grid-template-columns: 1fr;
		width: 100%;
		padding-inline: clamp(0.75rem, 4vw, 1rem);
	}

	.hookshop-product__gallery-col {
		max-width: none;
	}

	.hookshop-product__summary,
	.hookshop-product__description {
		max-width: 100%;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 520px) {
	.hookshop-add-to-cart {
		grid-template-columns: 1fr;
	}

	.hookshop-add-to-cart__qty-label {
		align-self: auto;
	}

	.hookshop-add-to-cart__feedback {
		grid-column: auto;
	}
}
