/* ========================================
   HIVE Paddlesports - Rental Period Selection
   Mobile-First Responsive Styles
   ======================================== */

.kayak-cards {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kayak-card {
	background-color: var(--bg-white);
	overflow: hidden;
	transition: var(--transition-normal);
	border: 2px solid var(--border-color);
	display: flex;
	justify-content: space-between;
}

.kayak-image {
	width: 120px;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.kayak-image img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 140px;
	object-fit: contain;
}

.kayak-content {
	flex-grow: 1;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.kayak-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kayak-title {
	display: flex;
	align-items: center;
	gap: 8px;
}

.kayak-name {
	font-weight: 700;
	color: var(--text-dark);
}

.kayak-price {
	display: inline-block;
	background-color: var(--primary-blue);
	color: var(--bg-white);
	font-size: 14px;
	font-weight: 500;
	padding: 4px 8px;
	width: fit-content;
}

.quantity-selector {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	margin-top: 32px;
}

.qty-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-fast);
}

.qty-btn.minus {
	background-color: var(--primary-yellow);
	color: var(--primary-dark);
}

.qty-btn.minus:hover:not(:disabled) {
	background-color: #b8d33a;
}

.qty-btn.minus:disabled {
	background-color: #e8e8e8;
	color: #999999;
	cursor: not-allowed;
}

.qty-btn.plus {
	background-color: var(--primary-yellow);
	color: var(--primary-dark);
}

.qty-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 70px;
}

.qty-display input {
	text-align: center;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    padding: 0 10px;
	box-shadow: none;
	color: var(--text-dark);
}

.qty-display input[disabled] {
	opacity: 1;
}

.qty-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.1;
}

.qty-label {
	font-size: 13px;
	color: var(--text-muted);
	text-transform: capitalize;
}

.footer,
.payment-footer,
.success-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background-color: var(--bg-white);
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
	z-index: 90;
}

/* Page Header with Subtitle */
.page-header-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.page-subtitle {
	font-size: 14px;
	color: var(--bg-white);
	line-height: 20px;
	opacity: 0.8;
	margin: 0;
}

.section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.form-card {
	display: grid;
	gap: 14px 6px;
}

.section-number {
	width: 28px;
	height: 28px;
	min-width: 28px;
	background-color: var(--primary-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-dark);
}

.section-title {
	font-size: 18px !important;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 28px;
    margin: 0;
}

/* Paddler Card */
.paddler-card {
	background-color: var(--bg-white);
	border: 2px solid var(--border-light);
	padding: 18px;
}

.paddler-counter {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.paddler-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	color: var(--text-dark);
}

.paddler-icon {
	color: var(--text-dark);
}

.counter-controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.counter-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-fast);
	background-color: var(--primary-yellow);
	color: var(--primary-dark);
	border: none;
	cursor: pointer;
}

.counter-btn:hover:not(:disabled) {
	background-color: #b8d33a;
}

.counter-btn:disabled {
	background-color: #e8e8e8;
	color: #999999;
	cursor: not-allowed;
}

.counter-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-dark);
	min-width: 40px;
	text-align: center;
}

/* Alert Messages */
.alert-container {
	margin-top: 10px;
}

.alert {
	padding: 16px 20px;
	border-radius: 4px;
}

.alert-warning {
	border-left: 4px solid var(--Secondary-Honey, #ffc527);
	background: rgba(255, 197, 39, 0.2);
}

.alert-info {
	border-left: 4px solid var(--primary-blue);
	background: rgba(51, 181, 229, 0.2);
}

.alert-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.alert-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.alert-message,
.alert-action {
	font-size: 12px;
	color: var(--text-dark);
	margin: 0 0 8px;
}

/* Form Section */
.form-section {
	padding: 16px 16px 80px;
}

.form-main-title {
	font-size: 24px !important;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 20px;
	line-height: 36px;
}

/* Paddler Section */
.paddler-section {
	border: 1.085px solid var(--border-light);
	background: #f9fafb;
	padding: 22px;
	margin-bottom: 24px;
}

.paddler-section .section-number,
.additional-paddlers-section .section-number {
	width: 32px;
	height: 32px;
	background-color: var(--primary-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--primary-dark);
	flex-shrink: 0;
	line-height: 24px;
}

.paddler-section .section-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 28px;
}

/* Form Card */
.form-row {
	display: flex;
	gap: 12px;
}

.form-row.two-columns .form-group {
	flex: 1;
}

/* Form Group */

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #364153;
	margin-bottom: 8px;
	line-height: 20px;
}

.form-label .required {
	color: var(--error-red);
}

.form-group.checkbox-group.terms-checkbox {
    border: 2px solid #D1D5DC;
    background: #F9FAFB;
    padding: 18px;
	margin-top: 0;
}

/* Input Wrapper */
.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.input-icon {
	position: absolute;
	left: 12px;
	color: var(--text-muted);
	pointer-events: none;
}

.form-input {
	width: 100%;
    padding: 12px 12px 12px 40px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid #D1D5DB;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    margin-top: 0;
    box-shadow: none;
}

.form-input::placeholder {
	color: var(--text-muted);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-yellow);
	box-shadow: 0 0 0 3px rgba(206, 233, 66, 0.2);
}

.form-input:invalid:not(:placeholder-shown) {
	border-color: var(--error-red);
}

/* Input Error State */
.form-input.input-error {
	border-color: var(--error-red);
	background-color: #fff5f5;
}

.form-input.input-error:focus {
	border-color: var(--error-red);
	box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

/* Checkbox Group */
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.checkbox-input {
	position: absolute !important;
	opacity: 0;
}

.checkbox-custom {
	width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #0F0E10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    background-color: var(--bg-white);
}

.checkbox-input:checked + .checkbox-custom {
	background-color: var(--primary-yellow);
	border-color: var(--primary-yellow);
}

.checkbox-input:checked + .checkbox-custom::after {
	content: "";
	width: 6px;
	height: 10px;
	border: solid var(--primary-dark);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-bottom: 2px;
}

.checkbox-input:focus + .checkbox-custom {
	border: 3px solid var(--text-dark);
}


.checkbox-text {
	font-size: 14px;
    line-height: 22px;
}

.checkbox-text strong {
	font-weight: 600;
}

/* Additional Paddlers Section */
.additional-paddlers-section {
	margin-top: 32px;
	margin-bottom: 24px;
}

.additional-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.paddlers-icon {
	color: var(--text-dark);
}

.additional-title {
	font-size: 18px !important;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 24px;
	margin: 0;
}

.additional-note {
	font-size: 14px;
	color: var(--text-light);
	line-height: 20px;
	margin-bottom: 16px;
}

/* Additional Paddler Card */
.additional-paddler-card {
	border: 1px solid var(--border-light);
	background: var(--bg-white);
	border-radius: 12px;
	margin-bottom: 16px;
	overflow: hidden;
}

.additional-paddler-card:last-child {
	margin-bottom: 0;
}

.paddler-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	cursor: pointer;
}

.paddler-card-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.paddler-card-title .section-number {
	background-color: #30c8f2;
	color: var(--bg-white);
}

.paddler-card-title span {
	font-weight: 700;
	color: var(--text-dark);
	line-height: 24px;
}

.expand-btn {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-dark);
	transition: transform var(--transition-fast);
}

.additional-paddler-card.collapsed .expand-btn {
	transform: rotate(180deg);
}

.paddler-card-body {
	display: grid;
	gap: 14px 6px;
	padding: 16px;
}

.additional-paddler-card.collapsed .paddler-card-body {
	display: none;
}

/* Minor Checkbox */
.minor-checkbox {
	margin-bottom: 18px;
}

.minor-checkbox .checkbox-text {
	font-size: 14px;
	color: var(--text-dark);
}

/* Waiver Note */
.waiver-note {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 8px;
}

.order-summary-wrapper {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.order-summary-header {
	background-color: var(--primary-dark);
	padding: 12px 16px;
}

.order-summary-header h2 {
	color: var(--primary-yellow);
	font-size: 16px !important;
	font-weight: 700;
	margin: 0;
	line-height: 24px;
}

.order-summary-body {
	padding: 20px;
    border-bottom: 2px solid var(--bg-light-gray);
    border: 2px solid var(--bg-light-gray);
    background: var(--bg-white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.order-wrapper {
	border-bottom: 2px solid var(--bg-light-gray);
	background: #F9FAFB;
}

.order-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.order-info-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.order-info-item.full-width {
	margin-bottom: 0;
}

.order-info-label {
	font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.order-info-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
}

.order-divider {
	height: 1px;
	background-color: var(--border-color);
	margin: 20px 0;
}

/* Kayaks Section */
.order-kayaks-section {
	margin-top: 8px;
}

.kayaks-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.kayaks-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 0.5px;
}

.kayaks-count {
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	color: #000000;
	background-color: #c8dc64;
	padding: 4px 12px;
	border-radius: 20px;
}

.kayaks-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Kayak Item Card */
.kayak-item-card {
	background: linear-gradient(90deg, #F9FAFB 0%, #FFF 100%);
	border-left: 4px solid var(--primary-blue);
	padding: 16px;
	margin-bottom: 16px;
}

.kayak-item-card:last-child {
	margin-bottom: 0;
}

.kayak-item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
}

.kayak-item-info {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.kayak-item-icon {
	width: 40px;
	height: 40px;
	background-color: #30C8F2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	flex-shrink: 0;
}

.kayak-item-details h4 {
	font-size: 16px !important;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 4px 0;
	line-height: 24px;
}

.kayak-item-deposit {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 16px;
}

.kayak-item-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 28px;
}

.price-breakdown-wrapper {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--bg-light-gray);
    background: var(--bg-white);
}

.kayak-breakdown-toggle {
	display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-white);
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    color: #4A5565;
}

.kayak-breakdown-toggle.expanded {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--bg-light-gray);
}

.kayak-breakdown-toggle svg {
	transition: transform var(--transition-fast);
}

.kayak-breakdown-toggle.expanded svg {
	transform: rotate(180deg);
}

.kayak-breakdown-panel {
	display: none;
	background-color: var(--bg-white);
	border-top: none;
}

.kayak-breakdown-panel.show {
	display: block;
}

.breakdown-line {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
}

.breakdown-line span:first-child {
	font-size: 14px;
	color: var(--text-dark);
}

.breakdown-line span:last-child {
	font-size: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.breakdown-line.deposit span:last-child {
	color: #F54900;
}

.breakdown-line.total {
	border-top: none;
	margin-top: 8px;
	padding-top: 8px;
}

.breakdown-line.total span {
	font-weight: 700;
	color: var(--text-dark);
}

/* Security Deposit Info */
.security-deposit-info {
	padding: 16px 16px 16px 20px;
	margin: 24px 0;
	border-left: 4px solid #c8dc64;
	background: rgba(200, 220, 100, 0.2);
}

.deposit-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.deposit-header svg {
	color: var(--text-dark);
}

.deposit-header h3 {
	font-size: 14px !important;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.deposit-list {
	list-style: none;
	padding: 0;
	margin: 0 0 12px 0;
}

.deposit-list li {
	position: relative;
	padding-left: 20px;
	font-size: 12px;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 10px;
}

.deposit-list li:last-child {
	margin-bottom: 0;
}

.deposit-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--text-dark);
	font-weight: 600;
}

.deposit-list li strong {
	font-weight: 600;
}

.deposit-link {
	font-size: 12px;
	color: #fe6323;
	text-decoration: underline;
}

.deposit-link:hover {
	text-decoration: underline;
}

.modal-container {
	background-color: var(--primary-dark);
	padding: 24px;
	width: 100%;
	max-width: 340px;
	position: relative;
}

.modal-close-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: var(--bg-white);
}

.modal-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--bg-white);
	margin: 0 0 16px 0;
	letter-spacing: 1px;
}

.modal-message {
	font-size: 14px;
	color: var(--bg-white);
	line-height: 1.6;
	margin: 0 0 24px 0;
}

.modal-actions {
	display: flex;
	gap: 12px;
}

.modal-btn {
	flex: 1;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: var(--transition-fast);
	letter-spacing: 0.5px;
}

.modal-btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary-yellow);
	color: var(--primary-yellow);
}

.modal-btn-outline:hover {
	background-color: rgba(206, 233, 66, 0.1);
}

.modal-btn-primary {
	background-color: var(--primary-yellow);
	color: var(--primary-dark);
}

.modal-btn-primary:hover {
	background-color: #b8d33a;
}

.terms-text {
	font-size: 12px;
	color: var(--text-light);
	text-align: center;
	margin: 0 0 12px 0;
}

.terms-link {
	color: var(--primary-blue);
	text-decoration: underline;
}

.terms-link:hover {
	text-decoration: none;
}

/* ========================================
   Payment Success Page
   ======================================== */
.success-page {
	background-color: var(--text-dark);
	padding-bottom: 40px;
}

.success-header-section {
	padding-block: 90px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Rental Details Section */
.rental-details-section {
	padding: 0 16px;
	margin-bottom: 0;
}

.rental-details-card {
	background-color: #202020;
	overflow: hidden;
	margin-bottom: 24px;
}

.rental-details-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
}

.rental-details-header svg {
	color: var(--bg-white);
}

.rental-details-header h2 {
	font-size: 16px !important;
	font-weight: 700;
	color: var(--bg-white);
	margin: 0;
}

.rental-details-body {
	padding: 16px;
}

.rental-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 16px;
}

.rental-info-grid:last-child {
	margin-bottom: 0;
}

.rental-info-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rental-info-label {
	font-size: 12px;
	color: var(--text-muted);
}

.rental-info-value {
	font-size: 16px;
	font-weight: 700;
	color: var(--bg-white);
}

/* Waiver Section */
.waiver-section {
	padding: 0 16px;
	margin-bottom: 0;
}

.waiver-wrapper {
	background: linear-gradient(180deg, #c8dc64 0%, #f0ea00 100%);
	padding: 26px;
	margin-top: 0;
}

.waiver-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.waiver-icon {
	width: 48px;
	height: 48px;
	background-color: var(--primary-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-yellow);
	flex-shrink: 0;
}

.waiver-header-text h3 {
	font-size: 16px !important;
	font-weight: 700;
	color: var(--primary-dark);
	margin: 0 0 4px 0;
	letter-spacing: 0.5px;
}

.waiver-header-text p {
	font-size: 14px;
	color: var(--text-dark);
	margin: 0;
}

.waiver-info-card {
	background: rgba(255, 255, 255, 0.9);
	padding: 16px;
}

.waiver-info-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.waiver-info-header svg {
	color: var(--text-dark);
}

.waiver-info-header span {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
}

.waiver-list {
	list-style: disc;
	padding-left: 20px;
	margin: 0;
}

.waiver-list li {
	font-size: 12px;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 8px;
}

.waiver-list li:last-child {
	margin-bottom: 0;
}

.guardian-fields .form-group {
    margin-bottom: 15px;
}

.guardian-fields .form-group:last-child {
    margin-bottom: 0;
}


/* ========================================
   MEDIA QUERIES
======================================== */
@media (min-width: 768px) {
	/* Kayak Selection */
	.kayak-cards, .main-content.success-page,
	.participants-section {
		padding: 24px 24px;
		margin: 0 auto;
	}

	.kayak-image {
		width: 180px;
	}

	.kayak-image img {
		max-height: 140px;
	}

	.kayak-name {
		font-size: 20px;
	}

	.footer {
		left: 50%;
		transform: translateX(-50%);
	}
	.counter-btn {
		width: 48px;
		height: 48px;
	}

	.counter-value {
		font-size: 32px;
	}

	/* Paddler Details */
	.form-section {
		padding: 24px;
		max-width: 100%;
		margin: 0 auto;
	}

	.form-main-title,
	.alert-title,
	.rental-info-value,
	.rental-details-header h2,
	.waiver-info-header span,
	.paddler-label,
	.kayak-item-details h4,
	.order-summary-header h2 {
		font-size: 20px !important;
		line-height: 28px;
	}

	.form-card {
		padding: 20px 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px 6px;
	}

	.form-card .terms-checkbox,
	.paddler-card-body .guardian-fields .guardian-email-group,
	.paddler-card-body .minor-checkbox,
	.paddler-card-body .full-name-group {
		grid-column: 1 / -1;
	}

	.paddler-card-body {
		grid-template-columns: repeat(2, 1fr);
	}

	.paddler-card-body .paddler-fields,
	.paddler-card-body .guardian-fields {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px 6px;
	}

	.alert-message,
	.alert-action,
	.deposit-link,
	.waiver-list li,
	.rental-info-label,
	.success-subtitle,
	.breakdown-line span:last-child,
	.breakdown-line span:first-child,
	.kayak-breakdown-toggle,
	.kayak-item-deposit,
	.waiver-header-text p,
	.terms-text,
	.deposit-list li,
	.page-subtitle {
		font-size: 16px;
		line-height: 24px;
	}

	.payment-footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}
	
	.rental-details-section,
	.waiver-section {
		padding: 0;
	}

	.quantity-selector {
		justify-content: flex-start;
	}
	.guardian-fields .form-group {
		margin-bottom: 0;
	}
}

@media (min-width: 1024px) {
	body {
		background-color: #f0f0f0;
	}

	/* Kayak Selection */
	.kayak-cards, .main-content.success-page  {
		padding: 32px;
		max-width: 700px;
		gap: 24px;
		margin: auto;
	}

	.kayak-card {
		border-radius: 20px;
	}

	.kayak-image img {
		max-height: 160px;
	}

	.kayak-details {
		padding: 0 24px 24px;
	}

	.kayak-price {
		font-size: 14px;
		padding: 6px 14px;
	}

	.qty-btn {
		width: 48px;
		height: 48px;
	}

	.qty-value {
		font-size: 32px;
	}

	.counter-btn {
		width: 52px;
		height: 52px;
	}

	.counter-value {
		font-size: 36px;
	}

	/* Paddler Details */
	.form-section,
	.participants-section {
		padding: 32px 0;
		max-width: 700px;
	}

	.form-main-title,
	.kayak-name,
	.section-title {
		font-size: 22px !important;
	}

	.form-card {
		padding: 24px 0;
	}

	.form-row {
		gap: 16px;
	}
}
