/* ==========================================================================
   Vet3D Global Stylesheet
   Design tokens, base styles, header/footer, and form components
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	/* Colors */
	--vet3d-white: #ffffff;
	--vet3d-contrast: #0F1C2A;
	--vet3d-navy: #000F32;
	--vet3d-purple: #796EFF;
	--vet3d-purple-light: #6566A4;
	--vet3d-green: #31BF57;
	--vet3d-green-hover: #2aa84b;
	--vet3d-red: #FF0004;
	--vet3d-red-hover: #e00003;
	--vet3d-teal: #335566;
	--vet3d-light-grey: #F5F5F5;
	--vet3d-grey: #BFBFBF;
	--vet3d-medium-grey: #666666;

	/* Typography */
	--vet3d-font: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Font weights */
	--vet3d-weight-thin: 100;
	--vet3d-weight-light: 300;
	--vet3d-weight-regular: 400;
	--vet3d-weight-medium: 500;
	--vet3d-weight-semibold: 600;
	--vet3d-weight-bold: 700;

	/* Border radius */
	--vet3d-radius-pill: 190px;
	--vet3d-radius-rounded: 30px;
	--vet3d-radius-circle: 900px;

	/* Layout */
	--vet3d-container-width: 1280px;
	--vet3d-content-padding: 80px;
}

@media (max-width: 782px) {
	:root {
		--vet3d-content-padding: 24px;
	}
}

/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--vet3d-font);
	color: var(--vet3d-contrast);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Typography Utility Classes
   -------------------------------------------------------------------------- */
.vet3d-page-title {
	font-weight: var(--vet3d-weight-thin);
	font-size: 3.75rem;
	line-height: 1.1;
	color: var(--vet3d-purple);
}

.vet3d-section-heading {
	font-weight: var(--vet3d-weight-light);
	font-size: 2.25rem;
	line-height: 1.4;
	color: var(--vet3d-purple);
}

.vet3d-sub-heading {
	font-weight: var(--vet3d-weight-light);
	font-size: 1.5625rem;
	line-height: 1.2;
	color: var(--vet3d-navy);
}

.vet3d-body {
	font-weight: var(--vet3d-weight-regular);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--vet3d-contrast);
}

.vet3d-body-light {
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-contrast);
}

.vet3d-body-small {
	font-weight: var(--vet3d-weight-medium);
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
}

.vet3d-body-small-light {
	font-weight: var(--vet3d-weight-light);
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--vet3d-contrast);
}

.vet3d-description {
	font-weight: var(--vet3d-weight-regular);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--vet3d-teal);
}

/* --------------------------------------------------------------------------
   Site Header
   -------------------------------------------------------------------------- */
.site-header {
	background: var(--vet3d-white);
	padding: 20px var(--vet3d-content-padding);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	max-width: var(--vet3d-container-width);
	margin: 0 auto;
}

.site-header__logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-header__logo-img {
	height: 75px;
	width: auto;
}

/* Navigation block in header */
.site-header .wp-block-navigation {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-regular);
	font-size: 1rem;
	gap: 48px;
}

.site-header .wp-block-navigation a {
	color: var(--vet3d-contrast);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-header .wp-block-navigation a:hover,
.site-header .wp-block-navigation a:focus {
	color: var(--vet3d-purple);
	text-decoration: none;
}

/* Submenu dropdown */
.site-header .wp-block-navigation .wp-block-navigation__submenu-container {
	background: var(--vet3d-white);
	border: 1px solid var(--vet3d-light-grey);
	border-radius: 12px;
	padding: 8px 0;
	min-width: 200px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header .wp-block-navigation .wp-block-navigation__submenu-container a {
	padding: 10px 20px;
}

/* Mobile overlay menu */
.site-header .wp-block-navigation__responsive-container.is-menu-open {
	padding: var(--vet3d-content-padding);
}

.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	gap: 16px;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.vet3d-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 25px;
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-regular);
	font-size: 1rem;
	line-height: 1.5;
	text-decoration: none;
	border-radius: var(--vet3d-radius-pill);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
	gap: 8px;
}

.vet3d-btn--primary {
	background: var(--vet3d-green);
	color: var(--vet3d-white);
	border-color: var(--vet3d-green);
}

.vet3d-btn--primary:hover {
	background: var(--vet3d-green-hover);
	border-color: var(--vet3d-green-hover);
	color: var(--vet3d-white);
}

.vet3d-btn--outline {
	background: transparent;
	color: var(--vet3d-contrast);
	border-color: var(--vet3d-contrast);
}

.vet3d-btn--outline:hover {
	background: var(--vet3d-contrast);
	color: var(--vet3d-white);
}

.vet3d-btn--outline-dark {
	background: transparent;
	color: var(--vet3d-navy);
	border-color: var(--vet3d-navy);
}

.vet3d-btn--outline-dark:hover {
	background: var(--vet3d-navy);
	color: var(--vet3d-white);
}

.vet3d-btn--danger {
	background: var(--vet3d-red);
	color: var(--vet3d-white);
	border-color: var(--vet3d-red);
}

.vet3d-btn--danger:hover {
	background: var(--vet3d-red-hover);
	border-color: var(--vet3d-red-hover);
	color: var(--vet3d-white);
}

.vet3d-btn--ghost {
	background: transparent;
	color: var(--vet3d-contrast);
	border-color: transparent;
}

.vet3d-btn--ghost:hover {
	color: var(--vet3d-purple);
}

/* Button sizes */
.vet3d-btn--small {
	padding: 8px 20px;
	font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--vet3d-light-grey);
	padding-left: var(--vet3d-content-padding);
	padding-right: var(--vet3d-content-padding);
}

/* Newsletter section */
.site-footer__newsletter {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 30px;
	max-width: var(--vet3d-container-width);
	margin: 0 auto;
	padding: 50px 0;
}

.site-footer__newsletter-text h2 {
	font-weight: var(--vet3d-weight-light);
	font-size: 2.25rem;
	line-height: 2;
	color: var(--vet3d-purple);
	margin: 0;
}

.site-footer__newsletter-text p {
	color: var(--vet3d-contrast);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	margin: 0;
}

.site-footer__newsletter-form {
	display: flex;
	align-items: flex-end;
	gap: 20px;
}

.site-footer .site-footer__newsletter-form input[type="email"] {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	color: var(--vet3d-contrast);
	border: none;
	border-bottom: 1px solid var(--vet3d-contrast);
	border-radius: 0;
	background: transparent;
	padding: 8px 0;
	min-width: 250px;
	outline: none;
	box-shadow: none;
}

.site-footer .site-footer__newsletter-form input[type="email"]:focus {
	border-color: var(--vet3d-purple);
	box-shadow: none;
}

.site-footer__newsletter-form input[type="email"]::placeholder {
	color: var(--vet3d-contrast);
	opacity: 0.7;
}

/* Footer divider */
.site-footer__divider {
	border: none;
	border-top: 1px solid rgba(15, 28, 42, 0.2);
	max-width: var(--vet3d-container-width);
	margin: 0 auto;
}

/* Footer links grid */
.site-footer .site-footer__links {
	max-width: var(--vet3d-container-width);
	margin: 0 auto;
	padding: 40px 0;
	gap: 30px;
}

.site-footer__links-heading {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-bold);
	font-size: 1rem;
	line-height: 1.2;
	color: var(--vet3d-contrast);
	margin: 0 0 16px 0;
}

/* Footer navigation blocks */
.site-footer .site-footer__nav {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-regular);
	font-size: 1rem;
	gap: 12px;
}

.site-footer .site-footer__nav .wp-block-navigation-item {
	padding: 0;
}

.site-footer .site-footer__nav a {
	color: var(--vet3d-contrast);
	text-decoration: none;
	line-height: 1.5;
	transition: color 0.2s ease;
	padding: 0;
}

.site-footer .site-footer__nav a:hover,
.site-footer .site-footer__nav a:focus {
	color: var(--vet3d-purple);
	text-decoration: none;
}

/* Footer bottom bar */
.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--vet3d-container-width);
	margin: 0 auto;
	padding: 20px 0 30px;
}

.site-footer__social {
	display: flex;
	gap: 13px;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid var(--vet3d-grey);
	border-radius: var(--vet3d-radius-circle);
	color: var(--vet3d-grey);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-link:hover {
	border-color: var(--vet3d-purple);
	color: var(--vet3d-purple);
}

.site-footer__social-link svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.site-footer__copyright {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-footer__copyright span {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--vet3d-contrast);
}

.site-footer__copyright img {
	height: 50px;
	width: auto;
}

@media (max-width: 782px) {
	.site-footer__newsletter {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}
}

/* --------------------------------------------------------------------------
   Form Components
   -------------------------------------------------------------------------- */

/* Form layout */
.vet3d-form {
	max-width: 1010px;
}

.vet3d-form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.vet3d-form-row > * {
	flex: 1;
}

@media (max-width: 600px) {
	.vet3d-form-row {
		flex-direction: column;
	}
}

/* Form group (label + input) */
.vet3d-form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

/* Labels */
.vet3d-label {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-medium);
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
}

/* Text inputs */
.vet3d-input {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
	padding: 12px 25px;
	border: 1px solid var(--vet3d-navy);
	border-radius: var(--vet3d-radius-pill);
	background: var(--vet3d-white);
	outline: none;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vet3d-input:focus {
	border-color: var(--vet3d-purple);
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.15);
}

.vet3d-input::placeholder {
	color: var(--vet3d-grey);
	font-weight: var(--vet3d-weight-light);
}

/* Select dropdowns */
.vet3d-select {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
	padding: 12px 45px 12px 25px;
	border: 1px solid var(--vet3d-navy);
	border-radius: var(--vet3d-radius-pill);
	background: var(--vet3d-white);
	outline: none;
	width: 100%;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23000F32' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vet3d-select:focus {
	border-color: var(--vet3d-purple);
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.15);
}

/* Small select (e.g. KG dropdown) */
.vet3d-select--small {
	width: auto;
	min-width: 100px;
	padding: 12px 40px 12px 25px;
}

/* Textarea */
.vet3d-textarea {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
	padding: 22px 25px;
	border: 1px solid var(--vet3d-navy);
	border-radius: var(--vet3d-radius-rounded);
	background: var(--vet3d-white);
	outline: none;
	width: 100%;
	min-height: 180px;
	resize: vertical;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vet3d-textarea:focus {
	border-color: var(--vet3d-purple);
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.15);
}

.vet3d-textarea::placeholder {
	color: var(--vet3d-grey);
	font-weight: var(--vet3d-weight-light);
}

/* Toggle switch */
.vet3d-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.vet3d-toggle__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.vet3d-toggle__slider {
	position: relative;
	width: 45px;
	height: 24px;
	background: var(--vet3d-grey);
	border-radius: var(--vet3d-radius-pill);
	transition: background-color 0.2s ease;
	flex-shrink: 0;
}

.vet3d-toggle__slider::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	top: 3px;
	left: 3px;
	background: var(--vet3d-white);
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.vet3d-toggle__input:checked + .vet3d-toggle__slider {
	background: var(--vet3d-purple);
}

.vet3d-toggle__input:checked + .vet3d-toggle__slider::after {
	transform: translateX(21px);
}

.vet3d-toggle__input:focus-visible + .vet3d-toggle__slider {
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.3);
}

.vet3d-toggle__label {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-medium);
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
}

/* Radio-style toggles (e.g. Routine / Urgent / Emergency) */
.vet3d-radio-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 8px 0;
}

.vet3d-radio-toggle__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.vet3d-radio-toggle__slider {
	position: relative;
	width: 45px;
	height: 24px;
	background: var(--vet3d-grey);
	border-radius: var(--vet3d-radius-pill);
	transition: background-color 0.2s ease;
	flex-shrink: 0;
}

.vet3d-radio-toggle__slider::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	top: 3px;
	left: 3px;
	background: var(--vet3d-white);
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.vet3d-radio-toggle__input:checked + .vet3d-radio-toggle__slider {
	background: var(--vet3d-purple);
}

.vet3d-radio-toggle__input:checked + .vet3d-radio-toggle__slider::after {
	transform: translateX(21px);
}

.vet3d-radio-toggle__text {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-medium);
	font-size: 1rem;
	color: var(--vet3d-contrast);
}

.vet3d-radio-toggle__text span {
	font-weight: var(--vet3d-weight-regular);
	color: var(--vet3d-medium-grey);
}

/* Info icon (tooltip trigger) */
.vet3d-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid var(--vet3d-purple);
	color: var(--vet3d-purple);
	font-size: 0.75rem;
	font-weight: var(--vet3d-weight-medium);
	cursor: help;
	flex-shrink: 0;
}

/* Note/warning text */
.vet3d-note {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-bold);
	font-size: 0.875rem;
	color: var(--vet3d-red);
}

/* Form actions (Back / Next buttons) */
.vet3d-form-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Progress Stepper
   -------------------------------------------------------------------------- */
.vet3d-stepper {
	display: flex;
	align-items: flex-start;
	padding: 20px 0 40px;
}

.vet3d-stepper__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	position: relative;
	flex: 1;
}

/* Dashed connector line between steps */
.vet3d-stepper__step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 9px;
	left: calc(50% + 14px);
	right: calc(-50% + 14px);
	height: 0;
	border-top: 2px dashed var(--vet3d-grey);
}

.vet3d-stepper__step--completed:not(:last-child)::after {
	border-top-color: var(--vet3d-purple);
}

.vet3d-stepper__dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--vet3d-grey);
	display: block;
	flex-shrink: 0;
	transition: background-color 0.2s ease;
}

.vet3d-stepper__step--active .vet3d-stepper__dot,
.vet3d-stepper__step--completed .vet3d-stepper__dot {
	background: var(--vet3d-purple);
}

.vet3d-stepper__dot-btn {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vet3d-stepper__label {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.5;
	text-align: center;
	color: var(--vet3d-grey);
}

.vet3d-stepper__step--active .vet3d-stepper__label,
.vet3d-stepper__step--completed .vet3d-stepper__label {
	color: var(--vet3d-contrast);
}

/* --------------------------------------------------------------------------
   File Upload Zone
   -------------------------------------------------------------------------- */
.vet3d-upload-zone {
	background: rgba(121, 110, 255, 0.06);
	border-radius: 16px;
	padding: 60px 40px;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.vet3d-upload-zone:hover {
	background: rgba(121, 110, 255, 0.1);
}

.vet3d-upload-zone p {
	font-family: var(--vet3d-font);
	font-size: 1rem;
	color: var(--vet3d-contrast);
}

.vet3d-upload-zone strong {
	font-weight: var(--vet3d-weight-bold);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Price Summary
   -------------------------------------------------------------------------- */
.vet3d-price-summary {
	margin: 30px 0;
}

.vet3d-price-summary h3 {
	font-weight: var(--vet3d-weight-bold);
	font-size: 1rem;
	color: var(--vet3d-contrast);
	margin-bottom: 12px;
}

.vet3d-price-summary p {
	font-size: 0.875rem;
	color: var(--vet3d-contrast);
	margin: 4px 0;
}

.vet3d-price-summary .vet3d-price-total {
	font-weight: var(--vet3d-weight-bold);
	color: var(--vet3d-red);
}

.vet3d-price-summary .vet3d-price-note {
	font-style: italic;
	color: var(--vet3d-medium-grey);
	margin-top: 12px;
}

/* --------------------------------------------------------------------------
   WP Block Overrides
   -------------------------------------------------------------------------- */

/* Button block overrides */
.wp-block-button .wp-block-button__link {
	font-family: var(--vet3d-font);
	border-radius: var(--vet3d-radius-pill);
}

/* Ensure consistent form styling within WP blocks */
.wp-block-group input[type="text"],
.wp-block-group input[type="email"],
.wp-block-group input[type="tel"],
.wp-block-group input[type="number"],
.wp-block-group input[type="password"],
.wp-block-group input[type="url"] {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
	padding: 12px 25px;
	border: 1px solid var(--vet3d-navy);
	border-radius: var(--vet3d-radius-pill);
	background: var(--vet3d-white);
	outline: none;
	width: 100%;
}

.wp-block-group input[type="text"]:focus,
.wp-block-group input[type="email"]:focus,
.wp-block-group input[type="tel"]:focus,
.wp-block-group input[type="number"]:focus,
.wp-block-group input[type="password"]:focus,
.wp-block-group input[type="url"]:focus {
	border-color: var(--vet3d-purple);
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.15);
}

.wp-block-group select {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
	padding: 12px 45px 12px 25px;
	border: 1px solid var(--vet3d-navy);
	border-radius: var(--vet3d-radius-pill);
	background: var(--vet3d-white);
	outline: none;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23000F32' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
}

.wp-block-group select:focus {
	border-color: var(--vet3d-purple);
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.15);
}

.wp-block-group textarea {
	font-family: var(--vet3d-font);
	font-weight: var(--vet3d-weight-light);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--vet3d-navy);
	padding: 22px 25px;
	border: 1px solid var(--vet3d-navy);
	border-radius: var(--vet3d-radius-rounded);
	background: var(--vet3d-white);
	outline: none;
	width: 100%;
	min-height: 180px;
}

.wp-block-group textarea:focus {
	border-color: var(--vet3d-purple);
	box-shadow: 0 0 0 2px rgba(121, 110, 255, 0.15);
}
