/* ============================================================
   GrowShop.hr - Main Theme Stylesheet
   ============================================================
   Table of Contents:
   1. CSS Variables & Root
   2. Reset & Base
   3. Typography
   4. Layout & Grid
   5. Buttons
   6. Forms & Inputs
   7. Promo Bar
   8. Header
   9. Navigation
   10. Mobile Navigation
   11. Mobile Bottom Nav
   12. Hero Slider
   13. Category Cards
   14. Product Grid & Cards
   15. Benefits Strip
   16. Brand Grid
   17. Blog Cards
   18. Newsletter
   19. Footer
   20. Sidebar
   21. WooCommerce Pages
   22. Single Product
   23. Cart & Checkout
   24. Blog/Post styles
   25. Page styles
   26. Error Page
   27. Legal Modal
   28. Responsive
   ============================================================ */

/* 1. CSS Variables & Root */
:root {
	--color-primary: #28752e;
	--color-primary-dark: #1b5e20;
	--color-primary-light: rgba(46, 125, 50, 0.1);
	--color-primary-hover: rgba(46, 125, 50, 0.85);
	--color-text: #1a1a1a;
	--color-text-light: #555;
	--color-text-muted: #666;
	--color-bg: #fff;
	--color-bg-alt: #f5f5f5;
	--color-bg-dark: #1a1a1a;
	--color-border: #e0e0e0;
	--color-border-light: #eee;
	--color-success: #2e7d32;
	--color-danger: #c62828;
	--color-warning: #f9a825;
	--font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	--font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	--container-width: 1200px;
	--header-height: 60px;
	--nav-height: 48px;
	--transition: 0.2s ease;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 12px rgba(0,0,0,0.1);
	--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
}

/* 2. Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary);
}

ul, ol {
	list-style: none;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

/* 4. Layout & Grid */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.section {
	padding: 60px 0;
}

.section--dark {
	background: var(--color-bg-dark);
	color: #fff;
}

.section--dark .section-title { color: #fff; }
.section--dark .section-link { color: #fff; }

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 12px;
}

.section-title {
	font-size: 1.625rem;
	position: relative;
	padding-bottom: 12px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 2px;
}

.section-subtitle {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	margin-top: 8px;
	width: 100%;
}

.section-link {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-primary);
	white-space: nowrap;
}

.section-link:hover {
	color: var(--color-primary-dark);
}

.section-empty {
	text-align: center;
	color: var(--color-text-muted);
	padding: 40px 0;
}

/* 5. Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 24px;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition);
	text-align: center;
	white-space: nowrap;
	font-family: var(--font-body);
}

.btn:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.btn-primary {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

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

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

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

.btn-lg {
	padding: 14px 32px;
	font-size: 1rem;
}

/* 6. Forms & Inputs */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 10px 14px;
	font-size: 0.95rem;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--color-text);
	transition: border-color var(--transition);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* 7. Promo Bar */
.promo-bar {
	background: var(--color-primary-dark);
	color: #fff;
	font-size: 0.85rem;
	padding: 8px 0;
	text-align: center;
}

.promo-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.promo-bar__text {
	opacity: 0.95;
}

.promo-bar__cta {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.promo-bar__cta:hover {
	color: rgba(255,255,255,0.8);
}

/* 8. Header */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--color-border-light);
	position: relative;
	z-index: 1000;
	transition: box-shadow var(--transition);
}

.site-header.header-shadow {
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sticky-header .site-header {
	position: sticky;
	top: 0;
}

.header-main {
	padding: 12px 0;
}

.header-main__row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-main__left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.header-main__center {
	flex: 1;
	min-width: 0;
}

.header-main__right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.site-branding .site-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--color-primary-dark);
	letter-spacing: -0.5px;
}

.site-branding img {
	max-height: 50px;
	width: auto;
}

/* Search */
.header-search .search-form {
	display: flex;
	position: relative;
	max-width: 500px;
	width: 100%;
}

.header-search .search-field {
	border-radius: var(--radius-md) 0 0 var(--radius-md);
	border: 2px solid var(--color-border);
	padding: 10px 16px;
	font-size: 0.9rem;
	height: 44px;
}

.header-search .search-field:focus {
	border-color: var(--color-primary);
}

.header-search .search-submit {
	background: var(--color-primary);
	border: 2px solid var(--color-primary);
	border-left: none;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	color: #fff;
	padding: 0 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: background var(--transition);
	flex-shrink: 0;
}

.header-search .search-submit:hover {
	background: var(--color-primary-dark);
}

/* Header Icons */
.header-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
	position: relative;
	border-radius: 50%;
	transition: background var(--transition), color var(--transition);
	background: none;
	border: none;
	cursor: pointer;
}

.header-icon:hover {
	background: var(--color-primary-light);
	color: var(--color-primary);
}

.header-cart { position: relative; }

.header-cart__count {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--color-primary);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.header-search-toggle {
	display: none;
}

/* Menu Toggle */
.menu-toggle {
	width: 36px;
	height: 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	border-radius: var(--radius-sm);
	transition: background var(--transition);
}

.menu-toggle:hover {
	background: var(--color-primary-light);
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-text);
	border-radius: 1px;
	transition: transform var(--transition), opacity var(--transition);
}

/* 9. Navigation */
.main-navigation {
	background: #fff;
	border-top: 1px solid var(--color-border-light);
	position: relative;
}

.main-navigation .nav-wrapper > ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation .nav-wrapper > ul > li {
	position: relative;
}

.main-navigation .nav-wrapper > ul > li > a {
	display: block;
	padding: 14px 18px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-text);
	white-space: nowrap;
	transition: color var(--transition), background var(--transition);
}

.nav-category-icon {
	display: inline-flex;
	margin-right: 6px;
	vertical-align: -3px;
	color: var(--color-primary);
}

.nav-category-icon svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.mobile-navigation .nav-category-icon {
	margin-right: 9px;
}

.mobile-navigation .nav-category-icon svg {
	width: 19px;
	height: 19px;
}

.main-navigation .nav-wrapper > ul > li > a:hover,
.main-navigation .nav-wrapper > ul > li.current-menu-item > a {
	color: var(--color-primary);
	background: var(--color-primary-light);
}

/* Dropdown */
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--transition);
	z-index: 100;
	padding: 8px 0;
}

.main-navigation .nav-wrapper > ul > li:hover > .sub-menu,
.main-navigation .nav-wrapper > ul > li.menu-item-has-children:hover > .sub-menu,
.main-navigation .nav-wrapper > ul > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu li { position: relative; }

.main-navigation .sub-menu a {
	display: block;
	padding: 10px 18px;
	font-size: 0.85rem;
	color: var(--color-text);
	transition: background var(--transition), color var(--transition);
}

.main-navigation .sub-menu a:hover {
	background: var(--color-primary-light);
	color: var(--color-primary);
}

/* Third level */
.main-navigation .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	transform: translateX(8px);
}

.main-navigation .sub-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* 10. Mobile Navigation */
.mobile-navigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	height: 100vh;
	background: #fff;
	z-index: 2000;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s ease, visibility 0.3s ease;
	box-shadow: var(--shadow-lg);
	visibility: hidden;
	pointer-events: none;
}

.mobile-navigation.open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

.mobile-navigation__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--color-border-light);
}

.mobile-navigation__title {
	font-weight: 700;
	font-size: 1.1rem;
}

.mobile-navigation__close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--color-text);
	border-radius: 50%;
	transition: background var(--transition);
}

.mobile-navigation__close:hover {
	background: var(--color-primary-light);
}

.mobile-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-navigation a {
	display: block;
	padding: 14px 20px;
	border-bottom: 1px solid var(--color-border-light);
	font-size: 0.95rem;
	font-weight: 500;
}

.mobile-navigation .sub-menu a {
	padding-left: 36px;
	font-size: 0.85rem;
	font-weight: 400;
}

.mobile-navigation .sub-menu .sub-menu a {
	padding-left: 52px;
}

.mobile-navigation .menu-item-has-children {
	position: relative;
}

.mobile-navigation .menu-item-has-children > a {
	padding-right: 58px;
}

.mobile-navigation .menu-item-has-children > .sub-menu {
	display: none;
	background: #f7faf7;
}

.mobile-navigation .menu-item-has-children.submenu-open > .sub-menu {
	display: block;
}

.mobile-submenu-toggle {
	position: absolute;
	top: 5px;
	right: 8px;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--color-primary-dark);
	cursor: pointer;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible {
	background: var(--color-primary-light);
}

.mobile-submenu-toggle svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform var(--transition);
}

.submenu-open > .mobile-submenu-toggle svg {
	transform: rotate(180deg);
}

.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* 11. Mobile Bottom Nav */
.mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-top: 1px solid var(--color-border);
	display: none;
	justify-content: space-around;
	align-items: center;
	padding: 6px 0;
	padding-bottom: max(6px, env(safe-area-inset-bottom));
	z-index: 999;
}

.mobile-bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--color-text-muted);
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 12px;
	transition: color var(--transition);
	text-decoration: none;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item.active {
	color: var(--color-primary);
}

/* 12. Hero Slider */
.home-hero {
	position: relative;
	overflow: hidden;
}

.hero-slider {
	position: relative;
}

.hero-slider__track {
	position: relative;
}

.hero-slide {
	position: relative;
	display: none;
	min-height: 460px;
	background-size: cover;
	background-position: center;
	background-color: var(--color-bg-alt);
	align-items: center;
}

.hero-slide.active {
	display: flex;
}

.hero-slide__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-slide .container {
	position: relative;
	z-index: 2;
}

.hero-slide__content {
	max-width: 560px;
	padding: 60px 0;
	color: #fff;
}

.hero-slide__label {
	display: inline-block;
	background: var(--color-primary);
	color: #fff;
	padding: 6px 16px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: var(--radius-sm);
	margin-bottom: 16px;
}

.hero-slide__title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.2;
}

.hero-slide__text {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 24px;
	line-height: 1.6;
}

.hero-slide__cta {
	font-size: 1rem;
	padding: 14px 36px;
}

.hero-slide__badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--color-danger);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 800;
	padding: 12px 20px;
	border-radius: var(--radius-md);
	transform: rotate(5deg);
	box-shadow: var(--shadow-md);
}

.hero-slider__nav {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 5;
}

.hero-slider__dots {
	display: flex;
	gap: 8px;
}

.hero-slider__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	border: none;
	cursor: pointer;
	transition: background var(--transition), transform var(--transition);
	padding: 16px;
	background-clip: content-box;
}

.hero-slider__dot.active {
	background: #fff;
	transform: scale(1.2);
}

.hero-slider__prev,
.hero-slider__next {
	background: rgba(255,255,255,0.2);
	border: none;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition);
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
	background: rgba(255,255,255,0.4);
}

/* 13. Category Cards */
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.category-card {
	display: block;
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	position: relative;
}

.category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-primary);
}

.category-card__image {
	height: 180px;
	overflow: hidden;
	position: relative;
	background: var(--color-bg-alt);
}

.category-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.category-card:hover .category-card__image img {
	transform: scale(1.05);
}

.category-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.category-card__body {
	padding: 16px;
	position: relative;
}

.category-card__body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 16px;
	right: 16px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 0 0 2px 2px;
	opacity: 0;
	transition: opacity var(--transition);
}

.category-card:hover .category-card__body::before {
	opacity: 1;
}

.category-card__title {
	font-size: 1rem;
	margin-bottom: 6px;
}

.category-card__desc {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin-bottom: 8px;
	line-height: 1.4;
}

.category-card__cta {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
}

/* 14. Product Grid & Cards */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-card {
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	position: relative;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.product-card__image-wrap {
	position: relative;
	overflow: hidden;
	background: #fff;
	aspect-ratio: 4/5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
	transition: transform 0.3s ease;
}

.product-card:hover .product-card__image-wrap img {
	transform: scale(1.05);
}

.product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--color-danger);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	z-index: 2;
}

.product-card__badge.featured-badge {
	background: var(--color-primary);
}

.product-card__actions {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	gap: 6px;
	opacity: 0;
	transform: translateY(10px);
	transition: all var(--transition);
	z-index: 3;
}

.product-card:hover .product-card__actions {
	opacity: 1;
	transform: translateY(0);
}

.product-card__actions .add_to_cart_button,
.product-card__actions .button {
	flex: 1;
	padding: 8px 12px;
	font-size: 0.78rem;
	font-weight: 600;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition);
	text-align: center;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.product-card__actions .add_to_cart_button:hover,
.product-card__actions .button:hover {
	background: var(--color-primary-dark);
}

.product-card__actions .added_to_cart {
	display: none;
}

.product-card__wishlist {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	color: var(--color-text-muted);
	transition: all var(--transition);
	flex-shrink: 0;
}

.product-card__wishlist:hover {
	color: var(--color-danger);
	border-color: var(--color-danger);
}

.product-card__info {
	padding: 14px;
}

.product-card__title {
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__title a {
	color: var(--color-text);
}

.product-card__title a:hover {
	color: var(--color-primary);
}

.product-card .star-rating {
	font-size: 0.78rem;
	margin-bottom: 6px;
	color: #f9a825;
}

.product-card .price {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.product-card .price del {
	font-weight: 400;
	color: #999;
	font-size: 0.85rem;
}

.product-card .price ins {
	text-decoration: none;
	color: var(--color-primary);
	font-weight: 700;
}

.product-card__stock {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 4px;
}

.product-card__stock.in-stock {
	color: var(--color-success);
}

.product-card__stock.out-of-stock {
	color: var(--color-danger);
}

/* Popusti / Discounts Section */
.home-popusti {
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
}

.popusti-banner {
	text-align: center;
	padding: 20px 0 40px;
}

.popusti-banner__label {
	display: inline-block;
	background: var(--color-danger);
	color: #fff;
	padding: 6px 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.popusti-banner__title {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 12px;
}

.popusti-banner__text {
	font-size: 1rem;
	color: rgba(255,255,255,0.7);
	max-width: 600px;
	margin: 0 auto 28px;
}

.popusti-countdown {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(255,255,255,0.1);
	border-radius: var(--radius-md);
	padding: 16px 24px;
	min-width: 80px;
}

.countdown-number {
	font-size: 1.75rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.countdown-label {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
	margin-top: 4px;
	letter-spacing: 1px;
}

.countdown-expired {
	color: rgba(255,255,255,0.5);
	font-size: 1.1rem;
}

/* 15. Benefits Strip */
.home-benefits {
	background: var(--color-bg-alt);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.benefit-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 24px 16px;
	background: #fff;
	border-radius: var(--radius-md);
	transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.benefit-item__icon {
	flex-shrink: 0;
}

.benefit-item__title {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.benefit-item__desc {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.4;
}

/* 15.5 Store Section */
.home-store {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #eef7ef 0%, #f8fbf8 54%, #e4f1e6 100%);
}

.home-store::before,
.home-store::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(46, 125, 50, 0.07);
	pointer-events: none;
}

.home-store::before {
	top: -180px;
	right: -130px;
	width: 420px;
	height: 420px;
}

.home-store::after {
	bottom: -210px;
	left: -160px;
	width: 360px;
	height: 360px;
}

.store-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	gap: clamp(40px, 6vw, 84px);
	align-items: center;
}

.store-info__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 10px;
	color: var(--color-primary-dark);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.store-info__eyebrow span {
	width: 24px;
	height: 2px;
	border-radius: 2px;
	background: var(--color-primary);
}

.store-info .section-title {
	margin-bottom: 16px;
	font-size: clamp(2rem, 4vw, 3.15rem);
	letter-spacing: -.04em;
}

.store-info__desc {
	color: var(--color-text-light);
	margin-bottom: 24px;
	line-height: 1.6;
	max-width: 480px;
}

.store-info__details {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.store-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0 0 24px;
}

.store-highlights span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 11px;
	border: 1px solid rgba(46, 125, 50, .15);
	border-radius: 999px;
	background: rgba(255, 255, 255, .72);
	color: var(--color-primary-dark);
	font-size: .78rem;
	font-weight: 700;
}

.store-highlights svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.store-info__item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 0.95rem;
	color: var(--color-text);
}

.store-info__item svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--color-primary);
}

.store-info__item a {
	color: var(--color-text);
	transition: color var(--transition);
}

.store-info__item a:hover {
	color: var(--color-primary);
}

.store-info .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.store-info__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.store-info__actions .btn {
	min-height: 48px;
	padding-inline: 20px;
}

.store-map__embed {
	background-color: #e9eee9;
	background-image: radial-gradient(circle at center, rgba(46, 125, 50, .1) 0 3px, transparent 4px), linear-gradient(135deg, #edf4ee, #dfeae1);
	border: 8px solid rgba(255, 255, 255, .88);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(24, 61, 29, .18);
	aspect-ratio: 4 / 3;
	position: relative;
}

.store-map__embed::before {
	content: "GrowShop.hr · Zagreb";
	position: absolute;
	top: 50%;
	left: 50%;
	color: rgba(27, 94, 32, .5);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .06em;
	transform: translate(-50%, -50%);
}

.store-map__embed iframe {
	z-index: 1;
}

.growshophr-product-placeholder img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	background: #f7f5ef;
}

.store-map {
	position: relative;
}

.store-map__badge {
	position: absolute;
	right: -18px;
	bottom: 28px;
	z-index: 2;
	display: flex;
	min-width: 215px;
	flex-direction: column;
	gap: 2px;
	padding: 14px 17px;
	border: 1px solid rgba(46, 125, 50, .16);
	border-radius: 12px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 12px 30px rgba(24, 61, 29, .16);
}

.store-map__badge strong {
	color: var(--color-primary-dark);
	font-size: .82rem;
}

.store-map__badge span {
	color: var(--color-text-muted);
	font-size: .75rem;
}

.store-map__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 16. Brand marquee */
.brand-marquee {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.brand-marquee__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: growshophr-brand-marquee 32s linear infinite;
}

.brand-marquee__group {
	display: flex;
	flex: 0 0 auto;
	gap: 16px;
	padding-right: 16px;
}

.brand-marquee:hover .brand-marquee__track,
.brand-marquee:focus-within .brand-marquee__track {
	animation-play-state: paused;
}

@keyframes growshophr-brand-marquee {
	to { transform: translateX(-50%); }
}

.brand-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 24px 16px;
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	transition: all var(--transition);
	min-height: 120px;
	text-decoration: none;
	width: 176px;
	flex: 0 0 176px;
}

@media (prefers-reduced-motion: reduce) {
	.brand-marquee {
		overflow-x: auto;
		mask-image: none;
		-webkit-mask-image: none;
	}

	.brand-marquee__track {
		animation: none;
	}
}

.brand-item:hover {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.brand-item__logo {
	width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform var(--transition);
}

.brand-item:hover .brand-item__logo {
	transform: scale(1.08);
}

.brand-item__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.brand-item__name {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-text);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	line-height: 1.2;
}

.brand-item:hover .brand-item__name {
	color: var(--color-primary);
}

/* 17. Blog Cards */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.blog-card {
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.blog-card__image {
	display: block;
	height: 200px;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.05);
}

.blog-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.blog-card__body {
	padding: 16px;
}

.blog-card__date {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	margin-bottom: 6px;
	display: block;
}

.blog-card__title {
	font-size: 1rem;
	margin-bottom: 8px;
	line-height: 1.4;
}

.blog-card__title a {
	color: var(--color-text);
}

.blog-card__title a:hover {
	color: var(--color-primary);
}

.blog-card__excerpt {
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-bottom: 12px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card__cta {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
}

/* 18. Newsletter */
.home-newsletter {
	background: var(--color-primary-dark);
}

.newsletter-block {
	text-align: center;
	padding: 20px 0;
}

.newsletter-block__badge {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	color: #fff;
	padding: 6px 18px;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 20px;
	margin-bottom: 20px;
}

.newsletter-block__title {
	font-size: 1.75rem;
	color: #fff;
	margin-bottom: 12px;
}

.newsletter-block__text {
	color: rgba(255,255,255,0.85);
	font-size: 1rem;
	margin-bottom: 28px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form__inner {
	display: flex;
	gap: 8px;
	max-width: 480px;
	margin: 0 auto;
}

.newsletter-input {
	flex: 1;
	padding: 14px 18px;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
}

.newsletter-input:focus {
	box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form .btn {
	flex-shrink: 0;
}

.newsletter-badge {
	display: block;
	margin-top: 10px;
	color: rgba(255,255,255,0.7);
	font-size: 0.8rem;
}

/* 19. Footer */
.site-footer {
	background: var(--color-bg-dark);
	color: rgba(255,255,255,0.8);
}

/* Footer Benefits Strip */
.footer-benefits {
	border-bottom: 1px solid rgba(255,255,255,0.08);
	padding: 20px 0;
}

.footer-benefits-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.footer-benefit-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.85);
	font-size: 0.88rem;
	font-weight: 500;
}

.footer-benefit-item svg {
	color: var(--color-primary);
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.footer-newsletter {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 40px 0;
}

.footer-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.footer-newsletter__text h3 {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.footer-newsletter__text p {
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
	margin: 0;
}

.footer-newsletter__form {
	flex-shrink: 0;
	width: 100%;
	max-width: 400px;
}

.footer-newsletter__form .newsletter-input {
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.footer-newsletter__form .newsletter-input::placeholder {
	color: rgba(255,255,255,0.5);
}

.footer-main {
	padding: 48px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 32px;
}

.footer-col {
	min-width: 0;
}

.footer-site-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
}

.footer-desc {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
	margin: 12px 0 16px;
	line-height: 1.6;
}

.footer-contact p {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-contact p svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--color-primary);
}

.footer-contact__phone a,
.footer-contact__map a {
	color: rgba(255,255,255,0.7);
	transition: color var(--transition);
}

.footer-contact__phone a:hover,
.footer-contact__map a:hover {
	color: var(--color-primary);
}

.footer-contact__map {
	margin-top: 8px;
}

.footer-contact__map a {
	font-weight: 600;
	color: var(--color-primary) !important;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.social-link {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	color: #fff;
	transition: background var(--transition);
}

.social-link:hover {
	background: var(--color-primary);
	color: #fff;
}

.footer-col .widget-title {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 16px;
	font-weight: 700;
}

.footer-col .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col .widget li {
	margin-bottom: 8px;
}

.footer-col .widget a {
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
	transition: color var(--transition);
}

.footer-col .widget a:hover {
	color: var(--color-primary);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
}

.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-payments {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.payment-icon {
	padding: 4px 12px;
	background: rgba(255,255,255,0.1);
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255,255,255,0.7);
}

.footer-copyright {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.footer-menu {
	display: flex;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu a {
	color: rgba(255,255,255,0.5);
	font-size: 0.8rem;
	transition: color var(--transition);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-menu a:hover {
	color: var(--color-primary);
}

/* 20. Sidebar */
.sidebar {
	width: 280px;
	flex-shrink: 0;
}

.sidebar .widget {
	margin-bottom: 24px;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
}

.sidebar .widget-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-primary);
}

.sidebar .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar .widget li {
	padding: 6px 0;
	border-bottom: 1px solid var(--color-border-light);
}

.sidebar .widget li:last-child {
	border-bottom: none;
}

.sidebar .widget a {
	font-size: 0.9rem;
	color: var(--color-text-light);
}

.sidebar .widget a:hover {
	color: var(--color-primary);
}

/* WooCommerce filter widgets */
.sidebar .widget.woocommerce-widget-layered-nav .select,
.sidebar .widget.woocommerce-widget-layered-nav select {
	width: 100%;
}

.sidebar .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: var(--color-border);
}

.sidebar .widget_price_filter .ui-slider .ui-slider-handle,
.sidebar .widget_price_filter .ui-slider .ui-slider-range {
	background: var(--color-primary);
}

/* 21. WooCommerce Pages */
.woocommerce-breadcrumb {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	padding: 8px 0;
	margin-bottom: 16px;
}

.woocommerce-breadcrumb a {
	color: var(--color-text-muted);
}

.woocommerce-breadcrumb .breadcrumb-sep {
	margin: 0 8px;
	color: var(--color-border);
}

/* Archive page */
.archive-page-wrapper {
	padding: 24px 0 60px;
}

.archive-layout {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.archive-content {
	flex: 1;
	min-width: 0;
}

.archive-header {
	margin-bottom: 24px;
}

.archive-title {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.archive-description {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

/* Sorting bar */
.woocommerce-ordering {
	margin-bottom: 20px;
}

.woocommerce-ordering select {
	padding: 8px 14px;
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: #fff;
	cursor: pointer;
	width: auto;
}

.woocommerce-result-count {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 20px;
}

/* Pagination */
.woocommerce-pagination,
.pagination {
	margin-top: 32px;
	text-align: center;
}

.woocommerce-pagination ul.page-numbers,
.pagination .nav-links {
	display: inline-flex;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-pagination ul.page-numbers li {
	display: inline-block;
}

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span,
.pagination .nav-links a,
.pagination .nav-links span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	text-decoration: none;
	transition: all var(--transition);
}

.woocommerce-pagination ul.page-numbers li span.current,
.pagination .nav-links .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.woocommerce-pagination ul.page-numbers li a:hover,
.pagination .nav-links a:hover {
	background: var(--color-primary-light);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

/* 22. Single Product */
.product-page-wrapper {
	padding: 24px 0 60px;
}

.product-single-layout {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.product-single-layout .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
}

.product-single-layout .summary {
	float: none !important;
	width: 100% !important;
}

.onsale {
	display: none;
}

.single-sale-badge {
	display: inline-block;
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 10;
	width: auto;
	max-width: max-content;
	background: var(--color-danger);
	color: #fff;
	padding: 8px 16px;
	font-size: 0.9rem;
	font-weight: 700;
	border-radius: var(--radius-sm);
	margin: 0;
}

.single-product .product-single-layout > div.product {
	display: grid;
	position: relative;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.single-product .woocommerce-product-gallery {
	align-self: start;
}

.single-product .woocommerce-product-gallery--without-images {
	min-height: 400px;
}

.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	border-radius: var(--radius-md);
}

.single-product .flex-control-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.single-product .flex-control-thumbs li {
	flex: 1;
	list-style: none;
}

.single-product .flex-control-thumbs li img {
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	padding: 2px;
	transition: border-color var(--transition);
}

.single-product .flex-control-thumbs li img.flex-active {
	border-color: var(--color-primary);
}

/* Fix: tabs and related products must span full width */
.single-product .product-single-layout > div.product > .woocommerce-tabs,
.single-product .product-single-layout > div.product > .related.products,
.single-product .product-single-layout > div.product > .up-sells {
	grid-column: 1 / -1;
	width: 100%;
}

.product_title {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.woocommerce-product-rating .star-rating {
	color: #f9a825;
	font-size: 0.9rem;
}

.single-product .price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.single-product .price del {
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-text-muted);
}

.single-product .price ins {
	text-decoration: none;
	font-weight: 700;
	color: var(--color-primary);
}

.woocommerce-product-details__short-description {
	margin-bottom: 20px;
	color: var(--color-text-light);
	font-size: 0.95rem;
}

.cart .quantity-stepper {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 4px;
	border: 1px solid #d8e3d9;
	border-radius: 12px;
	background: #f4f8f4;
	box-shadow: inset 0 1px 2px rgba(21, 55, 25, .04);
	overflow: hidden;
}

.cart .quantity-stepper .qty-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dce7dd;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	color: var(--color-text);
	box-shadow: 0 2px 5px rgba(20, 55, 24, .07);
	transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
	user-select: none;
}

.cart .quantity-stepper .qty-btn:hover {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: #fff;
}

.cart .quantity-stepper .qty-btn:active {
	transform: scale(.94);
}

.cart .quantity-stepper .qty-btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 2;
}

.cart .quantity-stepper .quantity {
	display: contents;
}

.cart .quantity-stepper .qty {
	width: 46px;
	height: 36px;
	text-align: center;
	border: none;
	border: 0;
	background: transparent;
	padding: 0;
	font-size: 0.95rem;
	font-weight: 600;
	-moz-appearance: textfield;
}

.cart .quantity-stepper:focus-within {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-light);
}

@media (max-width: 900px) {
	.store-grid {
		grid-template-columns: 1fr;
	}

	.store-map__badge {
		right: 16px;
	}
}

@media (max-width: 600px) {
	.store-info__actions .btn {
		justify-content: center;
		width: 100%;
	}

	.store-map__badge {
		position: relative;
		right: auto;
		bottom: auto;
		margin: -24px 14px 0;
	}
}

/* Shared storefront polish */
.home-deals .product-card,
.home-featured .product-card,
.home-categories .category-card,
.home-blog .blog-card {
	transition: transform .22s ease, box-shadow .22s ease;
}

.home-deals .product-card:hover,
.home-featured .product-card:hover,
.home-categories .category-card:hover,
.home-blog .blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 38px rgba(20, 55, 24, .12);
}

@media (prefers-reduced-motion: reduce) {
	.home-deals .product-card,
	.home-featured .product-card,
	.home-categories .category-card,
	.home-blog .blog-card,
	.cart .quantity-stepper .qty-btn {
		transition: none;
	}
}

.cart .quantity-stepper .qty::-webkit-outer-spin-button,
.cart .quantity-stepper .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cart .quantity-stepper .qty:focus {
	box-shadow: none;
	outline: none;
}

.cart .single_add_to_cart_button {
	height: 44px;
	padding: 0 28px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background var(--transition);
}

.cart .single_add_to_cart_button:hover {
	background: var(--color-primary-dark);
}

.product_meta {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border-light);
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

.product_meta > span {
	display: block;
	margin-bottom: 4px;
}

.product_meta a {
	color: var(--color-text-light);
}

.product_meta a:hover {
	color: var(--color-primary);
}

/* Delivery Info Strip on Product Page */
.product-delivery-info {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
	padding: 16px;
	background: var(--color-bg-alt);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border-light);
}

.product-delivery-info .delivery-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--color-text-light);
	flex: 1;
	min-width: 140px;
}

.product-delivery-info .delivery-item svg {
	flex-shrink: 0;
	color: var(--color-primary);
}

/* Star Rating Input for Reviews */
.comment-form-rating {
	margin-bottom: 16px;
}

.comment-form-rating label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--color-text);
}

.star-rating-input {
	display: flex;
	gap: 7px;
	width: fit-content;
	margin-top: 8px;
	padding: 12px 14px;
	border: 1px solid var(--color-border-light);
	border-radius: 12px;
	background: #f8faf8;
}

.star-rating-input a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 8px;
	color: #cbd4cc;
	transition: color var(--transition), background var(--transition), transform var(--transition);
	cursor: pointer;
	text-decoration: none;
}

.star-rating-input svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.star-rating-input a:hover,
.star-rating-input a.is-preview,
.star-rating-input a.active {
	color: #f5a623;
	background: #fff8e8;
	transform: translateY(-2px);
}

.star-rating-input__hint {
	display: block;
	margin-top: 7px;
	color: var(--color-text-muted);
	font-size: .76rem;
}

.comment-form-rating .stars {
	display: none !important;
}

.star-rating {
	position: relative;
	display: inline-block;
	width: 5.75em;
	min-width: 5.75em;
	flex-shrink: 0;
	height: 1.15em;
	overflow: hidden;
	color: #d7ddd8;
	font-size: 1rem;
	line-height: 1.15;
	font-family: Arial, sans-serif;
	letter-spacing: .15em;
	white-space: nowrap;
}

.star-rating::before,
.star-rating > span::before {
	content: "★★★★★";
	position: absolute;
	top: 0;
	left: 0;
}

.star-rating > span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	color: #f5a623;
	font-size: 0;
	text-indent: -9999px;
}

.star-rating > span > * {
	display: none;
}

.star-rating > span::before {
	font-size: 1rem;
	text-indent: 0;
}

/* Stable SVG ratings: five independent shapes, with no overlapping text rows. */
.growshop-rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	width: max-content;
	height: 18px;
	line-height: 1;
	flex: 0 0 auto;
}

.growshop-rating svg {
	display: block;
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
}

.product-card .growshop-rating,
.related.products .growshop-rating {
	margin-bottom: 6px;
}

.woocommerce-tabs #reviews .growshop-rating {
	margin-bottom: 6px;
}

.woocommerce-product-rating {
	align-items: flex-start;
	flex-direction: column;
	gap: 3px;
}

.woocommerce-product-rating .woocommerce-review-link {
	color: var(--color-text-muted);
	font-size: .72rem;
	text-decoration: none;
}

/* Product Tabs */
.woocommerce-tabs {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
	background: var(--color-bg);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.woocommerce-tabs .tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--color-border);
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
	background: var(--color-bg-alt);
	scrollbar-width: thin;
}

.woocommerce-tabs .tabs li {
	margin: 0;
	padding: 0;
	position: relative;
}

.woocommerce-tabs .tabs li a {
	display: block;
	padding: 14px 28px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text-muted);
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all var(--transition);
	white-space: nowrap;
	text-decoration: none;
}

.woocommerce-tabs .tabs li.active a {
	color: #fff;
	border-bottom-color: var(--color-primary);
	background: var(--color-primary);
}

.woocommerce-tabs .tabs li a:hover {
	color: var(--color-primary);
	background: var(--color-bg);
}

.woocommerce-tabs .panel {
	padding: 28px;
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.8;
}

.woocommerce-tabs .panel h2 {
	font-size: 1.25rem;
	margin-bottom: 16px;
	color: var(--color-text);
}

.woocommerce-tabs .panel p:last-child {
	margin-bottom: 0;
}

.woocommerce-tabs .shop_attributes {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
}

.woocommerce-tabs .shop_attributes th,
.woocommerce-tabs .shop_attributes td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--color-border-light);
	text-align: left;
	font-size: 0.9rem;
}

.woocommerce-tabs .shop_attributes th {
	font-weight: 600;
	width: 220px;
	background: var(--color-bg-alt);
}

.woocommerce-tabs .shop_attributes td {
	color: var(--color-text-light);
}

.woocommerce-tabs .shop_attributes tr:last-child th,
.woocommerce-tabs .shop_attributes tr:last-child td {
	border-bottom: none;
}

/* Reviews in Tabs */
.woocommerce-tabs #reviews {
	margin-top: 0;
	padding: 28px;
	background: #fff;
}

.woocommerce-tabs #reviews #comments {
	margin-bottom: 32px;
	padding: 22px;
	border: 1px solid var(--color-border-light);
	border-radius: 14px;
	background: #fbfdfb;
}

.woocommerce-tabs #reviews h2 {
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.woocommerce-tabs #reviews .comment-respond {
	margin: 0;
	padding: 22px;
	border: 1px solid #dce9dd;
	border-radius: 14px;
	background: #f5faf6;
}

.woocommerce-tabs #reviews .commentlist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-tabs #reviews .commentlist li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-border-light);
	padding: 18px;
	border: 1px solid var(--color-border-light);
	border-radius: 10px;
	background: #fff;
}

.woocommerce-tabs #reviews .commentlist li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.woocommerce-tabs #reviews .comment_container {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.woocommerce-tabs #reviews .avatar {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
	flex-shrink: 0;
}

.woocommerce-tabs #reviews .comment-text {
	flex: 1;
}

.woocommerce-tabs #reviews .star-rating {
	float: none;
	margin-bottom: 6px;
	font-size: 0.85rem;
	color: var(--color-warning);
}

.woocommerce-tabs #reviews .meta {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 6px;
}

.woocommerce-tabs #reviews .description {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--color-text-light);
}

.woocommerce-tabs .comment-respond {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border-light);
}

.woocommerce-tabs .comment-respond .comment-reply-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 16px;
	display: block;
	color: var(--color-text);
}

.woocommerce-tabs .comment-form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--color-text);
}

.woocommerce-tabs .comment-form input[type="text"],
.woocommerce-tabs .comment-form input[type="email"],
.woocommerce-tabs .comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	transition: border-color var(--transition);
}

.woocommerce-tabs .comment-form input[type="text"],
.woocommerce-tabs .comment-form input[type="email"],
.woocommerce-tabs .comment-form textarea {
	border: 1px solid #cfddd1;
	border-radius: 9px;
	background: #fff;
	box-shadow: inset 0 1px 2px rgba(26, 65, 31, .03);
}

.woocommerce-tabs .comment-form input[type="text"],
.woocommerce-tabs .comment-form input[type="email"] {
	min-height: 44px;
	padding: 0 12px;
}

.woocommerce-tabs .comment-form textarea {
	min-height: 130px;
	padding: 12px;
}

.woocommerce-tabs .comment-form input:focus,
.woocommerce-tabs .comment-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}

.woocommerce-tabs .comment-form textarea {
	min-height: 120px;
	resize: vertical;
}

.woocommerce-tabs .comment-form .form-submit .submit {
	background: var(--color-primary);
	color: #fff;
	padding: 12px 28px;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--transition);
}

.woocommerce-tabs .comment-form .form-submit .submit:hover {
	background: var(--color-primary-dark);
}

.woocommerce-tabs .comment-form .stars {
	margin-bottom: 16px;
}

.woocommerce-tabs .comment-form .stars a {
	color: var(--color-text-muted);
	font-size: 1.1rem;
}

.woocommerce-tabs .comment-form .stars a:hover,
.woocommerce-tabs .comment-form .stars a.active {
	color: var(--color-warning);
}

/* WooCommerce account and all classic buttons */
.woocommerce-account .entry-content > .woocommerce {
	max-width: 980px;
	margin: 0 auto;
	padding: 42px 20px 72px;
}

.woocommerce-account .entry-content > .woocommerce > h2 {
	margin-bottom: 16px;
	font-size: 1.55rem;
}

.woocommerce-account #customer_login {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
	min-width: 0;
}

.woocommerce-account #customer_login h2 {
	margin: 0 0 12px;
	color: var(--color-primary-dark);
	font-size: 1.25rem;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce-ResetPassword {
	max-width: 540px;
	margin: 0 0 24px;
	padding: 28px;
	border: 1px solid var(--color-border-light);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(24, 61, 29, .08);
}

.woocommerce-account .woocommerce-form-row label,
.woocommerce-account .form-row label {
	display: block;
	margin-bottom: 6px;
	font-size: .82rem;
	font-weight: 700;
}

.woocommerce-account .woocommerce-Input,
.woocommerce-account .input-text {
	min-height: 46px;
	width: 100%;
	padding: 0 13px;
	border: 1px solid #cfddd1;
	border-radius: 9px;
	background: #fbfdfb;
}

.woocommerce-account .woocommerce-Input:focus,
.woocommerce-account .input-text:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-light);
	outline: none;
}

.woocommerce-account .woocommerce-button,
.woocommerce-account .button,
.woocommerce form button.button,
.woocommerce form input.button,
.woocommerce a.button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	background: var(--color-primary);
	color: #fff;
	font-size: .85rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .button:hover,
.woocommerce form button.button:hover,
.woocommerce form input.button:hover,
.woocommerce a.button:hover {
	border-color: var(--color-primary-dark);
	background: var(--color-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.woocommerce-account .woocommerce-form-login__rememberme {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
	margin: 5px 0 14px;
	font-weight: 500 !important;
}

.woocommerce-account .lost_password a {
	color: var(--color-primary-dark);
	font-size: .82rem;
	font-weight: 600;
}

.woocommerce-account .woocommerce-privacy-policy-text,
.woocommerce-account .u-column2 > form p:not(.form-row):not(.woocommerce-form-row) {
	color: var(--color-text-muted);
	font-size: .8rem;
	line-height: 1.55;
}

@media (max-width: 700px) {
	.woocommerce-account #customer_login {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.woocommerce-account .woocommerce-form-login,
	.woocommerce-account .woocommerce-form-register,
	.woocommerce-account .woocommerce-ResetPassword {
		padding: 22px 18px;
	}
}

/* Related Products */
.related.products {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

/* Skip layout and paint work for homepage sections below the viewport. */
.home-store,
.home-brands,
.home-categories,
.home-deals,
.home-featured,
.home-benefits,
.home-blog,
.home-newsletter,
.site-footer {
	content-visibility: auto;
	contain-intrinsic-size: 700px;
}

.related.products > h2 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--color-text);
	position: relative;
	padding-bottom: 12px;
}

.related.products > h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 2px;
}

.related.products .product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.related.products .product-card {
	display: flex;
	flex-direction: column;
}

.related.products .product-card__image-wrap {
	aspect-ratio: 1 / 1;
}

.related.products .product-card__info {
	padding: 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.related.products .product-card__title {
	font-size: 0.88rem;
	font-weight: 500;
	margin-bottom: 6px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.4em;
}

.related.products .product-card__title a {
	color: var(--color-text);
	text-decoration: none;
}

.related.products .product-card__title a:hover {
	color: var(--color-primary);
}

.related.products .product-card .price {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.related.products .product-card .price del {
	font-weight: 400;
	color: var(--color-text-muted);
	font-size: 0.85rem;
}

.related.products .product-card .price ins {
	text-decoration: none;
	font-weight: 700;
}

.related.products .product-card__stock {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-success);
	margin-top: auto;
	padding-top: 4px;
}

.related.products .product-card__stock.out-of-stock {
	color: var(--color-danger);
}

.related.products .star-rating {
	font-size: 0.78rem;
	margin-bottom: 6px;
	color: var(--color-warning);
}

/* Up-sells */
.up-sells.products {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

.up-sells.products > h2 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 24px;
	padding-bottom: 12px;
	position: relative;
}

.up-sells.products > h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 2px;
}

.up-sells .product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.up-sells .product-card {
	display: flex;
	flex-direction: column;
}

.up-sells .product-card__info {
	padding: 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.up-sells .product-card__stock {
	margin-top: auto;
	padding-top: 4px;
}

/* 23. Cart & Checkout */
.cart-page-wrapper,
.checkout-page-wrapper {
	padding: 32px 0 60px;
}

.cart-layout {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cart-page-wrapper table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.cart-page-wrapper table.shop_table th {
	background: var(--color-bg-alt);
	padding: 14px 16px;
	font-size: 0.85rem;
	font-weight: 700;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.cart-page-wrapper table.shop_table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--color-border-light);
	font-size: 0.9rem;
	vertical-align: middle;
}

.cart-page-wrapper table.shop_table .product-thumbnail img {
	width: 80px;
	height: auto;
	border-radius: var(--radius-sm);
}

.cart-page-wrapper table.shop_table .product-name a {
	font-weight: 600;
}

.cart-page-wrapper table.shop_table .product-remove a {
	color: var(--color-danger);
	font-size: 1.2rem;
}

.cart-page-wrapper .cart-collaterals {
	margin-top: 24px;
}

.cart-page-wrapper .cart_totals {
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	padding: 24px;
	max-width: 400px;
	margin-left: auto;
}

.cart-page-wrapper .cart_totals h2 {
	font-size: 1.1rem;
	margin-bottom: 16px;
}

.cart-page-wrapper .cart_totals .shipping,
.woocommerce-checkout-review-order-table .shipping {
	display: block;
	padding: 12px 0;
}

.cart-page-wrapper .cart_totals .shipping th,
.cart-page-wrapper .cart_totals .shipping td,
.woocommerce-checkout-review-order-table .shipping th,
.woocommerce-checkout-review-order-table .shipping td {
	display: block;
	width: 100%;
	padding: 4px 0;
	text-align: left;
}

.cart-page-wrapper #shipping_method li,
.checkout-page-wrapper #shipping_method li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: start;
	gap: 8px;
}

.cart-page-wrapper #shipping_method label,
.checkout-page-wrapper #shipping_method label {
	line-height: 1.45;
	cursor: pointer;
}

.cart-page-wrapper .cart_totals table {
	width: 100%;
}

.cart-page-wrapper .cart_totals th,
.cart-page-wrapper .cart_totals td {
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border-light);
	font-size: 0.9rem;
}

.cart-page-wrapper .cart_totals .order-total th,
.cart-page-wrapper .cart_totals .order-total td {
	font-size: 1.1rem;
	font-weight: 700;
}

.checkout-btn-wrap {
	margin-top: 16px;
}

.checkout-btn-wrap .checkout-button {
	display: block;
	width: 100%;
	padding: 14px 24px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: background var(--transition);
	text-decoration: none;
}

.checkout-btn-wrap .checkout-button:hover {
	background: var(--color-primary-dark);
}

/* Checkout */
.checkout-page-wrapper {
	background: var(--color-bg-alt);
}

.checkout-page-wrapper .woocommerce {
	max-width: 960px;
	margin: 0 auto;
}

.checkout-page-wrapper .woocommerce-checkout {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.checkout-page-wrapper #customer_details {
	flex: 1;
	min-width: 0;
}

.checkout-page-wrapper .woocommerce-billing-fields,
.checkout-page-wrapper .woocommerce-shipping-fields {
	background: #fff;
	border-radius: 16px;
	padding: 28px 32px 20px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border-light);
	margin-bottom: 20px;
}

.checkout-page-wrapper .woocommerce-billing-fields h3,
.checkout-page-wrapper .woocommerce-shipping-fields h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-primary-light);
	color: var(--color-primary-dark);
}

.checkout-page-wrapper .form-row {
	margin-bottom: 14px;
}

.checkout-page-wrapper .form-row label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.checkout-page-wrapper .form-row input,
.checkout-page-wrapper .form-row select,
.checkout-page-wrapper .form-row textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--color-border);
	border-radius: 10px;
	font-size: 0.95rem;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-page-wrapper .form-row input:focus,
.checkout-page-wrapper .form-row select:focus,
.checkout-page-wrapper .form-row textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-light);
}

.checkout-page-wrapper #order_review_heading,
.checkout-page-wrapper #order_review {
	flex: 0 0 380px;
}

#order_review_heading {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--color-primary-dark);
}

.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border-light);
}

.woocommerce-checkout-review-order-table thead {
	display: none;
}

.woocommerce-checkout-review-order-table tbody tr:first-child td {
	padding-top: 20px;
}

.woocommerce-checkout-review-order-table td {
	padding: 10px 20px;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--color-border-light);
}

.woocommerce-checkout-review-order-table .product-name {
	font-weight: 600;
}

.woocommerce-checkout-review-order-table .product-total {
	text-align: right;
	font-weight: 500;
}

.woocommerce-checkout-review-order-table tfoot tr:first-child td {
	padding-top: 16px;
}

.woocommerce-checkout-review-order-table tfoot td {
	padding: 10px 20px;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--color-border-light);
}

.woocommerce-checkout-review-order-table tfoot th {
	padding: 10px 20px;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: left;
	border-bottom: 1px solid var(--color-border-light);
}

.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
	font-size: 1.15rem;
	font-weight: 800;
	padding: 16px 20px;
	border-bottom: none;
	color: var(--color-primary-dark);
}

/* Payment section */
.checkout-page-wrapper .woocommerce-checkout-payment {
	margin-top: 16px;
	background: #fff;
	border-radius: 16px;
	padding: 20px 24px 24px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border-light);
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods {
	list-style: none;
	padding: 0;
	margin: 0;
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li {
	padding: 14px 0;
	border-bottom: 1px solid var(--color-border-light);
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li:last-child {
	border-bottom: none;
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li label {
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 0.92rem;
	color: var(--color-text);
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li input[type="radio"] {
	accent-color: var(--color-primary);
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_box {
	font-size: 0.85rem;
	color: var(--color-text-light);
	padding: 12px 0 4px 28px;
	line-height: 1.5;
}

/* WooCommerce notices */
.woocommerce-notices-wrapper:not(:empty) {
	margin: 20px auto;
	width: min(100% - 32px, 1200px);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	position: relative;
	margin: 0 0 16px;
	padding: 18px 20px 18px 56px;
	border: 1px solid #b8dfbd;
	border-left: 5px solid var(--color-primary);
	border-radius: 8px;
	background: #eff9f0;
	box-shadow: 0 8px 24px rgba(27, 94, 32, 0.1);
	color: #193b1d;
	line-height: 1.5;
	list-style: none;
}

.woocommerce-message::before,
.woocommerce-info::before {
	content: "\2713";
	position: absolute;
	top: 50%;
	left: 20px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-weight: 800;
	line-height: 24px;
	text-align: center;
	transform: translateY(-50%);
}

.woocommerce-message .button,
.woocommerce-info .button {
	float: right;
	margin: -7px 0 -7px 20px;
	padding: 9px 15px;
	border-radius: 6px;
	background: var(--color-primary);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
}

@media (max-width: 600px) {
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce-error {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 16px 16px 16px 52px;
	}

	.woocommerce-message .button,
	.woocommerce-info .button {
		float: none;
		order: 2;
		margin: 0;
		text-align: center;
	}
}

/* Place order button */
.checkout-page-wrapper .place-order {
	margin-top: 20px;
}

.checkout-page-wrapper .place-order .button {
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(46,125,50,0.3);
	letter-spacing: 0.3px;
}

.checkout-page-wrapper .place-order .button:hover {
	background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
	box-shadow: 0 6px 24px rgba(46,125,50,0.4);
	transform: translateY(-1px);
}

.checkout-page-wrapper .place-order .button:active {
	transform: translateY(0);
}

/* Coupon toggle */
.checkout-page-wrapper .woocommerce-form-coupon-toggle {
	margin-bottom: 16px;
}

.checkout-page-wrapper .woocommerce-form-coupon-toggle .showcoupon {
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: underline;
	font-size: 0.88rem;
}

.checkout-page-wrapper form.checkout_coupon {
	background: #fff;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 20px;
	border: 1px solid var(--color-border-light);
	box-shadow: var(--shadow-sm);
	display: flex;
	gap: 12px;
	align-items: center;
}

.checkout-page-wrapper form.checkout_coupon p {
	margin: 0;
}

.checkout-page-wrapper form.checkout_coupon input[type="text"] {
	flex: 1;
	padding: 10px 14px;
	border: 1.5px solid var(--color-border);
	border-radius: 10px;
	font-size: 0.9rem;
	min-width: 180px;
}

.checkout-page-wrapper form.checkout_coupon button {
	padding: 10px 20px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--transition);
	white-space: nowrap;
}

.checkout-page-wrapper form.checkout_coupon button:hover {
	background: var(--color-primary-dark);
}

/* Shipping section styling */
.checkout-page-wrapper .woocommerce-shipping-fields {
	margin-top: 0;
}

.checkout-page-wrapper .woocommerce-shipping-fields .shipping_address {
	display: none;
}

.checkout-page-wrapper #ship-to-different-address:has(#ship-to-different-address-checkbox:checked) + .shipping_address {
	display: block;
}

.checkout-page-wrapper #ship-to-different-address {
	font-size: 0.9rem;
}

.checkout-page-wrapper #ship-to-different-address input {
	margin-right: 8px;
}

/* Order review totals card */
.checkout-page-wrapper .cart-subtotal td,
.checkout-page-wrapper .shipping td,
.checkout-page-wrapper .tax td {
	text-align: right;
}

/* Remove table borders for clean look */
.woocommerce-checkout-review-order-table tbody .product-name .product-quantity {
	color: var(--color-text-muted);
	font-weight: 400;
}

/* Form validation */
.checkout-page-wrapper .form-row.woocommerce-validated input,
.checkout-page-wrapper .form-row.woocommerce-validated select {
	border-color: var(--color-success);
}

.checkout-page-wrapper .form-row.woocommerce-invalid input,
.checkout-page-wrapper .form-row.woocommerce-invalid select {
	border-color: var(--color-danger);
	box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

.checkout-page-wrapper .form-row .required {
	color: var(--color-danger);
}

/* Select2 styling */
.checkout-page-wrapper .select2-container .select2-selection--single {
	height: auto;
	padding: 10px 14px;
	border: 1.5px solid var(--color-border);
	border-radius: 10px;
	font-size: 0.95rem;
	background: #fff;
}

.checkout-page-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.4;
	padding: 0;
	color: var(--color-text);
}

.checkout-page-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
}

.checkout-page-wrapper .select2-container--default .select2-search--dropdown .select2-search__field {
	padding: 8px 12px;
	border: 1.5px solid var(--color-border);
	border-radius: 8px;
}

.checkout-page-wrapper .select2-dropdown {
	border: 1.5px solid var(--color-border);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.checkout-page-wrapper .select2-results__option {
	padding: 10px 14px;
	font-size: 0.9rem;
}

.checkout-page-wrapper .select2-results__option--highlighted {
	background: var(--color-primary-light) !important;
	color: var(--color-text) !important;
}

/* Shipping method list */
.checkout-page-wrapper #shipping_method {
	list-style: none;
	padding: 0;
	margin: 0;
}

.checkout-page-wrapper #shipping_method li {
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border-light);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}

.checkout-page-wrapper #shipping_method li:last-child {
	border-bottom: none;
}

.checkout-page-wrapper #shipping_method li input {
	accent-color: var(--color-primary);
	width: 18px;
	height: 18px;
}

.checkout-page-wrapper #shipping_method .woocommerce-Price-amount {
	font-weight: 600;
	margin-left: auto;
}

/* 24. Blog/Post styles */
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.post-card {
	background: #fff;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.post-card__image {
	display: block;
	height: 200px;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.05);
}

.post-card__body {
	padding: 20px;
}

.post-card__date {
	font-size: 0.78rem;
	color: var(--color-text-muted);
	margin-bottom: 8px;
	display: block;
}

.post-card__title {
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.post-card__title a {
	color: var(--color-text);
}

.post-card__title a:hover {
	color: var(--color-primary);
}

.post-card__excerpt {
	font-size: 0.9rem;
	color: var(--color-text-light);
	margin-bottom: 14px;
	line-height: 1.5;
}

/* Single Post */
.single-post-wrapper {
	padding: 32px 0 60px;
}

.single-post-layout {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.single-post-layout .content-area {
	flex: 1;
	min-width: 0;
}

.single-post__header {
	margin-bottom: 28px;
}

.single-post__image {
	margin-bottom: 20px;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.single-post__meta {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 12px;
}

.single-post__meta .sep {
	margin: 0 8px;
}

.single-post__title {
	font-size: 1.75rem;
	margin-bottom: 12px;
}

.single-post__categories {
	margin-bottom: 16px;
}

.single-post__categories a {
	color: var(--color-primary);
	font-size: 0.85rem;
	font-weight: 600;
}

.single-post__categories a:hover {
	text-decoration: underline;
}

.single-post__content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.single-post__content p {
	margin-bottom: 1.2rem;
}

.single-post__content img {
	border-radius: var(--radius-md);
	margin: 20px 0;
}

.single-post__footer {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border-light);
}

.post-tags a {
	display: inline-block;
	padding: 4px 12px;
	background: var(--color-bg-alt);
	color: var(--color-text-light);
	font-size: 0.8rem;
	border-radius: var(--radius-sm);
	margin: 2px 4px 2px 0;
	transition: background var(--transition), color var(--transition);
}

.post-tags a:hover {
	background: var(--color-primary);
	color: #fff;
}

/* Post Navigation */
.post-navigation {
	margin-top: 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	padding: 16px;
	background: var(--color-bg-alt);
	border-radius: var(--radius-md);
	font-size: 0.9rem;
}

.post-navigation a {
	color: var(--color-text);
	font-weight: 600;
}

.post-navigation a:hover {
	color: var(--color-primary);
}

/* 25. Page styles */
.page-wrapper {
	padding: 32px 0 60px;
}

.page-content {
	max-width: 800px;
}

.entry-header {
	margin-bottom: 24px;
}

.entry-title {
	font-size: 1.75rem;
}

.entry-content {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.entry-content p {
	margin-bottom: 1.2rem;
}

/* Comments */
.comments-area {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border-light);
}

.comments-title {
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.comment {
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border-light);
}

.comment-meta {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.comment-author .fn {
	font-weight: 700;
	color: var(--color-text);
}

.comment-content {
	font-size: 0.9rem;
	color: var(--color-text-light);
}

.reply a {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--color-primary);
}

/* Comment Form */
.comment-respond {
	margin-top: 24px;
}

.comment-reply-title {
	font-size: 1.05rem;
	margin-bottom: 16px;
}

.comment-form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
}

.comment-form .submit {
	background: var(--color-primary);
	color: #fff;
	border: none;
	padding: 10px 28px;
	font-weight: 600;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition);
}

.comment-form .submit:hover {
	background: var(--color-primary-dark);
}

/* 26. Error Page */
.error-page {
	text-align: center;
	padding: 80px 0;
	min-height: 50vh;
	display: flex;
	align-items: center;
}

.error-page__content {
	max-width: 500px;
	margin: 0 auto;
}

.error-page__code {
	font-size: 6rem;
	font-weight: 900;
	color: var(--color-primary);
	line-height: 1;
	display: block;
	margin-bottom: 16px;
}

.error-page__title {
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.error-page__text {
	color: var(--color-text-muted);
	margin-bottom: 28px;
}

.error-page__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.error-page__search {
	max-width: 400px;
	margin: 0 auto;
}

/* 27. Legal Modal */
.legal-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.legal-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

.legal-modal__content {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 500px;
	width: 90%;
	box-shadow: var(--shadow-lg);
	text-align: center;
	z-index: 1;
}

.legal-modal__body p {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.7;
	margin-bottom: 24px;
}

.legal-modal__body .btn {
	width: 100%;
}

/* 27.5 Cart Success Modal */
.cart-success-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0);
	transition: background 0.35s ease;
	pointer-events: none;
	padding: 20px;
}

.cart-success-overlay.visible {
	background: rgba(0,0,0,0.55);
	pointer-events: auto;
}

.cart-success-modal {
	background: #fff;
	border-radius: 20px;
	padding: 0;
	max-width: 420px;
	width: 100%;
	text-align: center;
	box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
	position: relative;
	transform: translateY(30px) scale(0.92);
	opacity: 0;
	transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
}

.cart-success-modal.visible {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.cart-success-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(0,0,0,0.06);
	border: none;
	cursor: pointer;
	padding: 8px;
	color: #888;
	border-radius: 50%;
	transition: all var(--transition);
	line-height: 0;
	z-index: 2;
}

.cart-success-modal__close:hover {
	background: rgba(0,0,0,0.12);
	color: #333;
}

/* Animated check SVG */
.cart-success-modal__check {
	margin: 0 auto 16px;
	width: 72px;
	height: 72px;
}

.cart-success-modal__check svg {
	width: 72px;
	height: 72px;
}

.check-circle {
	stroke: var(--color-primary);
	stroke-width: 2;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	fill: none;
	animation: checkCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.check-path {
	stroke: var(--color-primary);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: checkPath 0.4s 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes checkCircle {
	to { stroke-dashoffset: 0; }
}

@keyframes checkPath {
	to { stroke-dashoffset: 0; }
}

.cart-success-modal__body {
	padding: 44px 36px 16px;
}

.cart-success-modal__title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-primary-dark);
	margin-bottom: 8px;
	letter-spacing: -0.3px;
}

.cart-success-modal__product {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-text);
	margin: 16px 0 0;
	padding: 14px 16px;
	background: var(--color-bg-alt);
	border-radius: 12px;
	text-align: left;
	word-break: break-word;
}

.cart-success-modal__img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
	background: #eee;
}

.cart-success-modal__actions {
	display: flex;
	gap: 10px;
	padding: 8px 36px 36px;
}

.cart-success-modal__actions .btn {
	flex: 1;
	padding: 13px 16px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.cart-success-modal__actions .btn-outline {
	background: var(--color-bg-alt);
	border: 2px solid var(--color-border);
	color: var(--color-text);
}

.cart-success-modal__actions .btn-outline:hover {
	background: var(--color-border);
	border-color: var(--color-text-muted);
}

.cart-success-modal__actions .btn-primary {
	box-shadow: 0 4px 14px rgba(46,125,50,0.3);
}

.cart-success-modal__actions .btn-primary:hover {
	box-shadow: 0 6px 20px rgba(46,125,50,0.4);
	transform: translateY(-1px);
}

/* 28. Responsive */
@media (max-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

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

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

	.store-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.store-info__desc {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.header-search-toggle {
		display: flex;
	}

	.header-main__center {
		display: none;
	}

	.header-main__center.mobile-visible {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		padding: 12px 20px;
		border-bottom: 1px solid var(--color-border-light);
		z-index: 100;
	}

	.header-main__center.mobile-visible .header-search .search-form {
		max-width: 100%;
	}

	.main-navigation {
		display: none;
	}

	.mobile-bottom-nav {
		display: flex;
	}

	.site {
		padding-bottom: 56px;
	}

	.hero-slide {
		min-height: 360px;
	}

	.hero-slide__title {
		font-size: 1.6rem;
	}

	.hero-slide__content {
		padding: 40px 0;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.category-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

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

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.section {
		padding: 40px 0;
	}

	.single-product .product-single-layout > div.product {
		grid-template-columns: 1fr;
	}

	.archive-layout,
	.single-post-layout {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
	}

	.checkout-page-wrapper .woocommerce-checkout {
		flex-direction: column;
	}

	.checkout-page-wrapper .woocommerce-billing-fields,
	.checkout-page-wrapper .woocommerce-shipping-fields {
		padding: 20px;
	}

	.related.products .product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.woocommerce-tabs .tabs li a {
		padding: 12px 16px;
		font-size: 0.85rem;
	}

	.woocommerce-tabs .panel {
		padding: 20px 16px;
	}

	.checkout-page-wrapper #order_review_heading,
	.checkout-page-wrapper #order_review {
		flex-basis: auto;
		width: 100%;
	}

	.checkout-page-wrapper form.checkout_coupon {
		flex-direction: column;
	}

	.checkout-page-wrapper form.checkout_coupon input[type="text"] {
		width: 100%;
		min-width: 0;
	}

	.checkout-page-wrapper .woocommerce-checkout-payment {
		padding: 16px;
	}

	.footer-newsletter__inner {
		flex-direction: column;
		text-align: center;
	}

	.footer-newsletter__form {
		max-width: 100%;
	}

	.cart-page-wrapper table.shop_table {
		font-size: 0.85rem;
	}

	.cart-page-wrapper table.shop_table th,
	.cart-page-wrapper table.shop_table td {
		padding: 10px 8px;
	}

	.cart-page-wrapper table.shop_table .product-thumbnail img {
		width: 60px;
	}

	.promo-bar__text {
		font-size: 0.78rem;
	}

	.hero-slide__badge {
		font-size: 1rem;
		padding: 8px 14px;
	}

	.store-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.store-map__embed {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 1024px) {
	.main-navigation {
		display: none;
	}
}

/* Order received */
.woocommerce-order-received .site-content {
	background: linear-gradient(180deg, #f1f8f2 0, #f8faf8 280px, #fff 100%);
}

.woocommerce-order-received .entry-content > .woocommerce {
	max-width: 980px;
	margin: 0 auto;
	padding: 48px 20px 72px;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
	position: relative;
	margin: 0 0 26px;
	padding: 92px 28px 28px;
	border: 1px solid #c9e5cc;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(24, 61, 29, .1);
	color: var(--color-primary-dark);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 800;
	text-align: center;
}

.woocommerce-order-received .woocommerce-thankyou-order-received::before {
	content: "✓";
	position: absolute;
	top: 25px;
	left: 50%;
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 0 9px var(--color-primary-light);
	color: #fff;
	font-size: 1.7rem;
	transform: translateX(-50%);
}

.woocommerce-order-received .woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.woocommerce-order-received .woocommerce-order-overview li {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 5px;
	margin: 0;
	padding: 16px;
	border: 1px solid var(--color-border-light);
	border-radius: 10px;
	background: #fff;
	color: var(--color-text-muted);
	font-size: .72rem;
	text-transform: uppercase;
}

.woocommerce-order-received .woocommerce-order-overview strong {
	color: var(--color-text);
	font-size: .9rem;
	text-transform: none;
	word-break: break-word;
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
	margin-top: 20px;
	padding: 24px;
	border: 1px solid var(--color-border-light);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(24, 61, 29, .06);
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
	margin-bottom: 16px;
	font-size: 1.2rem;
}

.woocommerce-order-received .woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
	padding: 12px 8px;
	border-bottom: 1px solid var(--color-border-light);
}

@media (max-width: 700px) {
	.woocommerce-order-received .woocommerce-order-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.category-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.category-card__image {
		height: 130px;
	}

	.benefits-grid {
		grid-template-columns: 1fr 1fr;
	}

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

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

	.hero-slide__title {
		font-size: 1.3rem;
	}

	.hero-slide__text {
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.25rem;
	}

	.mobile-navigation {
		width: 260px;
	}

	.newsletter-form__inner {
		flex-direction: column;
	}

	.cart-page-wrapper table.shop_table .product-thumbnail {
		display: none;
	}

	.cart-page-wrapper .cart_totals {
		max-width: 100%;
	}
}

/* 29. WooCommerce commerce experience */
/* Product */
.single-product .product-single-layout > div.product {
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 56px;
}

.single-product .woocommerce-product-gallery {
	padding: 18px;
	border: 1px solid var(--color-border-light);
	border-radius: 8px;
	background: #fff;
}

.single-product div.product .summary {
	align-self: start;
	padding: 28px;
	border: 1px solid var(--color-border-light);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(24, 45, 27, 0.07);
}

.single-product .product_title {
	margin-bottom: 10px;
	font-size: 1.9rem;
	line-height: 1.2;
}

.single-product .woocommerce-product-rating {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-border-light);
}

.single-product .price {
	margin: 18px 0;
	font-size: 1.8rem;
}

.single-product .product-summary-more {
	display: inline-block;
	margin-top: 8px;
	color: var(--color-primary);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-product .stock.in-stock {
	display: inline-flex;
	align-items: center;
	margin: 0 0 14px;
	padding: 6px 10px;
	border-radius: 4px;
	background: #eaf6ec;
	color: #216b2a;
	font-size: 0.82rem;
	font-weight: 700;
}

.single-product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 22px 0 0;
	padding: 20px 0;
	border-top: 1px solid var(--color-border-light);
	border-bottom: 1px solid var(--color-border-light);
}

.single-product form.cart .single_add_to_cart_button {
	flex: 1;
	min-height: 48px;
}

.single-product .product_meta {
	margin-top: 18px;
	padding-top: 0;
	border-top: 0;
	line-height: 1.7;
}

.single-product .product-delivery-info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 18px;
	padding: 0;
	border-radius: 8px;
	background: #f7faf7;
}

.single-product .product-delivery-info .delivery-item {
	min-width: 0;
	padding: 12px 14px;
	border-bottom: 1px solid var(--color-border-light);
}

.single-product .product-delivery-info .delivery-item:last-child {
	border-bottom: 0;
}

.woocommerce-tabs {
	margin-top: 24px;
	padding-top: 0;
	border: 1px solid var(--color-border-light);
	border-radius: 8px;
}

.woocommerce-tabs .tabs {
	padding: 0 18px;
	border-bottom-width: 1px;
	background: #fff;
}

.woocommerce-tabs .tabs li a {
	padding: 17px 20px;
	font-size: 0.9rem;
}

.woocommerce-tabs .panel {
	max-width: 900px;
	padding: 32px 38px 38px;
	color: var(--color-text);
}

.woocommerce-tabs .panel h2 {
	font-size: 1.35rem;
}

/* Cart */
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content {
	max-width: none;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
	line-height: 1.5;
}

.cart-page-wrapper {
	background: #f7f9f7;
}

.cart-page-wrapper .cart-layout {
	display: block;
	max-width: 1080px;
	margin: 0 auto;
}

.cart-page-wrapper .woocommerce-cart-form {
	min-width: 0;
	padding: 0 16px 12px;
	border: 1px solid var(--color-border-light);
	border-radius: 8px;
	background: #fff;
}

.cart-page-wrapper .woocommerce-cart-form__contents {
	margin-bottom: 0;
}

.cart-page-wrapper table.shop_table {
	border: 0;
	table-layout: fixed;
}

.cart-page-wrapper table.shop_table thead {
	display: none;
}

.cart-page-wrapper table.shop_table .product-remove {
	width: 36px;
}

.cart-page-wrapper table.shop_table .product-thumbnail {
	width: 64px;
}

.cart-page-wrapper table.shop_table .product-price,
.cart-page-wrapper table.shop_table .product-subtotal {
	width: 78px;
}

.cart-page-wrapper table.shop_table .product-quantity {
	width: 82px;
}

.cart-page-wrapper table.shop_table th {
	padding-top: 12px;
	background: #fff;
	color: var(--color-text-muted);
	font-size: 0.75rem;
	text-transform: uppercase;
}

.cart-page-wrapper table.shop_table td {
	padding-top: 12px;
	padding-bottom: 12px;
}

.cart-page-wrapper table.shop_table .product-thumbnail img {
	width: 52px;
	border: 1px solid var(--color-border-light);
	border-radius: 6px;
}

.cart-page-wrapper table.shop_table .product-name a {
	color: var(--color-text);
	font-size: 0.95rem;
	font-weight: 700;
}

.cart-page-wrapper .product-remove a {
	display: inline-grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: #fff0f0;
	text-decoration: none;
}

.cart-page-wrapper .cart-collaterals {
	clear: both;
	width: 100%;
	margin-top: 12px;
}

.cart-page-wrapper .cart-collaterals::before,
.cart-page-wrapper .cart-collaterals::after {
	display: none;
}

.cart-page-wrapper .cart_totals {
	float: none;
	width: 100%;
	position: static;
	max-width: none;
	margin: 0;
	padding: 16px 20px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(24, 45, 27, 0.07);
}

.cart-page-wrapper .cart_totals h2 {
	margin-bottom: 8px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border-light);
	font-size: 1.2rem;
}

.cart-page-wrapper .coupon input.input-text {
	min-height: 42px;
	width: min(180px, 100%);
	padding: 0 12px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
}

.cart-page-wrapper td.actions .coupon {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cart-page-wrapper td.actions > button[name="update_cart"] {
	float: right;
}

.cart-page-wrapper button[name="update_cart"],
.cart-page-wrapper .coupon button {
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: #fff;
	font-weight: 700;
}

/* Checkout */
.checkout-page-wrapper .woocommerce {
	max-width: none;
}

.checkout-page-wrapper .woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	align-items: start;
	gap: 0 28px;
}

.checkout-page-wrapper #customer_details {
	grid-column: 1;
	grid-row: 1;
}

.checkout-page-wrapper #order_review_heading {
	display: none;
}

.checkout-page-wrapper #order_review {
	grid-column: 2;
	grid-row: 1;
	width: 100%;
}

.checkout-page-wrapper .checkout-mode {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
}

.checkout-page-wrapper .checkout-mode legend {
	grid-column: 1 / -1;
	margin-bottom: 2px;
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 700;
}

.checkout-page-wrapper .checkout-mode__option {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 66px;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
}

.checkout-page-wrapper .checkout-mode__option.is-selected {
	border-color: var(--color-primary);
	background: #f3faf4;
	box-shadow: 0 0 0 2px var(--color-primary-light);
}

.checkout-page-wrapper .checkout-mode__option input {
	width: 18px;
	height: 18px;
	accent-color: var(--color-primary);
}

.checkout-page-wrapper .checkout-mode__option span {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.checkout-page-wrapper .checkout-mode__option strong {
	font-size: 0.9rem;
}

.checkout-page-wrapper .checkout-mode__option small {
	color: var(--color-text-muted);
	font-size: 0.78rem;
}

.checkout-page-wrapper .woocommerce-checkout:has(.checkout-mode) #customer_details,
.checkout-page-wrapper .woocommerce-checkout:has(.checkout-mode) #order_review {
	grid-row: 2;
}

.checkout-page-wrapper .woocommerce-account-fields > .create-account {
	display: none;
}

body.checkout-pickup-selected #billing_company_field,
body.checkout-pickup-selected #billing_country_field,
body.checkout-pickup-selected #billing_address_1_field,
body.checkout-pickup-selected #billing_address_2_field,
body.checkout-pickup-selected #billing_city_field,
body.checkout-pickup-selected #billing_state_field,
body.checkout-pickup-selected #billing_postcode_field {
	display: none !important;
}

.checkout-page-wrapper .woocommerce-checkout-review-order-table,
.checkout-page-wrapper .woocommerce-checkout-review-order-table tbody,
.checkout-page-wrapper .woocommerce-checkout-review-order-table tfoot {
	display: block;
}

.checkout-page-wrapper .woocommerce-checkout-review-order-table tr {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.checkout-page-wrapper .woocommerce-checkout-review-order-table th,
.checkout-page-wrapper .woocommerce-checkout-review-order-table td {
	display: block;
	width: auto;
}

.checkout-page-wrapper .woocommerce-checkout-review-order-table .shipping {
	display: grid;
	grid-template-columns: 1fr;
	padding: 12px 20px;
}

.checkout-page-wrapper .woocommerce-checkout-review-order-table .shipping th,
.checkout-page-wrapper .woocommerce-checkout-review-order-table .shipping td {
	grid-column: 1;
	width: 100%;
	padding: 0;
}

.checkout-page-wrapper .woocommerce-checkout-review-order-table .shipping th {
	margin-bottom: 8px;
}

.checkout-page-wrapper .woocommerce-billing-fields,
.checkout-page-wrapper .woocommerce-shipping-fields,
.woocommerce-checkout-review-order-table,
.checkout-page-wrapper .woocommerce-checkout-payment {
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(24, 45, 27, 0.06);
}

.checkout-page-wrapper .woocommerce-billing-fields,
.checkout-page-wrapper .woocommerce-shipping-fields {
	padding: 26px 28px 20px;
}

.checkout-page-wrapper .form-row label {
	text-transform: none;
}

.checkout-page-wrapper .form-row input,
.checkout-page-wrapper .form-row select,
.checkout-page-wrapper .form-row textarea,
.checkout-page-wrapper .select2-container .select2-selection--single {
	border-width: 1px;
	border-radius: 6px;
}

.checkout-page-wrapper #shipping_method li,
.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li {
	padding: 13px 12px;
	border: 1px solid var(--color-border-light);
	border-radius: 6px;
	background: #f8faf8;
}

.checkout-page-wrapper #shipping_method li + li,
.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li + li {
	margin-top: 8px;
}

.checkout-page-wrapper .place-order .button {
	border-radius: 6px;
	background: var(--color-primary);
	box-shadow: none;
}

.checkout-page-wrapper .place-order .button:hover {
	background: var(--color-primary-dark);
	box-shadow: none;
}

@media (max-width: 900px) {
	.single-product .product-single-layout > div.product,
	.cart-page-wrapper .cart-layout,
	.checkout-page-wrapper .woocommerce-checkout {
		grid-template-columns: 1fr;
	}

	.single-product .product-single-layout > div.product {
		gap: 24px;
	}

	.checkout-page-wrapper #customer_details,
	.checkout-page-wrapper #order_review_heading,
	.checkout-page-wrapper #order_review {
		grid-column: 1;
		grid-row: auto;
	}

	.checkout-page-wrapper .checkout-mode {
		grid-column: 1;
		grid-row: auto;
	}

	.checkout-page-wrapper #order_review_heading {
		margin-top: 10px;
	}

	.cart-page-wrapper .cart_totals {
		position: static;
	}

}

@media (max-width: 600px) {
	.checkout-page-wrapper .checkout-mode {
		grid-template-columns: 1fr;
	}
	.single-product div.product .summary {
		padding: 20px;
	}

	.single-product .product_title {
		font-size: 1.55rem;
	}

	.single-product form.cart {
		align-items: stretch;
		flex-direction: column;
	}

	.single-product form.cart .quantity {
		align-self: flex-start;
	}

	.woocommerce-tabs .tabs {
		padding: 0 6px;
	}

	.woocommerce-tabs .panel {
		padding: 24px 18px 28px;
	}

	.cart-page-wrapper .woocommerce-cart-form {
		padding: 4px 12px 16px;
	}

	.cart-page-wrapper table.shop_table .product-thumbnail {
		display: none;
	}

	.cart-page-wrapper table.shop_table {
		table-layout: auto;
	}

	.cart-page-wrapper table.shop_table thead {
		display: none;
	}

	.cart-page-wrapper table.shop_table tbody,
	.cart-page-wrapper table.shop_table tr.cart_item {
		display: block;
	}

	.cart-page-wrapper table.shop_table tr.cart_item {
		position: relative;
		padding: 18px 0 18px 42px;
		border-bottom: 1px solid var(--color-border-light);
	}

	.cart-page-wrapper table.shop_table tr.cart_item td {
		display: block;
		width: auto;
		padding: 4px 0;
		border: 0;
	}

	.cart-page-wrapper table.shop_table tr.cart_item .product-remove {
		position: absolute;
		top: 18px;
		left: 0;
	}

	.cart-page-wrapper table.shop_table tr.cart_item .product-name {
		padding-right: 12px;
	}

	.cart-page-wrapper table.shop_table tr.cart_item .product-price {
		display: none;
	}

	.cart-page-wrapper table.shop_table tr.cart_item .product-quantity,
	.cart-page-wrapper table.shop_table tr.cart_item .product-subtotal {
		display: inline-block;
		margin-top: 8px;
		margin-right: 14px;
		vertical-align: middle;
	}

	.cart-page-wrapper table.shop_table tr.cart_item .product-subtotal {
		font-weight: 700;
	}

	.cart-page-wrapper td.actions .coupon,
	.cart-page-wrapper td.actions > button[name="update_cart"] {
		display: flex;
		float: none;
		width: 100%;
	}

	.cart-page-wrapper td.actions > button[name="update_cart"] {
		align-items: center;
		justify-content: center;
		margin-top: 8px;
	}

	.checkout-page-wrapper .woocommerce-billing-fields,
	.checkout-page-wrapper .woocommerce-shipping-fields {
		padding: 20px 18px 14px;
	}
}

/* Header mini cart */
.header-cart-wrap {
	position: relative;
}

.header-mini-cart {
	position: absolute;
	top: calc(100% + 14px);
	right: 0;
	z-index: 1100;
	width: min(370px, calc(100vw - 32px));
	padding: 16px;
	border: 1px solid var(--color-border-light);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(22, 35, 24, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.header-cart-wrap.is-open .header-mini-cart {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-mini-cart::before {
	content: "";
	position: absolute;
	top: -7px;
	right: 14px;
	width: 12px;
	height: 12px;
	border-top: 1px solid var(--color-border-light);
	border-left: 1px solid var(--color-border-light);
	background: #fff;
	transform: rotate(45deg);
}

.header-mini-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border-light);
}

.header-mini-cart__close {
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	color: var(--color-text-muted);
	font-size: 1.4rem;
	cursor: pointer;
}

.header-mini-cart .woocommerce-mini-cart {
	max-height: 330px;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	list-style: none;
}

.header-mini-cart .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px;
	min-height: 68px;
	padding: 8px 28px 8px 0;
	border-bottom: 1px solid var(--color-border-light);
}

.header-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
	color: var(--color-text);
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.35;
}

.header-mini-cart .woocommerce-mini-cart-item img {
	grid-row: 1 / 3;
	width: 54px;
	height: 54px;
	object-fit: contain;
	border: 1px solid var(--color-border-light);
	border-radius: 6px;
}

.header-mini-cart .woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 8px;
	right: 0;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	background: #fff0f0;
	color: var(--color-danger);
	font-size: 1rem;
}

.header-mini-cart .quantity {
	grid-column: 2;
	color: var(--color-text-muted);
	font-size: 0.8rem;
}

.header-mini-cart .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	margin: 12px 0;
	font-size: 0.92rem;
}

.header-mini-cart .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0;
}

.header-mini-cart .woocommerce-mini-cart__buttons .button {
	padding: 10px 12px;
	border: 1px solid var(--color-primary);
	border-radius: 6px;
	background: #fff;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
}

.header-mini-cart .woocommerce-mini-cart__buttons .checkout {
	background: var(--color-primary);
	color: #fff;
}

.header-mini-cart .woocommerce-mini-cart__empty-message {
	margin: 8px 0;
	color: var(--color-text-muted);
	font-size: 0.88rem;
	text-align: center;
}

@media (max-width: 600px) {
	.header-mini-cart {
		position: fixed;
		top: 110px;
		right: 12px;
		left: 12px;
		width: auto;
	}

	.header-mini-cart::before {
		display: none;
	}
}

/* Shipping and payment choices */
.cart-page-wrapper #shipping_method,
.checkout-page-wrapper #shipping_method {
	display: grid;
	gap: 10px;
}

.cart-page-wrapper #shipping_method li,
.checkout-page-wrapper #shipping_method li {
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
}

.cart-page-wrapper #shipping_method input,
.checkout-page-wrapper #shipping_method input {
	position: absolute;
	top: 50%;
	left: 16px;
	z-index: 1;
	margin: 0;
	transform: translateY(-50%);
}

.cart-page-wrapper #shipping_method label,
.checkout-page-wrapper #shipping_method label {
	display: block;
	cursor: pointer;
	text-align: left;
}

.shipping-option-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 92px;
	padding: 14px 14px 14px 48px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input.shipping_method:checked + label .shipping-option-card {
	border-color: var(--color-primary);
	background: #f3faf4;
	box-shadow: 0 0 0 2px var(--color-primary-light);
}

.shipping-option-card__icon {
	width: 44px;
	height: 44px;
}

.shipping-option-card__logo {
	width: 56px;
	height: 32px;
	object-fit: contain;
}

.shipping-option-card__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.shipping-option-card__content strong {
	color: var(--color-text);
	font-size: 0.9rem;
	line-height: 1.35;
}

.shipping-option-card__content span,
.shipping-option-card__content small {
	color: var(--color-text-muted);
	font-size: 0.78rem;
	line-height: 1.4;
}

.shipping-option-card__content small {
	color: var(--color-primary-dark);
	font-weight: 700;
}

.checkout-payment-heading {
	margin: 22px 0 10px;
	font-size: 1rem;
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li {
	border-color: var(--color-border);
	background: #fff;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.checkout-page-wrapper .woocommerce-checkout-payment .payment_methods li:has(input:checked) {
	border-color: var(--color-primary);
	background: #f3faf4;
}

.pickup-order-confirmation {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 24px 0;
	padding: 20px;
	border: 1px solid #b8dfbd;
	border-left: 5px solid var(--color-primary);
	border-radius: 8px;
	background: #f3faf4;
}

.pickup-order-confirmation img {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
}

.pickup-order-confirmation h2 {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.pickup-order-confirmation p {
	margin: 3px 0;
}

@media (max-width: 600px) {
	.shipping-option-card {
		grid-template-columns: 48px minmax(0, 1fr);
		padding: 12px 12px 12px 42px;
	}

	.pickup-order-confirmation {
		align-items: center;
		flex-direction: column;
	}
}
