.torfy-store-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.torfy-product-card,
.torfy-cart,
.torfy-checkout,
.torfy-account,
.torfy-order-result {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 16px;
}

.torfy-product-card {
	display: grid;
	gap: 10px;
}

.torfy-product-card__media {
	background: #f5f5f5;
	border-radius: 6px;
	display: block;
	overflow: hidden;
}

.torfy-product-card__image {
	aspect-ratio: 4 / 3;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.torfy-product-card h3 {
	font-size: 18px;
	line-height: 1.3;
	margin: 4px 0 0;
}

.torfy-product-card h3 a {
	color: #111;
	text-decoration: none;
}

.torfy-price {
	font-weight: 800;
	margin: 0;
}

.torfy-add-to-cart,
.torfy-field-grid,
.torfy-search-form {
	display: grid;
	gap: 10px;
}

.torfy-add-to-cart {
	grid-template-columns: 84px 1fr;
}

.torfy-add-to-cart input,
.torfy-cart input,
.torfy-checkout input,
.torfy-checkout textarea,
.torfy-search-form input,
.torfy-checkout select {
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-sizing: border-box;
	min-height: 42px;
	padding: 9px 11px;
	width: 100%;
}

.torfy-add-to-cart button,
.torfy-cart button,
.torfy-checkout button,
.torfy-button,
.torfy-search-form button {
	background: #050505;
	border: 1px solid #050505;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	padding: 11px 14px;
	text-decoration: none;
}

.torfy-button--secondary {
	background: #fff;
	color: #050505;
}

.torfy-cart-table {
	border-collapse: collapse;
	width: 100%;
}

.torfy-cart-table th,
.torfy-cart-table td {
	border-bottom: 1px solid #e5e7eb;
	padding: 12px 10px;
	text-align: left;
	vertical-align: middle;
}

.torfy-cart-product {
	align-items: center;
	display: flex;
	gap: 10px;
}

.torfy-cart-product img {
	aspect-ratio: 1;
	border-radius: 6px;
	height: 48px;
	object-fit: cover;
	width: 48px;
}

.torfy-cart-product small {
	color: #6b7280;
	display: block;
}

.torfy-cart-totals {
	display: grid;
	gap: 8px;
	justify-items: end;
	margin-top: 18px;
}

.torfy-field-grid {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.torfy-message {
	border-radius: 6px;
	margin-bottom: 16px;
	padding: 12px;
}

.torfy-message--success,
.torfy-order-result--success {
	background: #edfaef;
	color: #087c2f;
}

.torfy-message--error,
.torfy-order-result--failed {
	background: #fcf0f1;
	color: #b32d2e;
}

.torfy-public-page {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1120px;
	padding: 32px 18px;
}

.torfy-product-detail {
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
}

.torfy-product-gallery {
	display: grid;
	gap: 10px;
}

.torfy-product-detail img,
.torfy-product-gallery img {
	border-radius: 8px;
	height: auto;
	width: 100%;
}

.torfy-product-thumbs {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
}

.torfy-product-thumbs img {
	aspect-ratio: 1;
	object-fit: cover;
}

.torfy-checkout-layout {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.torfy-checkout-main {
	display: grid;
	gap: 18px;
}

.torfy-checkout-main section,
.torfy-order-summary {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 16px;
}

.torfy-checkout h2 {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 12px;
}

.torfy-order-summary {
	align-content: start;
	display: grid;
	gap: 12px;
}

.torfy-summary-line {
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.torfy-summary-line--total {
	border-top: 1px solid #e5e7eb;
	font-size: 18px;
	padding-top: 12px;
}

.torfy-payment-box {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
}

.torfy-terms {
	align-items: center;
	display: flex;
	gap: 8px;
}

.torfy-terms input {
	min-height: auto;
	width: auto;
}

.torfy-search-form {
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: 18px;
}

.torfy-empty {
	color: #4b5563;
	margin: 0;
}

@media (max-width: 760px) {
	.torfy-add-to-cart,
	.torfy-checkout-layout,
	.torfy-product-detail,
	.torfy-search-form {
		grid-template-columns: 1fr;
	}

	.torfy-cart-table,
	.torfy-cart-table thead,
	.torfy-cart-table tbody,
	.torfy-cart-table tr,
	.torfy-cart-table th,
	.torfy-cart-table td {
		display: block;
	}

	.torfy-cart-table thead {
		display: none;
	}

	.torfy-cart-table td {
		padding-left: 0;
		padding-right: 0;
	}

	.torfy-cart-totals {
		justify-items: stretch;
	}
}
