/* ==========================================================
   MAZISH — main.css
   Palette:
   --mz-yellow  #FFD400  hero / brand background
   --mz-navy    #1A1B2E  dark ink
   --mz-red     #FF3B4E  primary action
   --mz-orange  #FF9F1C  logo accent
   --mz-cream   #FFF8E1  soft surfaces
   ========================================================== */

:root {
	--mz-yellow: #FFD400;
	--mz-yellow-deep: #F5B800;
	--mz-navy: #232946;
	--mz-red: #FF3B4E;
	--mz-orange: #FF9F1C;
	--mz-cream: #FFF8E1;
	--mz-white: #FFFFFF;
	--mz-grey: #5C5E70;
	--mz-radius: 999px;
	--mz-radius-card: 20px;
	--mz-font-display: 'Archivo', system-ui, sans-serif;
	--mz-font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
	margin: 0;
	font-family: var(--mz-font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--mz-navy);
	background: var(--mz-white);
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.mz-container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Announcement bar ---------- */
.mz-announce {
	background: var(--mz-navy);
	color: var(--mz-white);
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 0;
	letter-spacing: 0.01em;
}

/* ---------- Header ---------- */
.mz-header {
	background: var(--mz-white);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 0 rgba(26, 27, 46, 0.06);
}
.mz-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}
.mz-logo-text {
	font-family: var(--mz-font-display);
	font-weight: 900;
	font-size: 28px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--mz-orange);
}
.mz-nav .mz-menu {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mz-nav a {
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	color: var(--mz-navy);
	transition: color 0.15s ease;
}
.mz-nav a:hover { color: var(--mz-red); }

.mz-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.mz-cart {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--mz-cream);
	border-radius: var(--mz-radius);
	padding: 10px 18px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
}
.mz-cart-count {
	background: var(--mz-navy);
	color: var(--mz-white);
	font-size: 12px;
	min-width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
}

/* ---------- Buttons ---------- */
.mz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: var(--mz-radius);
	padding: 12px 26px;
	font-family: var(--mz-font-body);
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mz-btn:hover { transform: translateY(-2px); }
.mz-btn:focus-visible { outline: 3px solid var(--mz-navy); outline-offset: 2px; }
.mz-btn-lg { padding: 16px 36px; font-size: 18px; }
.mz-btn-red {
	background: var(--mz-red);
	color: var(--mz-white);
	box-shadow: 0 6px 18px rgba(255, 59, 78, 0.35);
}
.mz-btn-dark { background: var(--mz-navy); color: var(--mz-white); }
.mz-btn-yellow { background: var(--mz-yellow); color: var(--mz-navy); }

/* ---------- Burger (mobile) ---------- */
.mz-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.mz-burger span {
	width: 24px;
	height: 3px;
	border-radius: 3px;
	background: var(--mz-navy);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.mz-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mz-burger.is-open span:nth-child(2) { opacity: 0; }
.mz-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.mz-hero {
	background: var(--mz-yellow);
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 96px 0 88px;
}
.mz-hero-blob {
	position: absolute;
	border-radius: 50%;
	background: var(--mz-yellow-deep);
	opacity: 0.55;
	pointer-events: none;
}
.mz-hero-blob-1 { width: 420px; height: 420px; top: -120px; right: -140px; }
.mz-hero-blob-2 { width: 340px; height: 340px; bottom: -160px; left: -120px; }

.mz-hero-inner { position: relative; z-index: 1; }

.mz-badge {
	display: inline-block;
	background: rgba(26, 27, 46, 0.08);
	border-radius: var(--mz-radius);
	padding: 10px 22px;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 32px;
}

.mz-hero-title {
	font-family: var(--mz-font-display);
	font-weight: 900;
	font-size: clamp(52px, 9vw, 104px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 0 28px;
}
.mz-hero-title span { display: block; }
.mz-hero-dark { color: var(--mz-navy); }
.mz-hero-red { color: var(--mz-red); }

.mz-hero-sub {
	max-width: 640px;
	margin: 0 auto 40px;
	font-size: 20px;
	font-weight: 500;
	color: var(--mz-navy);
}

.mz-hero-cta {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

.mz-stats {
	display: flex;
	justify-content: center;
	gap: clamp(32px, 6vw, 88px);
	flex-wrap: wrap;
}
.mz-stat strong {
	display: block;
	font-family: var(--mz-font-display);
	font-weight: 900;
	font-size: 34px;
	letter-spacing: -0.01em;
}
.mz-stat span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(26, 27, 46, 0.75);
}

/* ---------- Sections ---------- */
.mz-eyebrow {
	text-align: center;
	color: var(--mz-red);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
.mz-section-title {
	text-align: center;
	font-family: var(--mz-font-display);
	font-weight: 900;
	font-size: clamp(34px, 5vw, 54px);
	letter-spacing: -0.02em;
	margin: 0 0 48px;
}

.mz-why { padding: 88px 0; }
.mz-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.mz-card {
	background: var(--mz-cream);
	border-radius: var(--mz-radius-card);
	padding: 32px 24px;
	text-align: center;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mz-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(26, 27, 46, 0.08);
}
.mz-card-icon { font-size: 36px; margin-bottom: 14px; }
.mz-card h3 {
	font-family: var(--mz-font-display);
	font-weight: 800;
	font-size: 20px;
	margin: 0 0 10px;
}
.mz-card p { margin: 0; color: var(--mz-grey); }

.mz-featured { padding: 24px 0 88px; }
.mz-center { text-align: center; margin-top: 40px; }

/* ---------- CTA band ---------- */
.mz-cta-band {
	background: var(--mz-navy);
	color: var(--mz-white);
	text-align: center;
	padding: 88px 0;
	position: relative;
	overflow: hidden;
}
.mz-cta-highlight { color: var(--mz-yellow); }
.mz-cta-blob {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 212, 0, 0.06);
	pointer-events: none;
}
.mz-cta-blob-1 { width: 380px; height: 380px; top: -160px; right: -120px; }
.mz-cta-blob-2 { width: 300px; height: 300px; bottom: -140px; left: -100px; background: rgba(255, 59, 78, 0.08); }
.mz-cta-band-inner { position: relative; z-index: 1; }
.mz-cta-band h2 {
	font-family: var(--mz-font-display);
	font-weight: 900;
	font-size: clamp(32px, 5vw, 48px);
	margin: 0 0 12px;
}
.mz-cta-band p { margin: 0 0 32px; opacity: 0.85; font-size: 18px; }

/* ---------- Page hero ---------- */
.mz-page-hero {
	background: var(--mz-yellow);
	padding: 64px 0;
	text-align: center;
}
.mz-page-hero h1 {
	font-family: var(--mz-font-display);
	font-weight: 900;
	font-size: clamp(36px, 6vw, 60px);
	margin: 0;
	letter-spacing: -0.02em;
}
.mz-page-content { padding: 56px 24px 88px; }

/* ---------- Blog ---------- */
.mz-post-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 32px;
}
.mz-post-card img { border-radius: var(--mz-radius-card); }
.mz-post-card h2 { font-family: var(--mz-font-display); font-size: 24px; }
.mz-post-card h2 a { text-decoration: none; }
.mz-readmore { font-weight: 700; color: var(--mz-red); text-decoration: none; }
.mz-single-thumb { border-radius: var(--mz-radius-card); margin-bottom: 32px; }

/* ---------- Footer ---------- */
.mz-footer { background: var(--mz-navy); color: rgba(255, 255, 255, 0.85); }
.mz-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding: 72px 24px 48px;
}
.mz-footer-badge {
	display: inline-block;
	background: rgba(255, 212, 0, 0.14);
	color: var(--mz-yellow);
	border-radius: var(--mz-radius);
	padding: 8px 18px;
	font-weight: 700;
	font-size: 14px;
	margin-top: 6px;
}
.mz-footer-cta {
	margin-top: 10px;
	padding: 10px 22px;
	font-size: 15px;
}
.mz-logo-footer { color: var(--mz-yellow); }
.mz-footer-brand p { max-width: 340px; }
.mz-footer-col h4 {
	color: var(--mz-white);
	font-family: var(--mz-font-display);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 14px;
	margin: 0 0 18px;
}
.mz-footer-menu { list-style: none; margin: 0; padding: 0; }
.mz-footer-menu li { margin-bottom: 10px; }
.mz-footer-menu a { text-decoration: none; opacity: 0.85; }
.mz-footer-menu a:hover { opacity: 1; color: var(--mz-yellow); }
.mz-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0;
	font-size: 14px;
}
.mz-footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.mz-footer-bottom-inner p { margin: 0; }
.mz-footer-legal a { text-decoration: none; opacity: 0.85; margin-left: 18px; }
.mz-footer-legal a:hover { opacity: 1; color: var(--mz-yellow); }

/* ---------- WooCommerce polish ---------- */
.mz-shop-wrap { padding: 48px 24px 88px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--mz-font-display);
	font-weight: 800;
	font-size: 18px;
}
.woocommerce ul.products li.product .price { color: var(--mz-red); font-weight: 700; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--mz-red);
	color: var(--mz-white);
	border-radius: var(--mz-radius);
	font-weight: 700;
	padding: 12px 26px;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--mz-navy);
	color: var(--mz-white);
}
.woocommerce span.onsale {
	background: var(--mz-yellow);
	color: var(--mz-navy);
	font-weight: 800;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.mz-cards { grid-template-columns: repeat(2, 1fr); }
	.mz-footer-grid { grid-template-columns: 1fr; gap: 32px; }

	.mz-burger { display: flex; }
	.mz-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--mz-white);
		box-shadow: 0 16px 32px rgba(26, 27, 46, 0.12);
		padding: 16px 24px 24px;
	}
	.mz-nav.is-open { display: block; }
	.mz-nav .mz-menu { flex-direction: column; gap: 16px; }
	.mz-header-actions .mz-btn-red { display: none; }
}

@media (max-width: 560px) {
	.mz-cards { grid-template-columns: 1fr; }
	.mz-footer-bottom-inner { justify-content: center; text-align: center; }
	.mz-hero { padding: 64px 0 56px; }
	.mz-hero-cta .mz-btn { width: 100%; }
	.mz-cart { padding: 8px 14px; font-size: 14px; }
}

/* ============================================
   WOOCOMMERCE — Mazish styling (v1.0.3)
   ============================================ */

/* Wrapper spacing */
.mz-woo-wrap {
	padding-top: 48px;
	padding-bottom: 72px;
}
.mz-woo-wrap h1.page-title {
	font-family: var(--mz-font-head, 'Archivo', sans-serif);
	font-size: 40px;
	font-weight: 800;
	color: var(--mz-navy);
	margin: 0 0 8px;
}

/* Result count + ordering row */
.mz-woo-wrap .woocommerce-result-count {
	color: #667;
	margin: 6px 0 0;
}
.mz-woo-wrap .woocommerce-ordering {
	float: right;
	margin: -34px 0 20px;
}
.mz-woo-wrap .woocommerce-ordering select {
	padding: 10px 14px;
	border: 2px solid var(--mz-navy);
	border-radius: 10px;
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	cursor: pointer;
}

/* ---------- Product grid ---------- */
.mz-woo-wrap ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px 28px;
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
}
.mz-woo-wrap ul.products::before,
.mz-woo-wrap ul.products::after { display: none; }
.mz-woo-wrap ul.products li.product {
	width: 100%;
	margin: 0;
	padding: 0;
	float: none;
	text-align: left;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 14px rgba(35,41,70,.07);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
	display: flex;
	flex-direction: column;
}
.mz-woo-wrap ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 26px rgba(35,41,70,.14);
}
.mz-woo-wrap ul.products li.product a img {
	width: 100%;
	height: auto;
	border-radius: 0;
	margin: 0;
	display: block;
}
.mz-woo-wrap ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--mz-font-head, 'Archivo', sans-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--mz-navy);
	padding: 16px 18px 2px;
	line-height: 1.35;
}
.mz-woo-wrap ul.products li.product .price {
	color: var(--mz-red);
	font-weight: 800;
	font-size: 16px;
	padding: 4px 18px 0;
	display: block;
}
.mz-woo-wrap ul.products li.product .button {
	background: var(--mz-red);
	color: #fff;
	border: none;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	padding: 12px 24px;
	margin: 14px 18px 20px;
	align-self: flex-start;
	transition: background .15s ease, transform .15s ease;
}
.mz-woo-wrap ul.products li.product .button:hover {
	background: #e62e40;
	transform: translateY(-1px);
	color: #fff;
}
.mz-woo-wrap ul.products li.product .onsale {
	background: var(--mz-yellow);
	color: var(--mz-navy);
	font-weight: 800;
	border-radius: 999px;
	padding: 6px 14px;
	top: 12px;
	left: 12px;
	right: auto;
	margin: 0;
	position: absolute;
}

/* ---------- Single product ---------- */
.mz-woo-wrap div.product {
	margin-top: 8px;
}
.mz-woo-wrap div.product .product_title {
	font-family: var(--mz-font-head, 'Archivo', sans-serif);
	font-size: 34px;
	font-weight: 800;
	color: var(--mz-navy);
	line-height: 1.15;
	margin-bottom: 10px;
}
.mz-woo-wrap div.product p.price,
.mz-woo-wrap div.product span.price {
	color: var(--mz-navy);
	font-size: 1.55em;
	font-weight: 800;
}
.mz-woo-wrap div.product p.price {
	margin-bottom: 22px;
}

/* Gallery */
.mz-woo-wrap div.product div.images {
	margin-bottom: 2.5em;
}
.mz-woo-wrap div.product div.images img {
	border-radius: 16px;
}
.mz-woo-wrap div.product div.images .flex-control-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 14px;
	padding: 0;
}
.mz-woo-wrap div.product div.images .flex-control-thumbs li {
	width: auto;
	max-width: 90px;
	float: none;
	margin: 0;
}
.mz-woo-wrap div.product div.images .flex-control-thumbs li img {
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	opacity: .75;
	transition: opacity .15s ease, border-color .15s ease;
}
.mz-woo-wrap div.product div.images .flex-control-thumbs li img.flex-active,
.mz-woo-wrap div.product div.images .flex-control-thumbs li img:hover {
	border-color: var(--mz-yellow);
	opacity: 1;
}

/* Variations */
.mz-woo-wrap div.product form.cart {
	margin: 20px 0 26px;
}
.mz-woo-wrap div.product form.cart .variations {
	margin-bottom: 18px;
}
.mz-woo-wrap div.product form.cart .variations td,
.mz-woo-wrap div.product form.cart .variations th {
	padding: 8px 0;
	border: none;
	vertical-align: middle;
	text-align: left;
	line-height: 1.4;
}
.mz-woo-wrap div.product form.cart .variations th.label {
	padding-right: 16px;
	white-space: nowrap;
}
.mz-woo-wrap div.product form.cart .variations label {
	font-weight: 700;
	color: var(--mz-navy);
	font-size: 15px;
}
.mz-woo-wrap div.product form.cart .variations select {
	width: 100%;
	max-width: 300px;
	padding: 12px 16px;
	border: 2px solid var(--mz-navy);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	cursor: pointer;
}
.mz-woo-wrap div.product form.cart .reset_variations {
	color: var(--mz-red);
	font-size: 13px;
	margin-left: 10px;
}
.mz-woo-wrap .woocommerce-variation-price {
	margin: 6px 0 14px;
}

/* Qty + Add to cart */
.mz-woo-wrap div.product form.cart div.quantity {
	margin-right: 12px;
}
.mz-woo-wrap div.product form.cart .quantity .qty {
	width: 74px;
	padding: 12px 10px;
	border: 2px solid var(--mz-navy);
	border-radius: 10px;
	font-size: 15px;
	text-align: center;
}
.mz-woo-wrap div.product form.cart .single_add_to_cart_button {
	background: var(--mz-red);
	color: #fff;
	padding: 14px 34px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	border: none;
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.mz-woo-wrap div.product form.cart .single_add_to_cart_button:hover {
	background: #e62e40;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255,59,78,.35);
}

/* Meta */
.mz-woo-wrap div.product .product_meta {
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid #ececf2;
	font-size: 13.5px;
	color: #778;
}
.mz-woo-wrap div.product .product_meta a { color: var(--mz-navy); font-weight: 600; }

/* Tabs */
.mz-woo-wrap div.product .woocommerce-tabs {
	margin: 48px 0 30px;
	clear: both;
}
.mz-woo-wrap div.product .woocommerce-tabs ul.tabs {
	margin: 0 0 0.5em;
	padding: 0;
}
.mz-woo-wrap div.product .woocommerce-tabs ul.tabs li {
	border-radius: 10px 10px 0 0;
	background: #f1f2f7;
	border-color: #e2e4ee;
}
.mz-woo-wrap div.product .woocommerce-tabs ul.tabs li a {
	color: var(--mz-navy);
	font-weight: 700;
}
.mz-woo-wrap div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--mz-navy);
	border-color: var(--mz-navy);
}
.mz-woo-wrap div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
}
.mz-woo-wrap div.product .woocommerce-tabs .panel {
	max-width: 880px;
	padding: 26px 0 6px;
	line-height: 1.75;
	color: #333;
}
.mz-woo-wrap div.product .woocommerce-tabs .panel h2 {
	font-family: var(--mz-font-head, 'Archivo', sans-serif);
	color: var(--mz-navy);
	font-weight: 800;
}

/* Related products */
.mz-woo-wrap .related.products {
	clear: both;
	margin-top: 30px;
}
.mz-woo-wrap .related.products > h2 {
	font-family: var(--mz-font-head, 'Archivo', sans-serif);
	color: var(--mz-navy);
	font-weight: 800;
	font-size: 26px;
	margin-bottom: 6px;
}

/* ---------- Cart / Checkout ---------- */
.mz-woo-wrap table.shop_table {
	border: 1px solid #ececf2;
	border-radius: 14px;
	overflow: hidden;
}
.mz-woo-wrap table.shop_table th {
	color: var(--mz-navy);
	font-weight: 700;
}
.mz-woo-wrap .wc-proceed-to-checkout .checkout-button,
.mz-woo-wrap #place_order,
.mz-woo-wrap .cart .button {
	background: var(--mz-red) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-weight: 700 !important;
	border: none !important;
}
.mz-woo-wrap .wc-proceed-to-checkout .checkout-button:hover,
.mz-woo-wrap #place_order:hover,
.mz-woo-wrap .cart .button:hover {
	background: #e62e40 !important;
}

/* Notices */
.mz-woo-wrap .woocommerce-message,
.mz-woo-wrap .woocommerce-info {
	border-top-color: var(--mz-navy);
	border-radius: 0 0 10px 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.mz-woo-wrap ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px 18px;
	}
	.mz-woo-wrap h1.page-title { font-size: 32px; }
	.mz-woo-wrap div.product .product_title { font-size: 27px; }
}
@media (max-width: 560px) {
	.mz-woo-wrap ul.products {
		grid-template-columns: 1fr;
	}
	.mz-woo-wrap { padding-top: 28px; padding-bottom: 48px; }
	.mz-woo-wrap .woocommerce-ordering { float: none; margin: 14px 0 0; }
	.mz-woo-wrap div.product form.cart .variations select { max-width: 100%; }
}
