.awi-store {
	color: #111827;
	font-family: inherit;
	margin: 0 auto;
	max-width: 1500px;
	padding: 32px;
}

.awi-store a {
	color: inherit;
	text-decoration: none;
}

.awi-store-head {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: flex-start;
}

.awi-search {
	align-items: center;
	border: 1px solid #d4dae3;
	border-radius: 8px;
	display: flex;
	height: 46px;
	max-width: 720px;
	overflow: hidden;
	width: min(100%, 720px);
}

.awi-search input[type="search"] {
	border: 0;
	box-sizing: border-box;
	flex: 1;
	font-size: 16px;
	height: 100%;
	min-width: 0;
	padding: 0 16px;
}

.awi-search input[type="search"]:focus {
	outline: 0;
}

.awi-search button {
	align-items: center;
	background: #fff;
	border: 0;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 54px;
}

.awi-search svg {
	fill: #111827;
	height: 24px;
	width: 24px;
}

.awi-categories {
	border-bottom: 1px solid #e5e9ef;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 30px -32px 0;
	padding: 0 32px 18px;
	position: relative;
	z-index: 20;
}

.awi-categories a,
.awi-cat-top {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
}

.awi-cat-all,
.awi-cat-top {
	display: inline-flex;
	padding: 6px 0;
}

.awi-cat-group {
	position: relative;
}

.awi-cat-all.is-active,
.awi-cat-group.is-active > .awi-cat-top,
.awi-cat-subgroup.is-active > .awi-cat-second,
.awi-cat-third a.is-active {
	color: #d9484e;
}

.awi-cat-dropdown {
	background: #fff;
	border: 1px solid #e5e9ef;
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
	display: none;
	left: 50%;
	min-width: 240px;
	padding: 18px 0;
	position: absolute;
	top: calc(100% + 8px);
	transform: translateX(-50%);
	z-index: 30;
}

.awi-cat-group:hover .awi-cat-dropdown,
.awi-cat-group:focus-within .awi-cat-dropdown {
	display: block;
}

.awi-cat-subgroup {
	padding: 0 18px;
}

.awi-cat-second {
	display: block;
	font-size: 16px;
	font-weight: 800;
	padding: 8px 10px;
}

.awi-cat-second:hover,
.awi-cat-third a:hover {
	background: #f5f7fa;
	border-radius: 6px;
}

.awi-cat-third {
	border-left: 1px solid #e5e9ef;
	margin: 2px 0 8px 10px;
	padding-left: 10px;
}

.awi-cat-third a {
	color: #4b5563;
	display: block;
	font-size: 14px;
	font-weight: 600;
	padding: 7px 10px;
}

.awi-list-head {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	padding: 34px 0 22px;
}

.awi-list-head h1 {
	font-size: 28px;
	letter-spacing: 0;
	margin: 0;
}

.awi-list-head p {
	color: #6b7280;
	margin: 8px 0 0;
}

.awi-status-filter {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 180px;
}

.awi-status-filter label {
	color: #334155;
	font-size: 13px;
	font-weight: 700;
}

.awi-status-filter select {
	background: #fff;
	border: 1px solid #d4dae3;
	border-radius: 4px;
	color: #111827;
	font: inherit;
	font-size: 15px;
	height: 44px;
	min-width: 180px;
	padding: 0 14px;
}

.awi-status-filter select:focus {
	border-color: #94a3b8;
	outline: 0;
}

.awi-grid-list {
	display: grid;
	gap: 34px 24px;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--awi-thumb-width, 300px)), 1fr));
}

.awi-work-card {
	min-width: 0;
}

.awi-work-image {
	align-items: center;
	aspect-ratio: var(--awi-thumb-ratio, 1 / 1);
	background: #f4f6f8;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.awi-work-image img {
	height: 100%;
	object-fit: cover;
	transition: transform .28s ease;
	width: 100%;
}

.awi-work-card:hover .awi-work-image img {
	transform: scale(1.04);
}

.awi-work-card.is-detail-disabled .awi-work-image,
.awi-work-title.is-disabled {
	cursor: default;
}

.awi-work-image span,
.awi-detail-empty {
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
}

.awi-work-meta {
	padding-top: 14px;
}

.awi-work-category,
.awi-work-code,
.awi-work-year,
.awi-work-material {
	color: #64748b;
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 4px;
}

.awi-work-code {
	color: #475569;
}

.awi-work-material {
	font-weight: 600;
	margin-top: 6px;
}

.awi-work-title {
	display: block;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.45;
	margin-top: 6px;
}

.awi-work-spec {
	color: #6b7280;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 8px;
	margin-top: 8px;
}

.awi-work-bottom {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-top: 12px;
}

.awi-work-bottom strong {
	font-size: 19px;
}

.awi-work-bottom span {
	background: #eef8ef;
	border-radius: 4px;
	color: #17803a;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 8px;
}

.awi-empty {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #64748b;
	grid-column: 1 / -1;
	padding: 42px;
	text-align: center;
}

.awi-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 42px;
}

.awi-pagination a {
	align-items: center;
	border: 1px solid #d9dee6;
	border-radius: 4px;
	color: #475569;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	height: 34px;
	justify-content: center;
	min-width: 34px;
	padding: 0 10px;
}

.awi-pagination a.is-active {
	background: #111827;
	border-color: #111827;
	color: #fff;
}

.awi-empty-page a {
	color: #d9484e;
	display: block;
	font-weight: 700;
	margin-top: 12px;
}

.awi-permission {
	align-items: center;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 92px auto;
	max-width: 520px;
	min-height: 220px;
	padding: 42px 30px;
	text-align: center;
}

.awi-permission h1 {
	color: #ef4444;
	font-size: 24px;
	letter-spacing: 0;
	margin: 0 0 12px;
}

.awi-permission p {
	color: #64748b;
	font-size: 15px;
	margin: 0;
}

.awi-detail-breadcrumb {
	align-items: center;
	color: #64748b;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 6px;
	margin: 34px 0 26px;
}

.awi-detail-breadcrumb a {
	color: #64748b;
}

.awi-detail-breadcrumb strong {
	color: #64748b;
	font-weight: 700;
}

.awi-detail {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(420px, 0.82fr) minmax(360px, 1fr);
}

.awi-detail-product {
	align-items: start;
	margin-bottom: 72px;
}

.awi-detail-gallery {
	min-width: 0;
}

.awi-detail-main-frame {
	aspect-ratio: 1 / 1;
	background: #f4f6f8;
	border-radius: 4px;
	overflow: hidden;
}

.awi-detail-main,
.awi-detail-empty {
	aspect-ratio: 1 / 1;
	background: #f4f6f8;
	border-radius: 4px;
	display: flex;
	object-fit: cover;
	width: 100%;
}

.awi-detail-main-frame .awi-detail-main {
	aspect-ratio: auto;
	display: block;
	height: 100%;
	transition: transform .28s ease;
}

.awi-detail-main-frame .awi-detail-empty {
	aspect-ratio: auto;
	height: 100%;
}

.awi-detail-main-frame:hover .awi-detail-main {
	transform: scale(1.04);
}

.awi-detail-empty {
	align-items: center;
	justify-content: center;
}

.awi-detail-thumbs {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(6, 1fr);
	margin-top: 12px;
}

.awi-detail-thumbs button {
	background: #f4f6f8;
	border: 1px solid #e5e9ef;
	border-radius: 4px;
	cursor: pointer;
	overflow: hidden;
	padding: 0;
}

.awi-detail-thumbs button.is-active {
	border-color: #111827;
}

.awi-detail-thumbs img {
	aspect-ratio: 1 / 1;
	border: 0;
	display: block;
	object-fit: cover;
	transition: transform .24s ease;
	width: 100%;
}

.awi-detail-thumbs button:hover img {
	transform: scale(1.06);
}

.awi-detail-info {
	padding-top: 18px;
}

.awi-detail-info h1 {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 18px;
}

.awi-detail-price {
	border-bottom: 1px solid #e5e7eb;
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 26px;
	padding-bottom: 28px;
}

.awi-spec-list {
	display: grid;
	font-size: 15px;
	grid-template-columns: 110px minmax(0, 1fr);
	line-height: 1.55;
	margin: 0;
	row-gap: 12px;
}

.awi-spec-list dt {
	color: #475569;
	font-weight: 800;
}

.awi-spec-list dd {
	color: #111827;
	font-weight: 600;
	margin: 0;
}

.awi-detail-tabs {
	align-items: flex-end;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	gap: 28px;
	margin-top: 0;
}

.awi-detail-tabs a {
	color: #64748b;
	display: inline-flex;
	font-size: 16px;
	font-weight: 800;
	padding: 0 26px 18px;
	position: relative;
}

.awi-detail-tabs a.is-active {
	color: #111827;
}

.awi-detail-tabs a.is-active::after {
	background: #111827;
	bottom: -1px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
}

.awi-detail-tabs strong {
	color: #2563eb;
	margin-left: 4px;
}

.awi-description {
	border-bottom: 2px solid #111827;
	margin-top: 0;
	min-height: 76px;
	padding: 28px 0 44px;
}

.awi-description img {
	height: auto;
	max-width: 100%;
}

@media (max-width: 1100px) {
	.awi-grid-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.awi-store {
		padding: 20px;
	}

	.awi-store-head {
		align-items: stretch;
		flex-direction: column;
	}

	.awi-search {
		max-width: none;
		width: 100%;
	}

	.awi-categories {
		gap: 18px;
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.awi-cat-dropdown {
		left: 0;
		transform: none;
	}

	.awi-list-head {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.awi-status-filter,
	.awi-status-filter select {
		width: 100%;
	}

	.awi-grid-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.awi-detail {
		grid-template-columns: 1fr;
	}

	.awi-detail-info {
		padding-top: 0;
	}

	.awi-detail-info h1 {
		font-size: 32px;
	}

	.awi-detail-price {
		font-size: 24px;
	}

	.awi-detail-tabs a {
		padding-left: 8px;
		padding-right: 8px;
	}
}

@media (max-width: 480px) {
	.awi-grid-list {
		grid-template-columns: 1fr;
	}
}
