/**
 * Zawadi Baby Shop WooCommerce Custom Stylesheet
 * 1:1 Mirror Clone for Shop, Product, Cart, and Checkout
 */

/* ==========================================================================
   1. BREADCRUMBS
   ========================================================================== */
.breadcrumb-trail {
	font-size: 12.5px;
	color: var(--text-muted);
	padding: 16px 0 12px;
}
.breadcrumb-trail a {
	color: var(--primary);
	font-weight: 600;
}
.breadcrumb-trail a:hover {
	text-decoration: underline;
}
.breadcrumb-trail span {
	color: var(--text-dark);
	font-weight: 600;
}

/* ==========================================================================
   2. SHOP CATALOG PAGE
   ========================================================================== */
.shop-hero-header {
	margin-bottom: 30px;
}
.shop-title {
	font-size: 36px;
	font-weight: 900;
	color: var(--primary-semi-dark);
	margin-bottom: 8px;
}
.shop-desc-wrap {
	max-width: 800px;
	margin-bottom: 20px;
}
.shop-desc {
	font-size: 14.5px;
	color: var(--text-muted);
	line-height: 1.6;
}
.read-more-toggle {
	background: none;
	border: 0;
	color: var(--primary);
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
	margin-top: 4px;
}

.shop-trust-badges {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.shop-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 10px 16px;
	box-shadow: var(--shadow-sm);
}
.shop-badge strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark);
}
.shop-badge span {
	font-size: 11.5px;
	color: var(--text-muted);
}

.shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	padding-bottom: 60px;
}

/* Sidebar Filter */
.shop-sidebar .filter-box {
	background: #361729;
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 24px 20px;
}
.filter-group {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.filter-group:last-of-type {
	border-bottom: 0;
	margin-bottom: 16px;
}
.filter-search-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-md);
	padding: 8px 12px;
}
.filter-search-input {
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 13.5px;
	outline: none;
	width: 100%;
}
.filter-search-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.filter-heading {
	font-size: 14.5px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}
.filter-checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.filter-chk {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
}
.filter-chk input[type="checkbox"] {
	accent-color: var(--primary);
	width: 16px;
	height: 16px;
}
.price-slider-wrap {
	padding-top: 6px;
}
.price-range-slider {
	width: 100%;
	accent-color: var(--primary);
	margin-bottom: 8px;
}
.price-range-values {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}
.btn-clear-filters {
	width: 100%;
	padding: 8px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: var(--transition);
}
.btn-clear-filters:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

/* Shop Main Grid */
.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	font-size: 14px;
}
.sort-select {
	padding: 6px 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-pill);
	font-size: 13px;
	color: var(--text-dark);
	background: #fff;
	outline: none;
}

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

.shop-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.shop-pagination .page-numbers,
.shop-pagination .page-number,
.shop-pagination .page-next,
.shop-pagination .page-prev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 50px;
	border: 1px solid var(--border-color, #e2e8f0);
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark, #1e293b);
	text-decoration: none;
	background: #ffffff;
	transition: all 0.2s ease;
	line-height: 1;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.shop-pagination .page-numbers.current,
.shop-pagination .page-number.current {
	background: var(--primary, #e91e63);
	color: #ffffff;
	border-color: var(--primary, #e91e63);
	cursor: default;
	box-shadow: 0 4px 10px rgba(233, 30, 99, 0.25);
}
.shop-pagination a.page-numbers:hover:not(.current),
.shop-pagination a.page-number:hover:not(.current),
.shop-pagination a.page-next:hover,
.shop-pagination a.page-prev:hover {
	background: var(--primary-ultra-light, #fce4ec);
	color: var(--primary, #e91e63);
	border-color: var(--primary, #e91e63);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}
.shop-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	min-width: auto;
	padding: 0 6px;
	color: var(--text-muted, #64748b);
	box-shadow: none;
	cursor: default;
}
.shop-pagination .page-numbers.prev,
.shop-pagination .page-numbers.next {
	font-weight: 600;
	font-size: 13.5px;
	padding: 0 16px;
	border-radius: 20px;
}
.shop-footer-note {
	text-align: center;
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 30px;
}

/* ==========================================================================
   3. SINGLE PRODUCT PAGE
   ========================================================================== */
.product-stage-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}

/* Gallery */
.product-gallery-wrap {
	position: relative;
}
.product-primary-image {
	position: relative;
	background: #fdfafc;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-primary-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-wish-btn,
.gallery-zoom-btn {
	position: absolute;
	width: 36px;
	height: 36px;
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}
.gallery-wish-btn { top: 16px; right: 16px; color: var(--primary); }
.gallery-zoom-btn { top: 60px; right: 16px; color: var(--text-muted); }
.gallery-wish-btn:hover,
.gallery-zoom-btn:hover { transform: scale(1.1); }

.product-thumbnails {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 14px;
}
.thumb-item {
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 1;
	cursor: pointer;
	transition: var(--transition);
}
.thumb-item.active {
	border-color: var(--primary);
}
.thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Summary */
.product-summary-wrap .product-title {
	font-size: 32px;
	font-weight: 900;
	color: var(--text-dark);
	margin-bottom: 20px;
	line-height: 1.2;
}
.product-feature-checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}
.product-feature-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	color: var(--text-dark);
}
.product-feature-checklist .check-ic {
	margin-top: 3px;
	flex-shrink: 0;
}
.product-stage-price {
	font-size: 32px;
	font-weight: 900;
	color: var(--primary-semi-dark);
	margin-bottom: 20px;
}

.cart-action-row {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}
.single-stepper {
	height: 48px;
}
.single-stepper .qty-btn {
	width: 36px;
	height: 48px;
	font-size: 18px;
}
.single-stepper .qty-input {
	width: 44px;
	height: 48px;
	font-size: 16px;
}
.btn-single-add-to-cart {
	flex: 1;
	background: var(--success);
	color: #fff;
	border: 0;
	border-radius: var(--radius-pill);
	font-size: 16px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: var(--transition);
}
.btn-single-add-to-cart:hover {
	background: var(--success-hover);
	box-shadow: 0 4px 12px rgba(41, 167, 69, 0.3);
}

.product-order-checked {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.product-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	padding: 16px 0;
	margin-bottom: 20px;
}
.p-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.p-trust-item strong {
	display: block;
	font-size: 12.5px;
	color: var(--text-dark);
}
.p-trust-item span {
	font-size: 11px;
	color: var(--text-muted);
}

.product-mpesa-badge {
	background: var(--bg-soft-tint);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 10px 16px;
	font-size: 13.5px;
	text-align: center;
	margin-bottom: 16px;
}
.mpesa-green {
	color: #009944;
}

.btn-whatsapp-order {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--success);
	color: #fff;
	padding: 12px;
	border-radius: var(--radius-md);
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 24px;
	transition: var(--transition);
}
.btn-whatsapp-order:hover {
	background: var(--success-hover);
}

.product-accordions {
	border-top: 1px solid var(--border-light);
}
.p-accordion-item {
	border-bottom: 1px solid var(--border-light);
}
.p-acc-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	background: transparent;
	border: 0;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--primary);
	cursor: pointer;
	text-align: left;
}
.acc-sign {
	font-size: 20px;
	line-height: 1;
}
.p-acc-content {
	display: none;
	padding-bottom: 14px;
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
}
.p-accordion-item.active .p-acc-content {
	display: block;
}
.p-accordion-item.active .acc-sign {
	transform: rotate(45deg);
}

/* More Details */
.product-more-details {
	padding: 50px 0;
	border-top: 1px solid var(--border-light);
}
.product-more-details .section-title {
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 24px;
}
.details-body h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 14px;
}
.details-body p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}
.details-bullet-list {
	padding-left: 20px;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Zawadi Promise */
.zawadi-promise-box {
	background: var(--bg-soft-tint);
	border: 1px solid #f2e2ec;
	border-radius: var(--radius-xl);
	padding: 40px;
	margin: 50px 0;
}
.promise-grid {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 40px;
	align-items: center;
}
.promise-media {
	width: 100%;
}
.promise-media img {
	width: 100%;
	height: auto;
	max-height: 280px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
}
.promise-title {
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 16px;
}
.promise-desc {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 16px;
}
.promise-sign {
	font-weight: 800;
	color: var(--primary);
}

/* ==========================================================================
   4. CART PAGE
   ========================================================================== */
.cart-empty-state {
	padding: 80px 20px;
}
.cart-empty-title {
	font-size: 32px;
	font-weight: 900;
	margin: 20px 0 30px;
	color: var(--text-dark);
}
.cart-empty-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.cart-empty-link {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary);
}

.cart-success-notice {
	background: #fff;
	border: 1px solid var(--border-color);
	border-left: 4px solid var(--primary);
	padding: 14px 20px;
	border-radius: var(--radius-sm);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0 30px;
	font-size: 14px;
	font-weight: 600;
}
.cart-success-notice a {
	color: var(--primary);
	font-weight: 800;
}

.cart-layout-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 36px;
	margin-bottom: 60px;
}

.cart-item-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 18px;
	box-shadow: var(--shadow-sm);
	position: relative;
}
.cart-item-thumb img {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-md);
	object-fit: cover;
}
.cart-item-info {
	flex: 1;
}
.cart-item-title {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 4px;
}
.cart-item-unit-price {
	font-size: 13px;
	color: var(--text-muted);
	display: block;
	margin-bottom: 8px;
}
.cart-stepper {
	width: fit-content;
}
.cart-total-val {
	font-size: 16px;
	font-weight: 800;
	color: var(--text-dark);
}
.cart-item-remove {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: 0;
	font-size: 20px;
	color: var(--text-light);
	cursor: pointer;
}

.cart-totals-box {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}
.totals-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	font-size: 15px;
}
.shipping-section {
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	padding: 16px 0;
	margin: 10px 0;
}
.shipping-label {
	display: block;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 12px;
}
.shipping-methods-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ship-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 10px 14px;
	font-size: 13px;
	cursor: pointer;
}
.ship-option.active {
	border-color: var(--primary);
	background: var(--bg-soft-tint);
}
.ship-option input {
	accent-color: var(--primary);
	margin-top: 2px;
}
.shipping-note {
	font-size: 11.5px;
	color: var(--text-muted);
	margin-top: 10px;
}
.calc-shipping-link {
	display: inline-block;
	font-size: 12px;
	color: var(--primary);
	font-weight: 700;
	margin-top: 4px;
}
.total-final-row {
	font-size: 18px;
	font-weight: 900;
}
.cart-final-price {
	font-size: 24px;
	color: var(--primary);
}
.btn-checkout {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	margin-top: 16px;
}

.cart-upsell-section {
	padding: 40px 0;
	border-top: 1px solid var(--border-light);
}
.upsell-title {
	font-size: 24px;
	font-weight: 900;
	margin-bottom: 24px;
}
.upsell-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.upsell-card {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.upsell-media img {
	border-radius: var(--radius-md);
	aspect-ratio: 1;
	object-fit: cover;
	margin-bottom: 12px;
}
.upsell-card-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
}
.upsell-price {
	font-size: 15px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 12px;
}
.btn-pill-sm {
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 700;
	border-radius: var(--radius-pill);
	cursor: pointer;
}
.btn-outline-pink {
	background: #fff;
	color: var(--primary);
	border: 1px solid var(--border-color);
}
.btn-outline-pink:hover {
	background: var(--primary);
	color: #fff;
}

/* ==========================================================================
   5. CHECKOUT PAGE
   ========================================================================== */
.zawadi-checkout-body {
	background: #faf7f9;
}
.checkout-minimal-header {
	padding: 20px 0;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid var(--border-light);
}
.checkout-page-wrapper {
	padding: 30px 16px 60px;
}
.checkout-login-notice {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13.5px;
	margin-bottom: 30px;
}
.checkout-login-notice a {
	color: var(--primary);
	font-weight: 700;
}

.checkout-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
}
.checkout-sec {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 28px;
	margin-bottom: 24px;
}
.checkout-sec-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 20px;
}

/* Delivery Tabs */
.delivery-method-tabs {
	display: flex;
	background: #ede6eb;
	border-radius: var(--radius-pill);
	padding: 4px;
	margin-bottom: 20px;
}
.del-tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	border: 0;
	border-radius: var(--radius-pill);
	background: transparent;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	color: var(--text-dark);
}
.del-tab.active {
	background: #fff;
	box-shadow: var(--shadow-sm);
}
.tab-badge {
	background: #29a745;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 1px 6px;
	border-radius: var(--radius-pill);
}

.shipping-selection-box {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 24px;
}
.ship-heading {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-muted);
	margin-bottom: 14px;
}
.ship-cards-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ship-card {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	border: 1.5px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 14px 18px;
	cursor: pointer;
	transition: var(--transition);
}
.ship-card.active {
	border-color: var(--primary);
	background: var(--bg-soft-tint);
}
.ship-card-text strong {
	display: block;
	font-size: 14px;
	color: var(--text-dark);
}
.ship-card-text p {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 4px;
}
.badge-time {
	background: #fbeaf3;
	color: var(--primary);
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 4px;
	display: inline-block;
}
.ship-card-price {
	font-size: 14.5px;
	font-weight: 800;
	color: var(--text-dark);
	white-space: nowrap;
}

/* Order Summary & M-Pesa Card */
.checkout-card {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 28px;
	margin-bottom: 24px;
}
.card-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 20px;
}
.order-product-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-light);
	margin-bottom: 16px;
}
.order-prod-thumb {
	position: relative;
}
.order-prod-thumb img {
	border-radius: var(--radius-md);
	object-fit: cover;
}
.order-qty-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.order-prod-info {
	flex: 1;
	font-size: 14px;
}
.order-prod-price {
	font-size: 14.5px;
	font-weight: 800;
}
.order-math-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	padding: 8px 0;
	color: var(--text-dark);
}
.math-change-link {
	color: var(--primary);
	font-weight: 700;
	margin-left: 6px;
}
.total-row {
	border-top: 1px solid var(--border-light);
	padding-top: 14px;
	font-size: 16px;
	font-weight: 800;
}
.total-magenta {
	font-size: 20px;
	color: var(--primary);
}

/* M-Pesa Box */
.mpesa-header-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 16px;
	margin-bottom: 20px;
}
.mpesa-logo {
	height: 28px;
}
.mpesa-sub-tag {
	background: #eefaee;
	color: #009944;
	font-size: 11.5px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: var(--radius-pill);
}
.field-sub {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 8px;
}
.mpesa-input {
	height: 48px;
	font-size: 16px;
	font-weight: 600;
}
.mpesa-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 20px 0;
}
.step-box {
	background: #faf7f9;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 12px 10px;
	text-align: center;
}
.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 800;
	margin-bottom: 6px;
}
.step-desc {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.3;
}
.mpesa-legal-note {
	font-size: 11.5px;
	color: var(--text-muted);
	text-align: center;
	margin-bottom: 16px;
}
.mpesa-legal-note a {
	color: var(--primary);
}
.btn-pay-mpesa {
	width: 100%;
	padding: 14px;
	background: var(--primary);
	color: #fff;
	border: 0;
	border-radius: var(--radius-pill);
	font-size: 17px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	cursor: pointer;
	box-shadow: 0 4px 14px var(--primary-trans-20);
	transition: var(--transition);
}
.btn-pay-mpesa:hover {
	background: var(--primary-hover);
	transform: translateY(-1px);
}
.btn-mpesa-tag {
	background: #009944;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: 0.05em;
}
.mpesa-security-footer {
	margin-top: 20px;
	text-align: center;
	font-size: 11.5px;
	color: var(--text-muted);
}
.sec-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 8px;
}
.sec-loc {
	line-height: 1.4;
}

.checkout-minimal-footer {
	text-align: center;
	padding: 30px 0;
	border-top: 1px solid var(--border-light);
	font-size: 12.5px;
	color: var(--text-muted);
}
.checkout-footer-links {
	margin-bottom: 8px;
}
.checkout-footer-links a {
	color: inherit;
}

/* Responsive WooCommerce */
@media (max-width: 991px) {
	.shop-layout {
		grid-template-columns: 1fr;
	}
	.product-stage-grid {
		grid-template-columns: 1fr;
	}
	.cart-layout-grid,
	.checkout-grid {
		grid-template-columns: 1fr;
	}
	.products-catalog-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.upsell-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.promise-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.zawadi-promise-box {
		padding: 24px 20px;
		margin: 32px 0;
	}
}

@media (max-width: 580px) {
	.products-catalog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.upsell-grid {
		grid-template-columns: 1fr;
	}
	.mpesa-steps {
		grid-template-columns: 1fr;
	}
	.zawadi-promise-box {
		padding: 20px 16px;
	}
	.promise-title {
		font-size: 22px;
	}
	.promise-desc {
		font-size: 14px;
	}
}

/* ==========================================================================
   6. MY ACCOUNT PAGE
   ========================================================================== */
.account-page-wrapper {
	padding: 40px 16px 80px;
	max-width: var(--container-max);
	margin-inline: auto;
}
.account-card-box {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 40px;
	box-shadow: var(--shadow-sm);
}
.account-page-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-light);
}
.account-forms-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.account-panel {
	background: #fdf0f5;
	border-radius: var(--radius-lg);
	padding: 36px 32px;
}
.panel-heading {
	font-size: 32px;
	font-weight: 900;
	color: var(--text-dark);
	margin-bottom: 24px;
}
.magic-login-box {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 24px;
	margin-bottom: 28px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.magic-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 8px;
}
.magic-desc {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 16px;
}
.form-field-label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
}
.req-star {
	color: var(--primary);
}
.account-input {
	width: 100%;
	height: 46px;
	border: 1px solid #ebd4e2;
	border-radius: var(--radius-sm);
	padding: 0 16px;
	font-size: 14px;
	background: #fff;
	transition: var(--transition);
}
.account-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-trans-10);
}
.btn-account-pill {
	width: 100%;
	height: 44px;
	background: var(--primary);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	border: 0;
	border-radius: var(--radius-pill);
	cursor: pointer;
	margin-top: 12px;
	transition: var(--transition);
}
.btn-account-pill:hover {
	background: var(--primary-hover);
}
.magic-alt-text {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 14px;
	text-align: center;
}
.account-field-group {
	margin-bottom: 18px;
}
.pwd-input-wrap {
	position: relative;
}
.pwd-input-wrap .account-input {
	padding-right: 44px;
}
.pwd-eye-btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
}
.login-remember-row {
	margin-bottom: 20px;
}
.remember-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--text-dark);
	cursor: pointer;
}
.btn-account-submit {
	width: auto;
	min-width: 140px;
	height: 46px;
	padding: 0 32px;
	background: var(--primary);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	border: 0;
	border-radius: var(--radius-pill);
	cursor: pointer;
	letter-spacing: 0.05em;
	transition: var(--transition);
}
.btn-account-submit:hover {
	background: var(--primary-hover);
}
.lost-pwd-row {
	margin-top: 16px;
}
.lost-pwd-link {
	font-size: 13.5px;
	color: var(--primary);
	font-weight: 700;
}
.lost-pwd-link:hover {
	text-decoration: underline;
}
.reg-note {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 24px;
}

@media (max-width: 860px) {
	.account-forms-grid {
		grid-template-columns: 1fr;
	}
	.account-card-box {
		padding: 24px 16px;
	}
	.account-panel {
		padding: 24px 18px;
	}
}

/* ==========================================================================
   8. REAL WOOCOMMERCE CHECKOUT & DARAJA M-PESA STYLES
   ========================================================================== */
.woocommerce-checkout .checkout-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: start;
}
@media (max-width: 991px) {
	.woocommerce-checkout .checkout-grid {
		grid-template-columns: 1fr;
	}
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
	font-size: 20px;
	font-weight: 800;
	color: var(--text-dark, #1e293b);
	margin-bottom: 20px;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-row {
	margin: 0 0 16px;
}
.form-row.form-row-wide {
	grid-column: 1 / -1;
}

.woocommerce-input-wrapper {
	display: block;
	width: 100%;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
	width: 100%;
	height: 48px;
	padding: 10px 16px;
	border: 1.5px solid var(--border-color, #e2e8f0);
	border-radius: var(--radius-md, 10px);
	font-size: 14.5px;
	color: var(--text-dark, #1e293b);
	background: #ffffff;
	transition: all 0.2s ease;
	outline: none;
	box-sizing: border-box;
}
.woocommerce-checkout textarea {
	height: 90px;
	resize: vertical;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
	border-color: var(--primary, #e91e63);
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.woocommerce-checkout label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark, #1e293b);
	margin-bottom: 6px;
}

/* Order Review Table */
table.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
}
table.woocommerce-checkout-review-order-table th,
table.woocommerce-checkout-review-order-table td {
	padding: 12px 0;
	border-bottom: 1px solid var(--border-light, #f1f5f9);
	font-size: 14px;
	color: var(--text-dark, #1e293b);
}
table.woocommerce-checkout-review-order-table th.product-name {
	text-align: left;
	font-weight: 700;
}
table.woocommerce-checkout-review-order-table th.product-total {
	text-align: right;
	font-weight: 700;
}
table.woocommerce-checkout-review-order-table td.product-total {
	text-align: right;
	font-weight: 700;
}
table.woocommerce-checkout-review-order-table .cart-subtotal th,
table.woocommerce-checkout-review-order-table .cart-subtotal td,
table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
	border-top: 1px solid var(--border-color, #e2e8f0);
}
table.woocommerce-checkout-review-order-table .order-total th,
table.woocommerce-checkout-review-order-table .order-total td {
	font-size: 18px;
	font-weight: 800;
	color: var(--primary, #e91e63);
	border-top: 2px solid var(--border-color, #e2e8f0);
}
table.woocommerce-checkout-review-order-table ul#shipping_method {
	list-style: none;
	padding: 0;
	margin: 0;
}
table.woocommerce-checkout-review-order-table ul#shipping_method li {
	margin-bottom: 8px;
}

/* Payment Methods (M-Pesa & COD) */
#payment.woocommerce-checkout-payment {
	background: #fdfafc;
	border: 1.5px solid #fce4ec;
	border-radius: var(--radius-xl, 16px);
	padding: 24px;
	margin-top: 24px;
}
#payment ul.payment_methods {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
#payment ul.payment_methods li.wc_payment_method {
	background: #ffffff;
	border: 1.5px solid var(--border-color, #e2e8f0);
	border-radius: var(--radius-md, 12px);
	padding: 14px 18px;
	margin-bottom: 12px;
	transition: all 0.2s ease;
}
#payment ul.payment_methods li.wc_payment_method:hover,
#payment ul.payment_methods li.wc_payment_method.payment_method_active {
	border-color: var(--primary, #e91e63);
	background: #fffbfa;
}
#payment ul.payment_methods li label {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-dark, #1e293b);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
#payment ul.payment_methods li label img {
	max-height: 28px;
	width: auto;
}
#payment .payment_box {
	background: #f8fafc;
	border-radius: 8px;
	padding: 14px;
	margin-top: 12px;
	font-size: 13.5px;
	color: var(--text-muted, #64748b);
	line-height: 1.5;
}
#payment .payment_box input[type="tel"] {
	height: 48px;
	border: 1.5px solid var(--border-color, #e2e8f0);
	border-radius: 8px;
	padding: 0 14px;
	font-size: 15px;
	font-weight: 600;
	margin-top: 8px;
	width: 100%;
	box-sizing: border-box;
}
#payment button#place_order {
	width: 100%;
	height: 54px;
	background: var(--primary, #e91e63);
	color: #ffffff;
	border: none;
	border-radius: var(--radius-pill, 50px);
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(233, 30, 99, 0.3);
}
#payment button#place_order:hover {
	background: #d81b60;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
}



