/**
 * WooCommerce Advanced Loyalty Points - Brand Styled Stylesheet
 * Integrated with brand design system and CSS variables.
 */

:root {
	--wc-alp-primary: var(--primary, #333333);
	--wc-alp-gray-7: var(--gray-7, #666666);
	--wc-alp-gray-6: var(--gray-6, #999999);
	--wc-alp-gray-5: var(--gray-5, #9A9A9A);
	--wc-alp-gray-4: var(--gray-4, #BBBBBB);
	--wc-alp-gray-3: var(--gray-3, #CCCCCC);
	--wc-alp-gray-2: var(--gray-2, #DDDDDD);
	--wc-alp-gray-1: var(--gray-1, #EEEEEE);
	--wc-alp-bg-body: var(--bg-body, #FFFFFF);
	--wc-alp-text-body: var(--text-body, #1D1D1D);
	--wc-alp-text-dark-grey: var(--text-dark-grey, #484848);
	--wc-alp-text-title: var(--text-title, var(--primary, #333333));
	--wc-alp-border-primary: var(--border-primary, var(--primary, #333333));
	--wc-alp-light: var(--light, #FFFFFF);
	--wc-alp-dark: var(--dark, #000000);
	--wc-alp-success: var(--success, #1f9d45);
	--wc-alp-error: var(--error, #e0243d);
}

/* ==========================================================================
   1. Checkout Redemption Widget
   ========================================================================== */
.wc-alp-checkout-redemption-wrapper {
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 0 24px;
}

.wc-alp-redemption-card {
	background: var(--wc-alp-bg-body, #ffffff);
	border: 1px solid var(--wc-alp-gray-2, #dddddd);
	border-left: 4px solid var(--wc-alp-primary, #333333);
	border-radius: 4px;
	padding: 20px 22px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.wc-alp-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.wc-alp-card-header .wc-alp-icon {
	background: var(--wc-alp-primary, #333333);
	color: var(--wc-alp-light, #ffffff);
	font-size: 13px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	border-radius: 50%;
	margin-right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wc-alp-card-header .wc-alp-title {
	margin: 0;
	font-size: 1.15em;
	font-weight: 600;
	color: var(--wc-alp-text-title, #333333);
	letter-spacing: -0.2px;
}

.wc-alp-balance-info {
	margin: 0 0 6px 0;
	color: var(--wc-alp-text-dark-grey, #484848);
	font-size: 0.96em;
	line-height: 1.5;
}

.wc-alp-redemption-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 16px 0 !important;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wc-alp-redemption-list li {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.5;
	font-size: 13.5px;
	color: var(--wc-alp-text-dark-grey, #484848);
}

.wc-alp-redemption-list .wc-alp-highlight {
	color: var(--wc-alp-primary, #333333);
	font-weight: 700;
}

.wc-alp-balance-info strong {
	color: var(--wc-alp-text-body, #1d1d1d);
}

.wc-alp-cap-info {
	margin: 0 0 16px 0;
	font-size: 0.88em;
	color: var(--wc-alp-gray-7, #666666);
}

.wc-alp-input-group {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 420px;
}

.wc-alp-input-group .wc-alp-input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--wc-alp-gray-3, #cccccc);
	border-radius: 3px;
	font-size: 14px;
	color: var(--wc-alp-text-body, #1d1d1d);
	background: #ffffff;
	transition: border-color 0.2s ease;
}

.wc-alp-input-group .wc-alp-input:focus {
	border-color: var(--wc-alp-primary, #333333);
	outline: none;
	box-shadow: 0 0 0 1px var(--wc-alp-primary, #333333);
}

.wc-alp-apply-btn {
	background-color: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	border: 1px solid var(--wc-alp-primary, #333333) !important;
	padding: 10px 18px !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	border-radius: 3px !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
}

.wc-alp-apply-btn:hover {
	background-color: var(--wc-alp-dark, #000000) !important;
	border-color: var(--wc-alp-dark, #000000) !important;
}

.wc-alp-applied-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--wc-alp-gray-1, #eeeeee);
	border: 1px solid var(--wc-alp-gray-2, #dddddd);
	padding: 12px 16px;
	border-radius: 4px;
}

.wc-alp-applied-text {
	margin: 0;
	color: var(--wc-alp-text-body, #1d1d1d);
	font-weight: 500;
	font-size: 0.95em;
}

.wc-alp-remove-btn {
	padding: 6px 12px !important;
	font-size: 12px !important;
	background-color: #ffffff !important;
	color: var(--wc-alp-text-dark-grey, #484848) !important;
	border: 1px solid var(--wc-alp-gray-3, #cccccc) !important;
	border-radius: 3px !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
}

.wc-alp-remove-btn:hover {
	background-color: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	border-color: var(--wc-alp-primary, #333333) !important;
}

.wc-alp-ajax-message {
	padding: 10px 14px;
	border-radius: 3px;
	margin-bottom: 14px;
	font-size: 0.92em;
	line-height: 1.4;
}

.wc-alp-ajax-message.success {
	background-color: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.wc-alp-ajax-message.error {
	background-color: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

/* ==========================================================================
   2. Customer My Account Points Portal
   ========================================================================== */
.wc-alp-my-account-container {
	margin-bottom: 2.5em;
	font-family: inherit;
	color: var(--wc-alp-text-body, #1d1d1d);
}

/* Premium Minimalist Hero Card */
.wc-alp-balance-summary-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(135deg, var(--wc-alp-primary, #333333) 0%, #1a1a1a 100%);
	color: var(--wc-alp-light, #ffffff);
	padding: 26px 32px;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(51, 51, 51, 0.15);
	margin-bottom: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc-alp-summary-label {
	display: block;
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--wc-alp-gray-4, #bbbbbb);
	margin-bottom: 6px;
	font-weight: 500;
}

.wc-alp-summary-points {
	margin: 0;
	color: var(--wc-alp-light, #ffffff);
	font-size: 2.3em;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

.wc-alp-summary-points .wc-alp-unit {
	font-size: 0.48em;
	font-weight: 400;
	color: var(--wc-alp-gray-4, #bbbbbb);
	margin-left: 2px;
}

.wc-alp-summary-cash {
	margin: 0;
	color: #f6d365;
	font-size: 1.9em;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.3px;
}

.wc-alp-summary-right {
	text-align: right;
}

/* Program Rules Box */
.wc-alp-info-box {
	background: #ffffff;
	border: 1px solid var(--wc-alp-gray-2, #e2e8f0);
	border-left: 4px solid var(--wc-alp-primary, #333333);
	padding: 18px 22px;
	border-radius: 6px;
	margin-bottom: 28px;
	font-size: 0.93em;
	color: var(--wc-alp-text-dark-grey, #484848);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.wc-alp-info-box-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--wc-alp-text-title, #1d1d1d);
}

.wc-alp-info-box-title svg {
	color: var(--wc-alp-primary, #333333);
	flex-shrink: 0;
}

.wc-alp-info-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wc-alp-info-list li {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.5;
	font-size: 13.5px;
}

.wc-alp-list-bullet {
	color: var(--wc-alp-primary, #333333);
	font-weight: 700;
	flex-shrink: 0;
}

.wc-alp-info-box p {
	margin: 0;
}

.wc-alp-info-box strong {
	color: var(--wc-alp-text-title, #1d1d1d);
}

.wc-alp-section-title {
	margin: 0 0 16px 0;
	font-size: 1.3em;
	font-weight: 600;
	color: var(--wc-alp-text-title, #333333);
	letter-spacing: -0.2px;
}

/* Ledger History Table */
.wc-alp-table-wrapper {
	overflow-x: auto;
	border: 1px solid var(--wc-alp-gray-2, #dddddd);
	border-radius: 4px;
	background: #ffffff;
}

.wc-alp-ledger-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.wc-alp-ledger-table th {
	background: var(--wc-alp-gray-1, #eeeeee);
	color: var(--wc-alp-text-title, #333333);
	font-size: 0.82em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--wc-alp-gray-3, #cccccc);
	text-align: left;
}

.wc-alp-ledger-table td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--wc-alp-gray-1, #eeeeee);
	font-size: 0.94em;
	color: var(--wc-alp-text-body, #1d1d1d);
	vertical-align: middle;
}

.wc-alp-ledger-table tbody tr:last-child td {
	border-bottom: none;
}

.wc-alp-ledger-table tbody tr:hover td {
	background-color: #fcfcfc;
}

.wc-alp-ledger-table a {
	color: var(--wc-alp-primary, #333333);
	font-weight: 600;
	text-decoration: underline;
}

.wc-alp-ledger-table a:hover {
	color: var(--wc-alp-dark, #000000);
}

.wc-alp-reason-text {
	display: inline-block;
	font-weight: 600;
	color: var(--wc-alp-text-title, #333333);
	font-size: 0.95em;
	white-space: nowrap;
}

/* Status Badges */
.wc-alp-badge {
	display: inline-block;
	padding: 4px 9px;
	border-radius: 3px;
	font-size: 0.78em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	line-height: 1.2;
}

.wc-alp-badge-earned {
	background-color: #eafaf1;
	color: #1b7a3e;
	border: 1px solid #c2ebd0;
}

.wc-alp-badge-redeemed {
	background-color: var(--wc-alp-gray-1, #eeeeee);
	color: var(--wc-alp-primary, #333333);
	border: 1px solid var(--wc-alp-gray-3, #cccccc);
}

.wc-alp-badge-refunded {
	background-color: #fff9eb;
	color: #946000;
	border: 1px solid #fae1a0;
}

.wc-alp-badge-expired {
	background-color: #fdf0f2;
	color: var(--wc-alp-error, #e0243d);
	border: 1px solid #fad2d7;
}

.wc-alp-badge-adjusted {
	background-color: #f4f4f6;
	color: #444444;
	border: 1px solid #dcdce2;
}

/* Points Value Colors */
.wc-alp-points-positive {
	color: #1b7a3e;
	font-weight: 700;
}

.wc-alp-points-negative {
	color: var(--wc-alp-error, #e0243d);
	font-weight: 700;
}

/* Pagination */
.wc-alp-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 22px;
}

.wc-alp-page-info {
	font-size: 0.9em;
	color: var(--wc-alp-gray-7, #666666);
}

.wc-alp-pagination .button {
	background: #ffffff !important;
	color: var(--wc-alp-primary, #333333) !important;
	border: 1px solid var(--wc-alp-gray-3, #cccccc) !important;
	padding: 8px 16px !important;
	font-size: 13px !important;
	border-radius: 3px !important;
	transition: all 0.2s ease !important;
}

.wc-alp-pagination .button:hover {
	background: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	border-color: var(--wc-alp-primary, #333333) !important;
}

/* Compact Balance Pill (for Header / Navbar) */
.wc-alp-balance-pill {
	display: inline-flex;
	align-items: center;
	background: var(--wc-alp-gray-1, #eeeeee);
	border: 1px solid var(--wc-alp-gray-2, #dddddd);
	padding: 4px 10px;
	border-radius: 14px;
	font-size: 0.88em;
	color: var(--wc-alp-text-body, #1d1d1d);
	font-weight: 500;
}

.wc-alp-balance-pill strong {
	color: var(--wc-alp-primary, #333333);
	margin-right: 4px;
}

/* Responsive adjustments */
@media (max-width: 650px) {
	.wc-alp-balance-summary-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px 22px;
	}
	.wc-alp-summary-right {
		text-align: left;
	}
	.wc-alp-input-group {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ==========================================================================
   5. Customer Earning Touchpoint Styles
   ========================================================================== */

/* Touchpoint 1: Single Product Page Badge */
.wc-alp-product-badge {
	display: block !important;
	background: var(--wc-alp-gray-1, #f8fafc) !important;
	border: 1px solid var(--wc-alp-gray-2, #e2e8f0) !important;
	border-left: 3px solid var(--wc-alp-primary, #333333) !important;
	padding: 12px 18px !important;
	border-radius: 6px !important;
	font-size: 13px !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
	margin: 14px 0 18px 0 !important;
	line-height: 1.4 !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
	transition: all 0.2s ease !important;
	box-sizing: border-box !important;
}

.wc-alp-product-badge:hover {
	background: #ffffff !important;
	border-color: #cbd5e1 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.wc-alp-badge-header {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 8px !important;
}

.wc-alp-badge-title {
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
}

.wc-alp-badge-list,
.wc-alp-cart-banner-list,
.wc-alp-mini-cart-list,
.wc-alp-checkout-earn-list,
.wc-alp-thankyou-list,
.wc-alp-review-bonus-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
}

.wc-alp-badge-list li,
.wc-alp-cart-banner-list li,
.wc-alp-mini-cart-list li,
.wc-alp-checkout-earn-list li,
.wc-alp-thankyou-list li,
.wc-alp-review-bonus-list li {
	display: flex !important;
	align-items: baseline !important;
	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.45 !important;
	font-size: 13px !important;
}

.wc-alp-mini-cart-list li {
	font-size: 12px !important;
	line-height: 1.4 !important;
	gap: 6px !important;
}

.wc-alp-badge-icon-box {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 22px !important;
	height: 22px !important;
	background: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	border-radius: 50% !important;
	flex-shrink: 0 !important;
}

.wc-alp-badge-icon-box svg {
	fill: #ffffff !important;
	width: 12px !important;
	height: 12px !important;
}

.wc-alp-badge-pts {
	color: var(--wc-alp-primary, #333333) !important;
	font-weight: 700 !important;
}

.wc-alp-badge-worth {
	color: var(--wc-alp-gray-7, #666666) !important;
	font-weight: 500 !important;
}

/* Touchpoint 2: Cart Page Banner */
.wc-alp-cart-banner {
	display: block !important;
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	border-left: 4px solid var(--wc-alp-primary, #333333) !important;
	padding: 18px 22px !important;
	border-radius: 8px !important;
	margin-bottom: 26px !important;
	font-size: 13.5px !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
	box-sizing: border-box !important;
}

.wc-alp-cart-banner-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	margin-bottom: 14px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid #f1f5f9 !important;
}

.wc-alp-cart-banner-header-left {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

.wc-alp-cart-banner-title {
	font-size: 14.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
	display: block !important;
	line-height: 1.3 !important;
}

.wc-alp-cart-banner-subtitle {
	font-size: 12px !important;
	color: var(--wc-alp-gray-7, #64748b) !important;
	font-weight: 400 !important;
	display: block !important;
}

.wc-alp-cart-banner-icon-box {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	background: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	border-radius: 50% !important;
	flex-shrink: 0 !important;
}

.wc-alp-cart-banner-icon-box svg {
	fill: #ffffff !important;
	width: 14px !important;
	height: 14px !important;
}

.wc-alp-cart-banner-rate-badge {
	font-size: 11px !important;
	font-weight: 600 !important;
	color: var(--wc-alp-primary, #333333) !important;
	background: #f8fafc !important;
	border: 1px solid #cbd5e1 !important;
	padding: 3px 8px !important;
	border-radius: 12px !important;
	letter-spacing: 0.02em !important;
}

/* Dynamic Stats Grid on Cart Page */
.wc-alp-cart-stats-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
	gap: 12px !important;
	margin-bottom: 14px !important;
}

.wc-alp-cart-stat-card {
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 6px !important;
	padding: 12px 14px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
}

.wc-alp-cart-stat-card:hover {
	border-color: #cbd5e1 !important;
	background: #ffffff !important;
}

.wc-alp-cart-stat-highlight {
	background: #ecfdf5 !important;
	border-color: #a7f3d0 !important;
}

.wc-alp-cart-stat-highlight:hover {
	background: #f0fdf4 !important;
	border-color: #6ee7b7 !important;
}

.wc-alp-cart-stat-progress {
	background: #fffbeb !important;
	border-color: #fde68a !important;
}

.wc-alp-cart-stat-label {
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	color: #64748b !important;
}

.wc-alp-cart-stat-value {
	font-size: 17px !important;
	font-weight: 800 !important;
	color: var(--wc-alp-text-title, #0f172a) !important;
	line-height: 1.2 !important;
}

.wc-alp-cart-stat-unit {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #64748b !important;
}

.wc-alp-text-success {
	color: #047857 !important;
}

.wc-alp-text-brand {
	color: var(--wc-alp-primary, #333333) !important;
}

.wc-alp-cart-stat-meta {
	font-size: 11.5px !important;
	color: #475569 !important;
	line-height: 1.35 !important;
}

.wc-alp-cart-progress-bar {
	width: 100% !important;
	height: 6px !important;
	background: #fef3c7 !important;
	border: 1px solid #fde68a !important;
	border-radius: 4px !important;
	overflow: hidden !important;
	margin: 2px 0 3px 0 !important;
}

.wc-alp-cart-progress-fill {
	height: 100% !important;
	background: #d97706 !important;
	border-radius: 4px !important;
	transition: width 0.4s ease !important;
}

.wc-alp-cart-login-link {
	color: var(--wc-alp-primary, #333333) !important;
	font-weight: 700 !important;
	text-decoration: underline !important;
}

.wc-alp-cart-login-link:hover {
	color: #000000 !important;
}

.wc-alp-cart-banner-footer {
	background: #f8fafc !important;
	border-radius: 4px !important;
	padding: 8px 12px !important;
	font-size: 12px !important;
	color: #475569 !important;
}

.wc-alp-cart-footer-item {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
}

.wc-alp-cart-footer-item .dashicons {
	font-size: 15px !important;
	width: 15px !important;
	height: 15px !important;
	color: #059669 !important;
}

@media (max-width: 650px) {
	.wc-alp-cart-banner {
		padding: 14px 16px !important;
	}
	.wc-alp-cart-banner-header {
		flex-direction: column !important;
		align-items: flex-start !important;
	}
	.wc-alp-cart-stats-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Touchpoint 2b: Mini Cart / Cart Drawer Points Card */
.wc-alp-mini-cart-points {
	display: block !important;
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-left: 3px solid var(--wc-alp-primary, #333333) !important;
	border-radius: 6px !important;
	padding: 10px 12px !important;
	margin: 12px 0 !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
	box-sizing: border-box !important;
	text-align: left !important;
}

.wc-alp-mini-cart-header {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 6px !important;
	margin-bottom: 6px !important;
}

.wc-alp-mini-cart-icon-box {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 20px !important;
	height: 20px !important;
	background: var(--wc-alp-primary, #333333) !important;
	color: #ffffff !important;
	border-radius: 50% !important;
	flex-shrink: 0 !important;
}

.wc-alp-mini-cart-icon-box svg {
	fill: #ffffff !important;
	width: 11px !important;
	height: 11px !important;
}

.wc-alp-mini-cart-title {
	font-size: 12.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
}

.wc-alp-mini-cart-badge {
	font-size: 12px !important;
	color: var(--wc-alp-primary, #333333) !important;
	margin-left: auto !important;
	font-weight: 700 !important;
}

.wc-alp-mini-cart-worth {
	color: var(--wc-alp-gray-7, #666666) !important;
	font-weight: 500 !important;
	font-size: 11.5px !important;
}

/* Mini Cart Upsells & Cross-Sells (Format A - Compact List) */
.wc-alp-mini-cart-upsells {
	display: block !important;
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 6px !important;
	padding: 12px 14px !important;
	margin: 14px 0 10px 0 !important;
	box-sizing: border-box !important;
	text-align: left !important;
}

.wc-alp-upsells-heading {
	font-family: inherit !important;
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
	margin: 0 0 10px 0 !important;
	padding: 0 0 6px 0 !important;
	border-bottom: 1px solid #f1f5f9 !important;
	text-transform: none !important;
	letter-spacing: 0.01em !important;
}

.wc-alp-upsells-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wc-alp-upsell-item {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	padding-bottom: 8px !important;
	border-bottom: 1px solid #f8fafc !important;
}

.wc-alp-upsell-item:last-child {
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

.wc-alp-upsell-thumb-link {
	flex-shrink: 0 !important;
	display: block !important;
}

.wc-alp-upsell-thumb {
	width: 48px !important;
	height: 60px !important;
	object-fit: cover !important;
	border-radius: 4px !important;
	border: 1px solid #e2e8f0 !important;
	display: block !important;
	transition: transform 0.2s ease !important;
}

.wc-alp-upsell-thumb:hover {
	transform: scale(1.03) !important;
}

.wc-alp-upsell-info {
	flex: 1 !important;
	min-width: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}

.wc-alp-upsell-title {
	font-size: 11.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: block !important;
	line-height: 1.3 !important;
}

.wc-alp-upsell-title:hover {
	color: var(--wc-alp-primary, #333333) !important;
	text-decoration: underline !important;
}

.wc-alp-upsell-meta {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	flex-wrap: wrap !important;
}

.wc-alp-upsell-price {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
}

.wc-alp-upsell-price del {
	color: #94a3b8 !important;
	font-weight: 400 !important;
	margin-right: 2px !important;
}

.wc-alp-upsell-price ins {
	text-decoration: none !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
}

.wc-alp-upsell-pts-badge {
	font-size: 10px !important;
	font-weight: 700 !important;
	color: #065f46 !important;
	background: #ecfdf5 !important;
	border: 1px solid #a7f3d0 !important;
	padding: 1px 5px !important;
	border-radius: 3px !important;
	white-space: nowrap !important;
}

.wc-alp-upsell-action {
	flex-shrink: 0 !important;
}

.wc-alp-upsell-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 5px 10px !important;
	font-size: 10.5px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em !important;
	color: var(--wc-alp-primary, #333333) !important;
	background: #ffffff !important;
	border: 1.5px solid var(--wc-alp-primary, #333333) !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
	line-height: 1 !important;
	min-width: 58px !important;
}

.wc-alp-upsell-btn:hover {
	background: var(--wc-alp-primary, #333333) !important;
	color: #ffffff !important;
}

.wc-alp-upsell-btn.is-loading {
	opacity: 0.7 !important;
	pointer-events: none !important;
}

.wc-alp-upsell-btn.is-added {
	background: #065f46 !important;
	border-color: #065f46 !important;
	color: #ffffff !important;
}

/* Cart & Checkout Totals Row */
tr.wc-alp-totals-row th {
	font-weight: 600 !important;
	color: var(--wc-alp-text-dark-grey, #484848) !important;
}

tr.wc-alp-totals-row td {
	color: var(--wc-alp-text-body, #1d1d1d) !important;
}

.wc-alp-totals-pts {
	display: inline-block !important;
	background: #ecfdf5 !important;
	color: #065f46 !important;
	border: 1px solid #a7f3d0 !important;
	padding: 2px 8px !important;
	border-radius: 4px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
}

.wc-alp-totals-worth {
	color: var(--wc-alp-gray-7, #666666) !important;
	margin-left: 6px !important;
	font-size: 12px !important;
}

/* Checkout Inline Banner */
.wc-alp-checkout-earn-banner {
	display: block !important;
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-left: 3px solid var(--wc-alp-primary, #333333) !important;
	padding: 12px 16px !important;
	border-radius: 6px !important;
	font-size: 13px !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
	margin-top: 12px !important;
}

.wc-alp-checkout-earn-header {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 8px !important;
}

.wc-alp-checkout-earn-title {
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
}

/* Touchpoint 4: Order Received / Thank You Page Card */
.wc-alp-thankyou-card {
	display: flex !important;
	align-items: flex-start !important;
	gap: 16px !important;
	background: var(--wc-alp-bg-body, #ffffff) !important;
	border: 1px solid var(--wc-alp-gray-2, #dddddd) !important;
	border-left: 5px solid var(--wc-alp-primary, #333333) !important;
	border-radius: 6px !important;
	padding: 22px 26px !important;
	margin: 24px 0 32px 0 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.wc-alp-thankyou-icon {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	background: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
}

.wc-alp-thankyou-icon svg {
	fill: #ffffff !important;
	width: 22px !important;
	height: 22px !important;
}

.wc-alp-thankyou-content {
	flex: 1 !important;
}

.wc-alp-thankyou-title {
	margin: 0 0 10px 0 !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-primary, #333333) !important;
}

.wc-alp-highlight {
	color: var(--wc-alp-primary, #333333) !important;
	font-weight: 700 !important;
}

/* Touchpoint 6: Compact Balance Pill (for Header / Navbar) */
.wc-alp-balance-pill {
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	background: var(--wc-alp-gray-1, #f8fafc) !important;
	border: 1px solid var(--wc-alp-gray-3, #cbd5e1) !important;
	padding: 5px 12px !important;
	border-radius: 20px !important;
	font-size: 13px !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
	font-weight: 500 !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
	transition: all 0.2s ease !important;
}

.wc-alp-balance-pill:hover {
	background: #ffffff !important;
	border-color: var(--wc-alp-primary, #333333) !important;
}

.wc-alp-balance-pill .wc-alp-pill-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--wc-alp-primary, #333333) !important;
}

.wc-alp-balance-pill .wc-alp-pill-icon svg {
	fill: var(--wc-alp-primary, #333333) !important;
}

.wc-alp-balance-pill strong,
.wc-alp-balance-pill .wc-alp-pill-count {
	color: var(--wc-alp-primary, #333333) !important;
	font-weight: 700 !important;
}

.wc-alp-balance-pill .wc-alp-pill-cash {
	color: var(--wc-alp-gray-7, #666666) !important;
}

/* Touchpoint 7: Guest Order Claim Card (Thank You Page) */
.wc-alp-guest-claim-card {
	background: #ffffff !important;
	border: 2px solid var(--wc-alp-primary, #333333) !important;
	border-radius: 8px !important;
	padding: 24px 28px !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
	margin: 28px 0 36px 0 !important;
}

.wc-alp-claim-badge {
	display: inline-block !important;
	background: #f6d365 !important;
	color: #1a1a1a !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	padding: 4px 10px !important;
	border-radius: 4px !important;
	margin-bottom: 10px !important;
}

.wc-alp-claim-cta {
	margin-top: 18px !important;
}

.wc-alp-btn-claim {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	background: var(--wc-alp-primary, #333333) !important;
	color: var(--wc-alp-light, #ffffff) !important;
	border: 1px solid var(--wc-alp-primary, #333333) !important;
	padding: 12px 24px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	border-radius: 6px !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
}

.wc-alp-btn-claim:hover {
	background: #000000 !important;
	color: #ffffff !important;
	border-color: #000000 !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.wc-alp-btn-claim svg {
	flex-shrink: 0 !important;
}

/* ==========================================================================
   Review Photo Upload Field & Live Preview
   ========================================================================== */
.wc-alp-review-bonus-box {
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-left: 3px solid var(--wc-alp-primary, #333333) !important;
	padding: 12px 16px !important;
	border-radius: 6px !important;
	margin-bottom: 12px !important;
}

.wc-alp-review-bonus-header {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin-bottom: 8px !important;
}

.wc-alp-review-bonus-title {
	font-size: 13.5px !important;
	font-weight: 700 !important;
	color: var(--wc-alp-text-title, #1d1d1d) !important;
}

.wc-alp-review-photo-field input[type="file"] {
	display: block !important;
	margin-top: 6px !important;
	padding: 8px 12px !important;
	background: #f8fafc !important;
	border: 1px dashed #cbd5e1 !important;
	border-radius: 6px !important;
	width: 100% !important;
	max-width: 420px !important;
	box-sizing: border-box !important;
	cursor: pointer;
}

.wc-alp-photo-preview-wrap {
	position: relative;
	display: inline-block;
	margin-top: 10px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid #e2e8f0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	background: #ffffff;
}

.wc-alp-photo-preview-img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	display: block;
}

.wc-alp-photo-preview-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	line-height: 20px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff !important;
	border: none !important;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.wc-alp-photo-preview-remove:hover {
	background: #ef4444;
}

/* ==========================================================================
   Top Customer Photos Masonry Gallery Section (Option A)
   ========================================================================== */
.wc-alp-customer-photos-section {
	margin: 0 0 32px 0;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	width: 100%;
	clear: both;
	box-sizing: border-box;
}

.wc-alp-customer-photos-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 18px;
	width: 100%;
}

.wc-alp-btn-view-all-photos {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	color: #333333 !important;
	border: 1px solid #cbd5e1 !important;
	padding: 9px 20px !important;
	border-radius: 6px !important;
	font-size: 13.5px !important;
	font-weight: 600 !important;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.4 !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.wc-alp-btn-view-all-photos:hover {
	background: #333333 !important;
	color: #ffffff !important;
	border-color: #333333 !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
	transform: translateY(-1px);
}

.wc-alp-btn-view-all-photos .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.wc-alp-customer-photos-masonry {
	column-count: 4;
	column-gap: 14px;
	width: 100%;
}

@media (max-width: 1024px) {
	.wc-alp-customer-photos-masonry {
		column-count: 3;
		column-gap: 12px;
	}
}

@media (max-width: 640px) {
	.wc-alp-customer-photos-masonry {
		column-count: 2;
		column-gap: 10px;
	}
}

.wc-alp-gallery-item {
	display: inline-block;
	width: 100%;
	break-inside: avoid;
	margin-bottom: 14px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
}

.wc-alp-gallery-item-hidden {
	display: none !important;
}

.wc-alp-gallery-img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
	transition: transform 0.3s ease !important;
	margin: 0 !important;
	border-radius: 8px;
}

.wc-alp-gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
	color: #ffffff;
}

.wc-alp-gallery-item-overlay .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
}

.wc-alp-gallery-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
	border-color: #333333;
}

.wc-alp-gallery-item:hover .wc-alp-gallery-img {
	transform: scale(1.04);
}

.wc-alp-gallery-item:hover .wc-alp-gallery-item-overlay {
	opacity: 1;
}

/* More Overlay on Last Visible Gallery Item */
.wc-alp-gallery-more-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: #ffffff;
	padding: 10px;
	text-align: center;
	transition: background 0.2s ease;
}

.wc-alp-gallery-item-has-more:hover .wc-alp-gallery-more-overlay {
	background: rgba(15, 23, 42, 0.88);
}

.wc-alp-gallery-more-overlay .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
	color: #ffffff;
}

.wc-alp-gallery-more-count {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
}

.wc-alp-gallery-more-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #e2e8f0;
}

/* ==========================================================================
   Inside Individual Review Card Photo Grid
   ========================================================================== */
.wc-alp-review-card-photos-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 14px;
	align-items: flex-start;
}

.wc-alp-review-card-photo-item {
	position: relative;
	max-width: 140px;
	width: auto;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.2s ease;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-sizing: border-box;
	line-height: 0;
	font-size: 0;
}

.wc-alp-review-thumbnail-img {
	max-width: 140px !important;
	width: auto !important;
	height: auto !important;
	max-height: 140px !important;
	display: block !important;
	margin: 0 !important;
	border-radius: 7px;
	transition: transform 0.25s ease !important;
}

.wc-alp-review-photo-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
	color: #ffffff;
	border-radius: 7px;
}

.wc-alp-review-photo-overlay .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.wc-alp-review-card-photo-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-color: #333333;
}

.wc-alp-review-card-photo-item:hover .wc-alp-review-thumbnail-img {
	transform: scale(1.05);
}

.wc-alp-review-card-photo-item:hover .wc-alp-review-photo-overlay {
	opacity: 1;
}

/* ==========================================================================
   Single Product Review Card Author & Meta Formatting
   ========================================================================== */
.woocommerce-Reviews .comment-text .meta,
#comments .commentlist li .comment-text .meta,
.woocommerce-Reviews .meta,
#comments .meta,
.woocommerce-review__author-wrap,
li.review .meta,
.comment-text .meta {
	display: block !important;
	margin-bottom: 8px !important;
	line-height: 1.4 !important;
}

.woocommerce-Reviews .comment-text .meta strong.woocommerce-review__author,
#comments .commentlist li strong.woocommerce-review__author,
.woocommerce-review__author,
.comment-text .meta strong,
.wc-alp-review-author-line strong,
.wc-alp-review-author-line .woocommerce-review__author {
	display: inline !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	color: var(--wc-alp-text-body, #1d1d1d) !important;
	margin-right: 5px !important;
}

.woocommerce-review__verified,
.woocommerce-Reviews em.verified,
#comments em.verified,
.comment-text .meta em.verified,
.comment-text .meta .woocommerce-review__verified,
li.review .meta em.verified,
.wc-alp-review-author-line em.verified,
.wc-alp-review-author-line .woocommerce-review__verified {
	display: inline !important;
	font-style: italic !important;
	font-weight: 400 !important;
	font-size: 13px !important;
	color: #64748b !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-review__dash {
	display: none !important;
}

.woocommerce-review__published-date,
.woocommerce-Reviews time,
#comments time,
.comment-text .meta time,
li.review .meta time {
	display: block !important;
	font-size: 12.5px !important;
	color: #94a3b8 !important;
	font-weight: 400 !important;
	margin-top: 3px !important;
	clear: both !important;
}

.wc-alp-review-author-line {
	display: block !important;
	margin-bottom: 2px !important;
	line-height: 1.3 !important;
}

/* ==========================================================================
   Interactive Full-Screen Lightbox Modal
   ========================================================================== */
.wc-alp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.wc-alp-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.wc-alp-lightbox-container {
	position: relative;
	max-width: 960px;
	width: 100%;
	max-height: 88vh;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	z-index: 2;
	animation: wcAlpLightboxIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wcAlpLightboxIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.wc-alp-lightbox-content {
	display: flex;
	height: 100%;
	max-height: 88vh;
}

.wc-alp-lightbox-media-pane {
	flex: 1;
	background: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 400px;
}

.wc-alp-lightbox-media-pane img {
	max-width: 100% !important;
	max-height: 88vh !important;
	object-fit: contain !important;
	display: block !important;
	margin: auto !important;
}

.wc-alp-lightbox-meta-pane {
	width: 340px;
	padding: 28px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-sizing: border-box;
	overflow-y: auto;
}

.wc-alp-lightbox-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 1px solid #f1f5f9;
}

.wc-alp-lightbox-user {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.wc-alp-lightbox-avatar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.wc-alp-lightbox-user-details {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.wc-alp-lightbox-author-row {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.wc-alp-lightbox-author-name {
	margin: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #0f172a !important;
	line-height: 1.2 !important;
}

.wc-alp-lightbox-verified-badge {
	font-size: 12.5px;
	font-weight: 400;
	font-style: italic;
	color: #64748b;
}

.wc-alp-lightbox-date {
	font-size: 12px;
	color: #94a3b8;
}

.wc-alp-lightbox-stars {
	display: flex;
	align-items: center;
	gap: 2px;
}

.wc-alp-lightbox-text {
	font-size: 13.5px;
	line-height: 1.6;
	color: #334155;
	font-style: italic;
	margin: 0;
	flex: 1;
}

.wc-alp-lightbox-footer {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
}

.wc-alp-lightbox-jump-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #333333 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	padding: 8px 14px;
	border-radius: 6px;
	background: #f8fafc;
	border: 1px solid #cbd5e1;
	transition: all 0.2s ease;
}

.wc-alp-lightbox-jump-btn:hover {
	background: #333333 !important;
	color: #ffffff !important;
	border-color: #333333 !important;
}

.wc-alp-lightbox-jump-btn .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

/* Lightbox Close and Nav Buttons */
.wc-alp-lightbox-btn-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	color: #ffffff !important;
	border: none !important;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s ease;
}

.wc-alp-lightbox-btn-close:hover {
	background: #000000;
}

.wc-alp-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #0f172a !important;
	border: 1px solid #e2e8f0 !important;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
}

.wc-alp-lightbox-nav:hover {
	background: #ffffff;
	color: #000000 !important;
	transform: translateY(-50%) scale(1.08);
}

.wc-alp-lightbox-prev {
	left: 16px;
}

.wc-alp-lightbox-next {
	left: auto;
	right: 360px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.wc-alp-lightbox-content {
		flex-direction: column;
		max-height: 92vh;
	}

	.wc-alp-lightbox-media-pane {
		min-height: 260px;
		max-height: 45vh;
	}

	.wc-alp-lightbox-meta-pane {
		width: 100%;
		padding: 18px;
		max-height: 45vh;
	}

	.wc-alp-lightbox-next {
		right: 16px;
	}

	.wc-alp-customer-photos-masonry {
		grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
		gap: 8px;
	}
}


