.catalog {
  margin: 0;
  padding: 0;
	text-decoration:none;

}


.catalog > * {
  margin-block: 0; 
  margin-inline: 0; 
	text-decoration:none;
}

.catalog * {
  margin: 0;
  padding: 0;
	text-decoration:none;
}

.catalog {
    padding: 0 50px;
    display: flex;
}

@media screen and (max-width: 1024px) {
	.catalog{
	padding:0 16px;
}
}

.image-blurb{
	border: 1px solid var(--mute-blue);
	    position: relative;
	margin-bottom:1rem;
}

.product-wrapper{
	display:flex;
	width:fit-content;
	margin-bottom:3rem;
}

p.archive-usp {
    position: absolute;
    background: var(--green);
    color: white;
    text-transform: uppercase;
    font-weight: 300;
    font-size: .8rem;
    padding: 0.15rem 1rem;
	left:-1px;
	top:-1px;
}

.product-card:nth-child(3) p.archive-usp{
	background: var(--mute-blue);
	color:black;
}

.product-card .description {
    display: flex;
    column-gap: 5px;
	    color: black;
    font-size: .9rem;
	font-style: italic;
	    flex-wrap: wrap;
	    align-items: center;
}

h3.title {
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.025rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.image-blurb img{
	    display: block;
    object-fit: contain;
}

.product-card span.woocommerce-Price-amount.amount {
    font-weight: bold;
	line-height:1;
}

.nav-catalog .left-arrow svg, .nav-catalog .right-arrow svg{
	display:block;
	width:.65rem;
	height:auto;
	cursor: pointer;
}

.nav-catalog .right-arrow svg{
   transform: rotate(180deg);
}

.nav-catalog{
	font-size: .65rem;
	display:flex;
	align-items:center;
	gap:2rem;
	color:var(--green);
	justify-content:center;
	margin-bottom:0.75rem;
}

@media (min-width:990px) {
	.nav-catalog{
		display:none;
	}
}

