/**
 * ShopMart WooCommerce CSS — Synced with Pencil design
 * Design tokens:
 *   Primary green:   #2B6E3D
 *   Primary dark:    #1C2E22
 *   Accent orange:   #D97B2A
 *   Sale red:        #D93C15
 *   Text:            #1A1A1A
 *   Text muted:      #777777
 *   Border:          #EEEEEE
 *   Surface:         #F7F7F7
 */

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────────────────────── */

/* Top Utility Bar */
.sm-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	height: 32px;
	width: 100%;
	box-sizing: border-box;
}
.sm-topbar-inner.sm-topbar-centered {
	justify-content: center;
}
.sm-topbar-left {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.3px;
}
.sm-topbar-dim { color: rgba(255,255,255,0.6); }
.sm-topbar-sep { color: rgba(255,255,255,0.25); }
.sm-topbar-orange { color: #D97B2A; font-weight: 700; }
.sm-topbar-right {
	display: flex;
	align-items: center;
	gap: 18px;
}
.sm-topbar-right a {
	color: rgba(255,255,255,0.6);
	font-size: 11px;
	font-weight: 500;
	font-family: 'DM Sans', sans-serif;
	text-decoration: none;
	letter-spacing: 0.3px;
}
.sm-topbar-right a:hover { color: #fff; }

/* Main Header Row */
.sm-main-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	height: 95px;
	gap: 24px;
}

/* Logo */
.sm-logo-link { text-decoration: none; }
.sm-logo-text {
	font-family: 'DM Serif Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: #1C2E22;
	white-space: nowrap;
}

/* Search Form */
.sm-search-form {
	display: flex;
	align-items: stretch;
	width: 560px;
	height: 42px;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}
.sm-search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	border: none;
	outline: none;
	padding: 0 14px;
	font-size: 13px;
	color: #1A1A1A;
	background: #fff;
	font-family: 'DM Sans', sans-serif;
}
.sm-search-form input[type="search"]::placeholder { color: #9E9E9E; }
.sm-search-cat {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 14px;
	border-left: 1px solid #E0E0E0;
	font-size: 11px;
	font-weight: 500;
	color: #777;
	white-space: nowrap;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer;
	background: #fff;
	flex-shrink: 0;
}
.sm-search-btn {
	width: 46px;
	flex-shrink: 0;
	background: #2B6E3D;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s;
}
.sm-search-btn:hover { background: #1C5A30; }

/* Header Right */
.sm-header-right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}
.sm-header-account {
	display: flex;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	color: #444;
	font-size: 12px;
	font-weight: 500;
	font-family: 'DM Sans', sans-serif;
	white-space: nowrap;
}
.sm-header-account:hover { color: #2B6E3D; }
.sm-header-account:hover svg { stroke: #2B6E3D; }
.sm-header-icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #444;
	flex-shrink: 0;
}
.sm-header-icon-btn svg { display: block; }
.sm-icon-badge {
	position: absolute;
	top: -4px;
	right: -6px;
	background: #2B6E3D;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'DM Sans', sans-serif;
}
.sm-header-cart-btn { gap: 10px; }
.sm-cart-amount {
	font-size: 13px;
	font-weight: 700;
	color: #1A1A1A;
	font-family: 'DM Sans', sans-serif;
}

/* Navigation Bar */
.sm-nav-inner {
	display: flex;
	align-items: center;
	padding: 0 40px;
	height: 50px;
	gap: 0;
}

/* Browse Button wrapper */
.sm-browse-wrap {
	position: relative;
	flex-shrink: 0;
}

/* Categories Dropdown */
.sm-cat-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-top: 3px solid #2B6E3D;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	min-width: 240px;
	padding: 8px 0;
}
.sm-cat-dropdown--open {
	display: block;
	animation: smDropIn 0.15s ease;
}
@keyframes smDropIn {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.sm-cat-dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 18px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #1A1A1A;
	text-decoration: none;
	transition: background 0.12s, color 0.12s;
}
.sm-cat-dropdown-item:hover {
	background: #F3FAF5;
	color: #2B6E3D;
}
.sm-cat-dropdown-item svg { flex-shrink: 0; }
.sm-cat-dropdown-all {
	display: block;
	padding: 10px 18px;
	margin-top: 4px;
	border-top: 1px solid #EEEEEE;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #2B6E3D;
	text-decoration: none;
	letter-spacing: 0.3px;
	transition: background 0.12s;
}
.sm-cat-dropdown-all:hover { background: #F3FAF5; }

/* Browse Button */
.sm-browse-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #2B6E3D;
	color: #fff;
	border: none;
	cursor: pointer;
	text-decoration: none;
	padding: 0 18px;
	height: 50px;
	font-size: 12px;
	font-weight: 700;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: 0.3px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.15s;
}
.sm-browse-btn:hover { background: #1C5A30; color: #fff; }
.sm-browse-chevron { transition: transform 0.2s ease; }
.sm-browse-btn[aria-expanded="true"] .sm-browse-chevron { transform: rotate(180deg); }

/* Nav Links */
.sm-nav-links {
	display: flex;
	align-items: center;
	margin-left: 4px;
}
.sm-nav-item {
	display: flex;
	align-items: center;
	height: 50px;
	padding: 0 16px;
	font-size: 13px;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: 0.3px;
	color: #1A1A1A;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.15s, border-color 0.15s;
}
.sm-nav-item:hover { color: #2B6E3D; border-bottom-color: #2B6E3D; }
.sm-nav-active { color: #2B6E3D !important; border-bottom-color: #2B6E3D !important; }

/* Benefits Strip */
.sm-benefits-strip {
	display: flex;
	align-items: stretch;
	padding: 0 40px;
}
.sm-benefit-col {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex: 1;
	padding: 14px 0;
}
.sm-benefit-divider {
	border-left: 1px solid #EEEEEE;
}
.sm-benefit-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.sm-benefit-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #1A1A1A;
	letter-spacing: 0.3px;
}
.sm-benefit-desc {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: #777777;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FULL WIDTH HOMEPAGE
───────────────────────────────────────────────────────────────────────────── */

.entry-content.wp-block-post-content {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT CARDS
───────────────────────────────────────────────────────────────────────────── */

.wc-block-grid__product,
.wp-block-woocommerce-product-collection .wc-block-grid__product,
li.product,
ul.products li.product {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.15s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.wc-block-grid__product:hover,
li.product:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
	transform: translateY(-3px);
}

.wc-block-grid__product-image a,
.wc-block-grid__product-image,
li.product a img,
li.product img.attachment-woocommerce_thumbnail {
	display: block;
	width: 100%;
}

.wc-block-grid__product-image img,
li.product a img.wp-post-image,
li.product img.attachment-woocommerce_thumbnail {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	background: #F7F7F7;
	border-radius: 0;
}

.wp-block-woocommerce-product-collection .woocommerce-product-gallery__image img,
.wc-block-components-product-image img,
.wc-block-components-product-image__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	background: #F7F7F7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT CARD INFO
───────────────────────────────────────────────────────────────────────────── */

.shopmart-card-body,
.wc-block-grid__product-body,
li.product .woocommerce-loop-product__body {
	padding: 12px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT TITLE
───────────────────────────────────────────────────────────────────────────── */

.wc-block-grid__product-title,
.woocommerce-loop-product__title,
li.product .woocommerce-loop-product__title,
.wp-block-post-title a {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #1A1A1A !important;
	margin: 0 0 4px !important;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
}

.wp-block-post-title a {
	text-decoration: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRICES
───────────────────────────────────────────────────────────────────────────── */

.wc-block-grid__product-price,
.wc-block-components-product-price,
.price,
li.product .price,
.wc-block-components-product-price__value {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #2B6E3D !important;
	margin: 0 !important;
}

.wc-block-grid__product-price ins,
.price ins,
li.product .price ins,
.wc-block-components-product-price__value {
	text-decoration: none;
	color: #2B6E3D !important;
}

.wc-block-grid__product-price del,
.price del,
li.product .price del {
	color: #999999 !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	margin-right: 4px;
	opacity: 0.7;
}

.wc-block-grid__product-price ins .woocommerce-Price-amount,
.price ins .woocommerce-Price-amount {
	color: #2B6E3D !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SALE BADGE
───────────────────────────────────────────────────────────────────────────── */

.woocommerce-badge--sale,
.onsale,
.wc-block-grid__product-onsale,
.wc-block-components-product-sale-badge,
.wc-block-components-product-sale-badge__inner {
	background-color: #D97B2A !important;
	color: #FFFFFF !important;
	border-radius: 20px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	padding: 4px 10px !important;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	border: none !important;
	min-height: unset !important;
	line-height: 1.4;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAR RATING
───────────────────────────────────────────────────────────────────────────── */

.star-rating,
.wc-block-components-product-rating__stars,
.wc-block-components-review-list-item__rating {
	color: #D97B2A !important;
	font-size: 12px;
}

.star-rating span::before {
	color: #D97B2A !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ADD TO CART BUTTON
───────────────────────────────────────────────────────────────────────────── */

.wc-block-grid__product .wp-block-button__link,
.wc-block-components-product-add-to-cart button,
.wc-block-components-product-add-to-cart .wp-block-button__link,
.add_to_cart_button,
.single_add_to_cart_button,
button.wc-block-components-button,
.woocommerce button.button,
.woocommerce a.button,
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button {
	background-color: #2B6E3D !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 4px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	padding: 10px 16px !important;
	cursor: pointer;
	transition: background-color 0.2s ease !important;
	text-decoration: none;
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

.wc-block-grid__product .wp-block-button__link:hover,
.wc-block-components-product-add-to-cart button:hover,
.add_to_cart_button:hover,
.single_add_to_cart_button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover {
	background-color: #1C5A30 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT GALLERY (Single Product)
───────────────────────────────────────────────────────────────────────────── */

.woocommerce-product-gallery__image img {
	border-radius: 8px;
	border: 1px solid #EEEEEE;
}

.flex-control-thumbs li img {
	border: 2px solid transparent;
	border-radius: 4px;
	transition: border-color 0.2s ease;
	cursor: pointer;
}

.flex-control-thumbs li img.flex-active {
	border-color: #2B6E3D;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SINGLE PRODUCT PAGE
───────────────────────────────────────────────────────────────────────────── */

.woocommerce div.product .product_title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 28px !important;
	color: #1A1A1A !important;
	line-height: 1.2;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #2B6E3D !important;
	font-size: 24px !important;
	font-weight: 700 !important;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: #999999 !important;
	font-size: 18px !important;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	color: #D93C15 !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 14px;
	color: #555555;
	line-height: 1.7;
}

.woocommerce .quantity .qty,
.wc-block-components-quantity-selector input {
	border: 1px solid #EEEEEE !important;
	border-radius: 4px !important;
	width: 64px !important;
	height: 44px !important;
	text-align: center;
	font-size: 14px;
	font-family: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SIDEBAR FILTERS
───────────────────────────────────────────────────────────────────────────── */

.wc-block-components-price-slider__range-input-progress {
	background: #2B6E3D !important;
}

.wc-block-components-price-slider__range-input::-webkit-slider-thumb {
	background: #2B6E3D !important;
	border-color: #2B6E3D !important;
}

.wc-block-components-filter-reset-button,
.wc-block-components-filter-submit-button {
	background: #2B6E3D !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 4px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
}

.wc-block-components-checkbox input[type="checkbox"]:checked {
	background: #2B6E3D !important;
	border-color: #2B6E3D !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT GRID LAYOUT
───────────────────────────────────────────────────────────────────────────── */

.wp-block-woocommerce-product-collection ul.wp-block-post-template,
.wp-block-woocommerce-product-collection .wp-block-post-template {
	display: grid;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CART PAGE
───────────────────────────────────────────────────────────────────────────── */

.sm-cart-content {
	background: #FFFFFF;
	padding: 48px 48px 64px;
	max-width: 1344px;
	margin: 0 auto;
	box-sizing: border-box;
	width: 100%;
}

/* Desktop 2-column layout */
.wc-block-cart.is-large {
	display: flex !important;
	gap: 32px;
	align-items: flex-start;
}
.wc-block-cart.is-large .wc-block-cart__main-area {
	flex: 1 1 0;
	min-width: 0;
}
.wc-block-cart.is-large .wc-block-cart__sidebar-area {
	width: 320px;
	flex-shrink: 0;
}

/* Cart items table */
.wc-block-cart-items {
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 0;
}
.wc-block-cart-items__header {
	background: #F7F7F7 !important;
	padding: 10px 16px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	color: #777 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	border-bottom: 1px solid #EEEEEE;
}
.wc-block-cart-item__row {
	padding: 16px !important;
	border-bottom: 1px solid #EEEEEE;
	align-items: center !important;
	gap: 16px;
}
.wc-block-cart-item__row:last-child { border-bottom: none; }

/* Product image */
.wc-block-cart-item__image,
.wc-block-cart-item__image a { display: block; }
.wc-block-cart-item__image img {
	width: 80px !important;
	height: 80px !important;
	object-fit: cover !important;
	border-radius: 4px !important;
	border: 1px solid #EEEEEE !important;
}

/* Product name */
.wc-block-components-product-name,
.wc-block-components-product-name a {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #1A1A1A !important;
	text-decoration: none !important;
	line-height: 1.4 !important;
}
.wc-block-components-product-name a:hover { color: #2B6E3D !important; }

/* Variation / meta */
.wc-block-components-product-metadata .wc-block-components-product-metadata__value {
	font-size: 12px !important;
	color: #777 !important;
}

/* Cart item prices */
.wc-block-cart-item__prices .wc-block-components-product-price {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #1A1A1A !important;
}
.wc-block-cart-item__prices del,
.wc-block-components-product-price del {
	color: #999 !important; font-weight: 400 !important;
}
.wc-block-cart-item__prices ins,
.wc-block-components-product-price ins {
	color: #D93C15 !important; font-weight: 600 !important; text-decoration: none !important;
}

/* Quantity stepper */
.wc-block-components-quantity-stepper {
	border: 1px solid #EEEEEE !important;
	border-radius: 4px !important;
	overflow: hidden !important;
	display: inline-flex !important;
	align-items: center !important;
}
.wc-block-components-quantity-stepper__decrease,
.wc-block-components-quantity-stepper__increase {
	background: #F7F7F7 !important;
	border: none !important;
	width: 32px !important;
	height: 36px !important;
	cursor: pointer !important;
	font-size: 18px !important;
	color: #444 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.15s, color 0.15s !important;
	padding: 0 !important;
}
.wc-block-components-quantity-stepper__decrease:hover,
.wc-block-components-quantity-stepper__increase:hover {
	background: #E8F5EE !important; color: #2B6E3D !important;
}
.wc-block-components-quantity-stepper input[type="number"] {
	width: 44px !important;
	text-align: center !important;
	border: none !important;
	border-left: 1px solid #EEEEEE !important;
	border-right: 1px solid #EEEEEE !important;
	border-radius: 0 !important;
	padding: 0 !important;
	height: 36px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	box-shadow: none !important;
}
.wc-block-components-quantity-stepper input[type="number"]:focus {
	outline: none !important; box-shadow: none !important;
}

/* Remove link */
.wc-block-cart-item__remove-link {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 12px !important;
	color: #999 !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	margin-top: 8px !important;
	transition: color 0.15s !important;
}
.wc-block-cart-item__remove-link:hover { color: #D93C15 !important; }

/* Cart totals sidebar */
.wc-block-cart__sidebar-area .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart__sidebar-area .wc-block-components-totals-wrapper {
	background: #F7F7F7 !important;
	border: 1px solid #EEEEEE !important;
	border-radius: 8px !important;
	padding: 20px !important;
}
.wc-block-cart__sidebar-area .wc-block-cart-order-summary-heading-block h2 {
	font-family: 'DM Serif Display', serif !important;
	font-size: 18px !important;
	color: #1A1A1A !important;
	margin: 0 0 16px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid #EEEEEE !important;
}
.wc-block-components-totals-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 8px 0 !important;
	border-bottom: 1px solid #EEEEEE !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	color: #444 !important;
}
.wc-block-components-totals-item:last-child { border-bottom: none !important; }
.wc-block-components-totals-footer-item {
	padding: 12px 0 0 !important;
	border-top: 2px solid #EEEEEE !important;
	margin-top: 4px !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	font-family: 'DM Serif Display', serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1A1A1A !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #2B6E3D !important;
}

/* Coupon row */
.wc-block-components-totals-coupon details {
	margin: 8px 0 !important;
}
.wc-block-components-totals-coupon input {
	border: 1px solid #EEEEEE !important;
	border-radius: 4px !important;
}

/* Proceed to checkout button */
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button {
	width: 100% !important;
	display: block !important;
	padding: 14px 24px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.6px !important;
	text-transform: uppercase !important;
	margin-top: 16px !important;
	border-radius: 4px !important;
}

/* Empty cart */
.wc-block-cart__empty-cart__bock {
	text-align: center !important;
	padding: 64px 24px !important;
}
.wc-block-cart__empty-cart__bock h2 {
	font-family: 'DM Serif Display', serif !important;
	font-size: 24px !important;
	color: #1A1A1A !important;
	margin-bottom: 8px !important;
}
.wc-block-cart__empty-cart__bock p {
	color: #777 !important; font-size: 14px !important;
}
.wc-block-cart__empty-cart__bock .wc-block-components-button {
	margin-top: 16px !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CHECKOUT PAGE
───────────────────────────────────────────────────────────────────────────── */

.sm-checkout-content {
	background: #FFFFFF;
	padding: 48px 48px 64px;
	max-width: 1344px;
	margin: 0 auto;
	box-sizing: border-box;
	width: 100%;
}

/* Desktop 2-col layout */
.wc-block-checkout.is-large {
	display: flex !important;
	gap: 32px;
	align-items: flex-start;
}
.wc-block-checkout.is-large .wc-block-checkout__main-area {
	flex: 1 1 0;
	min-width: 0;
}
.wc-block-checkout.is-large .wc-block-checkout__sidebar-area {
	width: 340px;
	flex-shrink: 0;
	position: sticky;
	top: 16px;
}

/* Checkout steps */
.wc-block-components-checkout-step {
	background: #FFFFFF !important;
	border: 1px solid #EEEEEE !important;
	border-radius: 8px !important;
	padding: 24px !important;
	margin-bottom: 16px !important;
}
.wc-block-components-checkout-step__heading {
	font-family: 'DM Serif Display', serif !important;
	font-size: 18px !important;
	color: #1A1A1A !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}
.wc-block-components-checkout-step__heading-content {
	font-family: 'DM Serif Display', serif !important;
	font-size: 18px !important;
}
.wc-block-components-checkout-step__description {
	font-size: 13px !important;
	color: #777 !important;
	margin-top: 4px !important;
}

/* Step number bubble */
.wc-block-components-checkout-step__step-number {
	background: #2B6E3D !important;
	color: #FFFFFF !important;
	border-radius: 50% !important;
	width: 26px !important;
	height: 26px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	font-family: 'DM Sans', sans-serif !important;
	flex-shrink: 0 !important;
}

/* Form inputs */
.wc-block-components-text-input label,
.wc-block-components-select label {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #444 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.4px !important;
}
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-combobox .wc-block-components-combobox-control input {
	border: 1px solid #EEEEEE !important;
	border-radius: 4px !important;
	padding: 10px 14px !important;
	height: 44px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	color: #1A1A1A !important;
	background: #FFFFFF !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input:focus {
	border-color: #2B6E3D !important;
	box-shadow: 0 0 0 3px rgba(43,110,61,0.10) !important;
	outline: none !important;
}

/* Checkbox */
.wc-block-components-checkbox input[type="checkbox"] {
	accent-color: #2B6E3D !important;
	width: 16px !important;
	height: 16px !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__label {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	color: #444 !important;
}

/* Payment methods */
.wc-block-components-radio-control-accordion-option {
	border: 1px solid #EEEEEE !important;
	border-radius: 6px !important;
	padding: 12px 16px !important;
	margin-bottom: 8px !important;
	transition: border-color 0.15s, background 0.15s !important;
	cursor: pointer !important;
}
.wc-block-components-radio-control-accordion-option:has(input:checked) {
	border-color: #2B6E3D !important;
	background: #F0F7F2 !important;
}
.wc-block-components-radio-control-accordion-option__content {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	color: #444 !important;
}
input[type="radio"].wc-block-components-radio-control__input {
	accent-color: #2B6E3D !important;
}

/* Checkout sidebar — order summary */
.wc-block-checkout__sidebar-area .wp-block-woocommerce-checkout-order-summary-block {
	background: #F7F7F7 !important;
	border: 1px solid #EEEEEE !important;
	border-radius: 8px !important;
	overflow: hidden !important;
}
.wc-block-components-order-summary__toggle {
	font-family: 'DM Serif Display', serif !important;
	font-size: 16px !important;
	padding: 16px 20px !important;
	border-bottom: 1px solid #EEEEEE !important;
	width: 100% !important;
	background: transparent !important;
	cursor: pointer !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	color: #1A1A1A !important;
}
.wc-block-components-order-summary-item {
	display: flex !important;
	gap: 12px !important;
	padding: 12px 20px !important;
	border-bottom: 1px solid #EEEEEE !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	align-items: flex-start !important;
}
.wc-block-components-order-summary-item__image img {
	width: 52px !important;
	height: 52px !important;
	object-fit: cover !important;
	border-radius: 4px !important;
	border: 1px solid #EEEEEE !important;
}
.wc-block-components-order-summary-item__full-name {
	font-weight: 500 !important;
	color: #1A1A1A !important;
}
.wc-block-components-order-summary-item__individual-prices {
	color: #777 !important; font-size: 12px !important;
}
.wc-block-components-order-summary-item__total-price {
	font-weight: 600 !important;
	color: #1A1A1A !important;
	margin-left: auto !important;
}

/* Checkout totals */
.wc-block-checkout__sidebar-area .wc-block-components-totals-wrapper {
	padding: 16px 20px !important;
	background: transparent !important;
	border: none !important;
}
.wc-block-checkout__sidebar-area .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: #2B6E3D !important;
	font-size: 18px !important;
	font-weight: 700 !important;
}

/* Place order button */
.wc-block-components-checkout-place-order-button {
	width: 100% !important;
	display: block !important;
	padding: 15px 24px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.6px !important;
	text-transform: uppercase !important;
	border-radius: 4px !important;
	margin-top: 0 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SHARED FORM INPUTS (cart + checkout)
───────────────────────────────────────────────────────────────────────────── */

.wc-block-components-notices .wc-block-components-notice {
	border-left: 4px solid #2B6E3D !important;
	background: #F0F7F2 !important;
	border-radius: 0 4px 4px 0 !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
}
.wc-block-components-notices .wc-block-components-notice--error {
	border-left-color: #D93C15 !important;
	background: #FEF2F0 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGINATION
───────────────────────────────────────────────────────────────────────────── */

.wc-blocks-pagination-button--active,
.wc-block-pagination-page--active {
	background: #2B6E3D !important;
	color: #FFFFFF !important;
	border-color: #2B6E3D !important;
}

.wc-block-pagination-page,
.wc-blocks-pagination-button {
	border: 1px solid #EEEEEE;
	border-radius: 4px;
	color: #1A1A1A;
	background: #FFFFFF;
	font-size: 13px;
	padding: 6px 12px;
}

.wc-block-pagination-page:hover,
.wc-blocks-pagination-button:hover {
	border-color: #2B6E3D;
	color: #2B6E3D;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CATALOG SORTING
───────────────────────────────────────────────────────────────────────────── */

.woocommerce-ordering select,
.wc-block-catalog-sorting select {
	border: 1px solid #EEEEEE;
	border-radius: 4px;
	padding: 8px 32px 8px 12px;
	font-size: 13px;
	font-family: 'DM Sans', sans-serif;
	color: #1A1A1A;
	background: #FFFFFF;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────────────────────────── */

.sm-hero-section {
	background: #FFFFFF;
	border-bottom: 1px solid #EEEEEE;
	padding: 0 !important;
	width: 100%;
}

.sm-hero-inner {
	min-height: 420px;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
}

.sm-hero-sidebar {
	display: none !important;
}

.sm-sidebar-head {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #999999 !important;
	padding: 0 20px 12px !important;
	border-bottom: 1px solid #EEEEEE;
	margin: 0 0 8px !important;
}

.sm-sidebar-nav {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sm-sidebar-nav li {
	border-bottom: 1px solid #F5F5F5;
}

.sm-sidebar-nav li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #1A1A1A;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.sm-sidebar-nav li a::after {
	content: '›';
	color: #CCCCCC;
	font-size: 16px;
}

.sm-sidebar-nav li a:hover {
	background: #F7F7F7;
	color: #2B6E3D;
}

.sm-hero-banner {
	flex: 1 !important;
	background: linear-gradient(135deg, #EBF5EE 0%, #D6EDE0 40%, #C2E4CE 100%);
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	padding: 48px 64px !important;
	position: relative;
	overflow: hidden;
}

/* Decorative dots pattern */
.sm-hero-banner::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-image: radial-gradient(circle, rgba(43,110,61,0.12) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
	pointer-events: none;
}

.sm-hero-badge {
	display: inline-block !important;
	background: #D97B2A;
	color: #FFFFFF !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 14px !important;
	border-radius: 20px;
	margin: 0 0 20px !important;
	position: relative;
	z-index: 1;
	width: fit-content;
}

.sm-hero-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 42px !important;
	font-weight: 400 !important;
	color: #1A1A1A !important;
	line-height: 1.15;
	margin: 0 0 16px !important;
	max-width: 520px;
	position: relative;
	z-index: 1;
}

.sm-hero-subtitle {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	color: #555555 !important;
	line-height: 1.7;
	margin: 0 0 28px !important;
	max-width: 420px;
	position: relative;
	z-index: 1;
}

.sm-hero-cta {
	position: relative;
	z-index: 1;
}

.sm-hero-cta .wp-block-button__link {
	background: #2B6E3D !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 4px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	padding: 13px 28px !important;
	text-decoration: none !important;
	transition: background 0.2s ease !important;
	letter-spacing: 0.3px;
	display: inline-block !important;
	width: auto !important;
}

.sm-hero-cta .wp-block-button__link:hover {
	background: #1C5A30 !important;
}

.sm-hero-banner .wp-block-buttons {
	position: relative;
	z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BENEFITS BAR
───────────────────────────────────────────────────────────────────────────── */

.sm-benefits-section {
	background: #F5F5F5 !important;
	border-bottom: 1px solid #EEEEEE;
	padding: 0 !important;
	align-items: stretch !important;
	width: 100%;
}

.sm-benefit-item {
	display: flex !important;
	align-items: center;
	gap: 14px;
	padding: 20px 32px !important;
	border-right: 1px solid #EEEEEE;
}

.sm-benefit-item:last-child {
	border-right: none;
}

.sm-benefit-icon {
	font-size: 28px !important;
	line-height: 1 !important;
	margin: 0 !important;
	flex-shrink: 0;
}

.sm-benefit-text {
	text-align: left;
}

.sm-benefit-title {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	color: #1A1A1A !important;
	letter-spacing: 0.3px;
	margin: 0 0 2px !important;
	line-height: 1.3;
}

.sm-benefit-desc {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 11px !important;
	color: #888888 !important;
	margin: 0 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CATEGORIES SECTION
───────────────────────────────────────────────────────────────────────────── */

.sm-categories-section {
	background: #FFFFFF;
	padding: 56px 48px 48px !important;
	width: 100%;
}

.sm-section-label {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 2.5px;
	color: #D97B2A !important;
	text-transform: uppercase;
	margin: 0 0 8px !important;
}

.sm-section-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	color: #1A1A1A !important;
	margin: 0 0 8px !important;
	line-height: 1.2;
}

.sm-section-subtitle {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	color: #888888 !important;
	margin: 0 0 32px !important;
}

.sm-categories-grid {
	gap: 14px !important;
	align-items: stretch !important;
}

.sm-cat-card {
	height: 200px !important;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.sm-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.sm-cat-vrefika      { background: linear-gradient(160deg, #FFD7A8 0%, #FF9F40 100%); }
.sm-cat-trofima      { background: linear-gradient(160deg, #B8E6C1 0%, #3DA85B 100%); }
.sm-cat-kallyntika   { background: linear-gradient(160deg, #FADDE1 0%, #E75480 100%); }
.sm-cat-aporypantika { background: linear-gradient(160deg, #C5E3FB 0%, #2E9FE6 100%); }
.sm-cat-eidi-spitiou { background: linear-gradient(160deg, #D8C8F0 0%, #7C4DCC 100%); }
.sm-cat-athlitika    { background: linear-gradient(160deg, #C8E6F8 0%, #1E88D4 100%); }

.sm-cat-link-wrap {
	width: 100%;
	padding: 24px 16px 16px !important;
	background: linear-gradient(transparent, rgba(0,0,0,0.55));
	margin: 0 !important;
}

.sm-cat-label {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.8) !important;
	text-transform: uppercase;
	margin: 0 0 2px !important;
}

.sm-cat-name {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF !important;
	text-decoration: none;
	display: block;
	text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.sm-cat-link-wrap a {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF !important;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT SECTIONS — FEATURED (promo sidebar + 3-col products)
───────────────────────────────────────────────────────────────────────────── */

.sm-featured-section {
	background: #FFFFFF;
	padding: 48px 48px 0 !important;
	width: 100%;
}

.sm-featured-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: 2px solid #EEEEEE;
	padding-bottom: 12px;
	margin-bottom: 24px;
}

.sm-featured-cols {
	gap: 20px !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
}

.sm-promo-col {
	flex: 0 0 220px !important;
	min-width: 220px !important;
}

.sm-promo-inner {
	background: linear-gradient(160deg, #1C2E22 0%, #2B4A35 100%);
	border-radius: 8px;
	padding: 28px 20px !important;
	height: 100%;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 340px;
	position: relative;
	overflow: hidden;
}

.sm-promo-inner::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	background: rgba(255,255,255,0.04);
	border-radius: 50%;
}

.sm-promo-tag {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 1.5px;
	color: #D97B2A !important;
	text-transform: uppercase;
	margin: 0 0 10px !important;
	position: relative;
	z-index: 1;
}

.sm-promo-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 22px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
	line-height: 1.2;
	margin: 0 0 8px !important;
	position: relative;
	z-index: 1;
}

.sm-promo-desc {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 12px !important;
	color: rgba(255,255,255,0.65) !important;
	margin: 0 0 20px !important;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.sm-promo-cta .wp-block-button__link {
	background: #D97B2A !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 4px !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	padding: 10px 20px !important;
	display: inline-block !important;
	width: auto !important;
	text-decoration: none !important;
}

.sm-promo-cta .wp-block-button__link:hover {
	background: #c46a1e !important;
}

.sm-featured-prod-col {
	flex: 1 !important;
}

/* 3-col grid for featured section */
.wp-block-woocommerce-product-collection.sm-featured-grid ul.wp-block-post-template,
.wp-block-woocommerce-product-collection.sm-featured-grid .wp-block-post-template {
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 16px;
	max-width: none;
}

.wp-block-woocommerce-product-collection.sm-featured-grid {
	padding: 0 !important;
	max-width: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT SECTIONS — CATEGORY (5-col products)
───────────────────────────────────────────────────────────────────────────── */

.sm-ps-section {
	background: #FFFFFF;
	padding: 40px 48px 0 !important;
	width: 100%;
}

.sm-ps-section.sm-ps-last {
	padding-bottom: 48px !important;
}

.sm-ps-head-row {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #EEEEEE;
	padding-bottom: 14px;
	margin-bottom: 20px;
}

.sm-ps-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.sm-section-heading {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	color: #1A1A1A !important;
	letter-spacing: 0.3px;
	margin: 0 !important;
	padding-bottom: 12px;
	border-bottom: 3px solid #2B6E3D;
	position: relative;
	bottom: -2px;
	display: inline-block;
}

.sm-section-sub {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 12px !important;
	color: #999999 !important;
	margin: 4px 0 0 !important;
}

.sm-view-all-wrap {
	margin: 0 !important;
}

.sm-view-all-link {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #2B6E3D;
	text-decoration: none;
	border: 1px solid #2B6E3D;
	padding: 7px 16px;
	border-radius: 4px;
	letter-spacing: 0.3px;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
	display: inline-block;
}

.sm-view-all-link:hover {
	background: #2B6E3D;
	color: #FFFFFF;
}

/* 5-col grid for category sections */
.wp-block-woocommerce-product-collection.sm-ps-grid ul.wp-block-post-template,
.wp-block-woocommerce-product-collection.sm-ps-grid .wp-block-post-template {
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 16px;
	max-width: none;
}

.wp-block-woocommerce-product-collection.sm-ps-grid {
	padding: 0 !important;
	max-width: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   NEWSLETTER SECTION
───────────────────────────────────────────────────────────────────────────── */

.sm-newsletter-section {
	background: linear-gradient(135deg, #2B6E3D 0%, #1C5A30 100%) !important;
	padding: 60px 48px !important;
	text-align: center;
	width: 100%;
}

.sm-newsletter-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 30px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
	margin: 0 0 10px !important;
	line-height: 1.2;
}

.sm-newsletter-subtitle {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 14px !important;
	color: rgba(255,255,255,0.75) !important;
	margin: 0 auto 28px !important;
	line-height: 1.6;
	max-width: 480px;
}

/* Newsletter inline form */
.sm-newsletter-form {
	display: flex;
	justify-content: center;
	gap: 0;
	max-width: 480px;
	margin: 0 auto;
}

.sm-newsletter-form input[type="email"] {
	flex: 1;
	padding: 13px 18px;
	border: none;
	border-radius: 4px 0 0 4px;
	font-size: 13px;
	font-family: 'DM Sans', sans-serif;
	background: rgba(255,255,255,0.15);
	color: #FFFFFF;
	outline: none;
}

.sm-newsletter-form input[type="email"]::placeholder {
	color: rgba(255,255,255,0.55);
}

.sm-newsletter-form input[type="email"]:focus {
	background: rgba(255,255,255,0.22);
}

.sm-newsletter-form button {
	background: #1C2E22 !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 0 4px 4px 0 !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	padding: 13px 24px !important;
	cursor: pointer;
	letter-spacing: 0.5px;
	transition: background 0.2s ease !important;
	white-space: nowrap;
}

.sm-newsletter-form button:hover {
	background: #0f1a14 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BRANDS SECTION
───────────────────────────────────────────────────────────────────────────── */

.sm-brands-section {
	background: #FAFAFA !important;
	padding: 32px 48px 36px !important;
	border-top: 1px solid #EEEEEE;
	width: 100%;
}

.sm-brands-label {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 2px;
	color: #AAAAAA !important;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 20px !important;
}

.sm-brands-row {
	justify-content: space-between !important;
	align-items: center !important;
	gap: 12px !important;
}

.sm-brand-item {
	text-align: center;
}

.sm-brand-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #E8E8E8;
	border-radius: 6px;
	padding: 12px 24px;
	background: #FFFFFF;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
}

.sm-brand-item:hover .sm-brand-box {
	border-color: #CCCCCC;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sm-brand-name {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #BBBBBB !important;
	letter-spacing: 0.5px;
	margin: 0 !important;
	transition: color 0.2s ease;
}

.sm-brand-item:hover .sm-brand-name {
	color: #555555 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────────────── */

.shopmart-footer-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.shopmart-footer-list li {
	margin-bottom: 10px;
}

.shopmart-footer-list li a {
	color: #AAAAAA;
	font-size: 13px;
	text-decoration: none;
	font-family: 'DM Sans', sans-serif;
	transition: color 0.2s ease;
	line-height: 1.5;
}

.shopmart-footer-list li a:hover {
	color: #FFFFFF;
}

/* ─────────────────────────────────────────────────────────────────────────────
   NOTICES
───────────────────────────────────────────────────────────────────────────── */

.woocommerce-message,
.wc-block-components-notice-banner.is-success {
	border-left-color: #2B6E3D !important;
	background: #F0F8F3;
	color: #1A1A1A;
}

.woocommerce-error,
.wc-block-components-notice-banner.is-error {
	border-left-color: #D93C15 !important;
	background: #FFF5F3;
}

.wc-block-components-notice-snackbar {
	background: #1C2E22;
	color: #FFFFFF;
	border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────────────────── */

.shopmart-footer {
	background-color: #1C2E22 !important;
}

.sm-footer-wrap {
	background: #1C2E22;
}

/* Footer Top */
.sm-footer-top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding: 48px 48px 36px;
}

.sm-footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sm-footer-about {
	width: 340px;
	flex-shrink: 0;
	gap: 16px;
}

.sm-footer-col-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 4px;
}

.sm-footer-about-desc {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin: 0;
	max-width: 320px;
}

/* Footer Links */
.sm-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sm-footer-links li a {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.15s;
}

.sm-footer-links li a:hover {
	color: #FFFFFF;
}

/* Footer Contact */
.sm-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sm-footer-contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.4);
}

.sm-footer-contact-row svg {
	flex-shrink: 0;
	stroke: rgba(255, 255, 255, 0.4);
}

.sm-footer-contact-row span {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.sm-footer-contact-row a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.15s;
}

.sm-footer-contact-row a:hover {
	color: #FFFFFF;
}

/* Divider */
.sm-footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 0 48px;
}

/* Footer Bottom */
.sm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 48px;
}

.sm-footer-copy {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.4);
}

.sm-footer-payments {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sm-pay-badge {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SHOP PAGE
───────────────────────────────────────────────────────────────────────────── */

/* Shop Banner */
.sm-shop-banner {
	background: linear-gradient(135deg, #2B6E3D 0%, #1C5A30 100%);
	padding: 42px 48px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}
.sm-shop-banner-title {
	font-family: 'DM Serif Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
}
.sm-shop-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
}
.sm-shop-breadcrumb a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}
.sm-shop-breadcrumb a:hover { color: #fff; }
.sm-shop-breadcrumb span { color: rgba(255,255,255,0.6); }
.sm-bread-sep { color: rgba(255,255,255,0.5); }

/* Category Pills Bar */
.sm-cat-pills-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 24px 48px;
	background: #fff;
	border-bottom: 1px solid #EEEEEE;
}
.sm-cat-pill {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	padding: 8px 4px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.15s;
}
.sm-cat-pill:hover { border-bottom-color: #2B6E3D; }
.sm-cat-pill-active { border-bottom-color: #2B6E3D !important; }
.sm-pill-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #F7F7F7;
	border: 2px solid #E0E0E0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9E9E9E;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.sm-pill-icon svg { width: 26px; height: 26px; }
.sm-pill-icon-active {
	background: #E6F0E8 !important;
	border-color: #2B6E3D !important;
}
.sm-cat-pill:hover .sm-pill-icon {
	background: #E6F0E8;
	border-color: #2B6E3D;
}
.sm-cat-pill:hover .sm-pill-icon { color: #2B6E3D; }
.sm-cat-pill:hover .sm-pill-icon svg { stroke: #2B6E3D; }
.sm-pill-emoji { font-size: 38px; line-height: 1; }
.sm-pill-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #1A1A1A;
	letter-spacing: 0.3px;
	text-align: center;
}
.sm-pill-count {
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	font-weight: 400;
	color: #9E9E9E;
}

/* Shop Sidebar */
.sm-shop-sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.sm-filter-block {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sm-filter-title-row {
	padding-bottom: 10px;
	border-bottom: 2px solid #EEEEEE;
}
.sm-filter-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #1A1A1A;
	letter-spacing: 0.5px;
}

/* Price Slider */
.sm-price-slider { padding: 4px 0; }
.sm-slider-track {
	position: relative;
	height: 4px;
	background: #EEEEEE;
	border-radius: 99px;
	margin: 10px 0;
}
.sm-slider-fill {
	position: absolute;
	left: 0;
	width: 65%;
	height: 100%;
	background: #2B6E3D;
	border-radius: 99px;
}
.sm-slider-thumb {
	position: absolute;
	width: 16px;
	height: 16px;
	background: #2B6E3D;
	border: 3px solid #fff;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 1px 4px rgba(0,0,0,0.2);
	cursor: pointer;
}
.sm-slider-thumb-l { left: -4px; }
.sm-slider-thumb-r { left: calc(65% - 4px); }
.sm-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.sm-price-range {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #444;
}
.sm-filter-btn {
	background: #2B6E3D;
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 7px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.15s;
}
.sm-filter-btn:hover { background: #1C5A30; }

/* Checkboxes */
.sm-checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sm-checkbox-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.sm-checkbox {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	border: 2px solid #D5D5D5;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.sm-checkbox-checked {
	background: #2B6E3D !important;
	border-color: #2B6E3D !important;
}
.sm-checkbox-label {
	flex: 1;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #1A1A1A;
}
.sm-checkbox-count {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #9E9E9E;
}

/* Category Filter Links */
.sm-cat-filter-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	max-height: 260px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #D5D5D5 transparent;
}
.sm-cat-filter-list::-webkit-scrollbar { width: 4px; }
.sm-cat-filter-list::-webkit-scrollbar-track { background: transparent; }
.sm-cat-filter-list::-webkit-scrollbar-thumb { background: #D5D5D5; border-radius: 99px; }
.sm-cat-filter-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 4px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #1A1A1A;
	text-decoration: none;
	border-radius: 4px;
	transition: color 0.15s, background 0.15s;
}
.sm-cat-filter-link:hover { color: #2B6E3D; background: #f3faf5; padding-left: 8px; }
.sm-cat-filter-link--active { color: #2B6E3D; font-weight: 700; }
.sm-cat-filter-count {
	font-size: 11px;
	font-weight: 600;
	color: #9E9E9E;
	margin-left: 6px;
}

/* Categories Tree */
.sm-cat-tree {
	display: flex;
	flex-direction: column;
}
.sm-cat-tree-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	color: #1A1A1A;
	text-decoration: none;
	transition: color 0.15s;
}
.sm-cat-tree-link:hover { color: #2B6E3D; }
.sm-cat-tree-active {
	color: #2B6E3D !important;
	font-weight: 600 !important;
}
.sm-cat-chevron-open {
	transform: rotate(90deg);
}
.sm-cat-subitems {
	display: flex;
	flex-direction: column;
	padding-left: 20px;
	gap: 2px;
	margin-bottom: 4px;
}
.sm-cat-sublink {
	font-family: 'DM Sans', sans-serif;
	font-size: 12.5px;
	color: #777;
	text-decoration: none;
	padding: 3px 0;
	transition: color 0.15s;
}
.sm-cat-sublink:hover { color: #2B6E3D; }
.sm-cat-sublink-active {
	color: #2B6E3D !important;
	font-weight: 600 !important;
}

/* Shop Toolbar */
.sm-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 20px;
}
.sm-toolbar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}
.sm-toolbar-breadcrumb {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #777;
}
.sm-toolbar-show {
	display: flex;
	align-items: center;
	gap: 6px;
}
.sm-toolbar-show-lbl {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: #777;
}
.sm-show-opt {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: #777;
	text-decoration: none;
}
.sm-show-sep { color: #D5D5D5; font-size: 12px; }
.sm-show-active {
	color: #2B6E3D !important;
	font-weight: 600 !important;
}
.sm-sort-select {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid #EEEEEE;
	border-radius: 4px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: #444;
	cursor: pointer;
}

/* Shop Products Grid */
.sm-shop-grid ul.wp-block-post-template {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 20px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.sm-shop-grid .wc-block-components-product-image img,
.sm-shop-grid .wp-block-woocommerce-product-image img {
	height: 240px;
	object-fit: cover;
}
.sm-shop-grid li.wp-block-post {
	background: #fff;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.15s;
}
.sm-shop-grid li.wp-block-post:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.09);
	transform: translateY(-2px);
}
.sm-shop-grid .wp-block-post-title a {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1A1A1A;
	text-decoration: none;
	padding: 12px 16px 0;
	display: block;
}
.sm-shop-grid .wc-block-components-product-price {
	padding: 4px 16px 0;
	font-size: 16px;
	font-weight: 700;
	color: #2B6E3D;
}
.sm-shop-grid .wp-block-woocommerce-product-button {
	padding: 12px 16px 16px;
}
/* Pagination */
.sm-shop-grid .wp-block-query-pagination {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	gap: 6px;
}
.sm-shop-grid .wp-block-query-pagination a,
.sm-shop-grid .wp-block-query-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #EEEEEE;
	border-radius: 4px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #444;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}
.sm-shop-grid .wp-block-query-pagination .current {
	background: #2B6E3D;
	color: #fff;
	border-color: #2B6E3D;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SINGLE PRODUCT PAGE
───────────────────────────────────────────────────────────────────────────── */

/* Breadcrumb Bar */
.sm-product-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 48px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
}
.sm-product-breadcrumb a {
	color: #999;
	text-decoration: none;
	transition: color 0.15s;
}
.sm-product-breadcrumb a:hover { color: #2B6E3D; }
.sm-product-breadcrumb svg { flex-shrink: 0; }
.sm-breadcrumb-current,
.sm-product-breadcrumb .sm-breadcrumb-current {
	color: #1A1A1A !important;
	font-weight: 600 !important;
	font-size: 12px !important;
	margin: 0 !important;
	display: inline !important;
}

/* Product Section layout */
.sm-product-section {
	align-items: flex-start !important;
}

/* Gallery Column */
.sm-gallery-col .wc-block-components-product-image,
.sm-gallery-col .woocommerce-product-gallery {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #EEEEEE;
}
.sm-gallery-col .woocommerce-product-gallery__image img,
.sm-gallery-col .wc-block-components-product-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}
/* Thumbnails */
.sm-gallery-col .woocommerce-product-gallery__image--placeholder,
.sm-gallery-col .flex-control-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	list-style: none;
	padding: 0;
}
.sm-gallery-col .flex-control-thumbs li img,
.sm-gallery-col .wc-block-components-product-image__image--thumbnail {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #EEEEEE;
	cursor: pointer;
	transition: border-color 0.15s;
}
.sm-gallery-col .flex-control-thumbs li.flex-active img,
.sm-gallery-col .flex-control-thumbs li img:hover {
	border-color: #2B6E3D;
	border-width: 2px;
}

/* Product Info Column */
.sm-product-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Badge Row */
.sm-badge-row {
	display: flex;
	align-items: center;
	gap: 8px;
}
.sm-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 3px;
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
}
.sm-badge-sale { background: #D97B2A; }
.sm-badge-stock { background: #2B6E3D; }

/* Product Title */
.sm-product-title,
.sm-product-info .wp-block-post-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 26px !important;
	font-weight: 700 !important;
	color: #1A1A1A !important;
	line-height: 1.3 !important;
	margin: 0 !important;
}

/* Star Rating */
.sm-product-rating .wc-block-components-product-rating,
.sm-product-rating .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}
.sm-product-rating .star-rating,
.sm-product-rating .wc-block-components-product-rating__stars {
	color: #F5A623;
	font-size: 16px;
}
.sm-product-rating .woocommerce-review-link,
.sm-product-rating .wc-block-components-product-rating__reviews-count {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #999;
}

/* SKU */
.sm-product-sku,
.sm-product-info .wc-block-components-product-sku {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: #AAAAAA;
}

/* Price */
.sm-product-price .wc-block-components-product-price,
.sm-product-price .price,
.sm-product-info .wc-block-components-product-price {
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.sm-product-price .wc-block-components-product-price__value,
.sm-product-price .price ins .amount,
.sm-product-price ins .woocommerce-Price-amount {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	color: #D97B2A !important;
	text-decoration: none !important;
}
.sm-product-price .wc-block-components-product-price__regular,
.sm-product-price .price del .amount,
.sm-product-price del .woocommerce-Price-amount {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #BBBBBB !important;
	text-decoration: line-through !important;
}

/* Dividers */
.sm-product-divider {
	border: none !important;
	height: 1px !important;
	background-color: #EEEEEE !important;
	margin: 4px 0 !important;
}

/* Short Description */
.sm-product-desc,
.sm-product-info .wc-block-components-product-summary,
.sm-product-info .woocommerce-product-details__short-description {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

/* Add to Cart Form */
.sm-add-to-cart-form .wc-block-components-quantity-selector,
.sm-add-to-cart-form .quantity {
	display: flex;
	align-items: center;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	height: 44px;
	overflow: hidden;
	width: fit-content;
}
.sm-add-to-cart-form .wc-block-components-quantity-selector__button,
.sm-add-to-cart-form .quantity .plus,
.sm-add-to-cart-form .quantity .minus {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: none;
	cursor: pointer;
	color: #666;
	font-size: 16px;
	transition: background 0.15s;
}
.sm-add-to-cart-form .wc-block-components-quantity-selector__button:hover,
.sm-add-to-cart-form .quantity .plus:hover,
.sm-add-to-cart-form .quantity .minus:hover { background: #F7F7F7; }
.sm-add-to-cart-form .wc-block-components-quantity-selector__input,
.sm-add-to-cart-form .quantity input[type="number"] {
	width: 50px !important;
	height: 44px !important;
	border: none !important;
	border-left: 1px solid #EEEEEE !important;
	border-right: 1px solid #EEEEEE !important;
	text-align: center !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #1A1A1A !important;
	background: #fff !important;
	outline: none !important;
	-moz-appearance: textfield !important;
}
.sm-add-to-cart-form .wc-block-add-to-cart-form,
.sm-add-to-cart-form form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
}
/* Add to Cart Button */
.sm-add-to-cart-form .wc-block-components-product-button__button,
.sm-add-to-cart-form .single_add_to_cart_button,
.sm-add-to-cart-form button[type="submit"] {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #2B6E3D !important;
	color: #fff !important;
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
	padding: 14px 20px !important;
	border: none !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	transition: background 0.15s !important;
	text-transform: uppercase !important;
}
.sm-add-to-cart-form .wc-block-components-product-button__button:hover,
.sm-add-to-cart-form .single_add_to_cart_button:hover { background: #1C5A30 !important; }

/* Product Benefits */
.sm-product-benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sm-product-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #666;
}
.sm-product-benefit svg { flex-shrink: 0; }

/* Product Tabs */
.sm-tabs-wrapper .woocommerce-tabs,
.sm-tabs-wrapper .wc-block-components-tabs {
	margin-top: 0;
}
.sm-tabs-wrapper .woocommerce-tabs ul.tabs,
.sm-tabs-wrapper .wc-block-components-tabs__list {
	display: flex;
	border-bottom: 2px solid #EEEEEE;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sm-tabs-wrapper .woocommerce-tabs ul.tabs li,
.sm-tabs-wrapper .wc-block-components-tabs__item {
	margin: 0;
	padding: 0;
}
.sm-tabs-wrapper .woocommerce-tabs ul.tabs li a,
.sm-tabs-wrapper .wc-block-components-tabs__item button {
	display: block;
	padding: 14px 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #999;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.15s, border-color 0.15s;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	cursor: pointer;
}
.sm-tabs-wrapper .woocommerce-tabs ul.tabs li.active a,
.sm-tabs-wrapper .woocommerce-tabs ul.tabs li a:hover,
.sm-tabs-wrapper .wc-block-components-tabs__item--active button,
.sm-tabs-wrapper .wc-block-components-tabs__item button:hover {
	color: #2B6E3D;
	border-bottom-color: #2B6E3D;
}
.sm-tabs-wrapper .woocommerce-tabs .panel,
.sm-tabs-wrapper .wc-block-components-tabs__panel {
	padding: 28px 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}
.sm-tabs-wrapper .woocommerce-tabs .panel p { margin-bottom: 16px; }

/* Related Products */
.sm-related-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	color: #1A1A1A !important;
	margin-bottom: 24px !important;
}
.sm-related-grid ul.products,
.sm-related-section .wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 20px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.sm-related-section li.product,
.sm-related-grid .wc-block-grid__product {
	background: #fff;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.15s;
}
.sm-related-section li.product:hover,
.sm-related-grid .wc-block-grid__product:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.09);
	transform: translateY(-2px);
}
.sm-related-section li.product img,
.sm-related-grid .wc-block-grid__product img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.sm-related-section .woocommerce-loop-product__title,
.sm-related-grid .wc-block-grid__product-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1A1A1A;
	padding: 12px 16px 4px;
}
.sm-related-section .price,
.sm-related-grid .wc-block-grid__product-price .price {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #2B6E3D;
	padding: 0 16px 16px;
	display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRODUCT COLLECTION ITEMS (li.wp-block-post card styling)
───────────────────────────────────────────────────────────────────────────── */

.wp-block-post-template li.wp-block-post {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.15s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.wp-block-post-template li.wp-block-post:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.09);
	transform: translateY(-3px);
}

/* Product image in collection */
.wp-block-post-template li.wp-block-post .wc-block-components-product-image,
.wp-block-post-template li.wp-block-post .wc-block-components-product-image a {
	display: block;
	width: 100%;
}

.wp-block-post-template li.wp-block-post .wc-block-components-product-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	background: #F7F7F7;
}

/* Product category label (wp:post-terms) */
.wp-block-post-template .wp-block-post-terms,
.wp-block-post-template .sm-product-cat {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #999999 !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 14px 0 !important;
	margin: 0 !important;
	display: block !important;
	line-height: 1.4;
}

.wp-block-post-template .wp-block-post-terms a,
.wp-block-post-template .sm-product-cat a {
	color: #999999 !important;
	text-decoration: none;
}

.wp-block-post-template .wp-block-post-terms a:hover {
	color: #2B6E3D !important;
}

/* Product title in collection */
.wp-block-post-template li.wp-block-post .wp-block-post-title,
.wp-block-post-template li.wp-block-post h3.wp-block-post-title {
	font-family: 'DM Sans', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #1A1A1A !important;
	padding: 6px 14px 4px !important;
	margin: 0 !important;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wp-block-post-template li.wp-block-post .wp-block-post-title a {
	color: #1A1A1A !important;
	text-decoration: none;
}

/* Product price in collection */
.wp-block-post-template li.wp-block-post .wc-block-components-product-price {
	padding: 0 14px 4px !important;
	margin: 0 !important;
}

/* Add to cart button in collection */
.wp-block-post-template li.wp-block-post .wc-block-add-to-cart-button {
	padding: 4px 14px 14px !important;
}

.wp-block-post-template li.wp-block-post .wc-block-add-to-cart-button .wp-block-button__link,
.wp-block-post-template li.wp-block-post .wc-block-add-to-cart-button a {
	width: 100% !important;
	display: block !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   NAV ACTIVE STATE BY PAGE TYPE (body class)
───────────────────────────────────────────────────────────────────────────── */

/* Remove active from home link on shop/product pages */
.woocommerce-shop .sm-nav-active,
.single-product .sm-nav-active,
.post-type-archive-product .sm-nav-active,
.tax-product_cat .sm-nav-active {
	color: #1A1A1A !important;
	border-bottom-color: transparent !important;
}

/* Set active on ΚΑΤΑΣΤΗΜΑ link on shop/product pages */
.woocommerce-shop .sm-nav-item[href="/shop/"],
.post-type-archive-product .sm-nav-item[href="/shop/"],
.single-product .sm-nav-item[href="/shop/"],
.tax-product_cat .sm-nav-item[href="/shop/"] {
	color: #2B6E3D !important;
	border-bottom-color: #2B6E3D !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────────────────────── */

.sm-contact-info-row { background: #F7F7F7; border-bottom: 1px solid #EEEEEE; }
.sm-contact-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 40px 48px;
	max-width: 1344px;
	margin: 0 auto;
	box-sizing: border-box;
	width: 100%;
}
.sm-contact-card {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow 0.2s;
}
.sm-contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.sm-contact-card-icon {
	width: 52px;
	height: 52px;
	background: #EBF5EE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sm-contact-card-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 4px 0 0;
}
.sm-contact-card-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #555;
	line-height: 1.7;
	margin: 0;
}
.sm-contact-card-text a { color: #2B6E3D; text-decoration: none; }
.sm-contact-card-text a:hover { text-decoration: underline; }
.sm-contact-card-sub { color: #999; font-size: 12px; }
.sm-contact-main { background: #FFFFFF; }
.sm-contact-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	max-width: 1344px;
	margin: 0 auto;
	box-sizing: border-box;
	width: 100%;
	gap: 48px;
	padding: 48px 48px 64px;
}
.sm-contact-form-title {
	font-family: 'DM Serif Display', serif;
	font-size: 26px;
	color: #1A1A1A;
	margin: 0 0 8px;
}
.sm-contact-form-sub {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #777;
	margin: 0 0 28px;
	line-height: 1.6;
}
.sm-contact-form { display: flex; flex-direction: column; gap: 16px; }
.sm-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sm-cf-group { display: flex; flex-direction: column; gap: 6px; }
.sm-cf-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #1A1A1A;
	letter-spacing: 0.3px;
}
.sm-cf-input,
.sm-cf-select,
.sm-cf-textarea {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #1A1A1A;
	background: #FFFFFF;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	padding: 10px 14px;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
	box-sizing: border-box;
}
.sm-cf-input:focus,
.sm-cf-select:focus,
.sm-cf-textarea:focus { border-color: #2B6E3D; box-shadow: 0 0 0 2px rgba(43,110,61,0.1); }
.sm-cf-input::placeholder,
.sm-cf-textarea::placeholder { color: #AAAAAA; }
.sm-cf-textarea { resize: vertical; min-height: 120px; }
.sm-cf-submit {
	background: #2B6E3D;
	color: #FFFFFF;
	border: none;
	border-radius: 4px;
	padding: 14px 28px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.15s;
	align-self: flex-start;
}
.sm-cf-submit:hover { background: #1C5A30; }
.sm-contact-info-side { display: flex; flex-direction: column; gap: 24px; }
.sm-contact-map-placeholder {
	background: #EBF5EE;
	border: 1px solid #C2E4CE;
	border-radius: 8px;
	height: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.sm-contact-map-placeholder p {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: #2B6E3D;
	margin: 0;
}
.sm-contact-social {
	background: #F7F7F7;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	padding: 20px;
}
.sm-contact-social-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 12px;
}
.sm-contact-social-links { display: flex; gap: 10px; }
.sm-social-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid #EEEEEE;
	border-radius: 4px;
	background: #FFFFFF;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #1A1A1A;
	text-decoration: none;
	transition: border-color 0.15s, color 0.15s;
}
.sm-social-btn:hover { border-color: #2B6E3D; color: #2B6E3D; }
.sm-contact-faq-box {
	background: #1C2E22;
	border-radius: 8px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sm-contact-faq-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
}
.sm-contact-faq-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.65);
	margin: 0;
	line-height: 1.6;
}
.sm-contact-faq-link {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #6FBF85;
	text-decoration: none;
	margin-top: 4px;
}
.sm-contact-faq-link:hover { color: #FFFFFF; }
@media (max-width: 1024px) {
	.sm-contact-cards { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; }
	.sm-contact-layout { grid-template-columns: 1fr; padding: 32px 24px 48px; }
	.sm-contact-info-side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
	.sm-contact-layout { padding: 28px 16px 40px; }
}
@media (max-width: 600px) {
	.sm-contact-cards { grid-template-columns: 1fr 1fr; padding: 20px 16px; gap: 12px; }
	.sm-contact-layout { padding: 24px 16px 40px; }
	.sm-cf-row { grid-template-columns: 1fr; }
	.sm-contact-info-side { grid-template-columns: 1fr; }
	.sm-cf-submit { width: 100%; }
}

/* ═════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   Breakpoints: 1024px | 768px | 480px
═════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   SALE PAGE
───────────────────────────────────────────────────────────────────────────── */

.sm-sale-section {
	padding: 40px 48px 64px;
	max-width: 1344px;
	margin: 0 auto;
	box-sizing: border-box;
	width: 100%;
}

/* Force the product-collection grid inside sale section to 4 columns */
.sm-sale-section .wc-block-product-template.wc-block-product-template {
	grid-template-columns: repeat(4, 1fr) !important;
}

/* Sale page nav active state */
body.page-id-27 .sm-nav-link[href="/sale/"],
body.page-id-27 .sm-nav-link[href*="sale"] {
	color: #2B6E3D;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.sm-sale-section { padding: 28px 24px 48px; }
	.sm-sale-section .wc-block-product-template.wc-block-product-template {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
@media (max-width: 768px) {
	.sm-sale-section { padding: 20px 16px 40px; }
	.sm-sale-section .wc-block-product-template.wc-block-product-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 480px) {
	.sm-sale-section .wc-block-product-template.wc-block-product-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* ── 1024px: Small desktop / large tablet ─────────────────────────────────── */
@media (max-width: 1024px) {

	/* Header */
	.sm-topbar-inner { padding: 0 20px; }
	.sm-main-header-inner { padding: 0 20px; height: 80px; gap: 16px; }
	.sm-search-form { width: 380px; }
	.sm-nav-inner { padding: 0 20px; }

	/* Hero */
	.sm-hero-sidebar { display: none !important; }
	.sm-hero-banner { padding: 40px 40px !important; }
	.sm-hero-title { font-size: 34px !important; }

	/* Product sections */
	.sm-ps-grid .wp-block-post-template { grid-template-columns: repeat(4, 1fr) !important; }
	.sm-featured-grid .wp-block-post-template { grid-template-columns: repeat(3, 1fr) !important; }

	/* Footer */
	.sm-footer-top { padding: 36px 24px 28px; gap: 24px; }
	.sm-footer-about { width: 240px; }

	/* Shop */
	.sm-shop-layout-inner { gap: 20px; }

	/* Cart & Checkout */
	.sm-cart-content,
	.sm-checkout-content { padding: 32px 24px 48px; }
	.wc-block-cart.is-large .wc-block-cart__sidebar-area { width: 280px; }
	.wc-block-checkout.is-large .wc-block-checkout__sidebar-area { width: 300px; }
}

/* ── 768px: Tablet portrait ───────────────────────────────────────────────── */
@media (max-width: 768px) {

	/* ── TOP BAR ── */
	.sm-topbar-inner {
		padding: 0 16px;
		height: 28px;
	}
	.sm-topbar-left .sm-topbar-dim:first-child,
	.sm-topbar-left .sm-topbar-sep:first-of-type,
	.sm-topbar-left .sm-topbar-dim:nth-child(3),
	.sm-topbar-left .sm-topbar-sep:nth-of-type(2) {
		display: none;
	}
	.sm-topbar-right { gap: 12px; }

	/* ── MAIN HEADER ── */
	.sm-main-header-inner {
		padding: 0 16px;
		height: auto;
		flex-wrap: wrap;
		gap: 10px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.sm-header-logo { order: 1; }
	.sm-header-right { order: 2; margin-left: auto; }
	.sm-search-form {
		order: 3;
		width: 100%;
		height: 40px;
		flex-basis: 100%;
	}
	.sm-search-cat { display: none; }
	.sm-header-account span { display: none; }
	.sm-logo-text { font-size: 22px; }

	/* ── NAV BAR ── */
	.sm-nav-inner {
		padding: 0 12px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.sm-nav-inner::-webkit-scrollbar { display: none; }
	.sm-browse-btn { display: none; }
	.sm-nav-links { gap: 0; white-space: nowrap; }
	.sm-nav-item { padding: 0 12px; font-size: 12px; }

	/* ── BENEFITS STRIP ── */
	.sm-benefits-strip {
		flex-wrap: wrap;
		padding: 0 16px;
	}
	.sm-benefit-col {
		flex: 1 1 50%;
		min-width: 0;
		padding: 12px 0;
		justify-content: flex-start;
		gap: 10px;
	}
	.sm-benefit-divider:nth-child(3) { border-left: none; }

	/* ── HERO ── */
	.sm-hero-sidebar { display: none !important; }
	.sm-hero-banner { padding: 32px 24px !important; }
	.sm-hero-title { font-size: 28px !important; }
	.sm-hero-subtitle { font-size: 13px !important; }

	/* ── CATEGORIES ── */
	.sm-categories-section { padding: 28px 16px !important; }
	.sm-categories-grid {
		flex-wrap: wrap !important;
		gap: 10px !important;
	}
	.sm-categories-grid .wp-block-column {
		flex-basis: calc(33.333% - 8px) !important;
		min-width: 0;
	}
	.sm-cat-card { height: 120px !important; }

	/* ── PRODUCT SECTIONS ── */
	.sm-ps-section { padding: 24px 16px !important; }
	.sm-ps-head-row {
		flex-direction: column !important;
		gap: 6px !important;
		align-items: flex-start !important;
	}
	.sm-ps-grid .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.sm-featured-section { padding: 24px 16px !important; }
	.sm-featured-cols {
		flex-direction: column !important;
	}
	.sm-promo-col {
		flex-basis: auto !important;
		width: 100% !important;
	}
	.sm-featured-grid .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* ── NEWSLETTER ── */
	.sm-newsletter-section { padding: 32px 16px !important; }
	.sm-newsletter-form { flex-direction: column; gap: 10px; }
	.sm-newsletter-form input { width: 100% !important; }
	.sm-newsletter-form button { width: 100% !important; }

	/* ── BRANDS ── */
	.sm-brands-section { padding: 24px 16px !important; }
	.sm-brands-row { flex-wrap: wrap !important; }
	.sm-brands-row .wp-block-column {
		flex-basis: calc(33.333% - 10px) !important;
	}

	/* ── FOOTER ── */
	.sm-footer-top {
		flex-wrap: wrap;
		padding: 28px 16px 20px;
		gap: 28px;
	}
	.sm-footer-about {
		width: 100% !important;
		flex-basis: 100%;
	}
	.sm-footer-col {
		flex-basis: calc(50% - 14px);
	}
	.sm-footer-bottom {
		flex-direction: column;
		gap: 12px;
		padding: 16px;
		text-align: center;
	}
	.sm-footer-payments { justify-content: center; }

	/* ── SHOP PAGE ── */
	.sm-shop-banner { padding: 24px 16px !important; }
	.sm-shop-banner-title { font-size: 26px !important; }
	.sm-cat-pills-bar {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		justify-content: unset;
		padding: 16px;
		gap: 12px;
		overflow-x: unset;
	}
	.sm-cat-pill {
		flex-shrink: unset;
		padding: 10px 4px;
	}
	.sm-pill-icon {
		width: 44px;
		height: 44px;
	}
	.sm-pill-icon svg { width: 22px; height: 22px; }
	.sm-pill-emoji { font-size: 22px; }
	.sm-pill-label { font-size: 10px; }
	.sm-shop-layout {
		flex-direction: column !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		padding-top: 16px !important;
		padding-bottom: 32px !important;
	}
	.sm-shop-sidebar-col {
		display: none !important;
	}
	.sm-shop-toolbar { padding: 10px 0 !important; flex-wrap: wrap; gap: 8px; }
	.sm-shop-grid .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* ── SINGLE PRODUCT ── */
	.sm-product-breadcrumb { padding: 10px 16px !important; }
	.sm-product-section {
		flex-direction: column !important;
		padding: 20px 16px !important;
		gap: 20px !important;
	}
	.sm-gallery-col {
		flex-basis: 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.sm-product-info {
		flex-basis: 100% !important;
		width: 100% !important;
	}
	.sm-related-section { padding: 24px 16px !important; }
	.sm-related-grid ul.products,
	.sm-related-section .wc-block-grid__products {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* ── GENERAL SECTION PADDING ── */
	.sm-section-heading { font-size: 16px !important; }
	.wp-block-post-template { gap: 12px !important; }

	/* ── CART & CHECKOUT ── */
	.sm-cart-content,
	.sm-checkout-content { padding: 24px 16px 40px; }

	/* Stack cart to single column */
	.wc-block-cart.is-large {
		flex-direction: column !important;
	}
	.wc-block-cart.is-large .wc-block-cart__sidebar-area {
		width: 100% !important;
	}

	/* Stack checkout to single column */
	.wc-block-checkout.is-large {
		flex-direction: column !important;
	}
	.wc-block-checkout.is-large .wc-block-checkout__sidebar-area {
		width: 100% !important;
		position: static !important;
	}

	/* Smaller cart item image */
	.wc-block-cart-item__image img {
		width: 64px !important;
		height: 64px !important;
	}
}

/* ── 480px: Mobile phone ──────────────────────────────────────────────────── */
@media (max-width: 480px) {

	/* Top bar: hide entirely */
	.shopmart-header > .wp-block-group:first-child { display: none; }

	/* ── SHOP CATEGORY PILLS ── */
	.sm-cat-pills-bar {
		grid-template-columns: repeat(2, 1fr);
		padding: 12px;
		gap: 10px;
	}
	.sm-pill-icon {
		width: 38px;
		height: 38px;
	}
	.sm-pill-icon svg { width: 18px; height: 18px; }
	.sm-pill-emoji { font-size: 18px; }
	.sm-pill-label { font-size: 10px; }

	/* Header compact */
	.sm-main-header-inner { padding: 10px 12px; gap: 8px; }
	.sm-logo-text { font-size: 20px; }
	.sm-search-form { height: 38px; }
	.sm-cart-amount { display: none; }

	/* Benefits: hide on small mobile */
	.sm-benefits-strip { display: none; }

	/* Hero */
	.sm-hero-banner { padding: 24px 16px !important; min-height: 240px; }
	.sm-hero-title { font-size: 24px !important; }
	.sm-hero-subtitle { display: none !important; }

	/* Categories: 2 col */
	.sm-categories-grid .wp-block-column {
		flex-basis: calc(50% - 5px) !important;
	}
	.sm-cat-card { height: 100px !important; }

	/* Product grids: 1 column */
	.sm-ps-grid .wp-block-post-template,
	.sm-featured-grid .wp-block-post-template,
	.sm-shop-grid .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* Footer: single column */
	.sm-footer-col { flex-basis: 100% !important; }
	.sm-footer-top { gap: 20px; }

	/* Related products: 1 column */
	.sm-related-grid ul.products,
	.sm-related-section .wc-block-grid__products {
		grid-template-columns: repeat(1, 1fr) !important;
	}

	/* Brands: 2 columns */
	.sm-brands-row .wp-block-column {
		flex-basis: calc(50% - 5px) !important;
	}

	/* Section padding tighter */
	.sm-ps-section { padding: 20px 12px !important; }
	.sm-categories-section { padding: 20px 12px !important; }
	.sm-newsletter-section { padding: 24px 12px !important; }
	.sm-brands-section { padding: 20px 12px !important; }

	/* Cart & Checkout compact */
	.sm-cart-content,
	.sm-checkout-content { padding: 16px 12px 32px; }
	.wc-block-cart-item__row { padding: 12px !important; gap: 10px !important; }
	.wc-block-components-checkout-step { padding: 16px !important; }
	.wc-block-components-checkout-step__heading-content { font-size: 16px !important; }
	.sm-cf-row { grid-template-columns: 1fr; }

	/* Contact page compact */
	.sm-contact-section { padding: 32px 16px !important; }
	.wp-block-columns.sm-contact-columns { flex-direction: column !important; }
	.wp-block-column[style*="flex-basis:40%"],
	.wp-block-column[style*="flex-basis:60%"] { flex-basis: 100% !important; }
	.sm-form-row { grid-template-columns: 1fr !important; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────────────────────── */

.sm-contact-section {
	max-width: 1344px;
	margin: 0 auto;
	padding: 56px 48px;
}

.wp-block-columns.sm-contact-columns {
	gap: 48px;
	align-items: flex-start;
}

/* Info side */
.sm-contact-info {
	background: #F7F7F7;
	border-radius: 8px;
	padding: 32px;
}

.sm-contact-info-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 22px !important;
	color: #1C2E22 !important;
	margin-bottom: 24px !important;
}

.sm-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 0;
	border-bottom: 1px solid #EEEEEE;
}
.sm-contact-item:last-child { border-bottom: none; }

.sm-contact-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #2B6E3D;
}

.sm-contact-item p {
	margin: 4px 0 0;
	font-size: 14px;
	color: #1A1A1A;
	line-height: 1.5;
}

.sm-contact-item a {
	color: #1A1A1A;
	text-decoration: none;
}
.sm-contact-item a:hover { color: #2B6E3D; }

/* Form side */
.sm-contact-form-wrap {
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	padding: 32px;
}

.sm-contact-form-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 22px !important;
	color: #1C2E22 !important;
	margin-bottom: 24px !important;
}

.sm-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sm-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sm-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sm-form-group label {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #1A1A1A;
}

.sm-form-group input,
.sm-form-group textarea {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #1A1A1A;
	background: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	padding: 10px 14px;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
	box-sizing: border-box;
}

.sm-form-group input:focus,
.sm-form-group textarea:focus {
	border-color: #2B6E3D;
	box-shadow: 0 0 0 3px rgba(43,110,61,0.08);
}

.sm-form-group textarea { resize: vertical; }

.sm-btn-submit {
	align-self: flex-start;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	background: #2B6E3D;
	border: none;
	border-radius: 4px;
	padding: 12px 28px;
	cursor: pointer;
	transition: background 0.2s;
}
.sm-btn-submit:hover { background: #1C5A30; }

/* ─────────────────────────────────────────────────────────────────────────────
   POLICY PAGES (Επιστροφές + Τρόποι Πληρωμής)
───────────────────────────────────────────────────────────────────────────── */

.sm-policy-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 56px 48px;
}

.sm-policy-lead {
	font-size: 16px !important;
	color: #555 !important;
	line-height: 1.7 !important;
	margin-bottom: 40px !important;
}

.sm-policy-section-title {
	font-family: 'DM Serif Display', serif !important;
	font-size: 22px !important;
	color: #1C2E22 !important;
	margin: 40px 0 16px !important;
	padding-bottom: 10px;
	border-bottom: 2px solid #EEEEEE;
}

/* ── Return policy highlights ── */
.sm-policy-cards {
	display: flex;
	gap: 24px;
	margin: 0 0 40px;
}

.sm-policy-card {
	flex: 1;
	text-align: center;
	padding: 28px 20px;
	background: #F7F7F7;
	border-radius: 8px;
	border: 1px solid #EEEEEE;
}

.sm-policy-card-icon {
	font-family: 'DM Serif Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #2B6E3D;
	line-height: 1;
}

.sm-policy-card-label {
	font-size: 13px;
	font-weight: 600;
	color: #1A1A1A;
	margin: 6px 0 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sm-policy-card-text {
	font-size: 12px;
	color: #777;
}

/* ── Lists ── */
.sm-policy-list {
	padding-left: 0;
	list-style: none;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sm-policy-list li {
	padding: 12px 16px 12px 44px;
	background: #F7F7F7;
	border-radius: 4px;
	font-size: 14px;
	color: #1A1A1A;
	position: relative;
	line-height: 1.5;
}

.sm-policy-list li::before {
	content: '✓';
	position: absolute;
	left: 16px;
	color: #2B6E3D;
	font-weight: 700;
}

.sm-policy-list--warning li::before {
	content: '✕';
	color: #D93C15;
}

.sm-policy-list--warning li {
	background: #FFF8F7;
}

/* ── Steps ── */
.sm-policy-steps {
	padding-left: 0;
	list-style: none;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sm-policy-steps li {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 20px;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
}

.sm-policy-steps li p { margin: 4px 0 0; font-size: 14px; color: #555; }

.sm-step-num {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: #2B6E3D;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── Contact box ── */
.sm-policy-contact-box {
	margin-top: 40px;
	padding: 24px 28px;
	background: #F0F7F2;
	border-left: 4px solid #2B6E3D;
	border-radius: 0 8px 8px 0;
	font-size: 14px;
	color: #1A1A1A;
}

.sm-policy-contact-box strong { font-size: 16px; display: block; margin-bottom: 8px; }
.sm-policy-contact-box p { margin: 4px 0; color: #555; }
.sm-policy-contact-box a { color: #2B6E3D; }

/* ── Payment grid ── */
.sm-payment-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 0 0 48px;
}

.sm-payment-card {
	padding: 28px 24px;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.sm-payment-card:hover {
	border-color: #2B6E3D;
	box-shadow: 0 4px 16px rgba(43,110,61,0.08);
}

.sm-payment-icon {
	font-size: 28px;
	margin-bottom: 12px;
}

.sm-payment-card h3 {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #1C2E22;
	margin: 0 0 10px;
}

.sm-payment-card p {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
	margin: 0 0 14px;
}

.sm-payment-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sm-pay-badge {
	font-size: 11px;
	font-weight: 600;
	color: #2B6E3D;
	background: #EBF4EF;
	border-radius: 4px;
	padding: 3px 8px;
}

.sm-payment-bank-details {
	font-size: 12px;
	color: #555;
	background: #F7F7F7;
	border-radius: 4px;
	padding: 10px 12px;
}

.sm-payment-bank-details p { margin: 3px 0; }

/* ── Security row ── */
.sm-security-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 0 0 40px;
}

.sm-security-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px;
	background: #F7F7F7;
	border-radius: 8px;
}

.sm-security-icon {
	font-size: 22px;
	min-width: 24px;
}

.sm-security-item strong { font-size: 13px; display: block; margin-bottom: 4px; }
.sm-security-item p { font-size: 12px; color: #777; margin: 0; line-height: 1.4; }

/* ── FAQ ── */
.sm-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.sm-faq-item {
	padding: 20px 24px;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
}

.sm-faq-item strong {
	display: block;
	font-size: 15px;
	color: #1C2E22;
	margin-bottom: 8px;
}

.sm-faq-item p {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.sm-policy-section { padding: 32px 16px; }
	.sm-policy-cards { flex-direction: column; }
	.sm-payment-grid { grid-template-columns: 1fr; }
	.sm-security-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.sm-security-row { grid-template-columns: 1fr; }
}
