/**
 * Harvest Prep — High-Performance, Mobile-First Scoped Styles
 */

:root {
	--hsh-green: #205a39;
	--hsh-green-hover: #174229;
	--hsh-green-light: #f0f7f2;
	--hsh-amber: #e67e22;
	--hsh-amber-light: #fdf3e8;
	--hsh-text: #1d2327;
	--hsh-text-muted: #646970;
	--hsh-border: #dcdcde;
	--hsh-radius: 8px;
	--hsh-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	--hsh-transition: 0.2s ease-in-out;
}

.hsh-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px 60px;
	font-family: inherit;
	color: var(--hsh-text);
	box-sizing: border-box;
}

.hsh-header {
	text-align: center;
	margin-bottom: 35px;
}

.hsh-header h1 {
	font-size: 2.2rem;
	color: var(--hsh-green);
	margin-bottom: 10px;
}

.hsh-header p {
	font-size: 1.1rem;
	color: var(--hsh-text-muted);
	max-width: 700px;
	margin: 0 auto;
}

/* Category Filter Tabs */
.hsh-category-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 35px;
}

.hsh-container .hsh-category-tabs .hsh-tab-btn,
.hsh-tab-btn {
	background: #ffffff !important;
	border: 1.5px solid #dcdcde !important;
	padding: 10px 22px !important;
	border-radius: 30px !important;
	cursor: pointer !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	color: #2c3338 !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
	line-height: 1.4 !important;
}

.hsh-container .hsh-category-tabs .hsh-tab-btn:hover,
.hsh-tab-btn:hover {
	border-color: var(--hsh-green) !important;
	background: var(--hsh-green-light) !important;
	color: var(--hsh-green) !important;
	transform: translateY(-1px);
}

.hsh-container .hsh-category-tabs .hsh-tab-btn:focus-visible,
.hsh-tab-btn:focus-visible {
	outline: 2px solid var(--hsh-green) !important;
	outline-offset: 2px !important;
}

.hsh-container .hsh-category-tabs .hsh-tab-btn.active,
.hsh-tab-btn.active {
	background: #174229 !important;
	color: #ffffff !important;
	border-color: #174229 !important;
	font-weight: 700 !important;
	box-shadow: 0 3px 10px rgba(23, 66, 41, 0.35) !important;
	transform: translateY(-1px);
}

/* Product Cards Grid */
.hsh-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.hsh-card {
	background: #fff;
	border: 1px solid var(--hsh-border);
	border-radius: var(--hsh-radius);
	padding: 22px;
	box-shadow: var(--hsh-shadow);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--hsh-transition);
	position: relative;
}

.hsh-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
	border-color: #c3c4c7;
}

.hsh-card-header {
	margin-bottom: 15px;
}

.hsh-card-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--hsh-text);
}

.hsh-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.hsh-badge-available {
	background: #e8f5e9;
	color: #2e7d32;
}

.hsh-badge-limited {
	background: var(--hsh-amber-light);
	color: #d35400;
}

.hsh-badge-seasonal {
	background: #e0f2f1;
	color: #00796b;
}

.hsh-badge-unavailable {
	background: #ffebee;
	color: #c62828;
}

.hsh-price-tag {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--hsh-green);
	margin-bottom: 18px;
}

.hsh-price-tag span {
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--hsh-text-muted);
}

.hsh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--hsh-green);
	color: #fff;
	border: none;
	border-radius: var(--hsh-radius);
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	transition: var(--hsh-transition);
	width: 100%;
	min-height: 48px; /* Touch-friendly */
}

.hsh-btn:hover,
.hsh-btn:focus-visible {
	background: var(--hsh-green-hover);
	color: #fff;
	outline: 3px solid rgba(32, 90, 57, 0.4);
}

/* Configurator Modal / Drawer */
.hsh-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.65);
	z-index: 999999 !important;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 20px 10px;
	box-sizing: border-box;
}

.hsh-modal.open {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.hsh-modal-dialog {
	background: #fff;
	border-radius: var(--hsh-radius);
	width: 100%;
	max-width: 680px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	animation: hshFadeIn 0.2s ease-out;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
}

@keyframes hshFadeIn {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

.hsh-modal-header {
	padding: 20px 25px;
	border-bottom: 1px solid var(--hsh-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fafafa;
}

.hsh-modal-title {
	margin: 0;
	font-size: 1.4rem;
	color: var(--hsh-text);
}

.hsh-modal-close {
	background: transparent;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	color: var(--hsh-text-muted);
	padding: 5px 10px;
	border-radius: 4px;
}

.hsh-modal-close:hover,
.hsh-modal-close:focus-visible {
	color: var(--hsh-text);
	background: #eaeaea;
	outline: 2px solid var(--hsh-green);
}

.hsh-modal-body {
	padding: 25px;
	overflow-y: auto;
	flex: 1;
}

/* Form Steps & Progressive Disclosure */
.hsh-group {
	margin-bottom: 24px;
}

.hsh-group label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.hsh-pill-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hsh-pill-option {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid var(--hsh-border);
	border-radius: var(--hsh-radius);
	padding: 10px 15px;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 500;
	transition: var(--hsh-transition);
	user-select: none;
}

.hsh-pill-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hsh-pill-option:hover {
	border-color: var(--hsh-green);
	background: var(--hsh-green-light);
}

.hsh-pill-option.active,
.hsh-pill-option:has(input:checked) {
	border-color: var(--hsh-green) !important;
	background: #eaf3ed !important;
	font-weight: 700 !important;
	color: var(--hsh-green) !important;
	box-shadow: 0 0 0 1.5px var(--hsh-green) !important;
}

.hsh-pill-option:has(input:focus-visible),
.hsh-pill-option:focus-visible {
	outline: 2px solid var(--hsh-green);
	outline-offset: 2px;
}

.hsh-input-number,
.hsh-select,
.hsh-input-date,
.hsh-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--hsh-border);
	border-radius: var(--hsh-radius);
	font-size: 1rem;
	font-family: inherit;
	box-sizing: border-box;
	background: #fff;
	transition: var(--hsh-transition);
}

.hsh-input-number:focus,
.hsh-select:focus,
.hsh-input-date:focus,
.hsh-textarea:focus {
	border-color: var(--hsh-green);
	outline: 2px solid rgba(32, 90, 57, 0.25);
}

/* Live Pricing Summary Block */
.hsh-summary-box {
	background: var(--hsh-green-light);
	border: 1.5px solid #c8e6c9;
	border-radius: var(--hsh-radius);
	padding: 18px 20px;
	margin-top: 25px;
}

.hsh-summary-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--hsh-green);
	margin: 0 0 12px;
}

.hsh-summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.95rem;
	margin-bottom: 6px;
	color: #333;
}

.hsh-summary-total {
	display: flex;
	justify-content: space-between;
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--hsh-green);
	border-top: 1.5px dashed #a5d6a7;
	padding-top: 12px;
	margin-top: 10px;
}

.hsh-modal-footer {
	padding: 15px 25px;
	border-top: 1px solid var(--hsh-border);
	background: #fafafa;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.hsh-bulk-banner {
	background: var(--hsh-amber-light);
	border: 1px solid #ffe0b2;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 0.9rem;
	color: #bf360c;
	margin-top: 12px;
	display: none;
}

.hsh-error-box {
	background: #ffebee;
	border: 1px solid #ffcdd2;
	color: #c62828;
	padding: 10px 15px;
	border-radius: 6px;
	font-size: 0.9rem;
	margin-bottom: 15px;
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	*,
	::before,
	::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

@media (max-width: 640px) {
	.hsh-header h1 {
		font-size: 1.7rem;
	}
	.hsh-modal {
		padding: 0;
	}
	.hsh-modal-dialog {
		max-height: 100vh;
		height: 100%;
		border-radius: 0;
	}
	.hsh-modal-footer {
		flex-direction: column;
	}
}

/* ==========================================================================
   Harvest Prep — Landing Page & Promo Architecture (Prompt 8)
   ========================================================================== */

.hsh-landing-wrapper {
	font-family: inherit;
	color: var(--hsh-text);
}

.hsh-hero {
	background: linear-gradient(135deg, #205a39 0%, #153e26 100%);
	color: #ffffff;
	padding: 70px 20px;
	border-radius: 12px;
	text-align: center;
	margin: 20px auto 50px;
	max-width: 1200px;
	box-shadow: 0 10px 30px rgba(32, 90, 57, 0.15);
}

.hsh-hero-inner {
	max-width: 850px;
	margin: 0 auto;
}

.hsh-badge-pill {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 20px;
}

.hsh-badge-accent {
	background: #fff3e0;
	color: #e65100;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 12px;
}

.hsh-hero-title {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.15;
	color: #ffffff !important;
	margin-bottom: 18px;
}

.hsh-hero-subtitle {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #e2f0e6;
	margin-bottom: 35px;
}

.hsh-hero-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.hsh-btn-lg {
	padding: 14px 28px;
	font-size: 1.05rem;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.hsh-btn-primary {
	background: #ffaa00;
	color: #1e3d2b !important;
	border: none;
}

.hsh-btn-primary:hover {
	background: #ffbe33;
	color: #1e3d2b !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(255, 170, 0, 0.3);
}

.hsh-btn-secondary {
	background: #ffffff !important;
	color: #174229 !important;
	border: 1.5px solid #205a39 !important;
}

.hsh-btn-secondary:hover {
	background: #205a39 !important;
	color: #ffffff !important;
	border-color: #205a39 !important;
}

.hsh-hero .hsh-btn-secondary {
	background: rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.hsh-hero .hsh-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25) !important;
	color: #ffffff !important;
	border-color: #ffffff !important;
}

.hsh-btn-light {
	background: #ffffff;
	color: var(--hsh-green) !important;
	border: none;
}

.hsh-btn-light:hover {
	background: #f0f7f2;
	color: var(--hsh-green-hover) !important;
}

.hsh-btn-outline-light {
	background: transparent;
	color: #ffffff !important;
	border: 1.5px solid #ffffff;
}

.hsh-btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff !important;
}

/* Sections */
.hsh-section {
	max-width: 1200px;
	margin: 0 auto 60px;
	padding: 0 15px;
}

.hsh-section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
}

.hsh-section-header h2 {
	font-size: 2.1rem;
	color: var(--hsh-green);
	margin-bottom: 12px;
}

.hsh-section-header p {
	font-size: 1.1rem;
	color: var(--hsh-text-muted);
}

/* Customer Segment Trio Cards */
.hsh-cards-trio {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.hsh-feature-card {
	background: #ffffff;
	border: 1px solid var(--hsh-border);
	border-radius: var(--hsh-radius);
	padding: 35px 25px;
	display: flex;
	flex-direction: column;
	box-shadow: var(--hsh-shadow);
	transition: var(--hsh-transition);
}

.hsh-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
	border-color: #b2dfdb;
}

.hsh-feature-featured {
	border: 2px solid var(--hsh-green);
	position: relative;
}

.hsh-card-icon {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.hsh-feature-card h3 {
	font-size: 1.35rem;
	color: var(--hsh-green);
	margin-bottom: 12px;
}

.hsh-feature-card p {
	font-size: 0.95rem;
	color: var(--hsh-text-muted);
	line-height: 1.5;
	margin-bottom: 20px;
	flex-grow: 1;
}

.hsh-feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px;
}

.hsh-feature-list li {
	font-size: 0.9rem;
	color: var(--hsh-text);
	padding: 6px 0 6px 22px;
	position: relative;
}

.hsh-feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--hsh-green);
	font-weight: 800;
}

.hsh-link-arrow {
	font-weight: 700;
	color: var(--hsh-green);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s;
}

.hsh-link-arrow:hover {
	color: var(--hsh-green-hover);
	text-decoration: underline;
}

.hsh-dual-links {
	display: flex;
	gap: 15px;
}

/* How It Works Steps */
.hsh-bg-subtle {
	background: #f8faf8;
	padding: 50px 25px;
	border-radius: 12px;
}

.hsh-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
}

.hsh-step-item {
	text-align: center;
	padding: 20px 15px;
}

.hsh-step-num {
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 50%;
	background: var(--hsh-green);
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 auto 18px;
}

.hsh-step-item h4 {
	font-size: 1.15rem;
	color: var(--hsh-green);
	margin-bottom: 10px;
}

.hsh-step-item p {
	font-size: 0.9rem;
	color: var(--hsh-text-muted);
	line-height: 1.45;
}

/* Call to Action Banner */
.hsh-cta-banner {
	background: var(--hsh-green);
	color: #ffffff;
	padding: 50px 25px;
	border-radius: 12px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto 60px;
}

.hsh-cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.hsh-cta-content h2 {
	font-size: 2rem;
	color: #ffffff !important;
	margin-bottom: 12px;
}

.hsh-cta-content p {
	font-size: 1.1rem;
	color: #e2f0e6;
	margin-bottom: 30px;
}

/* Homepage Promotion Callout Widget */
.hsh-home-promo {
	background: linear-gradient(135deg, #f0f7f2 0%, #e8f5e9 100%);
	border: 1px solid #c8e6c9;
	border-radius: 12px;
	margin: 40px auto;
	max-width: 1200px;
	padding: 35px 30px;
	box-shadow: 0 4px 15px rgba(32, 90, 57, 0.05);
}

.hsh-home-promo-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.hsh-home-promo-text {
	flex: 1 1 550px;
}

.hsh-home-promo-text h2 {
	font-size: 1.9rem;
	color: var(--hsh-green);
	margin-bottom: 10px;
}

.hsh-home-promo-text p {
	font-size: 1.05rem;
	color: #37474f;
	margin: 0;
	line-height: 1.55;
}

.hsh-home-promo-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hsh-home-promo-actions .hsh-btn {
	width: auto;
	min-width: 200px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: all 0.2s ease;
}

.hsh-home-promo-actions .hsh-btn-primary {
	background: #ffaa00 !important;
	color: #1e3d2b !important;
	border: 1px solid #e69900 !important;
}

.hsh-home-promo-actions .hsh-btn-primary:hover {
	background: #ffbe33 !important;
	color: #1e3d2b !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 170, 0, 0.35);
}

.hsh-home-promo-actions .hsh-btn-secondary {
	background: #ffffff !important;
	color: #174229 !important;
	border: 1.5px solid #205a39 !important;
}

.hsh-home-promo-actions .hsh-btn-secondary:hover {
	background: #205a39 !important;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(32, 90, 57, 0.25);
}

/* Homepage Harvest Blends Grid */
.hsh-home-blends-section {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid rgba(32, 90, 57, 0.15);
}

.hsh-home-blends-header {
	margin-bottom: 20px;
}

.hsh-home-blends-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

.hsh-card-blend {
	background: #ffffff;
	border: 1.5px solid #c8e6c9;
	border-radius: var(--hsh-radius);
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: var(--hsh-transition);
}

.hsh-card-blend:hover {
	border-color: var(--hsh-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(32, 90, 57, 0.12);
}

@media (max-width: 768px) {
	.hsh-hero {
		padding: 45px 15px;
	}
	.hsh-hero-title {
		font-size: 2rem;
	}
	.hsh-hero-subtitle {
		font-size: 1.05rem;
	}
	.hsh-home-promo-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.hsh-home-promo-actions {
		width: 100%;
	}
	.hsh-home-promo-actions .hsh-btn {
		width: 100%;
	}
	.hsh-home-blends-grid {
		grid-template-columns: 1fr;
	}
}

/* Can't Find What You Need? Banner (Section 10.3) */
.hsh-cant-find-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #ffffff;
	border: 1.5px dashed #205a39;
	border-radius: var(--hsh-radius);
	padding: 24px 30px;
	margin-top: 30px;
	box-shadow: 0 4px 14px rgba(32, 90, 57, 0.08);
	transition: var(--hsh-transition);
}

.hsh-cant-find-banner:hover {
	border-style: solid;
	box-shadow: 0 6px 20px rgba(32, 90, 57, 0.14);
}

.hsh-cant-find-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.hsh-cant-find-icon {
	font-size: 2.2rem;
	background: #f0f7f2;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hsh-cant-find-text h3 {
	margin: 0 0 6px;
	color: #205a39;
	font-size: 1.25rem;
	font-weight: 700;
}

.hsh-cant-find-text p {
	margin: 0;
	color: #646970;
	font-size: 0.95rem;
	line-height: 1.4;
}

.hsh-cant-find-action {
	flex-shrink: 0;
}

.hsh-cant-find-action .hsh-btn {
	padding: 12px 24px;
	font-weight: 700;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.hsh-cant-find-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}
	.hsh-cant-find-action {
		width: 100%;
	}
	.hsh-cant-find-action .hsh-btn {
		width: 100%;
	}
}

/* Cart Totals Table Text Alignment & Payment Removal */
.woocommerce-cart .cart_totals table.shop_table th {
	text-align: left !important;
	vertical-align: middle !important;
	padding: 12px 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table td {
	text-align: right !important;
	vertical-align: middle !important;
	padding: 12px 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table td .hsh-dual-price {
	display: inline-flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
	text-align: right !important;
	margin-left: auto !important;
	margin-right: 0 !important;
	gap: 2px !important;
}

.woocommerce-cart .cart_totals table.shop_table td .hsh-dual-price .hsh-jmd-price {
	display: block !important;
	text-align: right !important;
	width: 100% !important;
	white-space: nowrap !important;
	font-weight: 700 !important;
}

.woocommerce-cart .cart_totals table.shop_table td .hsh-dual-price .hsh-usd-price {
	display: block !important;
	text-align: right !important;
	width: 100% !important;
	white-space: nowrap !important;
	font-weight: 400 !important;
	color: #666666 !important;
	font-size: 0.85em !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.shipping td ul#shipping_method,
.woocommerce-cart .cart_totals table.shop_table tr.shipping ul.woocommerce-shipping-methods {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: right !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.shipping ul#shipping_method li,
.woocommerce-cart .cart_totals table.shop_table tr.shipping ul.woocommerce-shipping-methods li {
	text-align: right !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.shipping label {
	display: inline-flex !important;
	flex-direction: column !important;
	align-items: flex-end !important;
	text-align: right !important;
	margin: 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table .woocommerce-shipping-destination {
	text-align: right !important;
	margin: 6px 0 0 auto !important;
	font-size: 0.82rem !important;
	color: #666666 !important;
	display: block !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.giftup-cart-subtotal td,
.woocommerce-cart .cart_totals table.shop_table td.giftup-cart-subtotal-td {
	text-align: right !important;
}

.woocommerce-cart .cart_totals table.shop_table td.giftup-cart-subtotal-td a {
	display: inline-block !important;
	text-align: right !important;
}

/* Remove Payment Options from Cart Page (Checkout Only) */
.woocommerce-cart .ppc-button-wrapper,
.woocommerce-cart #ppc-button-ppcp-gateway,
.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
.woocommerce-cart .wcppec-checkout-buttons__separator,
.woocommerce-cart .payment_methods,
.woocommerce-cart #payment,
.woocommerce-cart .paypal-buttons,
.woocommerce-cart .express-checkout-button,
.woocommerce-cart [id*="ppc-button"],
.woocommerce-cart [class*="ppc-button"] {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: none !important;
}

