/* ============================================
   Harry Drinks Store — WooCommerce Styles
   ============================================ */

/* === Shop Page Layout === */
.woocommerce-page .harry-content {
	padding: var(--space-xl) 0 var(--space-4xl);
}

/* === Shop Category Tiles (photo-based) === */
.harry-shop-categories {
	display: flex;
	gap: var(--space-sm);
	overflow-x: auto;
	padding: var(--space-md) 0 var(--space-lg);
	margin-bottom: var(--space-md);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
}

.harry-shop-categories::-webkit-scrollbar {
	display: none;
}

.harry-shop-cat-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	width: 110px;
	height: 100px;
	border-radius: var(--radius-md);
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease;
	scroll-snap-align: start;
	background: var(--harry-cream);
	border: 2px solid transparent;
}

.harry-shop-cat-tile:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.harry-shop-cat-tile.active {
	border-color: var(--harry-orange);
	box-shadow: 0 0 0 1px var(--harry-orange);
}

.shop-cat-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s var(--ease-expo);
}

.harry-shop-cat-tile:hover .shop-cat-bg {
	transform: scale(1.08);
}

.shop-cat-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 14, 8, 0.8) 0%, rgba(26, 14, 8, 0.2) 60%, rgba(26, 14, 8, 0.05) 100%);
}

.shop-cat-name {
	position: relative;
	z-index: 1;
	font-family: var(--font-primary);
	font-size: 0.78rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	padding: 0 var(--space-xs);
}

.shop-cat-count {
	position: relative;
	z-index: 1;
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.65);
	padding-bottom: var(--space-xs);
}

/* "All" tile — same photo style, just slightly bolder text */
.harry-shop-cat-tile:first-child .shop-cat-name {
	font-size: 0.85rem;
	font-weight: 700;
}

/* === Shop Toolbar === */
.woocommerce .woocommerce-result-count {
	font-size: 0.85rem;
	color: var(--harry-gray);
	margin: 0;
	line-height: 40px;
}

.woocommerce .woocommerce-ordering {
	margin: 0;
}

.woocommerce .woocommerce-ordering select {
	padding: 0.5rem 2rem 0.5rem 0.8rem;
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: 0.85rem;
	background: var(--harry-white);
	color: var(--harry-brown);
	cursor: pointer;
	appearance: auto;
}

.harry-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-md) 0;
	margin-bottom: var(--space-lg);
	border-bottom: 1px solid var(--harry-beige);
}

/* === Product Grid === */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--space-lg);
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce ul.products li.product {
	margin: 0;
	padding: 0;
	width: 100% !important;
	float: none !important;
}

/* === Product Card === */
.woocommerce ul.products li.product {
	position: relative;
	background: var(--harry-white);
	border: none;
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: block;
	text-decoration: none;
}

/* Product Image */
.woocommerce ul.products li.product .harry-product-image {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: linear-gradient(145deg, var(--harry-cream), #f0e8dc);
	display: flex;
	align-items: center;
	justify-content: center;
}

.woocommerce ul.products li.product .harry-product-image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.woocommerce ul.products li.product .harry-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.woocommerce ul.products li.product:hover .harry-product-image img {
	transform: scale(1.04);
}

/* Product placeholder when no image */
.harry-product-placeholder {
	width: 100%;
	aspect-ratio: 1;
	background: linear-gradient(145deg, var(--harry-cream), var(--harry-cream-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--harry-gray-light);
}

.harry-product-placeholder svg {
	width: 48px;
	height: 48px;
	opacity: 0.4;
}

/* Product Info */
.harry-product-info {
	padding: var(--space-md);
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.harry-product-info .product-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--harry-brown-dark);
	margin: 0 0 var(--space-xs);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	padding: 0;
}

.harry-product-info .product-category {
	font-size: 0.75rem;
	color: var(--harry-orange);
	font-weight: 500;
	margin-bottom: var(--space-xs);
	letter-spacing: 0.3px;
}

.harry-product-info .product-sku {
	font-size: 0.75rem;
	color: var(--harry-gray-light);
}

/* Price */
.woocommerce ul.products li.product .price {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--harry-brown-dark);
	margin: var(--space-sm) 0;
}

.woocommerce ul.products li.product .price del {
	color: var(--harry-gray-light);
	font-size: 0.85rem;
	font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
	color: var(--harry-orange);
	text-decoration: none;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.harry-product-info .btn-add-to-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	width: 100%;
	padding: 0.65rem;
	margin-top: var(--space-sm);
	background: var(--harry-orange);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
	text-decoration: none;
	text-align: center;
	line-height: 1;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.harry-product-info .btn-add-to-cart:hover {
	background: var(--harry-brown-medium);
	color: #fff !important;
}

/* Added to cart confirmation */
.woocommerce ul.products li.product .added_to_cart {
	display: block;
	text-align: center;
	font-size: 0.8rem;
	color: var(--harry-success);
	margin-top: var(--space-xs);
	font-weight: 500;
}

/* Button loading state */
.woocommerce ul.products li.product .btn-add-to-cart.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Sale Badge */
.woocommerce span.onsale {
	position: absolute;
	top: var(--space-md);
	right: var(--space-md);
	left: auto;
	background: var(--harry-error);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-sm);
	z-index: 2;
	min-height: 0;
	min-width: 0;
	line-height: 1.3;
}


/* === Single Product Page === */
.single-product .harry-content,
.harry-single-product-content {
	padding-top: var(--space-lg);
}

.harry-product-layout {
	max-width: var(--container-max);
	margin: 0 auto;
}

.woocommerce div.product {
	max-width: var(--container-max);
	margin: 0 auto;
}

/* 2-column grid: gallery | summary — bulletproof selectors */
.harry-product-top {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: var(--space-3xl) !important;
	align-items: start !important;
	margin-bottom: var(--space-3xl);
}

.woocommerce div.product .product-top-section,
.product-top-section {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: var(--space-3xl) !important;
	align-items: start !important;
	margin-bottom: var(--space-3xl);
}

/* Single Product Gallery */
.woocommerce div.product div.images {
	width: 100% !important;
	float: none !important;
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	background: linear-gradient(145deg, var(--harry-cream), #f0e8dc);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.woocommerce div.product div.images img {
	border-radius: var(--radius-lg);
}

.harry-single-gallery {
	background: linear-gradient(145deg, var(--harry-cream), #f0e8dc);
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1;
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 100px;
	max-height: 600px;
}

.harry-single-gallery img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: var(--space-xl);
}

/* Single Product Summary */
.harry-product-summary,
.woocommerce div.product .summary {
	width: 100% !important;
	float: none !important;
	margin: 0;
}

/* Product title */
.harry-product-summary .product_title,
.woocommerce div.product .product_title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--harry-brown-dark);
	margin-bottom: var(--space-md);
	line-height: 1.3;
}

/* Price notice */
.harry-price-notice {
	display: block;
	color: var(--harry-gray);
	font-size: 0.9rem;
	margin-bottom: var(--space-md);
}

.harry-product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--harry-beige);
}

.harry-product-meta-item {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: 0.85rem;
	color: var(--harry-gray);
}

.harry-product-meta-item svg {
	color: var(--harry-orange);
}

.woocommerce div.product p.price {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--harry-brown-dark);
	margin-bottom: var(--space-lg);
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--harry-gray);
	line-height: 1.8;
	margin-bottom: var(--space-xl);
	font-size: 0.95rem;
}

/* Single Product Add to Cart */
.woocommerce div.product form.cart {
	margin-bottom: var(--space-xl);
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.woocommerce div.product form.cart .quantity {
	margin: 0;
}

.woocommerce div.product form.cart .quantity input {
	width: 70px;
	padding: 0.75rem;
	border: 2px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: 1rem;
	text-align: center;
	color: var(--harry-brown-dark);
	transition: border-color var(--transition-fast);
}

.woocommerce div.product form.cart .quantity input:focus {
	border-color: var(--harry-orange);
	outline: none;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
	flex: 1;
	padding: 0.8rem 2.5rem;
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-orange-light));
	color: #fff;
	border: none;
	border-radius: var(--radius-md);
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all var(--transition-base);
	box-shadow: 0 4px 15px rgba(212, 133, 59, 0.3);
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: linear-gradient(135deg, var(--harry-brown-medium), var(--harry-orange));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 133, 59, 0.4);
}

/* Product Features */
.harry-product-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
	padding: var(--space-lg);
	background: var(--harry-cream);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-xl);
}

.harry-product-feature-item {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: 0.85rem;
	color: var(--harry-brown);
}

.harry-product-feature-item svg {
	color: var(--harry-orange);
	flex-shrink: 0;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
	margin-top: var(--space-3xl);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-xl);
	border-bottom: 2px solid var(--harry-beige);
	overflow: visible;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.8rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--harry-gray);
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: all var(--transition-fast);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--harry-orange);
	border-bottom-color: var(--harry-orange);
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding: var(--space-xl) 0;
	border: none;
	box-shadow: none;
	margin: 0;
	background: none;
}

/* Related Products */
.woocommerce .related.products {
	margin-top: var(--space-3xl);
	padding-top: var(--space-2xl);
	border-top: 1px solid var(--harry-beige);
}

.woocommerce .related.products h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: var(--space-xl);
	text-align: center;
}

/* === Cart Page === */
.woocommerce-cart .woocommerce {
	max-width: var(--container-max);
	margin: 0 auto;
}

.woocommerce table.shop_table {
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce table.shop_table thead {
	background: var(--harry-cream);
}

.woocommerce table.shop_table th {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--harry-brown);
	padding: var(--space-md) var(--space-lg);
	border: none;
	text-align: right;
}

.woocommerce table.shop_table td {
	padding: var(--space-md) var(--space-lg);
	border-top: 1px solid var(--harry-beige);
	vertical-align: middle;
	font-size: 0.9rem;
}

.woocommerce table.shop_table td.product-name a {
	font-weight: 600;
	color: var(--harry-brown-dark);
}

.woocommerce table.shop_table td.product-name a:hover {
	color: var(--harry-orange);
}

.woocommerce table.shop_table td.product-thumbnail img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.woocommerce table.shop_table td.product-remove a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	background: var(--harry-cream);
	color: var(--harry-error) !important;
	font-size: 1.2rem;
	transition: all var(--transition-fast);
}

.woocommerce table.shop_table td.product-remove a:hover {
	background: var(--harry-error);
	color: #fff !important;
}

.woocommerce .quantity .qty {
	width: 60px;
	padding: 0.5rem;
	border: 2px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	text-align: center;
	font-family: var(--font-primary);
}

.woocommerce .cart-collaterals {
	margin-top: var(--space-2xl);
}

.woocommerce .cart_totals {
	width: 100%;
	max-width: 450px;
	margin-right: auto;
	background: var(--harry-cream);
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
}

.woocommerce .cart_totals h2 {
	font-size: 1.2rem;
	margin-bottom: var(--space-lg);
}

.woocommerce .cart_totals table {
	border: none;
}

.woocommerce .cart_totals table td,
.woocommerce .cart_totals table th {
	border: none;
	padding: var(--space-sm) 0;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-orange-light));
	color: #fff;
	border: none;
	border-radius: var(--radius-md);
	font-family: var(--font-primary);
	font-size: 1.05rem;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all var(--transition-base);
	box-shadow: 0 4px 15px rgba(212, 133, 59, 0.3);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
	background: linear-gradient(135deg, var(--harry-brown-medium), var(--harry-orange));
	transform: translateY(-2px);
	color: #fff;
}

/* Coupon */
.woocommerce .coupon {
	display: flex;
	gap: var(--space-sm);
}

.woocommerce .coupon input {
	padding: 0.5rem 1rem;
	border: 2px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
}

.woocommerce .coupon button {
	padding: 0.5rem 1.2rem;
	background: var(--harry-brown);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.woocommerce .coupon button:hover {
	background: var(--harry-brown-dark);
}

.woocommerce button[name="update_cart"] {
	padding: 0.5rem 1.5rem;
	background: var(--harry-cream);
	color: var(--harry-brown);
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.woocommerce button[name="update_cart"]:hover {
	background: var(--harry-brown);
	color: #fff;
}

/* === Checkout Page === */
.woocommerce-checkout .harry-content {
	padding: var(--space-2xl) 0 var(--space-4xl);
}

.woocommerce form.checkout {
	max-width: var(--container-max);
	margin: 0 auto;
}

.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-2xl);
}

.woocommerce-checkout h3 {
	font-size: 1.2rem;
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-sm);
	border-bottom: 2px solid var(--harry-beige);
}

.woocommerce form .form-row {
	margin-bottom: var(--space-md);
}

.woocommerce form .form-row label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--harry-brown);
	margin-bottom: var(--space-xs);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	padding: 0.7rem 1rem;
	border: 2px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: 0.9rem;
	transition: border-color var(--transition-fast);
	color: var(--harry-brown-dark);
	background: var(--harry-white);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--harry-orange);
	outline: none;
	box-shadow: 0 0 0 3px rgba(212, 133, 59, 0.1);
}

/* Order Review */
.woocommerce-checkout #order_review_heading {
	font-size: 1.3rem;
	margin-top: var(--space-2xl);
}

.woocommerce-checkout #order_review {
	background: var(--harry-cream);
	padding: var(--space-xl);
	border-radius: var(--radius-lg);
	margin-top: var(--space-lg);
}

.woocommerce #payment {
	background: transparent !important;
	border-radius: var(--radius-lg);
}

.woocommerce #payment div.place-order {
	padding: var(--space-lg) 0 0;
}

.woocommerce #place_order {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-orange-light));
	color: #fff;
	border: none;
	border-radius: var(--radius-md);
	font-family: var(--font-primary);
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all var(--transition-base);
	box-shadow: 0 4px 15px rgba(212, 133, 59, 0.3);
}

.woocommerce #place_order:hover {
	background: linear-gradient(135deg, var(--harry-brown-medium), var(--harry-orange));
}

/* === Notices === */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
	border-top-color: var(--harry-orange);
	background: var(--harry-cream);
	color: var(--harry-brown);
	border-radius: var(--radius-sm);
	padding: var(--space-md) var(--space-lg);
	font-size: 0.9rem;
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
	color: var(--harry-orange);
}

.woocommerce .woocommerce-error {
	border-top-color: var(--harry-error);
	border-radius: var(--radius-sm);
}

.woocommerce .woocommerce-message a.button,
.woocommerce .woocommerce-info a.button {
	background: var(--harry-orange);
	color: #fff;
	border-radius: var(--radius-sm);
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
}

/* === Pagination === */
.woocommerce nav.woocommerce-pagination {
	margin-top: var(--space-2xl);
	text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: var(--space-xs);
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--harry-beige) !important;
	border-radius: var(--radius-sm) !important;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--harry-brown);
	background: var(--harry-white);
	transition: all var(--transition-fast);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--harry-cream);
	border-color: var(--harry-orange) !important;
	color: var(--harry-orange);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--harry-orange) !important;
	color: #fff;
	border-color: var(--harry-orange) !important;
}

/* === Empty States === */
.woocommerce .woocommerce-info.wc-empty-cart-message,
.cart-empty {
	text-align: center;
	padding: var(--space-4xl) var(--space-xl);
	font-size: 1.1rem;
	color: var(--harry-gray);
}

.return-to-shop a {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: 0.8rem 2rem;
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-orange-light));
	color: #fff;
	border-radius: var(--radius-md);
	font-weight: 600;
	transition: all var(--transition-base);
}

.return-to-shop a:hover {
	background: linear-gradient(135deg, var(--harry-brown-medium), var(--harry-orange));
	color: #fff;
	transform: translateY(-2px);
}

/* === Category Grid on Shop Page === */
.harry-categories-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: var(--space-md);
	margin-bottom: var(--space-2xl);
	padding-bottom: var(--space-xl);
	border-bottom: 1px solid var(--harry-beige);
}

/* === My Account === */
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 100%;
	max-width: 280px;
	float: right;
	margin-left: var(--space-2xl);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--harry-white);
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 0.8rem var(--space-lg);
	color: var(--harry-brown);
	font-weight: 500;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--harry-beige);
	transition: all var(--transition-fast);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a {
	border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	background: rgba(212, 133, 59, 0.08);
	color: var(--harry-orange);
}

.woocommerce-account .woocommerce-MyAccount-content {
	overflow: hidden;
}

/* === Responsive WooCommerce === */
@media (max-width: 1024px) {
	.harry-product-top,
	.woocommerce div.product .product-top-section,
	.product-top-section {
		grid-template-columns: 1fr !important;
		gap: var(--space-xl) !important;
	}

	.harry-single-gallery {
		position: static;
		max-height: 400px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: none;
		max-width: 100%;
		margin-left: 0;
		margin-bottom: var(--space-xl);
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		border-bottom: none;
		border-left: 1px solid var(--harry-beige);
	}
}

@media (max-width: 768px) {
	.harry-shop-categories {
		padding: var(--space-sm) 0 var(--space-md);
		gap: 6px;
	}

	.harry-shop-cat-tile {
		width: 90px;
		height: 85px;
	}

	.shop-cat-name {
		font-size: 0.72rem;
	}

	.shop-cat-count {
		font-size: 0.6rem;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	.woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.woocommerce table.shop_table {
		font-size: 0.85rem;
	}

	.harry-product-features {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product form.cart {
		flex-wrap: wrap;
	}

	.woocommerce div.product form.cart .single_add_to_cart_button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-sm);
	}

	.harry-product-info {
		padding: var(--space-sm);
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.harry-product-info .product-title {
		font-size: 0.8rem;
	}

	.woocommerce ul.products li.product .button,
	.woocommerce ul.products li.product .add_to_cart_button,
	.harry-product-info .btn-add-to-cart {
		font-size: 0.78rem;
		padding: 0.5rem;
	}

	/* Mobile cart table */
	.woocommerce table.shop_table thead {
		display: none;
	}

	.woocommerce table.shop_table tbody td {
		display: block;
		text-align: right;
		padding: var(--space-sm) var(--space-md);
	}

	.woocommerce table.shop_table tbody td::before {
		content: attr(data-title);
		font-weight: 600;
		margin-left: var(--space-sm);
	}

	.woocommerce table.shop_table tbody tr {
		display: block;
		border-bottom: 1px solid var(--harry-beige);
		padding: var(--space-sm) 0;
	}
}
