/* =====================================================================
 * Rent M16 — Wypożyczalnia (frontend)
 * Kolorystyka M16, prefix .rent- aby nie kolidować z motywem.
 * ===================================================================== */

.rent-m16 {
	--rent-primary: #1a1a2e;
	--rent-accent: #e94560;
	--rent-accent-hover: #d63851;
	--rent-secondary: #16213e;
	--rent-light: #f8f9fa;
	--rent-gray: #6c757d;
	--rent-gray-light: #e9ecef;
	--rent-white: #ffffff;
	--rent-shadow: 0 4px 24px rgba(0,0,0,0.08);
	--rent-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
	--rent-radius: 12px;
	--rent-radius-lg: 20px;
	--rent-success: #28a745;
	--rent-danger: #dc3545;

	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--rent-primary);
	line-height: 1.6;
	box-sizing: border-box;
}
.rent-m16 *, .rent-m16 *::before, .rent-m16 *::after { box-sizing: border-box; }
.rent-m16 img { max-width: 100%; height: auto; display: block; }

/* ===== HERO ===== */
.rent-hero {
	background: linear-gradient(135deg, var(--rent-primary) 0%, var(--rent-secondary) 50%, #0f3460 100%);
	color: var(--rent-white);
	padding: 6rem 2rem 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-radius: var(--rent-radius-lg);
}
.rent-hero::before {
	content: '';
	position: absolute;
	top: -50%; right: -30%;
	width: 80%; height: 200%;
	background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 60%);
	pointer-events: none;
}
.rent-hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.rent-hero-badge {
	display: inline-block;
	background: rgba(233,69,96,0.15);
	color: var(--rent-accent);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(233,69,96,0.3);
}
.rent-hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 900;
	color: var(--rent-white);
	line-height: 1.1;
	margin: 0 0 1.5rem;
	letter-spacing: -1px;
}
.rent-hero h1 span { color: var(--rent-accent); }
.rent-hero p {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.75);
	margin: 0 auto 2.5rem;
	max-width: 600px;
}
.rent-hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.rent-hero-stats {
	display: flex;
	gap: 3rem;
	justify-content: center;
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.rent-hero-stat h3 { font-size: 2rem; font-weight: 800; color: var(--rent-accent); margin: 0; }
.rent-hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ===== BUTTONS ===== */
.rent-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.8rem;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	border: none;
	font-family: inherit;
	line-height: 1;
}
.rent-btn-primary { background: var(--rent-accent); color: var(--rent-white); }
.rent-btn-primary:hover { background: var(--rent-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,69,96,0.4); color: var(--rent-white); }
.rent-btn-outline { background: transparent; color: currentColor; border: 2px solid currentColor; }
.rent-btn-outline:hover { background: rgba(255,255,255,0.1); }
.rent-btn-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: var(--rent-radius); justify-content: center; }
.rent-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== SECTION HEADER ===== */
.rent-section { padding: 4rem 1rem; }
.rent-section-header { text-align: center; margin-bottom: 3rem; }
.rent-section-header h2 { font-size: 2rem; font-weight: 800; margin: 0 0 0.75rem; letter-spacing: -0.5px; }
.rent-section-header p { color: var(--rent-gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== STEPS ===== */
.rent-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.rent-step { text-align: center; padding: 1.5rem; }
.rent-step-number {
	width: 56px; height: 56px;
	background: linear-gradient(135deg, var(--rent-accent), #ff6b6b);
	color: var(--rent-white);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.3rem; font-weight: 800;
	margin: 0 auto 1.2rem;
}
.rent-step h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.5rem; }
.rent-step p { font-size: 0.9rem; color: var(--rent-gray); margin: 0; }

/* ===== KATALOG ===== */
.rent-cat-tabs {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}
.rent-cat-tab {
	padding: 0.55rem 1.4rem;
	border-radius: 50px;
	background: var(--rent-white);
	border: 2px solid var(--rent-gray-light);
	color: var(--rent-gray);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
}
.rent-cat-tab:hover, .rent-cat-tab.active {
	background: var(--rent-accent);
	border-color: var(--rent-accent);
	color: var(--rent-white);
}

.rent-equipment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
.rent-eq-card {
	background: var(--rent-white);
	border-radius: var(--rent-radius-lg);
	overflow: hidden;
	box-shadow: var(--rent-shadow);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}
.rent-eq-card:hover { transform: translateY(-4px); box-shadow: var(--rent-shadow-lg); }
.rent-eq-card-img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 240px;
	padding: 1.25rem;
	background: linear-gradient(135deg, #f7f8fa 0%, #eef0f3 100%);
	position: relative;
	overflow: hidden;
	text-decoration: none;
}
.rent-eq-card-img img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.rent-eq-card:hover .rent-eq-card-img img { transform: scale(1.06); }
.rent-eq-badge {
	position: absolute; top: 12px; left: 12px;
	background: var(--rent-accent); color: var(--rent-white);
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-size: 0.72rem; font-weight: 700;
}
.rent-eq-card-body { padding: 1.25rem 1.5rem; flex: 1; }
.rent-eq-card-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; line-height: 1.3; }
.rent-eq-card-body h3 a { color: inherit; text-decoration: none; }
.rent-eq-card-body h3 a:hover { color: var(--rent-accent); }
.rent-eq-desc { font-size: 0.85rem; color: var(--rent-gray); margin: 0 0 1rem; }
.rent-eq-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.rent-eq-spec {
	background: var(--rent-light);
	padding: 0.25rem 0.6rem;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--rent-gray);
}
.rent-eq-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border-top: 1px solid var(--rent-gray-light);
	background: #fafbfc;
}
.rent-eq-price { font-size: 1.4rem; font-weight: 800; color: var(--rent-accent); }
.rent-eq-price small { font-size: 0.7rem; font-weight: 500; color: var(--rent-gray); }
.rent-eq-price-sub { font-size: 0.75rem; color: var(--rent-gray); margin-top: 2px; }
.rent-eq-price-brutto { font-size: 0.78rem; color: var(--rent-gray); margin-top: 2px; font-weight: 600; }
.rent-eq-deposit { font-size: 0.78rem; color: var(--rent-gray); text-align: right; }
.rent-eq-card-action { padding: 0 1.5rem 1.5rem; }
.rent-eq-card-action .rent-btn { width: 100%; justify-content: center; }

/* ===== SINGLE PRODUCT ===== */
.rent-single {
	max-width: 1200px;
	margin: 2rem auto;
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 2.5rem;
	align-items: start;
	padding: 0 1rem;
}
.rent-single-gallery {
	position: sticky;
	top: 90px;
}
.rent-single-img {
	background: linear-gradient(135deg, #f7f8fa 0%, #eef0f3 100%);
	border-radius: var(--rent-radius-lg);
	padding: 1.75rem;
	display: flex; align-items: center; justify-content: center;
	aspect-ratio: 1;
	box-shadow: var(--rent-shadow);
}
.rent-single-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.rent-single-info { min-width: 0; }
.rent-single-info h1 { font-size: 1.85rem; margin: 0.5rem 0 0.75rem; line-height: 1.2; }
.rent-single-short {
	font-size: 0.98rem;
	color: var(--rent-gray);
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.rent-single-section {
	max-width: 1200px;
	margin: 2rem auto;
	background: var(--rent-white);
	border-radius: var(--rent-radius-lg);
	padding: 2.25rem 2.5rem;
	box-shadow: var(--rent-shadow);
}
.rent-single-section > h2 {
	font-size: 1.4rem;
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--rent-gray-light);
}
.rent-single-description-content {
	font-size: 0.98rem;
	line-height: 1.75;
	color: var(--rent-primary);
}
.rent-single-description-content p { margin: 0 0 1rem; }
.rent-single-description-content ul, .rent-single-description-content ol { margin: 0 0 1rem 1.5rem; }

@media (max-width: 900px) {
	.rent-single { grid-template-columns: 1fr; gap: 1.5rem; }
	.rent-single-gallery { position: static; }
	.rent-single-img { aspect-ratio: 4/3; max-height: 360px; }
	.rent-single-section { padding: 1.5rem; margin: 1rem; }
}
.rent-single-info .rent-cat-pill {
	display: inline-block;
	background: rgba(233,69,96,0.1);
	color: var(--rent-accent);
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.rent-single-prices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 1.5rem 0;
	padding: 1.5rem;
	background: var(--rent-light);
	border-radius: var(--rent-radius);
}
.rent-single-price-item .label { font-size: 0.78rem; color: var(--rent-gray); }
.rent-single-price-item .val { font-size: 1.4rem; font-weight: 800; color: var(--rent-primary); }
.rent-single-price-item .val.accent { color: var(--rent-accent); }
.rent-single-price-item .val-brutto { font-size: 0.85rem; color: var(--rent-gray); margin-top: 4px; font-weight: 600; }

.rent-deposit-info {
	display: flex;
	gap: 16px;
	background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
	border: 1px solid #ffe082;
	border-radius: var(--rent-radius);
	padding: 16px 20px;
	margin: 0 0 20px;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #5a4500;
}
.rent-deposit-info-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.rent-deposit-info strong { display: block; margin-bottom: 4px; color: #1a1a2e; font-size: 0.95rem; }
.rent-deposit-info p { margin: 0; }

/* ===== AKUMULATOR ===== */
.rent-aku-info {
	display: flex;
	gap: 16px;
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
	border: 1px solid #a5d6a7;
	border-radius: var(--rent-radius);
	padding: 16px 20px;
	margin: 16px 0 20px;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #1b5e20;
}
.rent-aku-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.rent-aku-content strong { display: block; margin-bottom: 4px; color: #1a1a2e; font-size: 0.96rem; }
.rent-aku-content p { margin: 0 0 10px; }
.rent-aku-extras { padding: 10px 12px; background: rgba(255,255,255,0.6); border-radius: 8px; margin-top: 8px; }
.rent-aku-extras strong { display: block; margin-bottom: 6px; color: #1a1a2e; font-size: 0.85rem; }
.rent-aku-extras ul { margin: 0 0 6px 18px; padding: 0; }
.rent-aku-extras li { margin-bottom: 3px; font-size: 0.86rem; }
.rent-aku-extras small { color: #6c757d; font-size: 0.78rem; }

.rent-aku-picker {
	margin: 1rem 0 1.5rem;
	padding: 1rem 1.25rem;
	background: var(--rent-light);
	border-radius: var(--rent-radius);
}
.rent-aku-picker > label {
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	margin-bottom: 0.6rem;
	color: var(--rent-primary);
}
.rent-aku-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.6rem;
}
.rent-aku-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 0.9rem;
	background: var(--rent-white);
	border: 2px solid var(--rent-gray-light);
	border-radius: var(--rent-radius);
	cursor: pointer;
	transition: all 0.15s;
	font-size: 0.85rem;
	line-height: 1.3;
}
.rent-aku-option input { margin: 0; flex-shrink: 0; }
.rent-aku-option:hover { border-color: var(--rent-accent); background: #fff8f8; }
.rent-aku-option:has(input:checked) {
	border-color: var(--rent-accent);
	background: rgba(233,69,96,0.08);
}
.rent-aku-option small { color: var(--rent-gray); }

/* ===== PROMOCJA - karta produktu ===== */
.rent-eq-card-promo {
	border: 2px solid var(--rent-accent);
	box-shadow: 0 0 0 4px rgba(233,69,96,0.08), var(--rent-shadow);
}
.rent-eq-promo-badge {
	position: absolute; top: 12px; right: 12px;
	background: linear-gradient(135deg, #ff4757 0%, #e94560 100%);
	color: #fff;
	padding: 0.4rem 0.85rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 4px 12px rgba(233,69,96,0.4);
	animation: rent-promo-pulse 2.5s ease-in-out infinite;
}
@keyframes rent-promo-pulse {
	0%,100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}
.rent-eq-price-old {
	font-size: 0.95rem;
	color: var(--rent-gray);
	text-decoration: line-through;
	margin-bottom: 2px;
}

/* ===== PROMOCJA - sekcje banerowe (Dnia / Tygodnia) ===== */
.rent-promo-dnia, .rent-promo-tygodnia { padding: 2rem 1rem; }
.rent-promo-banner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d1b3d 100%);
	border-radius: var(--rent-radius-lg);
	overflow: hidden;
	color: #fff;
	box-shadow: var(--rent-shadow-lg);
	position: relative;
}
.rent-promo-banner::before {
	content: '';
	position: absolute;
	top: -30%; left: -10%;
	width: 60%; height: 200%;
	background: radial-gradient(circle, rgba(233,69,96,0.25) 0%, transparent 60%);
	pointer-events: none;
}
.rent-promo-info { padding: 2.5rem; position: relative; z-index: 1; }
.rent-promo-label {
	display: inline-block;
	background: rgba(233,69,96,0.2);
	color: var(--rent-accent);
	border: 1px solid rgba(233,69,96,0.4);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.rent-promo-info h2 {
	font-size: 1.8rem;
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}
.rent-promo-info > p { color: rgba(255,255,255,0.7); margin: 0 0 1rem; font-size: 0.95rem; }
.rent-promo-prices {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}
.rent-promo-old {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.5);
	text-decoration: line-through;
}
.rent-promo-new {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--rent-accent);
	line-height: 1;
}
.rent-promo-new small { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.rent-promo-brutto { font-size: 0.85rem; color: rgba(255,255,255,0.75); width: 100%; }
.rent-promo-discount {
	background: var(--rent-accent);
	color: #fff;
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-weight: 800;
	font-size: 0.95rem;
}
.rent-promo-img {
	background: linear-gradient(135deg, #f7f8fa 0%, #eef0f3 100%);
	display: flex; align-items: center; justify-content: center;
	padding: 1.5rem;
	min-height: 300px;
}
.rent-promo-img img { max-width: 100%; max-height: 320px; object-fit: contain; }
@media (max-width: 760px) {
	.rent-promo-banner { grid-template-columns: 1fr; }
	.rent-promo-img { min-height: 220px; }
	.rent-promo-info { padding: 1.5rem; }
	.rent-promo-info h2 { font-size: 1.4rem; }
}

/* ===== GALERIA na single product ===== */
.rent-single-thumbs {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.75rem;
	flex-wrap: wrap;
}
.rent-single-thumb {
	width: 70px; height: 70px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	background: linear-gradient(135deg, #f7f8fa 0%, #eef0f3 100%);
	padding: 4px;
	transition: border-color 0.15s, transform 0.15s;
	display: flex; align-items: center; justify-content: center;
}
.rent-single-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rent-single-thumb:hover { transform: translateY(-2px); }
.rent-single-thumb.active { border-color: var(--rent-accent); }

.rent-single-promo-banner {
	background: linear-gradient(135deg, #ff4757 0%, #e94560 100%);
	color: #fff;
	padding: 1rem 1.25rem;
	border-radius: var(--rent-radius);
	margin-bottom: 1rem;
	display: flex; align-items: center; gap: 12px;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(233,69,96,0.3);
}
.rent-single-promo-banner-pct { font-size: 1.6rem; font-weight: 900; padding: 0 8px; }
.rent-single-promo-banner small { display: block; font-weight: 400; opacity: 0.9; font-size: 0.8rem; }
.rent-single-availability { background: var(--rent-white); border: 2px solid var(--rent-gray-light); border-radius: var(--rent-radius); padding: 1.5rem; margin-bottom: 1rem; }
.rent-single-availability h3 { font-size: 1rem; margin: 0 0 1rem; }
.rent-date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.rent-date-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.rent-date-row input {
	width: 100%; padding: 0.6rem 0.8rem;
	border: 2px solid var(--rent-gray-light);
	border-radius: var(--rent-radius);
	font-size: 0.95rem;
	font-family: inherit;
}
.rent-date-row input:focus { outline: none; border-color: var(--rent-accent); }
.rent-availability-status { padding: 0.85rem 1rem; border-radius: var(--rent-radius); margin-bottom: 1rem; font-size: 0.9rem; font-weight: 600; }
.rent-availability-status.yes { background: #d4edda; color: #155724; }
.rent-availability-status.no { background: #f8d7da; color: #721c24; }
.rent-availability-status.loading { background: var(--rent-light); color: var(--rent-gray); }

/* ===== KALENDARZ (Flatpickr override) ===== */
.rent-cal-legend {
	display: flex;
	gap: 1rem;
	margin-top: 0.6rem;
	font-size: 0.78rem;
	color: var(--rent-gray);
	flex-wrap: wrap;
}
.rent-leg-dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 4px; vertical-align: middle; }
.rent-leg-free { background: #e9ecef; }
.rent-leg-busy { background: #f8d7da; border: 1px solid #f5c6cb; }
.rent-leg-selected { background: var(--rent-accent); }

.rent-time-note {
	font-size: 0.78rem;
	color: var(--rent-gray);
	margin: -0.5rem 0 1rem;
	padding: 0.5rem 0.75rem;
	background: var(--rent-light);
	border-radius: 6px;
}

/* Flatpickr — zajęte daty na czerwono */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
	background: #f8d7da !important;
	color: #721c24 !important;
	text-decoration: line-through;
	cursor: not-allowed;
	opacity: 1;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
	background: var(--rent-accent) !important;
	border-color: var(--rent-accent) !important;
	color: #fff !important;
}
.flatpickr-day.inRange {
	background: rgba(233,69,96,0.15) !important;
	border-color: rgba(233,69,96,0.15) !important;
	box-shadow: -5px 0 0 rgba(233,69,96,0.15), 5px 0 0 rgba(233,69,96,0.15);
}
.flatpickr-day.today { border-color: var(--rent-accent); }
.flatpickr-calendar.inline { box-shadow: var(--rent-shadow); border-radius: var(--rent-radius); margin-top: 0.5rem; }

/* ===== PROCES ODBIORU ===== */
.rent-odbior-section { background: var(--rent-light); border-radius: var(--rent-radius-lg); }
.rent-odbior-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
.rent-odbior-step {
	background: var(--rent-white);
	border-radius: var(--rent-radius);
	padding: 1.75rem 1.5rem 1.5rem;
	position: relative;
	box-shadow: var(--rent-shadow);
	transition: transform 0.2s;
}
.rent-odbior-step:hover { transform: translateY(-3px); }
.rent-odbior-num {
	position: absolute;
	top: -14px;
	left: 1.5rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--rent-accent);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(233,69,96,0.4);
	font-size: 0.9rem;
}
.rent-odbior-icon { font-size: 2rem; margin: 0.4rem 0 0.75rem; }
.rent-odbior-step h3 { font-size: 1.05rem; margin: 0 0 0.5rem; font-weight: 700; }
.rent-odbior-step p { font-size: 0.88rem; color: var(--rent-gray); margin: 0 0 0.75rem; line-height: 1.55; }
.rent-odbior-time {
	display: inline-block;
	background: var(--rent-light);
	color: var(--rent-gray);
	padding: 0.2rem 0.6rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 600;
}

.rent-odbior-callout {
	display: flex;
	gap: 1rem;
	max-width: 1100px;
	margin: 2rem auto 0;
	padding: 1.5rem 1.75rem;
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border: 1px solid #b1dfbb;
	border-radius: var(--rent-radius);
	color: #155724;
}
.rent-odbior-callout-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.rent-odbior-callout strong { display: block; font-size: 1rem; margin-bottom: 0.5rem; }
.rent-odbior-callout p { margin: 0; font-size: 0.9rem; line-height: 1.6; }

/* ===== KOSZYK ===== */
.rent-koszyk-table { width: 100%; border-collapse: collapse; background: var(--rent-white); border-radius: var(--rent-radius-lg); overflow: hidden; box-shadow: var(--rent-shadow); }
.rent-koszyk-table th, .rent-koszyk-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--rent-gray-light); font-size: 0.92rem; }
.rent-koszyk-table thead th { background: var(--rent-primary); color: var(--rent-white); font-weight: 600; font-size: 0.85rem; }
.rent-koszyk-table tfoot th { background: var(--rent-light); font-weight: 700; font-size: 1rem; }
.rent-koszyk-table .price-cell { color: var(--rent-accent); font-weight: 700; }
.rent-koszyk-table img { width: 60px; height: 60px; object-fit: contain; border-radius: 6px; background: var(--rent-light); padding: 4px; }
.rent-koszyk-table .rent-remove { background: none; border: none; color: var(--rent-danger); cursor: pointer; font-size: 1.2rem; }

.rent-suggestions { margin-top: 3rem; }
.rent-suggestions h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.rent-suggestions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.rent-suggestion-card {
	background: var(--rent-white);
	border-radius: var(--rent-radius);
	padding: 1rem;
	text-align: center;
	box-shadow: var(--rent-shadow);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s;
}
.rent-suggestion-card:hover { transform: translateY(-2px); }
.rent-suggestion-card img { width: 100%; height: 100px; object-fit: contain; margin-bottom: 0.75rem; }
.rent-suggestion-card .name { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
.rent-suggestion-card .price { color: var(--rent-accent); font-weight: 700; font-size: 0.95rem; }

.rent-koszyk-loading, .rent-koszyk-empty { text-align: center; padding: 3rem 1rem; color: var(--rent-gray); }

.rent-totals-summary {
	background: var(--rent-white);
	border-radius: var(--rent-radius-lg);
	padding: 20px 24px;
	margin: 24px 0;
	box-shadow: var(--rent-shadow);
	max-width: 520px;
	margin-left: auto;
}
.rent-totals-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 0;
	font-size: 0.95rem;
	border-bottom: 1px solid var(--rent-gray-light);
}
.rent-totals-row:last-child { border-bottom: 0; }
.rent-totals-row span { color: var(--rent-gray); }
.rent-totals-row strong { color: var(--rent-primary); }
.rent-totals-brutto {
	background: linear-gradient(90deg, rgba(233,69,96,0.05), transparent);
	margin: 8px -24px;
	padding: 12px 24px !important;
	font-size: 1.05rem;
	border-bottom: 0 !important;
	border-top: 2px solid var(--rent-accent);
}
.rent-totals-brutto strong { color: var(--rent-accent) !important; font-size: 1.4rem; }
.rent-totals-kaucja strong { color: var(--rent-success) !important; }
.rent-totals-note {
	margin-top: 16px;
	padding: 12px 14px;
	background: #fff8e1;
	border-radius: 8px;
	font-size: 0.82rem;
	color: #5a4500;
	line-height: 1.5;
	border-left: 3px solid #ffc107;
}

/* ===== FORM ===== */
.rent-m16-form {
	background: var(--rent-white);
	padding: 2rem;
	border-radius: var(--rent-radius-lg);
	box-shadow: var(--rent-shadow);
	margin-top: 2rem;
	max-width: 700px;
}
.rent-m16-form h3 { margin: 0 0 1.5rem; font-size: 1.25rem; font-weight: 700; }
.rent-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rent-form-group { margin-bottom: 1.1rem; }
.rent-form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.rent-form-group input, .rent-form-group textarea, .rent-form-group select {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 2px solid var(--rent-gray-light);
	border-radius: var(--rent-radius);
	font-size: 0.95rem;
	font-family: inherit;
	background: var(--rent-white);
}
.rent-form-group input:focus, .rent-form-group textarea:focus, .rent-form-group select:focus {
	outline: none;
	border-color: var(--rent-accent);
}
.rent-form-note {
	background: #f0f7ff;
	border-left: 4px solid #007bff;
	padding: 1rem;
	border-radius: var(--rent-radius);
	font-size: 0.82rem;
	color: #004085;
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

/* ===== CENNIK TABLE ===== */
.rent-pricing-table-wrapper { overflow-x: auto; border-radius: var(--rent-radius-lg); box-shadow: var(--rent-shadow); max-width: 1200px; margin: 0 auto; }
.rent-pricing-table { width: 100%; border-collapse: collapse; background: var(--rent-white); font-size: 0.9rem; }
.rent-pricing-table thead { background: var(--rent-primary); color: var(--rent-white); }
.rent-pricing-table th { padding: 1rem 1.2rem; text-align: left; font-weight: 600; font-size: 0.85rem; white-space: nowrap; }
.rent-pricing-table td { padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--rent-gray-light); }
.rent-pricing-table tbody tr:hover { background: #f8f9ff; }
.rent-pricing-table .rent-price-cell { font-weight: 700; color: var(--rent-accent); white-space: nowrap; }
.rent-pricing-table a { color: var(--rent-primary); text-decoration: none; }
.rent-pricing-table a:hover { color: var(--rent-accent); }
.rent-netto-info {
	max-width: 1200px;
	margin: 1rem auto 0;
	padding: 1rem 1.5rem;
	background: #fff3cd;
	border-radius: var(--rent-radius);
	font-size: 0.85rem;
	color: #856404;
	border-left: 4px solid #ffc107;
}

/* ===== LOCATION ===== */
.rent-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; max-width: 1200px; margin: 0 auto; }
.rent-location-map { border-radius: var(--rent-radius-lg); overflow: hidden; box-shadow: var(--rent-shadow); height: 400px; }
.rent-location-map iframe { width: 100%; height: 100%; border: 0; }
.rent-location-details h3 { font-size: 1.4rem; margin: 0 0 1rem; }
.rent-location-details > p { color: var(--rent-gray); margin: 0 0 1.5rem; }
.rent-location-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; }
.rent-location-icon {
	width: 44px; height: 44px;
	background: rgba(233,69,96,0.1);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	font-size: 1.2rem;
}
.rent-location-item strong { display: block; font-size: 0.92rem; }
.rent-location-item span { font-size: 0.82rem; color: var(--rent-gray); }

/* ===== FAQ ===== */
.rent-faq-list { max-width: 800px; margin: 0 auto; }
.rent-faq-item {
	background: var(--rent-white);
	border-radius: var(--rent-radius);
	margin-bottom: 0.75rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	overflow: hidden;
}
.rent-faq-question {
	width: 100%;
	padding: 1.1rem 1.4rem;
	background: none;
	border: none;
	font-family: inherit;
	font-size: 0.98rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--rent-primary);
	transition: background 0.2s;
}
.rent-faq-question:hover { background: var(--rent-light); }
.rent-faq-icon { font-size: 1.3rem; color: var(--rent-accent); transition: transform 0.3s; }
.rent-faq-item.open .rent-faq-icon { transform: rotate(45deg); }
.rent-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.rent-faq-answer-inner { padding: 0 1.4rem 1.1rem; color: var(--rent-gray); font-size: 0.92rem; line-height: 1.7; }

/* ===== TOAST ===== */
.rent-toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--rent-success);
	color: white;
	padding: 1rem 1.6rem;
	border-radius: var(--rent-radius);
	box-shadow: var(--rent-shadow-lg);
	transform: translateY(120px);
	opacity: 0;
	transition: all 0.4s;
	z-index: 99999;
	font-weight: 600;
	font-size: 0.92rem;
	max-width: 380px;
}
.rent-toast.show { transform: translateY(0); opacity: 1; }
.rent-toast.error { background: var(--rent-danger); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.rent-hero-stats { flex-direction: column; gap: 1.5rem; }
	.rent-equipment-grid { grid-template-columns: 1fr; }
	.rent-form-row { grid-template-columns: 1fr; }
	.rent-location-grid { grid-template-columns: 1fr; }
	.rent-single { grid-template-columns: 1fr; gap: 1.5rem; }
	.rent-single-prices { grid-template-columns: 1fr; }
	.rent-koszyk-table thead { display: none; }
	.rent-koszyk-table tr { display: block; margin-bottom: 1rem; border-bottom: 2px solid var(--rent-gray-light); padding-bottom: 0.5rem; }
	.rent-koszyk-table td { display: flex; justify-content: space-between; padding: 0.5rem 1rem; border: none; }
	.rent-koszyk-table td::before { content: attr(data-label); font-weight: 600; color: var(--rent-gray); }
	.rent-section { padding: 3rem 1rem; }
}
