/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
	--bg: #ffffff;
	--text: #1f2937;
	--muted: #6b7280;
	--brand: #1ea97c;
	--brand-600: #179a70;
	--brand-50: #e9fbf4;
	--accent: #ffb703;
	--line: #e5e7eb;
	--shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
}

/* =====================================================
   LAYOUT
   ===================================================== */

/* Container */
.container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
}

.logo {
	font-weight: 600;
	font-size: clamp(14px, 2.5vw, 20px);
	color: var(--text);
	text-decoration: none;
}

/* Navigation */
.nav {
	position: relative;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 8px;
	padding: 10px;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: #1f2937;
	margin: 5px 0;
}

.nav-toggle .bar {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #000;
	border-radius: 2px;
	transition: 0.3s ease;
}

.nav-list {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
}

.nav-list a:hover {
	color: var(--brand);
}

.header-cta {
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	background: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	padding: 32px 0;
	justify-items: stretch;
}

.footer-grid > div:nth-child(1) {
	text-align: left;
}

.footer-grid > div:nth-child(2) {
	text-align: center;
}

.footer-grid > div:nth-child(3) {
	text-align: right;
}

.foot-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}

.foot-list a {
	color: var(--text);
	text-decoration: none;
}

.foot-list a:hover {
	color: var(--brand);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-top: 1px solid var(--line);
}

.socials {
	display: flex;
	gap: 12px;
}

.socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #f5f5f5;
	border-radius: 50%;
	font-size: 1.4rem;
	color: #333;
	transition: background-color 0.3s, color 0.3s;
	text-decoration: none;
	margin-left: 0;
}

.socials a:hover {
	background-color: #4caf50;
	color: #fff;
}

/* =====================================================
   COMPONENTS
   ===================================================== */

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: .2s;
}

.btn-lg {
	height: 48px;
	padding: 0 20px;
	font-size: 16px;
}

.btn-block {
	width: 100%;
}

.btn-primary {
	background: var(--brand);
	color: #fff;
	padding: 0.9em 1.8em;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.btn-secondary {
	background: #111827;
	color: #fff;
}

.btn-outline {
	background: #fff;
	color: var(--text);
	border-color: var(--line);
}

.btn-outline:hover {
	border-color: var(--text);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: #000;
}

.btn-ghost:hover {
	background: var(--line);
}

.cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: .2s;
	gap: 8px;
	background: #1ea97c;
	color: #fff;
}

.cart-button:hover {
	background: #178665;
}

.cart-icon i {
	font-size: 18px;
}

.cart-count {
	background: #ffffff;
	color: #104e3c;
	padding: 2px 8px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

/* Badges */
.badge {
	background: var(--brand-50);
	color: var(--brand-600);
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 12px;
}

/* Chips */
.chip {
	height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	cursor: pointer;
	font-weight: 600;
}

.chip-active {
	border-color: var(--brand);
	background: var(--brand-50);
	color: var(--brand-600);
}

/* Cards */
.card {
	background: #fff;
	border-radius: var(--radius-lg, 12px);
	box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
	padding: 24px;
	text-align: left;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg, 0 8px 20px rgba(0, 0, 0, 0.12));
}

.card h3 {
	margin-bottom: 10px;
	font-size: 1.1rem;
	color: var(--text, #111);
}

.card p {
	font-size: 0.95rem;
	color: var(--muted, #555);
}

/* Icons */
.icon {
	font-size: 24px;
	margin-bottom: 8px;
}

/* Form Elements */
.size-select {
	width: 100%;
	padding: 8px;
	margin: 10px 0 12px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	box-sizing: border-box;
}

/* =====================================================
   SECTIONS
   ===================================================== */

/* Hero Section */
.hero {
	padding: 40px 0 24px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 32px;
	align-items: center;
}

.hero-content h1 {
	font-size: 40px;
	line-height: 1.1;
	margin: 0 0 12px;
}

.hero-content p {
	color: var(--muted);
	margin: 0 0 20px;
}

.hero-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.hero-badges {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.hero-media .media-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 10px;
	box-shadow: var(--shadow);
}

.hero-media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 14px;
	object-fit: cover;
}

/* Trust Section */
.trust {
	padding: 20px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.trust-title {
	text-align: center;
	color: var(--muted);
	margin: 0 0 12px;
	font-size: 14px;
}

.logo-row {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.logo-dummy {
	color: #9ca3af;
	border: 1px dashed #e5e7eb;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 12px;
}

/* How Section */
.how {
	padding: 56px 0;
}

.how h2 {
	margin: 0 0 24px;
	font-size: 28px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
}

/* Shop Section */
.shop {
	padding: 56px 0;
	background: #fcfdfd;
}

.shop h2 {
	margin: 0 0 8px;
	font-size: 28px;
}

.section-sub {
	color: var(--muted);
	margin: 0 0 24px;
}

.section-header h2 {
	font-size: 2em;
	margin-bottom: 0.3em;
	color: #333;
}

.section-header p {
	color: #666;
	margin-bottom: 2em;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.product-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-media {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-card .product-media img {
	transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
	transform: scale(1.08);
}

.product-desc {
	color: var(--muted);
	margin: 0;
}

.price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.price {
	font-size: 22px;
	font-weight: 700;
}

.note {
	color: var(--muted);
	font-size: 12px;
}

.freq {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

/* Benefits Section */
.benefits {
	padding: 56px 0;
	background: #f8f9fa;
	text-align: center;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5em;
}

.benefit {
	background: #fff;
	padding: 1.5em;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.benefit .icon {
	font-size: 2.5em;
	margin-bottom: 0.5em;
}

.benefit h3 {
	margin-bottom: 0.4em;
	color: #222;
}

/* Reviews Section */
.reviews {
	padding: 56px 0;
	background: #fff;
}

.reviews h2 {
	margin: 0 0 20px;
}

.reviews-slider {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.review {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
	box-shadow: var(--shadow);
}

.review p {
	margin: 0 0 12px;
}

.author {
	display: flex;
	gap: 12px;
	align-items: center;
}

.author img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.slider-controls {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	margin-top: 12px;
}

.slider-controls button {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--line);
	background: #fff;
	cursor: pointer;
}

/* FAQ Section */
.faq {
	padding: 56px 0;
	background: #fcfdfd;
}

.faq details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 12px 16px;
	margin-bottom: 10px;
}

.faq summary {
	cursor: pointer;
	font-weight: 600;
}

.faq p {
	margin: 8px 0 0;
	color: var(--muted);
}

/* CTA Section */
.cta {
	padding: 48px 0;
	background: linear-gradient(90deg, var(--brand-50), #fff);
}

.cta-inner {
	text-align: center;
}

.cta h2 {
	margin: 0 0 8px;
}

.cta p {
	color: var(--muted);
	margin: 0 0 16px;
}

/* Usage Section */
.usage {
	padding: 4em 0;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	text-align: center;
}

.usage h2 {
	margin: 0 0 8px;
	font-size: 2em;
	color: #222;
}

.usage .section-sub {
	color: var(--muted);
	margin-bottom: 24px;
}

.usage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.8em;
	position: relative;
}

.usage-step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
	text-align: left;
	box-shadow: var(--shadow);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.usage-step h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.usage-step p {
	margin: 0;
	color: var(--muted);
}

.usage-step .icon {
	font-size: 2em;
	margin-bottom: 0.5em;
}

.step-num {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-50);
	color: var(--brand-600);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 12px;
}

.usage p {
	font-size: 0.95em;
}

.usage-cta {
	margin-top: 3em;
}

.usage-extra {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 40px;
}

.usage-extra-card {
	background: #ffffff;
	border: 1px solid #e6e8eb;
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
	position: relative;
}

.usage-extra-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.usage-extra-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	padding: 8px;
	border-bottom: 1px solid #e6e8eb;
}

.usage-extra-card h4 {
	font-size: 18px;
	margin: 12px 0 8px;
}

.usage-extra-card p {
	padding: 0 12px 16px;
	color: var(--muted);
}

.usage-extra-card .step-num {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-50);
	color: var(--brand-600);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 12px;
}

.usage-extra-title {
	margin-top: 40px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.usage-extra-sub {
	text-align: center;
	color: var(--muted);
	margin-bottom: 20px;
}

/* Value Section */
.value {
	padding: 64px 0;
	background-color: var(--section-bg, #fff);
}

.value-content h2 {
	margin-bottom: 16px;
	font-size: 1.8rem;
	line-height: 1.4;
}

.value-content p {
	margin: 8px 0;
	color: var(--muted, #555);
}

.value-cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* =====================================================
   WOOCOMMERCE STYLES
   ===================================================== */

/* Base Reset */
.woocommerce ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce a {
	text-decoration: none;
	color: inherit;
}

.woocommerce button,
.woocommerce .button,
.woocommerce input[type="submit"] {
	font-family: inherit;
	border-radius: 12px;
	padding: 12px 20px;
	cursor: pointer;
	border: none;
}

.woocommerce table {
	border-collapse: collapse;
	width: 100%;
}

/* My Account */
.woocommerce-account .woocommerce {
	padding-top: 30px;
	padding-bottom: 30px;
}

.woocommerce-account h2,
.woocommerce-account h3 {
	margin-top: 30px;
	margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation {
	margin-bottom: 28px;
}

.woocommerce-MyAccount-navigation li {
	margin-bottom: 12px;
}

.woocommerce form .form-row {
	margin-bottom: 20px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 14px 16px;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
	margin-bottom: 24px;
	padding: 14px 18px;
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-info::before {
	font-family: "Dashicons";
	font-size: 16px;
	margin-right: 8px;
	color: #666;
}

/* Single Product Page */
.single-product.woocommerce-page main .woocommerce,
.single-product.woocommerce-page #primary .woocommerce,
.single-product.woocommerce-page .site-main .woocommerce {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 45px;
	box-sizing: border-box;
}

.single-product.woocommerce-page .woocommerce div.product,
.single-product.woocommerce-page .woocommerce div.product .summary,
.single-product.woocommerce-page .woocommerce .woocommerce-product-gallery {
	margin-left: 0;
}

.single-product .price {
	color: #000 !important;
	font-weight: 700;
	font-size: 22px;
}

/* Single Product - Card Layout */
.single-product .product {
	display: flex;
	gap: 60px;
	align-items: stretch;
	background: #fff;
	border: 1px solid rgba(17, 17, 17, .08);
	border-radius: 16px;
	padding: 40px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, .7) inset,
		0 1px 0 rgba(17, 17, 17, .03) inset,
		0 18px 45px rgba(0, 0, 0, .06);
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.single-product .product:hover {
	border-color: rgba(17, 17, 17, .10);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, .75) inset,
		0 1px 0 rgba(17, 17, 17, .04) inset,
		0 24px 60px rgba(0, 0, 0, .08);
	transform: translateY(-2px);
}

.single-product .woocommerce-product-gallery {
	flex: 1;
	display: flex;
}

.single-product .woocommerce-product-gallery__wrapper {
	width: 100%;
}

.single-product .woocommerce-product-gallery img {
	border-radius: 14px;
}

.single-product .summary {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.single-product .summary > * {
	flex-shrink: 0;
}

/* Single Product - Content Order */
.single-product .product_title {
	order: 1;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.15;
	color: #111;
	margin-bottom: 10px;
}

.single-product p.price,
.single-product span.price {
	order: 2;
	margin-top: 20px;
	font-size: 32px;
	font-weight: 600;
	color: #111;
	margin-bottom: 0;
}

.single-product .woocommerce-product-details__short-description {
	order: 3;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.single-product .custom-full-description {
	order: 4;
	margin-top: 18px;
	padding-top: 22px;
	border-top: 1px solid #eee;
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

.single-product form.cart {
	order: 5;
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.single-product #wc-stripe-express-checkout-element,
.single-product .wc-stripe-payment-request-wrapper,
.single-product .payment-request-button {
	order: 999;
	margin-top: 18px;
}

/* Single Product - Quantity & Add to Cart */
.single-product.woocommerce-page .woocommerce div.product form.cart {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity {
	display: flex;
	align-items: stretch;
	height: 44px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity .qty {
	width: 72px;
	height: 44px;
	border: 0;
	outline: 0;
	background: transparent;
	text-align: center;
	padding: 0 10px;
	font-size: 14px;
	color: var(--text);
	box-shadow: none;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product.woocommerce-page .woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity .qty[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity button.plus,
.single-product.woocommerce-page .woocommerce div.product form.cart .quantity button.minus {
	width: 44px;
	height: 44px;
	border: 0;
	background: #f6f6f6;
	color: var(--text);
	cursor: pointer;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity button.plus:hover,
.single-product.woocommerce-page .woocommerce div.product form.cart .quantity button.minus:hover {
	background: #efefef;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .single_add_to_cart_button.button {
	height: 44px;
	padding: 0 18px;
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	background: #111;
	color: #fff;
	font-weight: 600;
	line-height: 44px;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .single_add_to_cart_button.button:hover {
	background: #000;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .single_add_to_cart_button.button:disabled,
.single-product.woocommerce-page .woocommerce div.product form.cart .single_add_to_cart_button.button.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.single-product.woocommerce-page .woocommerce div.product form.cart .quantity:focus-within,
.single-product.woocommerce-page .woocommerce div.product form.cart .single_add_to_cart_button.button:focus {
	outline: 2px solid rgba(17, 17, 17, 0.18);
	outline-offset: 2px;
}

.single-product .quantity {
	margin: 0;
}

.single-product .quantity input.qty {
	width: 72px;
	height: 44px;
	font-size: 16px;
	text-align: center;
	border-radius: 8px;
}

.single-product button.single_add_to_cart_button {
	background-color: #00c853;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 26px;
	border-radius: 8px;
	border: none;
	transition: 0.25s ease;
}

.single-product button.single_add_to_cart_button:hover {
	background-color: #00b248;
}

/* Related Products */
.related.products {
	width: 100%;
	margin-top: 100px;
	padding-top: 60px;
	border-top: 1px solid #eee;
}

.related.products h2 {
	font-size: 26px;
	font-weight: 700;
	color: #111;
	margin-bottom: 32px;
}

.related.products ul.products li.product {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 14px 14px 16px;
	transition: 0.2s ease;
}

.related.products ul.products li.product:hover {
	border-color: #e5e5e5;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
	transform: translateY(-2px);
}

.related.products ul.products li.product a img {
	border-radius: 10px;
	margin-bottom: 10px;
}

.related.products ul.products li.product .woocommerce-loop-product__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	color: #111;
	margin: 6px 0 6px;
}

.related.products ul.products li.product .price {
	font-size: 15px;
	font-weight: 700;
	color: #111;
	margin: 8px 0 0;
}

.related.products ul.products li.product .related-short-desc {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.45;
	color: #555;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.related.products ul.products li.product a {
	text-decoration: none;
}

/* Empty Cart */
.woocommerce-cart .wc-block-grid__products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	max-width: 820px;
	margin: 40px auto 16px;
	padding: 0;
}

.woocommerce-cart .wc-block-grid__product {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(17, 17, 17, .08);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	min-height: 520px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, .7) inset,
		0 1px 0 rgba(17, 17, 17, .03) inset,
		0 18px 40px rgba(0, 0, 0, .06);
	transition: .25s ease;
}

.woocommerce-cart .wc-block-grid__product:hover {
	transform: translateY(-3px);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, .8) inset,
		0 1px 0 rgba(17, 17, 17, .04) inset,
		0 26px 60px rgba(0, 0, 0, .08);
}

.woocommerce-cart .wc-block-grid__product-image {
	width: 100%;
	max-width: 240px;
	margin-bottom: 16px;
}

.woocommerce-cart .wc-block-grid__product-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 14px;
}

.woocommerce-cart .wc-block-grid__product-title {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	text-align: center;
	min-height: 48px;
	margin: 12px 0 8px;
}

.woocommerce-cart .wc-block-grid__product-price {
	font-size: 20px;
	font-weight: 600;
	color: #111;
	margin-top: auto;
	margin-bottom: 16px;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart {
	width: 100%;
	margin-top: auto;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link {
	width: 100%;
	background: #00c853;
	color: #fff;
	border-radius: 12px;
	padding: 14px 26px;
	font-weight: 600;
	transition: .25s ease;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
	background: #00b248;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2 {
	font-size: 28px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 32px;
	text-align: center;
}

.woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__product {
	flex: initial;
	max-width: none;
}

/* WooCommerce Page Layout */
body.woocommerce-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body.woocommerce-page main,
body.woocommerce-page .site-main,
body.woocommerce-page #primary {
	flex: 1;
}

body.woocommerce-page .site-footer {
	margin-top: auto;
}

/* =====================================================
   MEDIA QUERIES
   ===================================================== */

/* Mobile Navigation */
@media (max-width: 820px) {
	.nav-list {
		position: absolute;
		right: 0;
		top: 54px;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 12px;
		padding: 12px;
		display: none;
		flex-direction: column;
		gap: 12px;
		width: 220px;
		box-shadow: var(--shadow);
	}

	.nav-list.open {
		display: flex;
	}
}

/* Tablet & Mobile */
@media (max-width: 960px) {
	.hero-inner {
		grid-template-columns: 1fr;
		padding: 8px 0;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.benefit-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.steps {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.usage-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.hero-content h1 {
		font-size: 32px;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr 1fr;
		text-align: center;
		justify-items: center;
	}
}

/* Usage Extra */
@media (min-width: 600px) {
	.usage-extra {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.usage-extra {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Form Elements */
@media (max-width: 480px) {
	.size-select {
		font-size: 0.9rem;
		padding: 6px;
	}

	.header-cta {
		gap: 6px;
	}

	.header-cta .btn {
		padding: 8px 12px;
		font-size: 14px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.size-select {
		font-size: 1rem;
		padding: 8px;
	}

	.header-cta {
		gap: 8px;
	}

	.header-cta .btn {
		padding: 10px 16px;
		font-size: 15px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.header-cta {
		gap: 12px;
	}

	.header-cta .btn {
		padding: 12px 18px;
		font-size: 16px;
	}
}

@media (min-width: 769px) {
	.size-select {
		font-size: 1.1rem;
		padding: 10px;
		max-width: 300px;
		/* Опция: чтобы поле не растягивалось через чур */
	}
}

/* WooCommerce - Single Product Mobile */
@media (max-width: 600px) {
	.single-product.woocommerce-page .woocommerce div.product form.cart {
		flex-direction: row;
		align-items: stretch;
		flex-wrap: nowrap;
		gap: 10px;
	}

	.single-product.woocommerce-page .woocommerce div.product form.cart .quantity {
		width: auto;
		flex: 0 0 auto;
		height: 42px;
	}

	.single-product.woocommerce-page .woocommerce div.product form.cart .quantity .qty {
		width: 58px;
		height: 42px;
		font-size: 14px;
	}

	.single-product.woocommerce-page .woocommerce div.product form.cart .quantity button.plus,
	.single-product.woocommerce-page .woocommerce div.product form.cart .quantity button.minus {
		width: 42px;
		height: 42px;
	}

	.single-product.woocommerce-page .woocommerce div.product form.cart .single_add_to_cart_button.button {
		flex: 1 1 auto;
		width: auto;
		height: 42px;
		padding: 0 14px;
		font-size: 14px;
		line-height: 42px;
		white-space: nowrap;
	}
}

@media (max-width: 992px) {
	.single-product .product {
		flex-direction: column;
		gap: 36px;
		padding: 24px;
		border-radius: 14px;
	}

	.single-product button.single_add_to_cart_button {
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 16px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-gutter: stable both-edges;
		scrollbar-width: thin;
		padding-bottom: 6px;
		margin: 0;
		list-style: none;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
		height: 6px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar-track {
		background: rgba(0, 0, 0, .06);
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, .35);
		border-radius: 4px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li {
		flex: 0 0 auto;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		display: block;
		padding: 10px 14px;
		border: 1px solid #e5e5e5;
		border-radius: 10px;
		font-size: 14px;
		white-space: nowrap;
		text-decoration: none;
		color: var(--text);
		background: #fff;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
		background: #f5f5f5;
		border-color: #dcdcdc;
		font-weight: 600;
	}
}

@media (max-width: 768px) {
	.related.products ul.products li.product {
		padding: 12px;
		border-radius: 10px;
	}

	.woocommerce-cart .wc-block-grid__products {
		grid-template-columns: 1fr;
		max-width: 420px;
	}

	.woocommerce-cart .wc-block-grid__product {
		min-height: auto;
	}
}
