.aishop-whatsapp-float,
.aishop-whatsapp-float * {
	box-sizing: border-box;
}

.aishop-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	font-family: inherit;
}

.aishop-whatsapp-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(22, 22, 20, 0.18);
	backdrop-filter: blur(2px);
	z-index: 9998;
}

.aishop-whatsapp-toggle {
	position: relative;
	z-index: 10000;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 0;
	border-radius: 999px;
	padding: 13px 18px;
	color: #ffffff;
	background: #1f1f1d;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.aishop-whatsapp-toggle:hover,
.aishop-whatsapp-toggle:focus {
	background: #111110;
	transform: translateY(-1px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.aishop-whatsapp-toggle-icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #1f1f1d;
	background: #d7c3a4;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0;
}

.aishop-whatsapp-toggle-text {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
}

.aishop-whatsapp-panel {
	position: fixed;
	right: 24px;
	bottom: 92px;
	z-index: 10000;
	width: min(390px, calc(100vw - 32px));
	max-height: min(680px, calc(100vh - 132px));
	overflow: hidden;
	display: none;
	flex-direction: column;
	border: 1px solid rgba(44, 43, 40, 0.12);
	border-radius: 8px;
	background: #fbfaf7;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.aishop-whatsapp-float.is-open .aishop-whatsapp-panel {
	display: flex;
}

.aishop-whatsapp-float.is-open .aishop-whatsapp-overlay {
	display: block;
}

.aishop-whatsapp-panel-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px;
	border-bottom: 1px solid rgba(44, 43, 40, 0.1);
	background: #ffffff;
}

.aishop-whatsapp-panel-header h3 {
	margin: 0;
	color: #1f1f1d;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: 0;
}

.aishop-whatsapp-panel-header p {
	margin: 6px 0 0;
	color: #68645d;
	font-size: 13px;
	line-height: 1.45;
}

.aishop-whatsapp-close {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(44, 43, 40, 0.14);
	border-radius: 50%;
	color: #1f1f1d;
	background: #f5f1eb;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
}

.aishop-whatsapp-contact-list {
	overflow: auto;
	padding: 14px;
}

.aishop-whatsapp-contacts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.aishop-contact-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 16px;
	border: 1px solid rgba(44, 43, 40, 0.1);
	border-radius: 8px;
	background: #ffffff;
}

.aishop-whatsapp-contact-list .aishop-contact-card + .aishop-contact-card {
	margin-top: 12px;
}

.aishop-contact-avatar {
	width: 58px;
	height: 58px;
	overflow: hidden;
	border-radius: 50%;
	background: #e8dfd2;
}

.aishop-contact-avatar-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aishop-contact-avatar-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: #1f1f1d;
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, #d7c3a4, #efe4d5);
}

.aishop-contact-body h4 {
	margin: 0;
	color: #1f1f1d;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0;
}

.aishop-contact-role {
	margin: 4px 0 0;
	color: #68645d;
	font-size: 13px;
	line-height: 1.35;
}

.aishop-contact-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 9px;
}

.aishop-contact-meta span {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(44, 43, 40, 0.1);
	border-radius: 999px;
	padding: 4px 8px;
	color: #5b554d;
	background: #f5f1eb;
	font-size: 11px;
	line-height: 1;
}

.aishop-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	border: 1px solid #1f1f1d;
	border-radius: 999px;
	padding: 9px 14px;
	color: #ffffff;
	background: #1f1f1d;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.aishop-whatsapp-button:hover,
.aishop-whatsapp-button:focus {
	color: #ffffff;
	background: #3a3833;
	border-color: #3a3833;
	transform: translateY(-1px);
}

.aishop-empty-message {
	color: #68645d;
}

.aishop-questionnaire,
.aishop-questionnaire * {
	box-sizing: border-box;
}

.aishop-questionnaire {
	width: min(100%, 1080px);
	margin: 0 auto;
	border: 1px solid #d8d8d4;
	border-radius: 8px;
	color: #20211f;
	background: #ffffff;
	box-shadow: 0 20px 60px rgba(24, 25, 23, 0.08);
	overflow: hidden;
}

.aishop-questionnaire-header {
	padding: 42px 48px 34px;
	border-bottom: 1px solid #e5e5e1;
	background: #f5f5f2;
}

.aishop-questionnaire-eyebrow {
	margin: 0 0 12px;
	color: #8b6f42;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.aishop-questionnaire-header h2 {
	margin: 0;
	color: #181917;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0;
}

.aishop-questionnaire-header > p:last-child {
	max-width: 760px;
	margin: 18px 0 0;
	color: #5d605a;
	font-size: 16px;
	line-height: 1.7;
}

.aishop-step-navigation {
	padding: 22px 48px;
	border-bottom: 1px solid #e5e5e1;
}

.aishop-step-navigation ol {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aishop-step-navigation li {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	color: #8a8d86;
}

.aishop-step-navigation li span {
	display: inline-grid;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid #cfd0ca;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.aishop-step-navigation li strong {
	overflow: hidden;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	text-overflow: ellipsis;
}

.aishop-step-navigation li.is-active,
.aishop-step-navigation li.is-complete {
	color: #20211f;
}

.aishop-step-navigation li.is-active span {
	border-color: #20211f;
	color: #ffffff;
	background: #20211f;
}

.aishop-step-navigation li.is-complete span {
	border-color: #9a7a47;
	color: #ffffff;
	background: #9a7a47;
}

.aishop-questionnaire-form {
	padding: 38px 48px 44px;
}

.aishop-form-step {
	margin-bottom: 34px;
}

.aishop-js .aishop-form-step:not(.is-active) {
	display: none;
}

.aishop-form-step:focus {
	outline: 0;
}

.aishop-step-heading {
	margin-bottom: 28px;
}

.aishop-step-heading span {
	color: #8b6f42;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.aishop-step-heading h3 {
	margin: 7px 0 0;
	color: #20211f;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: 0;
}

.aishop-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
}

.aishop-field,
.aishop-questionnaire .aishop-field {
	margin: 0;
}

.aishop-field-wide {
	width: 100%;
	margin-bottom: 24px !important;
}

.aishop-field label,
.aishop-upload-field > label {
	display: block;
	margin-bottom: 8px;
	color: #343631;
	font-size: 13px;
	font-weight: 700;
}

.aishop-field label span {
	color: #9a3d35;
}

.aishop-field input,
.aishop-field select,
.aishop-field textarea,
.aishop-upload-field input[type='file'] {
	width: 100%;
	min-height: 46px;
	border: 1px solid #cfd0ca;
	border-radius: 4px;
	padding: 10px 12px;
	color: #20211f;
	background: #ffffff;
	font: inherit;
	font-size: 14px;
}

.aishop-field textarea {
	min-height: 128px;
	resize: vertical;
}

.aishop-field input:focus,
.aishop-field select:focus,
.aishop-field textarea:focus,
.aishop-upload-field input[type='file']:focus {
	border-color: #8b6f42;
	box-shadow: 0 0 0 3px rgba(139, 111, 66, 0.14);
	outline: 0;
}

.aishop-choice-group,
.aishop-checkbox-group {
	margin: 0;
	border: 1px solid #deded9;
	border-radius: 6px;
	padding: 18px;
}

.aishop-choice-group legend,
.aishop-checkbox-group legend {
	padding: 0 6px;
	color: #343631;
	font-size: 13px;
	font-weight: 700;
}

.aishop-choice-group label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 8px 18px 0 0;
}

.aishop-checkbox-group {
	margin-bottom: 20px;
}

.aishop-checkbox-group > div {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px 16px;
}

.aishop-checkbox-group label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #4c4f49;
	font-size: 13px;
	line-height: 1.4;
}

.aishop-checkbox-group input,
.aishop-choice-group input {
	margin-top: 2px;
	accent-color: #20211f;
}

.aishop-budget-grid {
	margin-top: 28px;
}

.aishop-currency-input {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: stretch;
}

.aishop-currency-input > span {
	display: grid;
	place-items: center;
	border: 1px solid #cfd0ca;
	border-right: 0;
	border-radius: 4px 0 0 4px;
	color: #5d605a;
	background: #f1f1ed;
}

.aishop-currency-input input {
	border-radius: 0 4px 4px 0;
}

.aishop-upload-field {
	border: 1px dashed #b7b8b1;
	border-radius: 6px;
	padding: 22px;
	background: #f8f8f5;
}

.aishop-upload-field > p {
	margin: 10px 0 0;
	color: #6a6d66;
	font-size: 12px;
	line-height: 1.5;
}

.aishop-selected-files {
	margin: 12px 0 0;
	padding-left: 18px;
	color: #4c4f49;
	font-size: 13px;
}

.aishop-form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid #e5e5e1;
}

.aishop-form-button {
	min-width: 132px;
	min-height: 46px;
	border: 1px solid #20211f;
	border-radius: 4px;
	padding: 11px 18px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.aishop-form-button:hover,
.aishop-form-button:focus {
	transform: translateY(-1px);
}

.aishop-form-button-primary {
	color: #ffffff;
	background: #20211f;
}

.aishop-form-button-primary:hover,
.aishop-form-button-primary:focus {
	border-color: #8b6f42;
	background: #8b6f42;
}

.aishop-form-button-secondary {
	color: #20211f;
	background: #ffffff;
}

.aishop-form-button:disabled {
	opacity: 0.58;
	cursor: wait;
	transform: none;
}

.aishop-form-validation {
	min-height: 22px;
	margin-top: 18px;
	color: #9a3d35;
	font-size: 13px;
	font-weight: 600;
}

.aishop-form-notice {
	margin: 28px 48px;
	border-left: 4px solid;
	padding: 18px 20px;
	font-size: 15px;
	line-height: 1.6;
}

.aishop-form-notice-success {
	border-color: #347552;
	color: #244f39;
	background: #edf7f1;
}

.aishop-form-notice-error {
	border-color: #a3463d;
	color: #742f29;
	background: #fbefed;
}

@media (max-width: 640px) {
	.aishop-whatsapp-float {
		right: 16px;
		bottom: 18px;
	}

	.aishop-whatsapp-toggle {
		padding: 11px 14px;
	}

	.aishop-whatsapp-panel {
		right: 16px;
		bottom: 82px;
		max-height: calc(100vh - 120px);
	}

	.aishop-whatsapp-panel-header {
		padding: 16px;
	}

	.aishop-questionnaire-header,
	.aishop-questionnaire-form {
		padding: 28px 20px;
	}

	.aishop-step-navigation {
		padding: 18px 20px;
	}

	.aishop-step-navigation li {
		justify-content: center;
	}

	.aishop-step-navigation li strong {
		display: none;
	}

	.aishop-field-grid,
	.aishop-checkbox-group > div {
		grid-template-columns: 1fr;
	}

	.aishop-form-actions {
		flex-wrap: wrap;
	}

	.aishop-form-button {
		flex: 1 1 140px;
	}

	.aishop-form-notice {
		margin: 20px;
	}
}

.aishop-estimator,
.aishop-estimator * {
	box-sizing: border-box;
}

.aishop-estimator {
	max-width: 1120px;
	margin: 0 auto;
	border: 1px solid #d9d9d3;
	border-radius: 4px;
	overflow: hidden;
	color: #1f201e;
	background: #ffffff;
	box-shadow: 0 22px 64px rgba(31, 32, 30, 0.07);
}

.aishop-estimator-header {
	padding: 42px 48px 36px;
	background: #f4f4f0;
}

.aishop-estimator-eyebrow,
.aishop-estimator-result-label {
	margin: 0;
	color: #9a7a47;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.aishop-estimator-header h2 {
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 44px;
	font-weight: 500;
	line-height: 1.12;
}

.aishop-estimator-header > p:last-child {
	max-width: 760px;
	margin: 18px 0 0;
	color: #62645f;
	font-size: 16px;
	line-height: 1.7;
}

.aishop-estimator-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.aishop-estimator-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 18px;
	padding: 42px 48px 48px;
}

.aishop-estimator-field[hidden] {
	display: none;
}

.aishop-estimator-field label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
}

.aishop-estimator-field input,
.aishop-estimator-field select {
	width: 100%;
	height: 48px;
	border: 1px solid #d4d5d0;
	border-radius: 3px;
	padding: 0 13px;
	color: #1f201e;
	background: #ffffff;
	font: inherit;
}

.aishop-estimator-field input:focus,
.aishop-estimator-field select:focus {
	border-color: #9a7a47;
	outline: 2px solid rgba(154, 122, 71, 0.14);
}

.aishop-estimator-standard-guide {
	grid-column: 1 / -1;
	margin-top: 4px;
	border-top: 1px solid #d9d9d3;
	padding-top: 26px;
}

.aishop-estimator-standard-guide summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0;
	border: 1px solid #d9d9d3;
	border-radius: 4px;
	padding: 16px 18px;
	background: #ffffff;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
}

.aishop-estimator-standard-guide summary::-webkit-details-marker {
	display: none;
}

.aishop-estimator-standard-guide summary::after {
	content: "+";
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #d9d9d3;
	border-radius: 999px;
	color: #9a7a47;
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.aishop-estimator-standard-guide[open] summary::after {
	content: "-";
}

.aishop-estimator-standard-content {
	padding-top: 16px;
}

.aishop-estimator-standard-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.aishop-estimator-standard-grid article {
	border: 1px solid #d9d9d3;
	border-radius: 4px;
	padding: 20px;
	background: #f8f8f5;
}

.aishop-estimator-standard-name {
	margin: 0;
	color: #9a7a47;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.aishop-estimator-standard-grid ul {
	margin: 14px 0 0;
	padding-left: 18px;
	color: #555751;
	font-size: 13px;
	line-height: 1.55;
}

.aishop-estimator-standard-grid li + li {
	margin-top: 7px;
}

.aishop-estimator-standard-note {
	margin: 15px 0 0;
	border-left: 2px solid #9a7a47;
	padding-left: 14px;
	color: #62645f;
	font-size: 13px;
	line-height: 1.6;
}

.aishop-estimator-calculate {
	grid-column: 1 / -1;
	min-height: 50px;
	border: 1px solid #1f201e;
	border-radius: 3px;
	padding: 12px 20px;
	color: #ffffff;
	background: #1f201e;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.aishop-estimator-calculate:hover,
.aishop-estimator-calculate:focus {
	color: #1f201e;
	background: #ffffff;
	outline: 0;
	transform: translateY(-1px);
}

.aishop-estimator-calculate:disabled {
	opacity: 0.58;
	cursor: wait;
	transform: none;
}

.aishop-estimator-error {
	grid-column: 1 / -1;
	min-height: 20px;
	margin: -4px 0 -8px;
	color: #a13a2c;
	font-size: 13px;
}

.aishop-estimator-result {
	border-left: 1px solid #d9d9d3;
	padding: 46px 42px;
	background: #20211f;
	color: #ffffff;
}

.aishop-estimator-result-amount {
	margin: 18px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 34px;
	line-height: 1.18;
}

.aishop-estimator-result.has-result .aishop-estimator-result-amount {
	color: #e4d0ad;
}

.aishop-estimator-summary {
	margin: 34px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.aishop-estimator-summary div {
	display: grid;
	grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.25fr);
	gap: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.17);
	padding: 12px 0;
	font-size: 12px;
}

.aishop-estimator-summary dt {
	color: #aeb0aa;
}

.aishop-estimator-summary dd {
	margin: 0;
	font-weight: 700;
}

.aishop-estimator-disclaimer {
	margin: 26px 0 0;
	color: #bfc0bb;
	font-size: 12px;
	line-height: 1.65;
}

.aishop-estimator-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.aishop-estimator-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid currentColor;
	border-radius: 3px;
	padding: 10px 15px;
	color: inherit;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.aishop-estimator-link-primary {
	border-color: #ffffff;
	color: #1f201e;
	background: #ffffff;
}

.aishop-estimator-link:hover,
.aishop-estimator-link:focus {
	transform: translateY(-1px);
}

.aishop-estimator-unavailable {
	border-left: 3px solid #9a7a47;
	padding: 22px 24px;
	background: #f4f4f0;
}

.aishop-estimator-unavailable p {
	margin: 0 0 16px;
}

@media (max-width: 900px) {
	.aishop-estimator-layout {
		grid-template-columns: 1fr;
	}

	.aishop-estimator-result {
		border-top: 1px solid #d9d9d3;
		border-left: 0;
	}
}

@media (max-width: 640px) {
	.aishop-estimator-header,
	.aishop-estimator-form,
	.aishop-estimator-result {
		padding: 30px 22px;
	}

	.aishop-estimator-header h2 {
		font-size: 34px;
	}

	.aishop-estimator-form {
		grid-template-columns: 1fr;
	}

	.aishop-estimator-error,
	.aishop-estimator-calculate {
		grid-column: auto;
	}

	.aishop-estimator-actions,
	.aishop-estimator-link {
		width: 100%;
	}

	.aishop-estimator-summary div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.aishop-estimator-standard-guide {
		grid-column: auto;
	}

	.aishop-estimator-standard-guide summary {
		font-size: 21px;
	}

	.aishop-estimator-standard-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 641px) and (max-width: 900px) {
	.aishop-questionnaire-header,
	.aishop-questionnaire-form {
		padding-right: 32px;
		padding-left: 32px;
	}

	.aishop-step-navigation {
		padding-right: 32px;
		padding-left: 32px;
	}

	.aishop-step-navigation li strong {
		font-size: 11px;
	}

	.aishop-checkbox-group > div {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.aishop-project-masonry-shell,
.aishop-project-masonry-shell * {
	box-sizing: border-box;
}

.aishop-project-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 0 42px;
	border-bottom: 1px solid #d9d9d3;
}

.aishop-project-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 10px 16px;
	color: #686a64;
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.aishop-project-filter:hover,
.aishop-project-filter:focus,
.aishop-project-filter.is-active {
	border-bottom-color: #9a7a47;
	color: #1f201e;
	outline: 0;
}

.aishop-project-masonry {
	column-count: 4;
	column-gap: 18px;
}

.aishop-project-card {
	display: inline-block;
	width: 100%;
	margin: 0 0 18px;
	break-inside: avoid;
	border: 1px solid #e6e3dc;
	border-radius: 8px;
	overflow: hidden;
	color: #1f201e;
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(31, 32, 30, 0.07);
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.aishop-project-card[hidden] {
	display: none;
}

.aishop-project-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 60px rgba(31, 32, 30, 0.11);
}

.aishop-project-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 8px 8px 0;
	border-radius: 6px;
	background: #ecece7;
}

.aishop-project-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	transition: transform 500ms ease;
}

.aishop-project-card-play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	pointer-events: none;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 44%);
}

.aishop-project-card-play svg {
	width: 54px;
	height: 54px;
	color: #ffffff;
	filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.38));
}

.aishop-project-card-play circle {
	fill: rgba(31, 32, 30, 0.58);
	stroke: rgba(255, 255, 255, 0.76);
	stroke-width: 2;
}

.aishop-project-card-play path {
	fill: currentColor;
}

.aishop-project-card:hover .aishop-project-card-image {
	transform: scale(1.025);
}

.aishop-project-card-body {
	padding: 14px 16px 18px;
}

.aishop-project-card-kicker {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #9a7a47;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.aishop-project-card h3 {
	margin: 10px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.24;
}

.aishop-project-card-excerpt {
	margin: 10px 0 0;
	color: #686a64;
	font-size: 13px;
	line-height: 1.5;
}

.aishop-project-card-meta {
	margin: 14px 0 0;
	border-top: 1px solid #e2e2dc;
}

.aishop-project-card-meta div {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	border-bottom: 1px solid #e2e2dc;
	padding: 9px 0;
	font-size: 12px;
}

.aishop-project-card-meta dt {
	color: #888a84;
}

.aishop-project-card-meta dd {
	margin: 0;
	font-weight: 700;
}

.aishop-project-card-link {
	display: inline-block;
	margin-top: 16px;
	border-bottom: 1px solid #1f201e;
	padding-bottom: 4px;
	font-size: 13px;
	font-weight: 700;
}

.aishop-featured-projects {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.aishop-featured-projects .aishop-project-card {
	display: block;
	margin: 0;
}

.aishop-project-empty,
.aishop-project-filter-empty {
	margin: 0;
	border-left: 3px solid #9a7a47;
	padding: 18px 20px;
	color: #5d605a;
	background: #f3f3ef;
}

.aishop-project-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 48px;
}

.aishop-project-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	border: 1px solid #d9d9d3;
	border-radius: 3px;
	padding: 0 12px;
	color: #343632;
	background: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.aishop-project-page:hover,
.aishop-project-page:focus,
.aishop-project-page.is-current {
	border-color: #1f201e;
	color: #ffffff;
	background: #1f201e;
	outline: 0;
}

.aishop-project-page-direction {
	min-width: 92px;
}

@media (max-width: 960px) {
	.aishop-project-masonry {
		column-count: 2;
	}

	.aishop-featured-projects {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.aishop-project-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-bottom: 28px;
	}

	.aishop-project-filter {
		text-align: left;
	}

	.aishop-project-pagination {
		justify-content: flex-start;
		margin-top: 34px;
	}

	.aishop-project-masonry {
		column-count: 1;
	}

	.aishop-featured-projects {
		grid-template-columns: 1fr;
	}

	.aishop-project-card-body {
		padding: 20px;
	}

	.aishop-project-card h3 {
		font-size: 20px;
	}
}
