/**
 * Public styles for PetBookings plugin
 *
 * @package PetBookings
 */

/* Registration Form Styles */
.petbookings-register-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 20px;
}

/* Login Form Styles */
.petbookings-login-container {
	max-width: 600px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-register-form-wrapper,
.petbookings-login-form-wrapper {
	background: #fff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.petbookings-register-title,
.petbookings-login-title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
	color: #1a1a2e;
}

.petbookings-form-group {
	margin-bottom: 20px;
}

.petbookings-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

.petbookings-label .required {
	color: #dc3545;
}

.petbookings-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
	line-height: 1.5;
	min-height: 48px;
}

.petbookings-input:focus {
	outline: none;
	border-color: #ddd;
	box-shadow: none;
}

.petbookings-phone-input-wrapper {
	display: flex;
	align-items: stretch;
}

.petbookings-phone-prefix {
	padding: 12px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-right: none;
	border-radius: 4px 0 0 4px;
	font-size: 16px;
	color: #666;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	line-height: 1.5;
	white-space: nowrap;
	min-height: 48px;
}

.petbookings-phone-input {
	border-radius: 0 4px 4px 0;
	flex: 1;
}

.petbookings-password-input-wrapper {
	position: relative;
}

.petbookings-password-input {
	padding-right: 45px;
}

.petbookings-password-toggle {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	font-size: 18px;
}

.petbookings-password-requirements {
	margin-top: 5px;
	color: #666;
	font-size: 12px;
}

.petbookings-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-left: 0px;
}

.petbookings-checkbox-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	cursor: pointer;
	flex-shrink: 0;
}

.petbookings-checkbox-label span {
	color: #333;
	font-size: 16px;
}

.petbookings-checkbox {
	margin-right: 8px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.petbookings-checkbox-text {
	color: #333;
}

.petbookings-password-field {
	margin-top: 15px;
}

.petbookings-login-link {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
	font-size: 18px;
	color: #666;
}

.petbookings-login-link a {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 500;
}

.petbookings-login-link a:hover {
	text-decoration: underline;
}

.petbookings-button {
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s;
}

.petbookings-button-primary {
	background-color: #ff6b35;
	color: #fff;
	width: 100%;
	border-radius: 8px;
	font-weight: 500;
}

.petbookings-button-primary:hover {
	background-color: #e55a2b;
}

.petbookings-register-submit {
	margin-top: 20px;
}

.petbookings-error-message {
	display: block;
	color: #dc3545;
	font-size: 13px;
	margin-top: 5px;
	font-weight: 400;
}

.petbookings-alert {
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.petbookings-alert-error {
	background-color: #f8d7da;
	border: 1px solid #dc3545;
	color: #721c24;
}

.petbookings-alert-success {
	background-color: #d4edda;
	border: 1px solid #28a745;
	color: #155724;
}

.petbookings-register-footer,
.petbookings-login-footer {
	margin-top: 20px;
	text-align: center;
	color: #666;
}

.petbookings-link {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 500;
}

.petbookings-link:hover {
	text-decoration: underline;
	color: #e55a2b;
}

/* Room Listing Styles */
.petbookings-room-listing-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-room-listing-header {
	text-align: center;
	margin-bottom: 40px;
}

.petbookings-page-title {
	font-size: 36px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.petbookings-page-description {
	font-size: 18px;
	color: #666;
}

/* Booking Form */
.petbookings-booking-form-wrapper {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.petbookings-booking-form .petbookings-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	align-items: end;
}

.petbookings-booking-form .petbookings-form-group {
	display: flex;
	flex-direction: column;
}

.petbookings-booking-form .petbookings-label {
	margin-bottom: 8px;
	font-weight: 500;
	color: #1a1a2e;
}

/* Search Bar */
.petbookings-search-wrapper {
	margin-bottom: 30px;
}

.petbookings-search-form {
	display: flex;
	gap: 10px;
	max-width: 600px;
	margin: 0 auto;
}

.petbookings-search-input {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
}

.petbookings-search-input:focus {
	outline: none;
	border-color: #ff6b35;
}

/* Rooms Grid */
.petbookings-rooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.petbookings-room-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.petbookings-room-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.petbookings-room-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #f5f5f5;
}

.petbookings-room-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.petbookings-room-card:hover .petbookings-room-image img {
	transform: scale(1.05);
}

.petbookings-room-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
}

.petbookings-room-content {
	padding: 20px;
}

.petbookings-room-name {
	margin: 0 0 15px 0;
	font-size: 24px;
	font-weight: bold;
}

.petbookings-room-name a {
	color: #1a1a2e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.petbookings-room-name a:hover {
	color: #ff6b35;
}

.petbookings-room-price {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
	color: #ff6b35;
}

.petbookings-price-label {
	font-size: 14px;
	font-weight: normal;
	color: #666;
	margin-right: 5px;
}

.petbookings-price-amount {
	font-size: 28px;
}

.petbookings-price-period {
	font-size: 14px;
	font-weight: normal;
	color: #666;
}

.petbookings-room-features {
	list-style: none;
	padding: 0;
	margin: 0 0 15px 0;
}

.petbookings-room-features li {
	padding: 5px 0;
	color: #666;
	font-size: 14px;
	position: relative;
	padding-left: 20px;
}

.petbookings-room-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
}

.petbookings-more-features {
	color: #ff6b35 !important;
	font-weight: 500;
}

.petbookings-room-meta {
	margin-bottom: 15px;
	font-size: 14px;
	color: #666;
}

.petbookings-room-max-cats {
	display: inline-block;
	padding: 5px 10px;
	background: #f5f5f5;
	border-radius: 5px;
}

.petbookings-room-actions {
	margin-top: 20px;
}

.petbookings-button-block {
	display: block;
	width: 100%;
	text-align: center;
}

.petbookings-no-rooms {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.petbookings-register-container,
	.petbookings-login-container {
		margin: 20px;
		padding: 10px;
	}

	.petbookings-register-form-wrapper,
	.petbookings-login-form-wrapper {
		padding: 20px;
	}

	.petbookings-room-listing-container {
		margin: 20px;
		padding: 10px;
	}

	.petbookings-page-title {
		font-size: 28px;
	}

	.petbookings-booking-form-wrapper {
		padding: 20px;
	}

	.petbookings-booking-form .petbookings-form-row {
		grid-template-columns: 1fr;
	}

	.petbookings-search-form {
		flex-direction: column;
	}

	.petbookings-rooms-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.petbookings-room-image {
		height: 200px;
	}
}

/* Room Detail Page Styles */
.petbookings-room-detail-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-room-detail-header {
	margin-bottom: 30px;
}

.petbookings-back-link {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 15px;
	display: inline-block;
}

.petbookings-back-link:hover {
	text-decoration: underline;
}

.petbookings-room-detail-title {
	font-size: 36px;
	font-weight: bold;
	color: #1a1a2e;
	margin: 10px 0;
}

.petbookings-room-detail-content {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 40px;
	margin-top: 30px;
}

/* Room Gallery */
.petbookings-room-gallery {
	margin-bottom: 30px;
}

.petbookings-room-main-image {
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 15px;
	background: #f5f5f5;
}

.petbookings-room-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.petbookings-room-main-image img:hover {
	transform: scale(1.05);
}

.petbookings-room-thumbnails {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-left: 15px;
}

.petbookings-thumbnail-item {
	width: 75px;
	height: 75px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: border-color 0.3s ease;
}

.petbookings-thumbnail-item.active {
	border-color: #ff6b35;
}

.petbookings-thumbnail-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.petbookings-thumbnail-item:hover {
	border-color: #ff6b35;
}

/* Room Info */
.petbookings-room-info {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.petbookings-room-price-section {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.petbookings-room-description {
	margin-bottom: 30px;
}

.petbookings-room-description h2,
.petbookings-room-features-section h2 {
	font-size: 24px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.petbookings-description-content {
	color: #666;
	line-height: 1.8;
}

.petbookings-room-features-section {
	margin-bottom: 30px;
}

.petbookings-room-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.petbookings-room-features-list li {
	padding: 10px 0;
	padding-left: 25px;
	position: relative;
	color: #666;
}

.petbookings-room-features-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
	font-size: 18px;
}

.petbookings-room-meta-section {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.petbookings-room-meta-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

/* Booking Sidebar */
.petbookings-room-booking-sidebar {
	position: sticky;
	top: 20px;
	height: fit-content;
}

.petbookings-booking-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.petbookings-booking-card h3 {
	font-size: 24px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.petbookings-room-booking-form .petbookings-form-group {
	margin-bottom: 20px;
}

.petbookings-booking-summary {
	margin: 20px 0;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
}

.petbookings-summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	color: #666;
}
.petbookings-summary-row strong {
	font-weight: 500 !important;
}

.petbookings-summary-total {
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
	border-top: 2px solid #ddd;
	font-size: 20px !important;
	color: #1a1a2e !important;
		
}
.petbookings-summary-total strong {
	font-weight: 700 !important;
}

/* Mobile Responsive for Room Detail */
@media (max-width: 968px) {
	.petbookings-room-detail-content {
		grid-template-columns: 1fr;
	}

	.petbookings-room-booking-sidebar {
		position: static;
		order: -1;
	}

	.petbookings-room-main-image {
		height: 300px;
	}
}

/* ============================================
   Booking Page Styles
   ============================================ */

.petbookings-booking-container {
	max-width: 700px;
	margin: 40px auto;
	padding: 20px;
}

/* Room Card (Combined) */
.petbookings-booking-room-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	overflow: hidden;
}

.petbookings-booking-room-gallery {
	width: 100%;
}

.petbookings-booking-room-image {
	width: 100%;
	height: 360px;
	overflow: hidden;
	margin-bottom: 15px;
}

.petbookings-booking-room-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.petbookings-booking-room-card-content {
	padding: 30px;
}

.petbookings-booking-room-header {
	margin-bottom: 30px;
	text-align: left;
}

.petbookings-booking-room-title {
	font-size: 32px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.petbookings-booking-room-price {
	font-size: 18px;
	color: #666;
}

/* Search Form Section on Booking Page */
.petbookings-booking-search-wrapper {
	margin-bottom: 30px;
}

.petbookings-change-link {
	color: #ff6b35;
	text-decoration: underline;
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.petbookings-change-link:hover {
	color: #e55a2b;
	text-decoration: underline;
}

.petbookings-booking-search-section {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-top: 15px;
}


/* Room Details Section on Booking Page (now inside card) */
.petbookings-booking-room-details {
	margin-bottom: 0;
}

.petbookings-booking-room-description {
	margin-bottom: 30px;
}

.petbookings-booking-room-description h2,
.petbookings-booking-room-features h2 {
	font-size: 24px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.petbookings-booking-room-description .petbookings-description-content {
	color: #666;
	line-height: 1.8;
}

.petbookings-booking-room-features {
	margin-bottom: 30px;
}

.petbookings-booking-room-features .petbookings-room-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid #ddd;
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.petbookings-booking-room-features .petbookings-room-features-list li {
	padding: 0;
	padding-left: 25px;
	position: relative;
	color: #666;
	display: inline-block;
}

.petbookings-booking-room-features .petbookings-room-features-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #28a745;
	font-weight: bold;
	font-size: 18px;
}

.petbookings-booking-room-meta {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.petbookings-booking-room-meta .petbookings-room-meta-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.petbookings-booking-room-meta .petbookings-room-meta-item strong {
	color: #1a1a2e;
	font-weight: 600;
}

.petbookings-booking-room-meta .petbookings-room-meta-item span {
	color: #666;
}

/* Guest Information Section */
.petbookings-booking-guest-section {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.petbookings-guest-notice {
	color: #666;
	margin-bottom: 20px;
	font-size: 14px;
}

.petbookings-guest-notice .petbookings-link {
	color: #ff6b35;
	text-decoration: underline;
}

.petbookings-guest-notice .petbookings-link:hover {
	color: #e55a2b;
}

.petbookings-guest-form {
	margin-top: 20px;
}

.petbookings-booking-cat-section {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.petbookings-cat-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	margin-bottom: 25px;
}

.petbookings-cat-section-header:hover .petbookings-section-title {
	color: #ff6b35;
}

.petbookings-section-title {
	font-size: 24px;
	font-weight: bold;
	color: #1a1a2e;
	margin: 0;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

/* Booking page section titles - gray borders only */
.petbookings-booking-container .petbookings-section-title,
.petbookings-booking-room-card .petbookings-section-title,
.petbookings-booking-summary-card .petbookings-section-title {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* Remove border from "Add your cat" section title */
.petbookings-booking-cat-section .petbookings-section-title {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 20px;
}

/* Grooming page section titles - gray borders only */
.petbookings-grooming-container .petbookings-section-title,
.petbookings-grooming-section .petbookings-section-title {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* Taxi page section titles - gray borders only */
.petbookings-taxi-container .petbookings-section-title,
.petbookings-taxi-section .petbookings-section-title {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* Booking confirmation page section titles - gray borders only */
.petbookings-confirmation-container .petbookings-section-title,
.petbookings-summary-card .petbookings-section-title {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.petbookings-toggle-icon {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: transform 0.3s ease, color 0.3s ease;
	flex-shrink: 0;
}

.petbookings-toggle-icon:hover {
	color: #ff6b35;
}

.petbookings-toggle-icon svg {
	transition: transform 0.3s ease;
}

.petbookings-booking-cat-section.collapsed .petbookings-toggle-icon svg {
	transform: rotate(180deg);
}

.petbookings-cat-section-content {
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
	max-height: 5000px;
	opacity: 1;
}

.petbookings-booking-cat-section.collapsed .petbookings-cat-section-content {
	max-height: 0 !important;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.petbookings-optional {
	font-size: 16px;
	font-weight: normal;
	color: #999;
	font-style: italic;
}

.petbookings-cat-photo-section {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.petbookings-cat-photo-preview {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ddd;
}

.petbookings-cat-photo-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.petbookings-cat-photo-preview span {
	color: #999;
	font-size: 12px;
	text-align: center;
	padding: 10px;
}

.petbookings-cat-form {
	margin-top: 20px;
}

.petbookings-add-cats-control {
	margin-bottom: 20px;
	padding: 15px 0;
}

.petbookings-cat-form-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 25px;
}

.petbookings-saved-cats-section {
	margin-top: 0;
	margin-bottom: 30px;
	padding-top: 0;
	padding-bottom: 30px;
	border-top: none;
	border-bottom: 1px solid #eee;
}

.petbookings-saved-cats-section h3 {
	font-size: 20px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.petbookings-saved-cats-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.petbookings-cat-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: #f5f5f5;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.petbookings-cat-item:hover {
	background: #e9e9e9;
}

.petbookings-cat-item.selected {
	border-color: #ff6b35;
	background: #fff5f2;
}

.petbookings-cat-item img,
.petbookings-cat-placeholder {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.petbookings-cat-placeholder {
	background: #ff6b35;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
}

.petbookings-cat-item span {
	flex: 1;
	font-weight: 500;
	color: #333;
}

.petbookings-cat-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.petbookings-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #666;
}

.petbookings-icon-button:hover {
	background-color: #f5f5f5;
	color: #333;
}

.petbookings-icon-button:active {
	background-color: #e9e9e9;
}

.petbookings-icon-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.petbookings-icon-button svg {
	width: 16px;
	height: 16px;
	display: block;
}

.petbookings-icon-button-danger {
	color: #dc3545;
}

.petbookings-icon-button-danger:hover {
	background-color: #fee;
	color: #c82333;
}

.petbookings-icon-button-danger:active {
	background-color: #fdd;
}

.petbookings-icon-button-loading {
	opacity: 0.6;
	cursor: wait;
}

.petbookings-button-small {
	padding: 6px 12px;
	font-size: 14px;
}

.petbookings-button-danger {
	background-color: #dc3545;
	color: #fff;
	border-color: #dc3545;
}

.petbookings-button-danger:hover {
	background-color: #c82333;
	border-color: #bd2130;
}

.petbookings-button-danger:disabled {
	background-color: #dc3545;
	opacity: 0.6;
	cursor: not-allowed;
}

.petbookings-booking-summary-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.petbookings-booking-summary-card .petbookings-section-title {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 20px;
	text-align: left;
}

.petbookings-summary-content {
	margin-top: 20px;
}

.petbookings-summary-room-name {
	font-size: 20px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.petbookings-summary-dates {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.8;
}

.petbookings-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	color: #666;
	font-size: 18px;
	font-weight: 500;
}

.petbookings-summary-price {
	font-weight: bold;
	color: #1a1a2e;
	font-size: 18px;
}

.petbookings-booking-actions {
	text-align: center;
	margin-top: 40px;
}

.petbookings-booking-actions form {
	width: 100%;
}

.petbookings-button-large {
	padding: 15px 40px;
	font-size: 18px;
	width: 100%;
	margin-bottom: 15px;
}

#petbookings-next-btn {
	width: 100%;
}

.petbookings-skip-link {
	display: inline-block;
	color: #666;
	text-decoration: underline;
	margin-top: 10px;
}

.petbookings-skip-link:hover {
	color: #ff6b35;
}

.petbookings-button-success {
	background: #28a745;
	border-color: #28a745;
	color: #fff;
}

.petbookings-button-success:hover {
	background: #218838;
	border-color: #1e7e34;
}

/* Mobile Responsive for Booking Page */
@media (max-width: 768px) {
	.petbookings-booking-container {
		padding: 15px;
	}

	.petbookings-booking-room-image {
		height: 250px;
	}

	.petbookings-booking-room-title {
		font-size: 24px;
	}

	.petbookings-booking-actions .petbookings-button-large,
	.petbookings-booking-actions #petbookings-next-btn {
		width: 100%;
		padding: 15px 40px;
		font-size: 18px;
	}

	.petbookings-booking-cat-section,
	.petbookings-booking-summary-card {
		padding: 20px;
	}

	.petbookings-cat-photo-section {
		flex-direction: column;
		align-items: flex-start;
	}

	.petbookings-cat-form-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.petbookings-saved-cats-list {
		flex-direction: column;
	}
}

/* ============================================
   Booking Confirmation Page Styles
   ============================================ */

.petbookings-confirmation-container {
	max-width: 700px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-confirmation-title {
	font-size: 32px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 30px;
	
}

.petbookings-confirmation-summary {
	margin-bottom: 30px;
}

.petbookings-summary-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
}

.petbookings-summary-room-details h3 {
	font-size: 22px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.petbookings-summary-dates p {
	margin: 0px 0px 5px 0px;
	color: #666;
	margin-bottom: 0px !important;
}

.petbookings-price-breakdown {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.petbookings-payment-method-summary {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.petbookings-payment-section {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.petbookings-payment-form {
	margin-top: 20px;
}

.petbookings-payment-methods {
	margin-bottom: 30px;
}

.petbookings-payment-methods .petbookings-section-title {
	border-bottom-color: #eee;
}

.petbookings-order-notes-section .petbookings-section-title {
	border-bottom-color: #eee;
}

.petbookings-payment-option {
	margin-bottom: 15px;
}

.petbookings-payment-option input[type="radio"] {
	display: none;
}

.petbookings-payment-label {
	display: flex;
	align-items: center;
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.petbookings-payment-label:hover {
	border-color: #ff6b35;
	background: #fff5f2;
}

.petbookings-payment-option input[type="radio"]:checked + .petbookings-payment-label {
	border-color: #ff6b35;
	background: #fff5f2;
}

.petbookings-payment-radio {
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 50%;
	margin-right: 15px;
	position: relative;
	transition: all 0.3s ease;
}

.petbookings-payment-option input[type="radio"]:checked + .petbookings-payment-label .petbookings-payment-radio {
	border-color: #ff6b35;
	background: #ff6b35;
}

.petbookings-payment-option input[type="radio"]:checked + .petbookings-payment-label .petbookings-payment-radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
}

.petbookings-payment-text {
	font-size: 16px;
	font-weight: 500;
	color: #1a1a2e;
}



.petbookings-textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
	resize: vertical;
	box-sizing: border-box;
}

.petbookings-textarea:focus {
	outline: none;
	border-color: #ff6b35;
	box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.petbookings-confirm-actions {
	text-align: center;
	margin-top: 30px;
}

/* Mobile Responsive for Confirmation Page */
@media (max-width: 768px) {
	.petbookings-confirmation-container {
		padding: 15px;
	}

	.petbookings-confirmation-title {
		font-size: 24px;
	}

	.petbookings-summary-card,
	.petbookings-payment-section {
		padding: 20px;
	}
}

/* ============================================
   Booking Confirmed Page Styles
   ============================================ */

.petbookings-confirmed-container {
	max-width: 700px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-confirmed-header {
	text-align: center;
	margin-bottom: 40px;
}

.petbookings-success-icon {
	margin: 0 auto 20px;
	width: 80px;
	height: 80px;
}

.petbookings-confirmed-title {
	font-size: 36px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 25px;
}

.petbookings-confirmed-subtitle {
	font-size: 18px;
	color: #666;
	margin: 0;
}

.petbookings-booking-number-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.petbookings-booking-number-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.petbookings-booking-number-value {
	font-size: 32px;
	font-weight: bold;
	color: #ff6b35;
	font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
	letter-spacing: 3px;
	display: inline-block;
}

.petbookings-confirmed-details {
	margin-bottom: 40px;
}

.petbookings-booking-number-section {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	text-align: center;
}

.petbookings-booking-number-label {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.petbookings-booking-number {
	font-size: 32px;
	font-weight: bold;
	color: #ff6b35;
	margin: 15px 0;
	font-family: 'Courier New', monospace;
	letter-spacing: 2px;
}

.petbookings-booking-note {
	font-size: 14px;
	color: #666;
	margin-top: 15px;
}

.petbookings-booking-summary {
	margin-bottom: 30px;
}

.petbookings-payment-info {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.petbookings-payment-details {
	margin-top: 20px;
}

.petbookings-payment-details p {
	margin: 15px 0;
	color: #333;
	font-size: 16px;
}

.petbookings-payment-status {
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.petbookings-payment-status-paid {
	background: #d4edda;
	color: #155724;
}

.petbookings-payment-status-pending {
	background: #fff3cd;
	color: #856404;
}

.petbookings-payment-status-failed {
	background: #f8d7da;
	color: #721c24;
}

.petbookings-payment-status-refunded {
	background: #e2e3e5;
	color: #383d41;
}

.petbookings-payment-note {
	margin-top: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-left: 4px solid #ff6b35;
	border-radius: 4px;
	color: #666;
	font-size: 14px;
}

.petbookings-confirmed-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 40px;
	text-align: center;
}

.petbookings-confirmed-actions .petbookings-button {
	min-width: 180px;
	background-color: transparent;
	border: 2px solid #ff6b35;
	color: #ff6b35;
	text-decoration: none;
	display: inline-block;
}

.petbookings-confirmed-actions .petbookings-button:hover {
	background-color: #ff6b35;
	color: #fff;
	text-decoration: none;
}

/* Mobile Responsive for Confirmed Page */
@media (max-width: 768px) {
	.petbookings-confirmed-container {
		padding: 15px;
	}

	.petbookings-confirmed-title {
		font-size: 28px;
	}

	.petbookings-confirmed-subtitle {
		font-size: 16px;
	}

	.petbookings-booking-number-header {
		margin-top: 15px;
		gap: 8px;
	}

	.petbookings-booking-number-label {
		font-size: 12px;
		letter-spacing: 0.5px;
	}

	.petbookings-booking-number-value {
		font-size: 24px;
		letter-spacing: 2px;
	}

	.petbookings-confirmed-actions {
		flex-direction: column;
		align-items: center;
	}

	.petbookings-confirmed-actions .petbookings-button {
		width: auto;
		min-width: 200px;
	}
}

/* ============================================
   Grooming Services Page Styles
   ============================================ */

.petbookings-grooming-container {
	max-width: 800px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-grooming-section {
	margin-bottom: 40px;
}

.petbookings-service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.petbookings-service-card {
	position: relative;
	border: 2px solid #ddd;
	border-radius: 12px;
	padding: 0;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	overflow: hidden;
}

/* Unselected state - white/light background */
.petbookings-service-card:not(.selected) {
	background: #fff;
	border-color: #ddd;
}

.petbookings-service-card:hover:not(.selected) {
	border-color: #ff6b35;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
	background: #fff;
}

/* Selected state - dark background */
.petbookings-service-card.selected {
	background: #1a1a2e;
	border-color: #1a1a2e;
	color: #fff;
	box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

.petbookings-service-card.selected:hover {
	background: #1a1a2e;
	border-color: #1a1a2e;
}

.petbookings-service-card input[type="radio"],
.petbookings-service-card input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.petbookings-service-card label {
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 20px;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.petbookings-service-name {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a2e;
}

.petbookings-service-card.selected .petbookings-service-name {
	color: #fff;
}

.petbookings-service-price {
	font-size: 18px;
	font-weight: bold;
	color: #ff6b35;
}

.petbookings-service-card.selected .petbookings-service-price {
	color: #fff;
}

.petbookings-no-services {
	text-align: center;
	color: #999;
	padding: 40px 20px;
}

.petbookings-grooming-actions {
	text-align: center;
	margin-top: 40px;
}

.petbookings-grooming-summary {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.petbookings-grooming-summary h3 {
	font-size: 18px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 15px;
}

#petbookings-grooming-services-list {
	margin-bottom: 15px;
}

.petbookings-grooming-service-item {
	padding: 4px 0;
	color: #666;
	font-size: 16px;
}

.petbookings-booking-number-inline {
	padding: 15px 0 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
	font-size: 18px;
	color: #1a1a2e;
}

.petbookings-grooming-total {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eee;
	font-weight: bold;
}

.petbookings-grooming-total-price {
	font-weight: bold;
	color: #1a1a2e;
	font-size: 18px;
}

/* Mobile Responsive for Grooming Page */
@media (max-width: 768px) {
	.petbookings-grooming-container {
		padding: 15px;
	}

	.petbookings-service-cards {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.petbookings-service-card {
		padding: 15px;
	}

	.petbookings-grooming-actions .petbookings-button-large,
	.petbookings-grooming-actions #petbookings-next-grooming-btn {
		width: 100%;
		padding: 15px 40px;
		font-size: 18px;
	}
}

/* ============================================
   Taxi Service Page Styles
   ============================================ */

.petbookings-taxi-container {
	max-width: 800px;
	margin: 40px auto;
	padding: 20px;
}

.petbookings-taxi-section {
	margin-bottom: 40px;
}

.petbookings-taxi-form {
	margin-top: 20px;
}

.petbookings-taxi-section-group {
	margin-bottom: 30px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}

.petbookings-taxi-section-group:last-of-type {
	margin-bottom: 0;
}

.petbookings-subsection-title {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e0e0e0;
}

.petbookings-taxi-price-info {
	margin-top: 15px;
	padding: 15px;
	background: #f5f5f5;
	border-radius: 8px;
}

.petbookings-taxi-price-info p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

/* Location Map Styles */
.petbookings-location-map {
	width: 100%;
	height: 300px;
	margin-top: 15px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #ddd;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.petbookings-taxi-actions {
	text-align: center;
	margin-top: 40px;
}

.petbookings-taxi-summary {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.petbookings-taxi-summary h3 {
	font-size: 18px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 15px;
}

#petbookings-taxi-details {
	margin-bottom: 15px;
}

.petbookings-taxi-details-list {
	margin-bottom: 15px;
}

.petbookings-taxi-detail-item {
	padding: 12px 0;
	color: #444;
	font-size: 14px;
	line-height: 1.6;
}

.petbookings-taxi-detail-item:first-child {
	padding-top: 0;
}

.petbookings-taxi-detail-item:last-child {
	padding-bottom: 0;
}

.petbookings-taxi-detail-item strong {
	color: #1a1a2e;
	font-weight: 600;
	margin-right: 8px;
}

.petbookings-taxi-location {
	color: #444;
}

.petbookings-taxi-time {
	color: #1a1a2e;
	font-weight: 600;
	font-size: 14px;
	margin-left: 8px;
}

.petbookings-taxi-times {
	margin-top: 10px;
	margin-bottom: 10px;
}

.petbookings-taxi-times p {
	margin: 0px 0px 5px 0px;
	color: #666;
	font-size: 16px;
	margin-bottom: 0px !important;
}

.petbookings-taxi-times p strong {
	
	color: #666;
}

.petbookings-taxi-total {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eee;
	font-weight: bold;
}

.petbookings-taxi-total-price {
	font-weight: bold;
	color: #1a1a2e;
	font-size: 18px;
}

/* Pickup Time Styles */
.petbookings-pickup-time-wrapper {
	margin-top: 10px;
}

.petbookings-time-selection-header {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.petbookings-time-slot-toggle {
	flex: 0 0 auto;
	padding: 10px 20px;
	font-size: 14px;
}

.petbookings-selected-time-display {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 15px;
	background: #f0f8ff;
	border: 1px solid #1a1a2e;
	border-radius: 6px;
	font-size: 14px;
}

.petbookings-selected-time-label {
	color: #666;
	font-weight: 500;
}

.petbookings-selected-time-value {
	color: #1a1a2e;
	font-weight: 600;
}

.petbookings-time-slots-container {
	margin-top: 15px;
	padding: 15px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.petbookings-time-slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.petbookings-time-slot-btn {
	padding: 10px 15px;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	color: #1a1a2e;
	text-align: center;
}

.petbookings-time-slot-btn:hover {
	background: #f5f5f5;
	border-color: #1a1a2e;
	transform: translateY(-2px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.petbookings-time-slot-btn.active {
	background: #1a1a2e;
	color: #fff;
	border-color: #1a1a2e;
	font-weight: 600;
}

/* Mobile Responsive for Taxi Page */
@media (max-width: 768px) {
	.petbookings-taxi-container {
		padding: 15px;
	}

	.petbookings-taxi-actions .petbookings-button-large,
	.petbookings-taxi-actions #petbookings-next-taxi-btn {
		width: 100%;
		padding: 15px 40px;
		font-size: 18px;
	}

	.petbookings-time-selection-header {
		flex-direction: column;
		align-items: stretch;
	}

	.petbookings-time-slot-toggle {
		width: 100%;
	}

	.petbookings-selected-time-display {
		width: 100%;
		justify-content: center;
	}

	.petbookings-time-slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 8px;
	}

	.petbookings-time-slot-btn {
		padding: 8px 12px;
		font-size: 13px;
	}
}

/* Booking Progress Bar */
.petbookings-progress-bar {
	margin-bottom: 30px;
}

.petbookings-progress-steps {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.petbookings-progress-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Base gray line connecting all steps */
.petbookings-progress-steps::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	height: 3px;
	background: #e0e0e0;
	z-index: 1;
	transform: translateY(-50%);
}

/* Connecting line from right edge of current circle to left edge of next circle */
.petbookings-progress-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 20px;
	left: calc(50% + 20px);
	width: calc(100% - 40px);
	height: 3px;
	background: #e0e0e0;
	z-index: 2;
	transform: translateY(-50%);
}

/* Green line for completed steps */
.petbookings-progress-step.completed:not(:last-child)::after {
	background: #4CAF50;
}

/* Orange line for active step (if not last) */
.petbookings-progress-step.active:not(:last-child)::after {
	background: #ff6b35;
}

.petbookings-progress-step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
	position: relative;
	z-index: 3;
	transition: all 0.3s ease;
	line-height: 1;
}

.petbookings-progress-step.active .petbookings-progress-step-number {
	background: #ff6b35;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.petbookings-progress-step.completed .petbookings-progress-step-number {
	background: #4CAF50;
	color: #fff;
}

/* Hide number and show checkmark for completed steps */
.petbookings-progress-step.completed .petbookings-progress-step-number {
	font-size: 0;
	position: relative;
}

.petbookings-progress-step.completed .petbookings-progress-step-number::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.petbookings-progress-step-label {
	font-size: 12px;
	color: #666;
	text-align: center;
	font-weight: 500;
	max-width: 100px;
	line-height: 1.3;
	margin-top: 0;
}

.petbookings-progress-step.active .petbookings-progress-step-label {
	color: #ff6b35;
	font-weight: 600;
}

.petbookings-progress-step.completed .petbookings-progress-step-label {
	color: #4CAF50;
	font-weight: 600;
}

/* Mobile Responsive for Progress Bar */
@media (max-width: 768px) {
	.petbookings-progress-bar {
		margin-bottom: 20px;
	}

	.petbookings-progress-step-number {
		width: 32px;
		height: 32px;
		font-size: 14px;
		margin-bottom: 8px;
	}

	.petbookings-progress-step.completed .petbookings-progress-step-number::after {
		font-size: 20px;
	}

	.petbookings-progress-step-label {
		font-size: 10px;
		max-width: 70px;
	}

	.petbookings-progress-steps::before {
		top: 16px;
		left: 16px;
		right: 16px;
		height: 2px;
	}

	.petbookings-progress-step:not(:last-child)::after {
		top: 16px;
		left: calc(50% + 16px);
		width: calc(100% - 32px);
		height: 2px;
	}
}

@media (max-width: 480px) {
	.petbookings-progress-step-label {
		font-size: 9px;
		max-width: 60px;
	}

	.petbookings-progress-step-number {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.petbookings-progress-step.completed .petbookings-progress-step-number::after {
		font-size: 18px;
	}

	.petbookings-progress-steps::before {
		top: 14px;
		left: 14px;
		right: 14px;
		height: 2px;
	}

	.petbookings-progress-step:not(:last-child)::after {
		top: 14px;
		left: calc(50% + 14px);
		width: calc(100% - 28px);
		height: 2px;
	}

	.petbookings-progress-step.completed .petbookings-progress-step-number::after {
		font-size: 18px;
	}
}

/* Profile Page Styles */
.petbookings-profile-container {
	max-width: 1200px;
	margin: 0px;
	padding: 20px;
}

.petbookings-profile-header {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.petbookings-profile-header-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.petbookings-profile-title-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.petbookings-profile-title {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
	color: #1a1a2e;
}

.petbookings-profile-image-wrapper {
	position: relative;
	display: inline-block;
}

.petbookings-profile-image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.petbookings-profile-image .petbookings-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	object-fit: cover;
	display: block;
}

.petbookings-avatar-upload-label {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #ff6b35;
	color: #fff;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	border: 2px solid #fff;
}

.petbookings-avatar-upload-label:hover {
	background: #e55a2b;
	transform: scale(1.1);
}

.petbookings-avatar-upload-label.uploading {
	background: #999;
	cursor: not-allowed;
}

.petbookings-avatar-upload-icon {
	font-size: 16px;
	line-height: 1;
}

.petbookings-avatar-upload-text {
	display: none;
	font-size: 10px;
	font-weight: 600;
}

.petbookings-profile-user-info {
	flex: 1;
}

.petbookings-profile-user-info h2 {
	font-size: 18px;
	margin: 0 0 4px 0;
	color: #1a1a2e;
}

.petbookings-profile-email {
	color: #666;
	margin: 0 !important;
	font-size: 14px;

}

.petbookings-profile-last-login {
	color: #999;
	font-size: 12px;
	margin: 0 !important
}

.petbookings-profile-logout {
	margin: 0;
	align-self: center;
	margin-left: auto;
}

.petbookings-profile-logout .petbookings-logout-btn {
	width: auto;
	display: inline-block;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
	background: #fff;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 50px;
}

.petbookings-profile-logout .petbookings-logout-btn:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.petbookings-profile-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.petbookings-stat-item {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.petbookings-stat-value {
	font-size: 28px;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 8px;
}

.petbookings-stat-label {
	font-size: 14px;
	color: #666;
}

/* Profile Tabs */
.petbookings-profile-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	
	flex-wrap: wrap;
	padding: 0 20px;
}

.petbookings-tab-btn {
	padding: 15px 20px;
	border: none;
	background: transparent;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	transition: all 0.3s;
	position: relative;
	top: 2px;
}

.petbookings-tab-btn:hover {
	color: #ff6b35;
	background: #f8f9fa;
}

.petbookings-tab-btn.active {
	color: #ff6b35;
	border-bottom-color: #ff6b35;
	background: blanchedalmond;
}

.petbookings-profile-sections {
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow: hidden;
}

.petbookings-profile-section {
	padding: 30px;
}

.petbookings-tab-content {
	display: none;
}

.petbookings-tab-content.active {
	display: block;
}

.petbookings-section-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px !important;
	color: #1a1a2e;
	border-bottom: 2px solid #ff6b35;
	padding-bottom: 10px;

}

.petbookings-profile-form,
.petbookings-password-form {
	max-width: 600px;
}

.petbookings-password-form h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #1a1a2e;
}

.petbookings-password-form .petbookings-label {
	font-size: 14px;
}

.petbookings-password-form .petbookings-input {
	font-size: 14px;
}

.petbookings-password-requirements small {
	font-size: 12px;
	color: #666;
}

.petbookings-form-actions {
	margin-top: 20px;
}

.petbookings-empty-state {
	text-align: center;
	padding: 40px 20px;
	color: #666;
}

.petbookings-empty-state p {
	margin-bottom: 20px;
}

/* Booking History Styles */
.petbookings-booking-filters {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.petbookings-filter-btn {
	padding: 8px 16px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s;
}

.petbookings-filter-btn:hover {
	background: #f5f5f5;
}

.petbookings-filter-btn.active {
	background: #ff6b35;
	color: #fff;
	border-color: #ff6b35;
}

.petbookings-bookings-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.petbookings-booking-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	background: #fff;
	transition: box-shadow 0.3s;
}

.petbookings-booking-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.petbookings-booking-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.petbookings-booking-number {
	font-size: 16px;
	color: #1a1a2e;
}

.petbookings-status-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	text-transform: capitalize;
}

.petbookings-status-pending {
	background: #fff3cd;
	color: #856404;
}

.petbookings-status-confirmed {
	background: #d4edda;
	color: #155724;
}

.petbookings-status-in_hotel,
.petbookings-status-in_taxi {
	background: #d4edda;
	color: #155724;
}

.petbookings-status-completed {
	background: #d1ecf1;
	color: #0c5460;
}

.petbookings-status-canceled {
	background: #f8d7da;
	color: #721c24;
}

.petbookings-booking-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 15px;
}

.petbookings-booking-detail-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.petbookings-booking-detail-item strong {
	color: #666;
	font-size: 14px;
}

.petbookings-booking-detail-item .petbookings-payment-status {
	width: fit-content;
	align-self: flex-start;
}

.petbookings-booking-total {
	font-size: 16px;
	font-weight: bold;
	color: #ff6b35;
}

.petbookings-payment-status {
	font-weight: 500;
	text-transform: capitalize;
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
}

.petbookings-payment-status-paid {
	color: #155724;
	background: #d4edda;
}

.petbookings-payment-status-pending {
	color: #856404;
	background: #fff3cd;
}

.petbookings-payment-status-failed {
	color: #721c24;
	background: #f8d7da;
}

.petbookings-booking-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.petbookings-button-danger {
	background: #dc3545;
	color: #fff;
	border-color: #dc3545;
}

.petbookings-button-danger:hover {
	background: #c82333;
	border-color: #bd2130;
}

/* Cat Management Styles */
.petbookings-cats-management {
	margin-top: 20px;
}

.petbookings-add-cat-btn {
	margin-bottom: 20px;
	width: auto;
	display: inline-block;
}

.petbookings-cats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.petbookings-cat-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	background: #fff;
	transition: box-shadow 0.3s;
}

.petbookings-cat-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.petbookings-cat-photo {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.petbookings-cat-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.petbookings-cat-photo-placeholder {
	color: #999;
	font-size: 14px;
}

.petbookings-cat-info {
	margin-bottom: 12px;
}

.petbookings-cat-name {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #1a1a2e;
}

.petbookings-cat-detail {
	font-size: 14px;
	margin-bottom: 3px;
	color: #666;
	margin-bottom: 4px !important;
}

.petbookings-cat-actions {
	display: flex;
	gap: 10px;
}

.petbookings-cat-actions .petbookings-button {
	width: auto;
	display: inline-block;
	padding: 6px 12px;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid transparent;
	background: #f5f5f5;
	color: #333;
	transition: all 0.3s;
}

.petbookings-cat-actions .petbookings-button:hover {
	background: #e9e9e9;
	text-decoration: none;
}

.petbookings-cat-actions .petbookings-button-secondary {
	background: #f5f5f5;
	color: #333;
	border-color: #ddd;
}

.petbookings-cat-actions .petbookings-button-secondary:hover {
	background: #e9e9e9;
	border-color: #ccc;
}

.petbookings-cat-actions .petbookings-button-danger {
	background: #fff5f5;
	color: #dc3545;
	border-color: #f5c6cb;
}

.petbookings-cat-actions .petbookings-button-danger:hover {
	background: #ffe0e0;
	border-color: #f1aeb5;
	color: #c82333;
}

/* Billing & Payment Styles */
.petbookings-billing-methods-section {
	margin-bottom: 40px;
}

.petbookings-subsection-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #1a1a2e;
}

.petbookings-section-description {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}

.petbookings-payment-methods-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.petbookings-payment-method-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.petbookings-payment-method-info {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
}

.petbookings-payment-method-icon {
	font-size: 32px;
	line-height: 1;
}

.petbookings-payment-method-details {
	flex: 1;
}

.petbookings-payment-method-details strong {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
	color: #1a1a2e;
}

.petbookings-payment-method-number {
	margin: 4px 0;
	font-size: 14px;
	color: #666;
}

.petbookings-payment-method-expiry {
	margin: 4px 0 0 0;
	font-size: 12px;
	color: #999;
}

.petbookings-payment-method-actions {
	display: flex;
	gap: 10px;
}

.petbookings-add-payment-method {
	margin-top: 20px;
}

.petbookings-add-payment-btn {
	width: auto;
	display: inline-block;
}

.petbookings-payment-history-section {
	margin-top: 40px;
}

.petbookings-payment-history-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.petbookings-payment-history-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 8px;
	gap: 20px;
}

.petbookings-payment-history-info {
	flex: 1;
}

.petbookings-payment-history-date {
	margin-bottom: 8px;
}

.petbookings-payment-history-date strong {
	font-size: 16px;
	color: #1a1a2e;
}

.petbookings-payment-history-details p {
	margin: 4px 0;
	font-size: 14px;
	color: #666;
}

.petbookings-payment-history-method {
	font-size: 12px;
	color: #999;
}

.petbookings-payment-history-amount {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.petbookings-payment-amount {
	font-size: 18px;
	font-weight: bold;
	color: #ff6b35;
}

.petbookings-payment-history-actions {
	display: flex;
	gap: 10px;
}

.petbookings-payment-status-badge {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	width: fit-content;
}

.petbookings-payment-status-paid {
	background: #d4edda;
	color: #155724;
}

.petbookings-payment-status-pending {
	background: #fff3cd;
	color: #856404;
}

.petbookings-button-sm {
	padding: 6px 12px;
	font-size: 14px;
}

/* Modal Styles */
.petbookings-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.petbookings-modal-content {
	background-color: #fff;
	margin: 5% auto;
	padding: 0;
	border-radius: 12px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.petbookings-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	border-bottom: 1px solid #eee;
}

.petbookings-modal-header h3 {
	margin: 0;
	font-size: 24px;
	color: #1a1a2e;
}

.petbookings-modal-close {
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #999;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.petbookings-modal-close:hover {
	color: #333;
}

.petbookings-modal-body {
	padding: 30px;
}

.petbookings-modal-cancel {
	margin-left: 10px;
}

/* Overview Tab Styles */
.petbookings-overview-content {
	padding: 20px 0;
}

.petbookings-overview-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.petbookings-overview-stat-card {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.petbookings-overview-stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.petbookings-overview-stat-icon {
	font-size: 28px;
	line-height: 1;
}

.petbookings-overview-stat-info {
	flex: 1;
}

.petbookings-overview-stat-value {
	font-size: 20px;
	font-weight: bold;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.petbookings-overview-stat-label {
	font-size: 14px;
	color: #666;
}

.petbookings-recent-bookings {
	margin-top: 30px;
}

.petbookings-recent-bookings h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #1a1a2e;
}

.petbookings-recent-bookings-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.petbookings-recent-booking-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
}

.petbookings-recent-booking-info {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
}

.petbookings-recent-booking-date {
	color: #666;
	font-size: 14px;
	margin-right: 15px;
}

.petbookings-button-sm {
	padding: 6px 12px;
	font-size: 14px;
}

.petbookings-view-all-bookings {
	margin-top: 20px;
	text-align: center;
}

.petbookings-view-all-bookings .petbookings-button {
	width: auto;
	display: inline-block;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.petbookings-profile-container {
		padding: 10px;
	}

	.petbookings-profile-header {
		padding: 15px;
	}

	.petbookings-profile-header-content {
		flex-direction: column;
		gap: 12px;
	}

	.petbookings-profile-title-section {
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.petbookings-profile-image .petbookings-avatar {
		width: 60px;
		height: 60px;
	}

	.petbookings-avatar-upload-label {
		width: 28px;
		height: 28px;
	}

	.petbookings-avatar-upload-icon {
		font-size: 14px;
	}

	.petbookings-profile-logout {
		align-self: flex-start;
		margin-top: 8px;
	}

	.petbookings-profile-section {
		padding: 15px;
	}

	.petbookings-tab-content {
		padding: 15px;
	}

	.petbookings-profile-tabs {
		padding: 0 10px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.petbookings-tab-btn {
		padding: 12px 15px;
		font-size: 14px;
		white-space: nowrap;
	}

	.petbookings-overview-stats-grid {
		grid-template-columns: 1fr;
	}

	.petbookings-recent-booking-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.petbookings-recent-booking-info {
		width: 100%;
		flex-wrap: wrap;
	}

	.petbookings-profile-stats {
		grid-template-columns: 1fr;
	}

	.petbookings-booking-card {
		padding: 12px;
		margin-bottom: 12px;
	}

	.petbookings-booking-header {
		margin-bottom: 10px;
		padding-bottom: 10px;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.petbookings-booking-number {
		font-size: 14px;
	}

	.petbookings-booking-details {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 10px;
	}

	.petbookings-booking-detail-item {
		gap: 2px;
	}

	.petbookings-booking-detail-item strong {
		font-size: 12px;
	}

	.petbookings-booking-total {
		font-size: 14px;
	}

	.petbookings-booking-actions {
		flex-direction: column;
		gap: 8px;
		margin-top: 10px;
	}

	.petbookings-booking-actions .petbookings-button {
		width: 100%;
		font-size: 14px;
		padding: 8px 16px;
	}

	.petbookings-bookings-list {
		gap: 12px;
	}

	.petbookings-cats-grid {
		grid-template-columns: 1fr;
	}

	.petbookings-payment-method-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		padding: 15px;
	}

	.petbookings-payment-method-actions {
		width: 100%;
		justify-content: flex-start;
	}

	.petbookings-payment-history-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		padding: 15px;
	}

	.petbookings-payment-history-amount {
		align-items: flex-start;
		width: 100%;
	}

	.petbookings-payment-history-actions {
		width: 100%;
	}

	.petbookings-payment-history-actions .petbookings-button {
		width: 100%;
	}

	.petbookings-modal-content {
		width: 95%;
		margin: 10% auto;
	}

	.petbookings-modal-body {
		padding: 20px;
	}
}

