/*------------------------------------------------------------------------------*/
/* Product Buy Form
/*------------------------------------------------------------------------------*/

.ProductBuy {
	max-width: 500px;
}

.BuyForm input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.BuyForm textarea,
.BuyForm select {
	width: 100%;
}

.BuyFormQuantity {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.BuyFormQuantity label {
	margin: 0;
}

.BuyForm .AddToCart {
	width: 100%;	
}

/*------------------------------------------------------------------------------*/
/* Product Buy Form Radio Variations
/*------------------------------------------------------------------------------*/

.BuyFormVariationRadio .Checks:not(.CustomRadioChecks) {
	align-items: center;
	display: grid;
	grid-template-columns: auto max-content;
}

.BuyFormVariationRadio .Checks:not(.CustomRadioChecks) label {
	padding: .75rem .5rem;
}

.BuyFormVariationRadio .Checks:not(.CustomRadioChecks) .FormHelp {
	text-align: right;
}

/*------------------------------------------------------------------------------*/
/* Product Brand Link
/*------------------------------------------------------------------------------*/

.ProductBrand {
	margin: 0;
}

.ProductBrand .BrandLink {
	color: var(--color-text);
	text-decoration: none;
}

/*------------------------------------------------------------------------------*/
/* Product Description
/*------------------------------------------------------------------------------*/

.ProductDesc {
	max-width: 500px;
}

.ProductDesc p {
	max-width: 60ch;
}

/*------------------------------------------------------------------------------*/
/* Product Features
/*------------------------------------------------------------------------------*/

.ProductFeatures dd {
	display: inline-block;
}

/*------------------------------------------------------------------------------*/
/* Accordion Titles
/*------------------------------------------------------------------------------*/

.ProductFullDesc h3 + .ProductFullDesc h3 {
	margin-top: -2rem;
}

.ProductFullDesc h3 {
	align-items: center;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0rem;
	display: flex;
	cursor: pointer;
	list-style: none;
	padding: 1.5rem 1rem 1.5rem 0;
}

.ProductFullDesc h3::after {
	font-family: var(--fa-style-family);
	content: "\f107";
	margin-left: auto;
}

.ProductFullDesc h3.active:after {
	content: "\f106";
}

.desc-wrap {
 	 display: none;
	margin-top: -.1rem;
  	padding: 1.5rem 0px !important;
}

.desc-wrap:last-of-type {
  padding-bottom: 1px; }

.desc-wrap > * {
	border-top: 0;
	margin: 0;
	padding: 0;
  	padding-top: 1rem;
}

.desc-wrap p {
	padding: 0 0 .5rem;
}