/*
Theme Name: AMSS (Twenty Twenty-Five Child)
Template: twentytwentyfive
Version: 1.0
Description: Custom child theme for Automation Mailing and Shipping Solutions, built on Twenty Twenty-Five.
*/

.breadcrumbs {
	background: #f2f2f2;
	padding: 10px 20px;
	margin: 0 0 24px;
	font-size: 0.8125rem;
}
.breadcrumbs a {
	color: #0055aa;
	text-decoration: none;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs strong {
	color: inherit;
}
.breadcrumbs .sep {
	margin: 0 8px;
	color: #999;
	font-size: 0.625rem;
}

.product-resources {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0;
}
.product-resources .btn {
	display: inline-block;
	padding: 10px 18px;
	background: #1a5276;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}
.product-resources .btn:hover {
	background: #154360;
	color: #fff;
}

.amss-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
}
.amss-modal.is-open {
	display: block;
}
.amss-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba( 0, 0, 0, 0.75 );
}
.amss-modal-content {
	position: relative;
	max-width: 800px;
	margin: 5% auto;
	background: #fff;
	padding: 20px;
	border-radius: 4px;
}
.amss-modal-close {
	position: absolute;
	top: 4px;
	right: 10px;
	background: none;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}
.amss-modal-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

/* Hero carousel */
.amss-hero-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.amss-hero-track {
	position: relative;
	width: 100%;
}
.amss-hero-slide {
	display: none;
	width: 100%;
}
.amss-hero-slide.is-active {
	display: block;
}
.amss-hero-slide img {
	display: block;
	width: 100%;
	height: auto;
}
.amss-hero-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 12px 0;
	background: #fff;
}
.amss-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	padding: 0;
	cursor: pointer;
}
.amss-hero-dot.is-active {
	background: #c00814;
}

/* Privacy Policy page copy */
.page-id-903 .wp-block-post-content {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}

/* Our Company page copy */
.page-id-11 .wp-block-post-content {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}
@media ( max-width: 782px ) {
	.page-id-11 .wp-block-post-content img {
		float: none;
		display: block;
		width: 100%;
		max-width: 100%;
		height: auto;
		margin: 0 0 16px;
	}
}

/* Contact Us page copy */
.page-id-14 .wp-block-post-content {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}
.page-id-14 .wp-block-post-content strong {
	font-weight: 700;
}

/* Single product page */
.amss-product-page {
	align-items: flex-start;
	gap: 40px;
}
.amss-product-main {
	flex: 1 1 auto;
	min-width: 0;
}
#product {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	flex-wrap: wrap;
}
#product .wp-post-image {
	flex: 0 0 auto;
	max-width: 280px;
	height: auto;
	border: 1px solid #e4e4e4;
	box-shadow: 0 0 8px #e4e4e4;
}
#product-details {
	flex: 1 1 320px;
	min-width: 0;
}
#product-details h2 {
	margin-top: 0;
	color: #014358;
	font-size: 1.75rem;
}
#product-details h3 {
	margin: 20px 0 8px;
	font-size: 1rem;
	color: #222;
}
#product-details p {
	margin: 0 0 12px;
	font-size: 0.875rem;
	color: #333;
	line-height: 1.6;
}

.product-resources {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 20px;
}
.pdf-icon,
.video-icon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #666;
	font-weight: 700;
	font-size: 0.8125rem;
	text-decoration: none;
}
.pdf-icon:hover,
.video-icon:hover {
	color: #333;
}
.pdf-icon::before {
	content: "";
	width: 22px;
	height: 22px;
	background: url( images/pdf-icon.png ) no-repeat center / contain;
}
.video-icon::before {
	content: "";
	width: 24px;
	height: 17px;
	background: url( images/video-icon.png ) no-repeat center / contain;
}

#sidebar-about-us {
	flex: 0 0 220px;
	background: linear-gradient( to bottom, #e5e5e5 0%, #fff 100% );
	padding: 16px;
	text-align: center;
}
#sidebar-about-us h2 {
	margin-top: 0;
	color: #c5141c;
	text-transform: uppercase;
	font-size: 1.0625rem;
	font-weight: 700;
}
#sidebar-about-us img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 16px;
}
#sidebar-about-us p {
	font-size: 0.8125rem;
	font-weight: 500;
	color: #333;
	text-align: left;
	line-height: 1.6;
}

@media ( max-width: 782px ) {
	.amss-product-page {
		flex-direction: column;
	}
	#sidebar-about-us {
		display: none;
	}
	#product .wp-post-image {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}
}

/* Featured products (homepage) */
.amss-featured-products {
	margin: 40px 0;
}
.amss-section-ribbon {
	position: relative;
	background: #59595c;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 24px;
	padding: 14px 40px 14px 20px;
	clip-path: polygon( 0 0, 100% 0, calc( 100% - 40px ) 100%, 0 100% );
}
.amss-featured-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) );
	gap: 24px;
}
.amss-featured-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 20px;
}
.amss-featured-card h3 {
	margin: 0 0 16px;
	font-size: 0.9375rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #333;
}
.amss-featured-thumb {
	display: block;
	margin-bottom: 16px;
	text-align: center;
}
.amss-featured-thumb img {
	max-width: 100%;
	height: auto;
}
.amss-featured-card p {
	flex: 1 1 auto;
	font-size: 1rem;
	color: #444;
	margin: 0 0 16px;
}
.btn-readmore {
	display: inline-block;
	align-self: flex-start;
	background: #c00814;
	border: 3px solid #fff;
	outline: 1px solid #ccc;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 18px;
	border-radius: 8px;
}
.btn-readmore:hover {
	background: #98060f;
	color: #fff;
}

.amss-featured-manufacturers {
	margin: 40px 0;
}
.amss-manufacturers-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

/* Epson landing page - match Featured Products card styling */
.page-id-1313 .ep-sec {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 240px, 1fr ) );
	gap: 24px;
	margin: 24px 0;
}
.page-id-1313 .ep-sec-fp {
	display: flex;
}
.page-id-1313 .featured-product {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 20px;
}
.page-id-1313 .inner-featured-product {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.page-id-1313 .featured-product h3 {
	margin: 0 0 16px;
	font-size: 0.9375rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #333;
}
.page-id-1313 .featured-product img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 16px;
}
.page-id-1313 .featured-product .caption {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.page-id-1313 .featured-product .caption p {
	flex: 1 1 auto;
	font-size: 1rem;
	color: #444;
	margin: 0 0 16px;
}
.page-id-1313 .featured-product .btn-more-info {
	display: inline-block;
	align-self: flex-start;
	background: #c00814;
	border: 3px solid #fff;
	outline: 1px solid #ccc;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 18px;
	border-radius: 8px;
	width: auto;
	height: auto;
	background-image: none;
}
.page-id-1313 .featured-product .btn-more-info:hover {
	background: #98060f;
	color: #fff;
}

/* Footer */
.amss-footer-row {
	background: linear-gradient( to bottom, #2b2b2b 0%, #6b6b6b 100% );
	margin-top: 40px;
}
.amss-footer {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: 40px 0;
	color: #fff;
	font-size: 1rem;
	line-height: 1.7;
}
.amss-footer-contact {
	text-align: right;
}
.amss-footer-contact a {
	color: #fff;
}
.amss-footer-contact a:hover {
	text-decoration: none;
}

@media ( max-width: 600px ) {
	.amss-footer {
		flex-direction: column;
	}
	.amss-footer-contact {
		text-align: left;
	}
}

/* Top bar */
.amss-topbar-row {
	background: linear-gradient( to bottom, #ffffff 0%, #e9e9e9 100% );
	border-bottom: 1px solid #ddd;
	margin-bottom: 0;
}
.amss-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
	flex-wrap: wrap;
}
.amss-topbar-logo img {
	display: block;
	height: 80px;
	width: auto;
}
.amss-topbar-callsearch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.amss-call-us {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: #333;
	white-space: nowrap;
}
.amss-call-us span {
	color: #c00814;
}
#search-form form {
	display: flex;
	align-items: center;
	background: #f2f2f2;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
}
#search-form input[type="text"] {
	border: none;
	background: transparent;
	padding: 8px 12px;
	font-size: 0.875rem;
	width: 260px;
	outline: none;
}
#search-form button {
	background: transparent;
	border: none;
	border-left: 1px solid #ccc;
	padding: 8px 12px;
	cursor: pointer;
	color: #666;
	display: flex;
	align-items: center;
}
.amss-topbar-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}
.amss-email-us {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #1a3a6b;
	text-decoration: none;
	text-transform: uppercase;
}
.amss-email-us:hover {
	text-decoration: underline;
}
.amss-bbb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	color: #666;
}
.amss-bbb img {
	height: 28px;
	width: auto;
}

@media ( max-width: 782px ) {
	.amss-topbar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 12px;
	}
	.amss-topbar-logo img {
		height: 44px;
	}
	.amss-topbar-callsearch {
		flex: 1 1 auto;
		align-items: flex-end;
	}
	.amss-call-us {
		font-size: 0.875rem;
	}
	#search-form input[type="text"] {
		width: 100%;
	}
	.amss-topbar-meta {
		align-items: center;
	}
	.amss-email-us,
	.amss-bbb {
		display: none;
	}
}

/* Mega menu */
.amss-nav-row {
	background: linear-gradient( to bottom, #5a5a5a 0%, #2b2b2b 45%, #131313 100% );
	border-bottom: none;
	margin-top: -20px;
}
.amss-nav-row > .wp-block-group.alignwide {
	padding-left: 0;
	padding-right: 0;
}
.amss-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 52px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.amss-nav-list > li {
	position: relative;
}
.amss-nav-list > li > a {
	display: inline-block;
	padding: 8px 0;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.amss-nav-list > li > a:focus {
	outline-color: #000;
}

/* Hamburger toggle (mobile only) */
.amss-hamburger {
	display: none;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0 0 0 40px;
	background: none;
	border: none;
	cursor: pointer;
}
.amss-hamburger-bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 26px;
	height: 20px;
}
.amss-hamburger-bars span {
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.amss-hamburger-text {
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.amss-hamburger.is-active .amss-hamburger-bars span:nth-child( 1 ) {
	transform: translateY( 7px ) rotate( 45deg );
}
.amss-hamburger.is-active .amss-hamburger-bars span:nth-child( 2 ) {
	opacity: 0;
}
.amss-hamburger.is-active .amss-hamburger-bars span:nth-child( 3 ) {
	transform: translateY( -7px ) rotate( -45deg );
}

/* Mobile nav panel */
.amss-mobile-nav {
	background: #fff;
	border-top: 3px solid #5a5a5a;
}
.amss-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.amss-mobile-nav > ul > li {
	border-bottom: 1px solid #e6e6e6;
}
.amss-mobile-nav > ul > li > a {
	display: block;
	padding: 14px 20px;
	color: #222;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
}
.amss-mobile-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.amss-mobile-row a {
	flex: 1 1 auto;
	display: block;
	padding: 14px 20px;
	color: #222;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
}
.amss-mobile-expand {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	border-left: 1px solid #e6e6e6;
	font-size: 1.25rem;
	color: #666;
	cursor: pointer;
}
.amss-mobile-expand[ aria-expanded="true" ] span {
	display: inline-block;
	transform: rotate( 45deg );
}
.amss-mobile-submenu {
	background: #f7f7f7;
}
.amss-mobile-submenu li a {
	display: block;
	padding: 12px 20px 12px 36px;
	color: #444;
	text-decoration: none;
	font-size: 0.8125rem;
	border-bottom: 1px solid #eee;
}

@media ( max-width: 782px ) {
	.amss-hamburger {
		display: flex;
	}
	.amss-primary-nav {
		display: none;
	}
	.amss-nav-row {
		position: relative;
		padding: 12px 0;
	}
	.amss-mobile-nav:not( [ hidden ] ) {
		display: block;
	}
}

.amss-has-mega .amss-mega-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	gap: 40px;
	width: max-content;
	max-width: 90vw;
	padding: 28px 32px;
	background: #fff;
	border: 7px solid #5a5a5a;
	box-shadow: 0 10px 28px rgba( 0, 0, 0, 0.25 );
	z-index: 200;
}
.amss-has-mega:hover .amss-mega-dropdown {
	display: flex;
}
.amss-mega-col {
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 200px;
}
.amss-mega-label {
	position: relative;
	display: block;
	background: #59595c;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 6px 20px 6px 12px;
	clip-path: polygon( 0 0, 100% 0, 85% 100%, 0 100% );
}
.amss-mega-group ul {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
}
.amss-mega-group li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
.amss-mega-group li::before {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	background: #8b1c1c;
}
.amss-mega-group a {
	display: block;
	color: #666;
	text-decoration: none;
	font-size: 0.875rem;
}
.amss-mega-group a:hover {
	text-decoration: underline;
	color: #333;
}

.amss-has-simple .amss-simple-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 240px;
	padding: 16px 20px;
	background: #fff;
	border: 7px solid #5a5a5a;
	box-shadow: 0 10px 28px rgba( 0, 0, 0, 0.25 );
	z-index: 200;
}
.amss-has-simple:hover .amss-simple-dropdown {
	display: block;
}
.amss-simple-dropdown ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.amss-simple-dropdown li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
.amss-simple-dropdown li::before {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	background: #8b1c1c;
}
.amss-simple-dropdown a {
	display: block;
	padding: 4px 0;
	color: #666;
	text-decoration: none;
	font-size: 0.8125rem;
	white-space: nowrap;
}
.amss-simple-dropdown a:hover {
	text-decoration: underline;
	color: #333;
}

/* Category grid (/products/ archive) */
.amss-category-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 220px, 1fr ) );
	gap: 20px;
	margin: 24px 0;
}
.amss-category-card {
	display: block;
	padding: 24px;
	background: #f7f7f7;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
}
.amss-category-card:hover {
	background: #eef3f7;
	border-color: #1a5276;
}
.amss-category-card h3 {
	margin: 0 0 6px;
	font-size: 1.125rem;
}
.amss-category-card span {
	font-size: 0.8125rem;
	color: #666;
}

/* Category listing (taxonomy archive) */
.amss-category-layout {
	display: flex;
	gap: 0;
	align-items: flex-start;
	margin: 0 0 24px;
}
#sidebar {
	flex: 0 0 240px;
	background: #f2f2f2;
	padding-bottom: 20px;
}
#product-parent {
	text-transform: uppercase;
	color: #004358;
	margin: 0;
	background: #e5e5e5;
	padding: 10px 0 8px 16px;
	font-size: 1rem;
}
#product-terms {
	list-style: none;
	margin: 10px 0 0;
	padding: 0 16px;
}
#product-terms li a {
	display: block;
	padding: 3px 0;
	color: #004358;
	text-decoration: none;
	font-size: 0.8125rem;
	font-weight: 700;
}
#product-terms li a:hover {
	text-decoration: underline;
}
.refine-search {
	background: #e4e4e4;
	margin: 16px;
	padding: 10px;
}
.refine-search strong {
	display: block;
	margin-bottom: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #333;
}
.refine-search label {
	display: block;
	margin-bottom: 4px;
}
.refine-search a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0055aa;
	text-decoration: none;
	font-size: 0.8125rem;
}
.refine-checkbox {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 1px solid #999;
	border-radius: 2px;
}
.refine-search a.checked .refine-checkbox {
	background: #004358;
	border-color: #004358;
	position: relative;
}
.refine-search a.checked .refine-checkbox::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate( 45deg );
}
.refine-search a.checked {
	font-weight: 700;
	color: #004358;
}

.amss-product-listing {
	flex: 1 1 auto;
	min-width: 0;
	padding-left: 40px;
}
.cluster-header {
	margin-bottom: 16px;
}
.cluster-header h1 {
	margin: 0 0 12px;
	text-transform: uppercase;
	color: #014358;
	font-size: 1.875rem;
}
.cluster-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	background: #f2f2f2;
	padding: 10px 16px;
	color: #5e5e5e;
	font-size: 0.75rem;
	font-weight: 700;
}
.product-list {
	display: flex;
	flex-direction: column;
}
.product-row {
	display: flex;
	gap: 32px;
	padding: 22px 0 28px;
	border-bottom: 1px solid #e6e6e6;
}
.product-row .thumbnail {
	flex: 0 0 140px;
	align-self: flex-start;
	border: 1px solid #e4e4e4;
	box-shadow: 0 0 8px #e4e4e4;
}
.product-row .thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}
.product-row .details {
	flex: 1 1 auto;
}
.product-row .details h3 {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 8px;
	font-size: 1.125rem;
}
.product-row .details h3 a {
	color: #014358;
	text-transform: uppercase;
	text-decoration: none;
}
.product-row .details h3 a:hover {
	text-decoration: underline;
}
.product-row .details h3 em {
	font-size: 0.75rem;
	font-weight: 700;
	color: #4e4e4e;
	font-style: italic;
	white-space: nowrap;
}
.product-row .details p {
	margin: 0 0 16px;
	font-size: 0.875rem;
	color: #333;
}
.btn-more-info {
	display: inline-block;
	background: #2e8b1a;
	border: 3px solid #fff;
	outline: 1px solid #cfe8c8;
	color: #fff;
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	padding: 10px 28px;
	border-radius: 8px;
}
.btn-more-info:hover {
	background: #256e15;
	color: #fff;
}

.pagination {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pagination li a {
	display: inline-block;
	padding: 0 4px;
	color: #666;
	text-decoration: underline;
	font-weight: normal;
}
.pagination li a:hover {
	font-weight: 700;
}
.pagination li.active a {
	text-decoration: none;
	font-weight: 700;
}
.pagination .pages-label {
	margin-right: 4px;
}
.pagination .arrow {
	display: inline-block;
	width: 0;
	height: 0;
	border-style: dashed;
	border-color: transparent;
	border-width: 6px;
	border-left: 8px solid #c5141c;
	vertical-align: middle;
}
.pagination .previous .arrow {
	border-left-color: transparent;
	border-right: 8px solid #c5141c;
}
.pagination .next.disabled .arrow {
	border-left-color: #e79296;
}
.pagination .previous.disabled .arrow {
	border-right-color: #e79296;
}

@media ( max-width: 782px ) {
	.amss-category-layout {
		flex-direction: column;
	}
	#sidebar {
		flex: 1 1 auto;
		margin-bottom: 24px;
	}
	.amss-product-listing {
		padding-left: 0;
	}
	.product-row {
		flex-direction: column;
	}
	.product-row .thumbnail {
		flex: 1 1 auto;
		width: 100%;
		align-self: stretch;
	}
}
