.bshop-shop,
.bshop-single,
.bshop-placeholder {
	max-width: 72rem;
	margin: 0 auto;
}

.bshop-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bshop-card {
	border: 1px solid #ddd;
	padding: 1rem;
	background: #fff;
}

.bshop-card__link {
	color: inherit;
	text-decoration: none;
}

.bshop-card__image img {
	width: 100%;
	height: auto;
}

.bshop-card__title {
	font-size: 1.125rem;
	margin: 0.75rem 0 0.25rem;
}

.bshop-card__price,
.bshop-summary__price {
	font-size: 1rem;
	margin: 0;
}

.bshop-summary {
	margin: 1rem 0 1.5rem;
}

.bshop-summary__price del {
	opacity: 0.65;
	margin-right: 0.5rem;
}

.bshop-add-to-cart {
	padding: 0.5rem 1rem;
}

.bshop-add-to-cart-form {
	margin-top: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.bshop-add-to-cart__msg {
	flex-basis: 100%;
	margin: 0.25rem 0 0;
}

.bshop-add-to-cart__msg.is-error {
	color: #b32d2e;
}

.bshop-qty {
	width: 4.5rem;
}

.bshop-cart__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 0.35rem;
	margin: 0 0 1.5rem;
}

.bshop-cart__table th,
.bshop-cart__table td {
	border-bottom: 1px solid #ddd;
	padding: 1rem 1.5rem;
	text-align: left;
	vertical-align: middle;
}

.bshop-cart__table th:first-child,
.bshop-cart__table td:first-child {
	padding-left: 0.75rem;
}

.bshop-cart__table th:last-child,
.bshop-cart__table td:last-child {
	padding-right: 0.75rem;
}

.bshop-cart__table td + td,
.bshop-cart__table th + th {
	padding-left: 1.75rem;
}

.bshop-cart__totals,
.bshop-cart__checkout {
	margin: 0.5rem 0;
}

.bshop-remove {
	background: none;
	border: 0;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.bshop-placeholder {
	padding: 1rem 0;
}

.bshop-cart-icon {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 100000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 999px;
	background: #111;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bshop-cart-icon:hover,
.bshop-cart-icon:focus {
	color: #fff;
}

.bshop-cart-icon__svg {
	display: block;
}

.bshop-cart-icon__count {
	position: absolute;
	top: -0.2rem;
	right: -0.2rem;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.3rem;
	border-radius: 999px;
	background: #c00;
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.25rem;
	text-align: center;
	font-weight: 700;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
