/**
 * SelvaMart — SelvaMart 2 Feature Styles
 * NEW-02: Cold-Chain & Freshness Badging
 * NEW-05: Seasonal Harvest Calendar
 * NEW-09: Harvest Review Photo Gallery
 *
 * @package SelvaMart
 * @since   1.7.0
 */

/* ============================================================
   NEW-02: Cold-Chain Freshness Badges (product loop)
   ============================================================ */

.sm-fresh-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 9;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	pointer-events: none;
	user-select: none;
}

.sm-fresh-badge--fresh {
	background: linear-gradient(135deg, #16a34a, #22c55e);
	color: #fff;
}

.sm-fresh-badge--cold {
	background: linear-gradient(135deg, #0ea5e9, #38bdf8);
	color: #fff;
}

.sm-fresh-badge--frozen {
	background: linear-gradient(135deg, #1d4ed8, #3b82f6);
	color: #fff;
}

/* Freshness info block — single product page */
.sm-freshness-block {
	margin: 14px 0;
	border-radius: 12px;
	padding: 14px 16px;
	border-left: 4px solid #2D4A1E;
	background: #f0f7ea;
	font-size: 13px;
}

.sm-freshness-block--cold {
	border-left-color: #0ea5e9;
	background: #f0f9ff;
}

.sm-freshness-block--frozen {
	border-left-color: #1d4ed8;
	background: #eff6ff;
}

.sm-freshness-block--ambient {
	border-left-color: #64748b;
	background: #f8fafc;
}

.sm-freshness-block__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.sm-freshness-block__icon {
	font-size: 20px;
	line-height: 1;
}

.sm-freshness-block__header strong {
	font-size: 13px;
	color: #1e293b;
}

.sm-freshness-block__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.sm-freshness-block__list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: #374151;
}

.sm-freshness-block__list li span {
	flex-shrink: 0;
	color: #64748b;
	min-width: 120px;
}

.sm-freshness-block__list li strong {
	color: #1e293b;
}

/* ============================================================
   NEW-05: Seasonal Harvest Calendar
   ============================================================ */

.sm-harvest-calendar {
	max-width: 1100px;
	margin: 0 auto 3rem;
	font-family: inherit;
}

.sm-harvest-calendar__header {
	text-align: center;
	margin-bottom: 2rem;
}

.sm-harvest-calendar__title {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 800;
	color: #2D4A1E;
	margin: 0 0 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.sm-harvest-calendar__subtitle {
	font-size: 0.8em;
	font-weight: 400;
	color: #64748b;
}

.sm-harvest-calendar__desc {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

.sm-harvest-calendar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

@media (max-width: 900px) {
	.sm-harvest-calendar__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.sm-harvest-calendar__grid { grid-template-columns: repeat(2, 1fr); }
}

.sm-harvest-month {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	padding: 14px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	position: relative;
	overflow: hidden;
}

.sm-harvest-month:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(45, 74, 30, 0.1);
}

.sm-harvest-month--active {
	border-color: #2D4A1E;
	background: #f0f7ea;
	box-shadow: 0 4px 16px rgba(45, 74, 30, 0.12);
}

.sm-harvest-month--past {
	opacity: 0.65;
}

.sm-harvest-month--empty {
	background: #fafafa;
}

.sm-harvest-month__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.sm-harvest-month__num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e2e8f0;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #374151;
}

.sm-harvest-month--active .sm-harvest-month__num {
	background: #2D4A1E;
	color: #fff;
}

.sm-harvest-month__name {
	font-size: 13px;
	font-weight: 700;
	color: #1e293b;
	display: block;
	line-height: 1.2;
}

.sm-harvest-month__tamil {
	font-size: 11px;
	color: #64748b;
	display: block;
}

.sm-harvest-month__badge {
	margin-left: auto;
	background: #2D4A1E;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

.sm-harvest-month__crops {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 10px;
}

.sm-harvest-crop-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #e8f2df;
	color: #2D4A1E;
	border-radius: 20px;
	padding: 3px 9px;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}

.sm-harvest-crop-tag:hover {
	background: #2D4A1E;
	color: #fff;
	text-decoration: none;
}

.sm-harvest-crop-tag img {
	border-radius: 50%;
	object-fit: cover;
}

.sm-harvest-month__empty {
	font-size: 11px;
	color: #94a3b8;
	margin: 0;
	font-style: italic;
}

.sm-harvest-month__cta {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #2D4A1E;
	text-decoration: none;
	border-bottom: 1.5px solid #2D4A1E;
	padding-bottom: 1px;
	transition: opacity 0.15s;
}

.sm-harvest-month__cta:hover {
	opacity: 0.7;
	text-decoration: none;
}

/* In Season Now widget */
.sm-in-season-now {
	margin: 2rem 0;
}

.sm-in-season-now__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 1.2rem;
	gap: 1rem;
	flex-wrap: wrap;
}

.sm-in-season-now__badge {
	display: inline-block;
	background: #2D4A1E;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 6px;
}

.sm-in-season-now__title {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 4px;
}

.sm-in-season-now__subtitle {
	font-size: 13px;
	color: #64748b;
	margin: 0;
}

.sm-in-season-now__view-all {
	font-size: 13px;
	font-weight: 700;
	color: #2D4A1E;
	text-decoration: none;
	border-bottom: 1.5px solid #2D4A1E;
	white-space: nowrap;
	padding-bottom: 1px;
}

.sm-in-season-now__view-all:hover {
	opacity: 0.7;
	text-decoration: none;
}

.sm-in-season-now__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media (max-width: 900px) {
	.sm-in-season-now__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
	.sm-in-season-now__grid { grid-template-columns: repeat(2, 1fr); }
}

.sm-season-card {
	background: #fff;
	border-radius: 12px;
	border: 1.5px solid #e2e8f0;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: transform 0.18s, box-shadow 0.18s;
}

.sm-season-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(45, 74, 30, 0.12);
	text-decoration: none;
	color: inherit;
}

.sm-season-card__img-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f1f5f9;
}

.sm-season-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.sm-season-card:hover .sm-season-card__img-wrap img {
	transform: scale(1.06);
}

.sm-season-card__oos {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sm-season-card__body {
	padding: 10px 12px 12px;
	flex: 1;
}

.sm-season-card__title {
	font-size: 13px;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 6px;
	line-height: 1.35;
}

.sm-season-card__price {
	font-size: 14px;
	font-weight: 800;
	color: #2D4A1E;
}

.sm-in-season-empty {
	background: #f8fafc;
	border: 1.5px dashed #cbd5e1;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	color: #64748b;
	font-size: 14px;
}

/* ============================================================
   NEW-09: Harvest Review Photo Gallery
   ============================================================ */

/* File upload field */
.comment-form-sm-photos {
	margin-top: 1rem;
}

.comment-form-sm-photos label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
	color: #374151;
}

.sm-review-file-input {
	display: block;
	width: 100%;
	padding: 8px;
	border: 1.5px dashed #94a3b8;
	border-radius: 8px;
	background: #f8fafc;
	font-size: 13px;
	cursor: pointer;
	transition: border-color 0.15s;
}

.sm-review-file-input:hover,
.sm-review-file-input:focus {
	border-color: #2D4A1E;
	outline: none;
}

.sm-review-photo-hint {
	display: block;
	font-size: 11px;
	color: #94a3b8;
	margin-top: 4px;
}

/* Customer photo gallery section */
.sm-review-photo-gallery {
	margin: 2.5rem 0;
	padding-top: 2rem;
	border-top: 1.5px solid #e2e8f0;
}

.sm-review-photo-gallery__title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 4px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.sm-review-photo-gallery__count {
	font-size: 0.75em;
	font-weight: 600;
	color: #64748b;
}

.sm-review-photo-gallery__subtitle {
	font-size: 13px;
	color: #64748b;
	margin: 0 0 1.2rem;
}

.sm-review-photo-gallery__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

@media (max-width: 900px) {
	.sm-review-photo-gallery__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
	.sm-review-photo-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

.sm-review-photo-item {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 10px;
	border: 1.5px solid #e2e8f0;
	position: relative;
	cursor: pointer;
	margin: 0;
	background: #f1f5f9;
	transition: transform 0.18s, box-shadow 0.18s;
}

.sm-review-photo-item:hover {
	transform: scale(1.04);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sm-review-photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.sm-review-photo-item figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	color: #fff;
	padding: 20px 8px 6px;
	font-size: 10px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	opacity: 0;
	transition: opacity 0.18s;
}

.sm-review-photo-item:hover figcaption {
	opacity: 1;
}

.sm-review-photo-reviewer {
	font-weight: 700;
	font-size: 10px;
}

.sm-review-photo-date {
	font-size: 9px;
	opacity: 0.8;
}

/* Lightbox */
.sm-photo-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	gap: 16px;
}

.sm-photo-lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: rgba(0, 0, 0, 0.88);
}

.sm-photo-lightbox__img {
	max-width: min(90vw, 700px);
	max-height: 70vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sm-photo-lightbox__close {
	position: fixed;
	top: 20px;
	right: 24px;
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	transition: background 0.15s;
}

.sm-photo-lightbox__close:hover {
	background: rgba(255,255,255,0.3);
}

.sm-photo-lightbox__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: rgba(255,255,255,0.9);
	font-size: 13px;
}

.sm-photo-lightbox__reviewer {
	font-weight: 700;
}

.sm-photo-lightbox__date {
	font-size: 11px;
	opacity: 0.7;
}

/* ============================================================
   NEW-01: Farm Distance & Traceability Card
   ============================================================ */

.sm-farm-distance-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fbfdfa;
	border: 1.5px solid #cbe4b8;
	border-radius: 10px;
	padding: 10px 14px;
	margin: 14px 0;
}

.sm-farm-distance-card__icon {
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
}

.sm-farm-distance-card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sm-farm-distance-card__origin {
	font-size: 13px;
	color: #2D4A1E;
}

.sm-farm-distance-card__eta {
	font-size: 11px;
	color: #64748b;
}

.sm-farm-distance-card__tag {
	background: #2D4A1E;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 20px;
	white-space: nowrap;
}

/* ============================================================
   NEW-03: B2B RFQ Modal & Buttons
   ============================================================ */

.sm-rfq-action-wrap {
	margin: 12px 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sm-btn-rfq-trigger {
	background: #374151 !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	border-radius: 8px !important;
	padding: 10px 18px !important;
	border: none !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	transition: background 0.18s ease !important;
}

.sm-btn-rfq-trigger:hover {
	background: #1f2937 !important;
}

.sm-rfq-hint {
	font-size: 11px;
	color: #64748b;
}

.sm-rfq-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.sm-rfq-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 1;
}

.sm-rfq-modal__content {
	position: relative;
	z-index: 2;
	background: #fff;
	border-radius: 14px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sm-rfq-modal__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 14px;
	margin-bottom: 16px;
}

.sm-rfq-modal__badge {
	background: #2D4A1E;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	text-transform: uppercase;
}

.sm-rfq-modal__title {
	font-size: 18px;
	font-weight: 800;
	color: #1e293b;
	margin: 6px 0 2px;
}

.sm-rfq-modal__product-title {
	font-size: 12px;
	color: #64748b;
}

.sm-rfq-modal__close {
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	color: #94a3b8;
	cursor: pointer;
}

.sm-rfq-modal__close:hover {
	color: #1e293b;
}

.sm-rfq-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

@media (max-width: 500px) {
	.sm-rfq-form__grid { grid-template-columns: 1fr; }
}

.sm-rfq-field {
	margin-bottom: 12px;
}

.sm-rfq-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 4px;
}

.sm-rfq-field input,
.sm-rfq-field textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 13px;
}

.sm-rfq-field input:focus,
.sm-rfq-field textarea:focus {
	border-color: #2D4A1E;
	outline: none;
}

.sm-rfq-form__status {
	padding: 10px;
	border-radius: 6px;
	font-size: 12px;
	margin-bottom: 12px;
}

.sm-rfq-form__status.is-success {
	background: #dcfce7;
	color: #15803D;
	border: 1px solid #86efac;
}

.sm-rfq-form__status.is-error {
	background: #fee2e2;
	color: #dc2626;
	border: 1px solid #fca5a5;
}

.sm-rfq-form__footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 16px;
}

.sm-btn-rfq-submit {
	background: #2D4A1E !important;
	color: #fff !important;
	font-weight: 700 !important;
	border: none !important;
	padding: 8px 20px !important;
	border-radius: 6px !important;
}

/* ============================================================
   NEW-06: Agri-Points Loyalty Wallet & Checkout Card
   ============================================================ */

.sm-loyalty-redeem-card {
	background: #fdfdf9;
	border: 1.5px dashed #2D4A1E;
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
}

.sm-loyalty-redeem-card__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.sm-loyalty-redeem-card__icon {
	font-size: 26px;
	line-height: 1;
}

.sm-loyalty-redeem-card__header strong {
	font-size: 14px;
	color: #2D4A1E;
	display: block;
}

.sm-loyalty-redeem-card__header p {
	font-size: 12px;
	color: #64748b;
	margin: 2px 0 0;
}

.sm-loyalty-redeem-form__row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.sm-loyalty-redeem-form__row input {
	flex: 1;
	min-width: 140px;
	padding: 8px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 13px;
}

.sm-btn-redeem-points {
	background: #2D4A1E !important;
	color: #fff !important;
	font-weight: 700 !important;
	border-radius: 6px !important;
	border: none !important;
	font-size: 12px !important;
	padding: 8px 14px !important;
}

.sm-btn-remove-points {
	background: #fee2e2 !important;
	color: #dc2626 !important;
	font-weight: 700 !important;
	border-radius: 6px !important;
	border: 1px solid #fca5a5 !important;
	font-size: 12px !important;
	padding: 8px 12px !important;
}

/* My Account Loyalty Wallet */
.sm-loyalty-wallet-hero {
	background: linear-gradient(135deg, #2D4A1E 0%, #1b2e12 100%);
	color: #fff;
	border-radius: 16px;
	padding: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 24px;
}

@media (max-width: 700px) {
	.sm-loyalty-wallet-hero { grid-template-columns: 1fr; }
}

.sm-loyalty-wallet-hero__badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.18);
	color: #cbe4b8;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.sm-loyalty-wallet-hero__points {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 4px;
	line-height: 1;
}

.sm-loyalty-wallet-hero__points small {
	font-size: 16px;
	font-weight: 400;
	color: #cbe4b8;
}

.sm-loyalty-wallet-hero__value {
	font-size: 13px;
	color: #e2e8f0;
	margin: 0;
}

.sm-loyalty-wallet-hero__rules h4 {
	color: #cbe4b8;
	font-size: 13px;
	margin: 0 0 8px;
}

.sm-loyalty-wallet-hero__rules ul {
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
	color: #cbd5e1;
	line-height: 1.5;
}

/* ============================================================
   NEW-04: Community Cart Pool Styles
   ============================================================ */

.sm-cart-pool-hub {
	max-width: 1000px;
	margin: 2rem auto;
}

.sm-cart-pool-hub__hero {
	text-align: center;
	margin-bottom: 2rem;
}

.sm-cart-pool-hub__badge {
	display: inline-block;
	background: #2D4A1E;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.sm-cart-pool-hub__hero h2 {
	font-size: 24px;
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 6px;
}

.sm-cart-pool-hub__hero p {
	font-size: 14px;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

.sm-cart-pool-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

@media (max-width: 700px) {
	.sm-cart-pool-grid { grid-template-columns: 1fr; }
}

.sm-cart-pool-card {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sm-cart-pool-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sm-cart-pool-card__icon {
	font-size: 28px;
}

.sm-cart-pool-card__title {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.sm-cart-pool-card__location {
	font-size: 12px;
	color: #64748b;
}

.sm-cart-pool-progress__bar {
	height: 10px;
	background: #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 6px;
}

.sm-cart-pool-progress__fill {
	height: 100%;
	background: linear-gradient(90deg, #16a34a, #22c55e);
	border-radius: 20px;
	transition: width 0.4s ease;
}

.sm-cart-pool-progress__labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	font-weight: 600;
	color: #64748b;
}

.sm-cart-pool-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #f1f5f9;
	padding-top: 12px;
}

.sm-cart-pool-card__discount {
	font-size: 12px;
	font-weight: 700;
	color: #15803D;
}

.sm-btn-join-pool {
	background: #2D4A1E !important;
	color: #fff !important;
	font-weight: 700 !important;
	border-radius: 6px !important;
	border: none !important;
	font-size: 12px !important;
	padding: 6px 14px !important;
}

/* ============================================================
   NEW-07: Adopt-a-Tree Sponsorship Styles
   ============================================================ */

.sm-sponsorship-card {
	background: #f7faf4;
	border: 1.5px solid #2D4A1E;
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
}

.sm-sponsorship-card__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.sm-sponsorship-card__icon {
	font-size: 28px;
}

.sm-sponsorship-card__badge {
	display: inline-block;
	background: #2D4A1E;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	text-transform: uppercase;
}

.sm-sponsorship-card__title {
	font-size: 14px;
	color: #1e293b;
	display: block;
	margin-top: 2px;
}

.sm-sponsorship-card__desc {
	font-size: 12px;
	color: #475569;
	line-height: 1.45;
	margin: 0 0 10px;
}

.sm-sponsorship-card__yield {
	background: #fff;
	border: 1px solid #cbe4b8;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 12px;
	color: #2D4A1E;
	margin-bottom: 10px;
}

.sm-sponsorship-card__perks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 11px;
	color: #64748b;
}

.sm-sponsorship-card__perks span {
	background: rgba(45, 74, 30, 0.08);
	padding: 3px 8px;
	border-radius: 4px;
}

/* My Account Sponsorship Dashboard */
.sm-sponsorship-dashboard__hero {
	background: #2D4A1E;
	color: #fff;
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.sm-sponsorship-dashboard__hero h2 {
	color: #fff;
	margin: 0 0 4px;
	font-size: 20px;
}

.sm-sponsorship-dashboard__hero p {
	color: #cbe4b8;
	margin: 0;
	font-size: 13px;
}

.sm-sponsorship-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.sm-sponsorship-item-card {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	padding: 14px;
	display: flex;
	gap: 12px;
}

.sm-sponsorship-item-card__img img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 8px;
}

.sm-badge-active-sponsorship {
	background: #dcfce7;
	color: #15803D;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
}

/* ============================================================
   NEW-10: Live Shipment Tracking Styles
   ============================================================ */

.sm-order-tracking-card {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 24px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sm-order-tracking-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 14px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 12px;
}

.sm-order-tracking-card__badge {
	background: #2D4A1E;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

.sm-order-tracking-card__title {
	font-size: 18px;
	font-weight: 800;
	color: #1e293b;
	margin: 6px 0 2px;
}

.sm-order-tracking-card__awb {
	font-size: 12px;
	color: #64748b;
}

.sm-btn-courier-track {
	background: #2D4A1E !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	border-radius: 6px !important;
	border: none !important;
	padding: 6px 14px !important;
}

.sm-tracking-timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	position: relative;
}

@media (max-width: 768px) {
	.sm-tracking-timeline { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

.sm-tracking-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	opacity: 0.45;
}

.sm-tracking-step.is-done {
	opacity: 1;
}

.sm-tracking-step__icon-wrap {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f1f5f9;
	border: 2px solid #cbd5e1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s ease;
}

.sm-tracking-step.is-done .sm-tracking-step__icon-wrap {
	background: #e8f2df;
	border-color: #2D4A1E;
}

.sm-tracking-step.is-current .sm-tracking-step__icon-wrap {
	background: #2D4A1E;
	border-color: #2D4A1E;
	box-shadow: 0 0 0 4px rgba(45, 74, 30, 0.2);
}

.sm-tracking-step__label {
	font-size: 11px;
	font-weight: 700;
	color: #374151;
	line-height: 1.3;
}
