/* =========================================================
   RIVET & HIDE — MAIN STYLESHEET
   ========================================================= */

/* ---- Design Tokens ---- */
:root {
	--rh-color-primary: #7a2e1d;
	--rh-color-accent: #b08d57;
	--rh-color-bg: #ece5d6;
	--rh-color-surface: #ffffff;
	--rh-color-text: #231c16;
	--rh-header-bg: #1c1712;
	--rh-header-text: #f1ece3;

	--rh-font-heading: 'Bitter', Georgia, serif;
	--rh-font-body: 'Work Sans', Helvetica, Arial, sans-serif;
	--rh-font-base-size: 16px;

	--rh-header-padding-y: 22px;
	--rh-header-padding-x: 40px;
	--rh-logo-width: 160px;
	--rh-container-width: 1280px;

	--rh-radius: 2px;
	--rh-border: #d7cdb8;
	--rh-muted: #6b5f4e;
}

/* =========================================================
   RESET & BASE
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--rh-color-bg);
	color: var(--rh-color-text);
	font-family: var(--rh-font-body);
	font-size: var(--rh-font-base-size);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--rh-font-heading);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 .5em;
}

p {
	margin: 0 0 1em;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: #000;
	color: #fff;
	padding: 10px 16px;
	z-index: 999;
}

.skip-link:focus {
	left: 10px;
	top: 10px;
}

:focus-visible {
	outline: 2px solid var(--rh-color-primary);
	outline-offset: 2px;
}

.rh-container {
	max-width: var(--rh-container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.rh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 28px;
	font-family: var(--rh-font-body);
	font-weight: 600;
	font-size: .95rem;
	border-radius: var(--rh-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		background-color .15s ease,
		color .15s ease,
		border-color .15s ease;
}

.rh-btn--primary {
	background: var(--rh-color-primary);
	color: #fff;
}

.rh-btn--primary:hover {
	background: color-mix(
		in srgb,
		var(--rh-color-primary) 85%,
		black
	);
}

.rh-btn--outline {
	background: transparent;
	border-color: currentColor;
}

.rh-btn--lg {
	padding: 16px 36px;
	font-size: 1.05rem;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.rh-topbar {
	background: var(--rh-color-primary);
	color: #fff;
	font-size: .82rem;
}

.rh-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 24px;
	gap: 16px;
}

.rh-topbar__msg {
	margin: 0;
}

.rh-topbar__phone {
	font-weight: 600;
	white-space: nowrap;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
	background: var(--rh-header-bg);
	color: var(--rh-header-text);
	position: relative;
	z-index: 40;
}

.has-sticky-header .site-header {
	position: sticky;
	top: 0;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: var(--rh-header-padding-y) var(--rh-header-padding-x);
}

.site-header__logo img {
	width: var(--rh-logo-width);
	max-width: 100%;
	height: auto;
}

.site-header .site-title a {
	font-family: var(--rh-font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--rh-header-text);
	letter-spacing: .02em;
}

.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.primary-menu {
	display: flex;
	gap: 32px;
}

.primary-menu > li {
	position: relative;
}

.primary-menu > li > a {
	color: var(--rh-header-text);
	font-weight: 600;
	font-size: .95rem;
	padding: 8px 0;
	display: inline-block;
}

.primary-menu > li > a:hover {
	color: var(--rh-color-accent);
}

.primary-menu li ul {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--rh-color-surface);
	color: var(--rh-color-text);
	min-width: 220px;
	padding: 10px 0;
	box-shadow: 0 12px 24px rgba(0,0,0,.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .15s ease;
	border-radius: var(--rh-radius);
}

.primary-menu li:hover > ul,
.primary-menu li:focus-within > ul,
.primary-menu > li.is-open > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu li ul a {
	display: block;
	padding: 8px 20px;
	color: var(--rh-color-text);
}

.primary-menu li ul a:hover {
	background: var(--rh-color-bg);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rh-icon-btn {
	position: relative;
	background: none;
	border: none;
	color: var(--rh-header-text);
	cursor: pointer;
	padding: 4px;
	display: inline-flex;
}

.rh-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--rh-color-accent);
	color: #1c1712;
	font-size: .65rem;
	font-weight: 700;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rh-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

.rh-mobile-toggle span {
	width: 22px;
	height: 2px;
	background: var(--rh-header-text);
}

.rh-search-panel {
	background: var(--rh-header-bg);
	border-top: 1px solid rgba(255,255,255,.15);
	padding: 16px 0;
}

.rh-search-panel[hidden] {
	display: none;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.rh-mobile-menu {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(320px, 85vw);
	background: var(--rh-color-surface);
	z-index: 60;
	padding: 90px 24px 24px;
	overflow-y: auto;
	box-shadow: -10px 0 30px rgba(0,0,0,.2);
}

.rh-mobile-menu[hidden] {
	display: none;
}

.mobile-menu li {
	border-bottom: 1px solid var(--rh-border);
}

.rh-mobile-menu__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rh-mobile-menu__row a {
	display: block;
	padding: 14px 4px;
	font-weight: 600;
	flex: 1;
}

.rh-mobile-menu__expand {
	background: none;
	border: none;
	width: 36px;
	height: 36px;
	font-size: 1.2rem;
	cursor: pointer;
	color: var(--rh-color-text);
}

.rh-mobile-menu__expand.is-open span {
	display: inline-block;
	transform: rotate(45deg);
}

.rh-mobile-submenu {
	padding-left: 16px;
}

.rh-mobile-submenu[hidden] {
	display: none;
}

.rh-mobile-submenu a {
	padding: 12px 4px;
	font-weight: 500;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */

.rh-breadcrumbs,
.woocommerce-breadcrumb {
	background: transparent;
	font-size: .82rem;
	color: var(--rh-muted);
	padding: 16px 0;
}

.rh-breadcrumbs a,
.woocommerce-breadcrumb a {
	color: var(--rh-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rh-breadcrumbs .sep,
.woocommerce-breadcrumb .sep {
	margin: 0 8px;
}

.rh-breadcrumbs .current {
	color: var(--rh-color-text);
}

/* =========================================================
   HERO
   ========================================================= */

.rh-hero {
	position: relative;
	background-color: var(--rh-header-bg);
	background-size: cover;
	background-position: center;
	min-height: 560px;
	display: flex;
	align-items: center;
	color: #fff;
}

.rh-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(15,10,7,.78) 0%,
		rgba(15,10,7,.35) 55%,
		rgba(15,10,7,.15) 100%
	);
}

.rh-hero__inner {
	position: relative;
	max-width: 620px;
}

.rh-hero__eyebrow {
	text-transform: none;
	letter-spacing: .03em;
	color: var(--rh-color-accent);
	font-weight: 600;
	margin-bottom: 12px;
}

.rh-hero__heading {
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	margin-bottom: 18px;
}

.rh-hero__sub {
	font-size: 1.1rem;
	max-width: 480px;
	margin-bottom: 28px;
	color: #ece5d6;
}

/* =========================================================
   GENERIC SECTIONS
   ========================================================= */

.rh-section {
	padding: 72px 0;
}

.rh-section__title {
	font-size: 1.8rem;
	margin-bottom: 32px;
}

.rh-section__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 24px;
}

.rh-section__header .rh-section__title {
	margin-bottom: 0;
}

.rh-link-arrow {
	font-weight: 600;
	border-bottom: 1px solid currentColor;
}

/* =========================================================
   HOMEPAGE — SHOP BY CATEGORY
   ========================================================= */

.rh-categories {
	padding-top: 55px;
	padding-bottom: 55px;
}

.rh-categories .rh-container {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	padding-left: 18px;
	padding-right: 18px;
	box-sizing: border-box;
}

/* MAIN GRID */
.rh-categories__grid {
	display: grid !important;

	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	grid-template-rows: 360px 280px !important;

	gap: 14px !important;

	width: 100% !important;
	max-width: 1100px !important;

	margin: 0 auto !important;
}

/* ALL CARDS */
.rh-category-card {
	position: relative !important;

	display: block !important;

	width: 100% !important;
	height: 100% !important;

	min-width: 0 !important;
	min-height: 0 !important;

	overflow: hidden !important;

	text-decoration: none !important;

	background: #e9e4dc !important;
}

/* TOP LEFT */
.rh-category-card:nth-child(1) {
	grid-column: 1 !important;
	grid-row: 1 !important;
}

/* TOP RIGHT */
.rh-category-card:nth-child(2) {
	grid-column: 2 !important;
	grid-row: 1 !important;
}

/* BOTTOM WIDE */
.rh-category-card:nth-child(3) {
	grid-column: 1 / 3 !important;
	grid-row: 2 !important;
}

/* IMAGE */
.rh-category-card__img {
	position: absolute !important;
	inset: 0 !important;

	width: 100% !important;
	height: 100% !important;

	display: block !important;

	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;

	transition: transform 0.35s ease !important;
}

.rh-category-card:hover .rh-category-card__img {
	transform: scale(1.04);
}

/* OVERLAY */
.rh-category-card::after {
	content: "" !important;

	position: absolute !important;
	inset: 0 !important;

	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.68),
		rgba(0, 0, 0, 0.05) 65%
	) !important;

	pointer-events: none !important;
}

/* LABEL */
.rh-category-card__label {
	position: absolute !important;

	left: 24px !important;
	bottom: 20px !important;

	z-index: 3 !important;

	color: #fff !important;

	font-family: var(--rh-font-heading) !important;
	font-size: 1.35rem !important;
	font-weight: 700 !important;

	padding: 0 !important;
	background: transparent !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

	.rh-categories__grid {
		grid-template-rows: 300px 220px !important;
		gap: 12px !important;
	}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

	.rh-categories {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.rh-categories .rh-container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.rh-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-template-rows: 210px 160px !important;

		width: 100% !important;
		max-width: none !important;

		gap: 9px !important;
	}

	.rh-category-card__label {
		left: 15px !important;
		bottom: 14px !important;
		font-size: 1rem !important;
	}
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

	.rh-categories__grid {
		grid-template-rows: 185px 145px !important;
		gap: 8px !important;
	}
}
/* =========================================================
   PRODUCT GRID / CARDS
   ========================================================= */

.rh-product-grid,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(var(--rh-cols, 4), 1fr);
	gap: 28px 24px;
}

.rh-shop-columns-2 {
	--rh-cols: 2;
}

.rh-shop-columns-3 {
	--rh-cols: 3;
}

.rh-shop-columns-4 {
	--rh-cols: 4;
}

.rh-shop-columns-5 {
	--rh-cols: 5;
}

.rh-product-card,
li.product {
	background: var(--rh-color-surface);
	border: 1px solid var(--rh-border);
	border-radius: var(--rh-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.rh-product-card__media {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	background: #f1ece3;
}

.rh-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rh-product-card__quickadd {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--rh-header-bg);
	color: #fff;
	text-align: center;
	padding: 12px;
	font-weight: 600;
	font-size: .85rem;
	transform: translateY(100%);
	transition: transform .2s ease;
}

.rh-product-card__media:hover .rh-product-card__quickadd {
	transform: translateY(0);
}

.rh-product-card__body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.rh-product-card__body h2,
.rh-product-card__body h3 {
	font-size: 1rem;
	margin-bottom: 6px;
}

.rh-product-card__body .price {
	color: var(--rh-color-primary);
	font-weight: 700;
	margin-top: auto;
}

.rh-product-card .onsale,
li.product .onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--rh-color-accent);
	color: #1c1712;
	font-size: .72rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	z-index: 2;
}

.star-rating {
	color: var(--rh-color-accent);
	font-size: .85rem;
	margin-bottom: 4px;
}

/* =========================================================
   SHOP LAYOUT
   ========================================================= */

.rh-shop-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding: 32px 0 72px;
}

.has-sidebar .rh-shop-layout {
	grid-template-columns: 260px 1fr;
}

.has-sidebar .rh-shop-layout .rh-shop-main {
	order: 2;
}

.has-sidebar .rh-shop-layout .rh-shop-sidebar {
	order: 1;
}

.rh-shop-sidebar .widget {
	margin-bottom: 32px;
}

.rh-shop-sidebar .widget-title {
	font-size: 1rem;
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--rh-color-accent);
}

.woocommerce-ordering,
.woocommerce-result-count {
	font-size: .9rem;
}

.woocommerce-ordering select {
	padding: 8px 12px;
	border: 1px solid var(--rh-border);
	border-radius: var(--rh-radius);
}

/* =========================================================
   ARCHIVE
   ========================================================= */

.rh-archive-banner {
	position: relative;
	min-height: 220px;
	display: flex;
	align-items: flex-end;
	background-color: var(--rh-header-bg);
	background-size: cover;
	background-position: center;
	margin-bottom: 32px;
	border-radius: var(--rh-radius);
	overflow: hidden;
}

.rh-archive-banner__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0,0,0,0) 30%,
		rgba(0,0,0,.6) 100%
	);
}

.rh-archive-banner__text {
	position: relative;
	padding: 24px 28px;
	color: #fff;
}

.rh-archive-banner__text h1 {
	margin: 0;
	font-size: 2rem;
}

.term-description {
	color: var(--rh-muted);
	max-width: 760px;
	margin: 0 0 32px;
}

/* =========================================================
   TRUST BADGES
   ========================================================= */

.rh-trust-badges {
	margin: 18px 0 0;
	padding: 0;
}

.rh-trust-badges li {
	position: relative;
	padding-left: 22px;
	font-size: .88rem;
	color: var(--rh-muted);
	margin-bottom: 6px;
}

.rh-trust-badges li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--rh-color-primary);
	font-weight: 700;
}

/* =========================================================
   STICKY MOBILE ADD TO CART
   ========================================================= */

.rh-sticky-atc {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	background: var(--rh-color-surface);
	border-top: 1px solid var(--rh-border);
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 16px;
	box-shadow: 0 -6px 20px rgba(0,0,0,.12);
	transform: translateY(100%);
	transition: transform .2s ease;
}

.rh-sticky-atc.is-visible {
	transform: translateY(0);
}

.rh-sticky-atc__info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.rh-sticky-atc__title {
	font-size: .82rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rh-sticky-atc__price {
	font-size: .85rem;
	color: var(--rh-color-primary);
	font-weight: 700;
}

.rh-sticky-atc__btn {
	padding: 11px 20px;
	flex-shrink: 0;
}

/* =========================================================
   SINGLE PRODUCT
   ========================================================= */

.single-product .rh-shop-layout {
	grid-template-columns: 1fr;
}

.summary.entry-summary {
	max-width: 640px;
}

.product_title {
	font-size: 2rem;
	margin-bottom: 12px;
}

.woocommerce-product-details__short-description {
	margin: 16px 0;
	color: var(--rh-muted);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--rh-color-primary);
	font-size: 1.4rem;
	font-weight: 700;
}

.rh-product-gallery-wrap {
	margin-bottom: 24px;
}

.rh-size-guide-toggle {
	background: none;
	border: none;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	font-size: .85rem;
	margin: 8px 0 16px;
	padding: 0;
}

.variations td,
.variations th {
	padding: 8px 0;
}

table.variations select {
	padding: 10px;
	border: 1px solid var(--rh-border);
	border-radius: var(--rh-radius);
	min-width: 180px;
}

.single_add_to_cart_button {
	padding: 16px 36px !important;
	font-size: 1rem !important;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 28px;
	border-bottom: 1px solid var(--rh-border);
	margin: 48px 0 24px;
	padding: 0;
}

.woocommerce-tabs ul.tabs li {
	list-style: none;
}

.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 10px 0;
	font-weight: 600;
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--rh-color-primary);
	border-bottom: 2px solid var(--rh-color-primary);
}

.related.products {
	margin-top: 72px;
}

.related.products > h2 {
	font-size: 1.6rem;
	margin-bottom: 24px;
}
/* =========================================================
   SINGLE PRODUCT — TWO COLUMN LAYOUT
   ========================================================= */

.single-product .rh-single-product-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 55%) minmax(0, 45%) !important;
	gap: 0 !important;
	width: 100% !important;
	max-width: 1200px !important;
	margin: 0 auto !important;
	align-items: start !important;
}

.single-product .rh-product-gallery-wrap {
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 40px 0 0 !important;
	float: none !important;
}

.single-product .rh-single-product-layout > .summary.entry-summary {
	grid-column: 2 !important;
	grid-row: 1 !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

/* WooCommerce gallery */

.single-product .rh-product-gallery-wrap .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.single-product .rh-product-gallery-wrap .woocommerce-product-gallery__wrapper {
	width: 100% !important;
	margin: 0 !important;
}

.single-product .rh-product-gallery-wrap .woocommerce-product-gallery__image {
	width: 100% !important;
}

.single-product .rh-product-gallery-wrap .woocommerce-product-gallery__image img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
}

/* Thumbnails */

.single-product .rh-product-gallery-wrap .flex-control-thumbs {
	display: flex !important;
	gap: 10px !important;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.single-product .rh-product-gallery-wrap .flex-control-thumbs li {
	width: 90px !important;
	margin: 0 !important;
	float: none !important;
}

.single-product .rh-product-gallery-wrap .flex-control-thumbs li img {
	width: 90px !important;
	height: 90px !important;
	object-fit: cover !important;
	display: block !important;
}


/* MOBILE */

@media (max-width: 782px) {

	.single-product .rh-single-product-layout {
		grid-template-columns: 1fr !important;
	}

	.single-product .rh-product-gallery-wrap {
		grid-column: 1 !important;
		grid-row: 1 !important;
		padding: 0 !important;
	}

	.single-product .rh-single-product-layout > .summary.entry-summary {
		grid-column: 1 !important;
		grid-row: 2 !important;
		margin-top: 30px !important;
	}

}
/* =========================================================
   CART / CHECKOUT
   ========================================================= */

table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
}

table.shop_table th,
table.shop_table td {
	padding: 14px;
	border-bottom: 1px solid var(--rh-border);
	text-align: left;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce form .input-text {
	padding: 12px;
	border: 1px solid var(--rh-border);
	border-radius: var(--rh-radius);
	width: 100%;
}

/* =========================================================
   USP
   ========================================================= */

.rh-usp {
	background: var(--rh-color-surface);
	padding: 48px 0;
}

.rh-usp__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.rh-usp__item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rh-usp__icon {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	color: var(--rh-color-primary);
}

.rh-usp__item strong {
	display: block;
	font-size: .95rem;
}

.rh-usp__item span {
	font-size: .82rem;
	color: var(--rh-muted);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.rh-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.rh-testimonial {
	margin: 0;
	padding: 28px;
	background: var(--rh-color-surface);
	border-left: 3px solid var(--rh-color-accent);
	border-radius: var(--rh-radius);
}

.rh-testimonial p {
	font-style: italic;
}

.rh-testimonial cite {
	font-style: normal;
	font-weight: 600;
	font-size: .85rem;
	color: var(--rh-muted);
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

.rh-newsletter {
	background: var(--rh-header-bg);
	color: #fff;
	padding: 56px 0;
}

.rh-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.rh-newsletter h2 {
	margin-bottom: 6px;
}

.rh-newsletter p {
	margin: 0;
	color: #cfc6b6;
}

.rh-newsletter__form {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.rh-newsletter__form input {
	padding: 13px 16px;
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(255,255,255,.05);
	color: #fff;
	border-radius: var(--rh-radius);
	min-width: 260px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
	background: var(--rh-header-bg);
	color: #d8d0c0;
	padding-top: 56px;
}

.rh-footer__columns {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 32px;
	padding-bottom: 40px;
}

.rh-footer__brand .site-title {
	color: #fff;
	font-family: var(--rh-font-heading);
	font-size: 1.4rem;
}

.rh-footer__col .widget-title,
.rh-footer__col h4 {
	color: #fff;
	font-size: .95rem;
	margin-bottom: 16px;
}

.footer-menu li,
.rh-footer__col .widget li {
	margin-bottom: 10px;
}

.footer-menu a {
	color: #d8d0c0;
}

.rh-social {
	display: flex;
	gap: 14px;
	margin-top: 16px;
}

.rh-social a {
	text-decoration: underline;
	text-underline-offset: 3px;
	font-size: .85rem;
}

.rh-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 20px 0;
	font-size: .82rem;
	flex-wrap: wrap;
	gap: 12px;
}

.rh-payment-icons span {
	margin-left: 12px;
	opacity: .6;
}

/* =========================================================
   BLOG / PAGES
   ========================================================= */

.rh-page-content {
	padding: 48px 0 80px;
}

.rh-page-content--narrow {
	max-width: 800px;
}

.rh-page-title {
	font-size: 2rem;
	margin-bottom: 24px;
}

.rh-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.rh-post-card__thumb {
	display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
	margin-bottom: 14px;
	border-radius: var(--rh-radius);
}

.rh-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =========================================================
   SEARCH
   ========================================================= */

.rh-search-form {
	display: flex;
	max-width: 480px;
	margin: 0 auto;
}

.rh-search-form__input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(255,255,255,.06);
	color: inherit;
	border-radius: var(--rh-radius) 0 0 var(--rh-radius);
}

.rh-search-form__submit {
	background: var(--rh-color-primary);
	color: #fff;
	border: none;
	padding: 0 18px;
	border-radius: 0 var(--rh-radius) var(--rh-radius) 0;
	cursor: pointer;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rh-product-grid,
	ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}

	.rh-usp__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rh-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rh-footer__columns {
		grid-template-columns: 1fr 1fr;
	}

	.has-sidebar .rh-shop-layout {
		grid-template-columns: 220px 1fr;
	}

}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 782px) {

	:root {
		--rh-header-padding-x: 20px;
	}

	.single-product .rh-sticky-atc {
		display: flex;
	}

	.single-product .rh-shop-main {
		padding-bottom: 90px;
	}

	.main-navigation,
	.site-header__actions .rh-icon-btn.rh-account-link {
		display: none;
	}

	.rh-mobile-toggle {
		display: flex;
	}

	.site-header__inner {
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.rh-topbar__inner {
		flex-direction: column;
		gap: 4px;
		text-align: center;
	}

	.rh-hero {
		min-height: 440px;
		text-align: left;
	}

	/* CATEGORY MOBILE */
	.rh-categories {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.rh-categories__grid {
		width: 100% !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		grid-template-rows: auto 180px !important;
		gap: 8px !important;
	}

	.rh-category-card {
		aspect-ratio: 1 / 1 !important;
	}

	.rh-category-card:nth-child(1) {
		grid-column: 1 !important;
		grid-row: 1 !important;
	}

	.rh-category-card:nth-child(2) {
		grid-column: 2 !important;
		grid-row: 1 !important;
	}

	.rh-category-card:nth-child(3) {
		grid-column: 1 / 3 !important;
		grid-row: 2 !important;
		aspect-ratio: auto !important;
		height: 180px !important;
	}

	.rh-category-card__label {
		left: 16px !important;
		bottom: 16px !important;
		font-size: 1.1rem !important;
	}

	.rh-product-grid,
	ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 16px !important;
	}

	.rh-usp__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.rh-testimonials__grid {
		grid-template-columns: 1fr;
	}

	.rh-newsletter__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.rh-newsletter__form {
		width: 100%;
	}

	.rh-newsletter__form input {
		min-width: 0;
		flex: 1;
	}

	.rh-footer__columns {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.has-sidebar .rh-shop-layout {
		grid-template-columns: 1fr;
	}

	.has-sidebar .rh-shop-layout .rh-shop-main {
		order: 1;
	}

	.has-sidebar .rh-shop-layout .rh-shop-sidebar {
		order: 2;
	}

	.rh-post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.rh-footer__bottom {
		flex-direction: column;
		text-align: center;
	}

}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.rh-container {
		padding-left: 12px;
		padding-right: 12px;
	}

	.rh-hero__heading {
		font-size: 1.8rem;
	}

	.rh-categories__grid {
		grid-template-columns: 1fr 1fr !important;
		grid-template-rows: auto 140px !important;
		gap: 6px !important;
	}

	.rh-category-card:nth-child(3) {
		height: 140px !important;
	}

	.rh-category-card__label {
		left: 12px !important;
		bottom: 12px !important;
		font-size: .95rem !important;
	}

	.rh-product-grid,
	ul.products {
		grid-template-columns: 1fr !important;
	}

	.rh-footer__columns {
		grid-template-columns: 1fr;
	}

	.rh-post-grid {
		grid-template-columns: 1fr;
	}

	.woocommerce-tabs ul.tabs {
		flex-wrap: wrap;
		gap: 16px;
	}

}
.rh-category-card__label {
	display: none !important;
}
/* =========================================================
   FEATURED PRODUCTS — FINAL CARD STYLE
   ========================================================= */

/* Portrait image */
.rh-featured .rh-featured-product__image {
	position: relative !important;
	display: block !important;

	width: 100% !important;
	aspect-ratio: 3 / 4 !important;

	margin: 0 !important;
	padding: 0 !important;

	background: transparent !important;
	border: none !important;
	box-shadow: none !important;

	overflow: hidden !important;
}

/* Both images */
.rh-featured .rh-featured-product__image img {
	position: absolute !important;

	top: 0 !important;
	left: 0 !important;

	width: 100% !important;
	height: 100% !important;

	object-fit: contain !important;

	margin: 0 !important;
	padding: 0 !important;

	background: transparent !important;
	border: none !important;

	transition:
		opacity .35s ease,
		transform .35s ease !important;
}

/* Primary visible */
.rh-featured .rh-featured-product__img--primary {
	opacity: 1 !important;
	z-index: 1 !important;
}

/* Secondary hidden */
.rh-featured .rh-featured-product__img--secondary {
	opacity: 0 !important;
	z-index: 2 !important;
}

/* Secondary appears on hover */
.rh-featured .rh-featured-product__image.has-secondary-image:hover
.rh-featured-product__img--primary {
	opacity: 0 !important;
	transform: scale(1.08) !important;
}

.rh-featured .rh-featured-product__image.has-secondary-image:hover
.rh-featured-product__img--secondary {
	opacity: 1 !important;
	transform: scale(1.08) !important;
}

/* If product has NO secondary image, keep zoom */
.rh-featured .rh-featured-product__image:not(.has-secondary-image):hover
.rh-featured-product__img--primary {
	transform: scale(1.08) !important;
}


/* =========================================================
   TITLE — CLOSE TO IMAGE
   ========================================================= */

.rh-featured .rh-featured-product__info {
	margin: 0 !important;
	padding: 5px 0 0 !important;

	background: transparent !important;
	border: none !important;
}

/* Title */
.rh-featured .rh-featured-product__title {
	margin: 0 0 3px !important;
	padding: 0 !important;

	font-size: .95rem !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;

	background: transparent !important;
	border: none !important;
}

.rh-featured .rh-featured-product__title a {
	color: var(--rh-color-text) !important;
	background: transparent !important;
}


/* =========================================================
   PRICE — BOLD RED
   ========================================================= */

.rh-featured .rh-featured-product__price {
	margin: 0 0 9px !important;
	padding: 0 !important;

	color: #c62828 !important;

	font-size: 1rem !important;
	font-weight: 800 !important;

	line-height: 1.2 !important;

	background: transparent !important;
	border: none !important;
}

.rh-featured .rh-featured-product__price ins {
	color: #c62828 !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	background: transparent !important;
}

.rh-featured .rh-featured-product__price del {
	color: #777 !important;
	font-weight: 500 !important;
	opacity: .65 !important;
}


/* =========================================================
   ADD TO CART
   ========================================================= */

.rh-featured .rh-featured-product__add-to-cart {
	display: block !important;

	width: 100% !important;

	margin: 0 !important;
	padding: 10px 12px !important;

	background: #1c1712 !important;
	color: #fff !important;

	border: none !important;
	border-radius: 0 !important;

	text-align: center !important;

	font-size: .78rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;

	text-decoration: none !important;

	transition:
		background .2s ease,
		transform .2s ease !important;
}

.rh-featured .rh-featured-product__add-to-cart:hover {
	background: #c62828 !important;
	color: #fff !important;

	transform: translateY(-1px) !important;
}


/* =========================================================
   REMOVE ALL WHITE BOXES
   ========================================================= */

.rh-featured li.rh-featured-product,
.rh-featured .rh-featured-product__image,
.rh-featured .rh-featured-product__info,
.rh-featured .rh-featured-product__image img {
	background-color: transparent !important;
	background: transparent !important;

	border: none !important;
	box-shadow: none !important;
}


/* MOBILE */
@media (max-width: 782px) {

	.rh-featured .rh-featured-product__image {
		aspect-ratio: 3 / 4 !important;
	}

	.rh-featured .rh-featured-product__info {
		padding-top: 4px !important;
	}

	.rh-featured .rh-featured-product__title {
		font-size: .87rem !important;
	}

	.rh-featured .rh-featured-product__price {
		font-size: .9rem !important;
		margin-bottom: 7px !important;
	}

	.rh-featured .rh-featured-product__add-to-cart {
		padding: 9px 8px !important;
		font-size: .72rem !important;
	}
}
/* =========================================================
   FEATURED PRODUCTS — EXTREME CENTER HEADING
   ========================================================= */

.rh-featured .rh-featured__header {
	display: flex !important;
	width: 100% !important;

	justify-content: center !important;
	align-items: center !important;

	text-align: center !important;

	margin-left: auto !important;
	margin-right: auto !important;
}

.rh-featured .rh-featured__header .rh-section__title {
	display: block !important;

	width: 100% !important;

	margin: 0 auto !important;
	padding: 0 !important;

	text-align: center !important;
}
/* =========================================================
   HOMEPAGE — EXTRA TIGHT SPACING
   ========================================================= */

/* Categories */
.rh-categories {
	padding-top: 25px !important;
	padding-bottom: 10px !important;
}

.rh-categories .rh-section__title {
	margin-bottom: 15px !important;
}

/* Featured Products */
.rh-featured {
	padding-top: 10px !important;
	padding-bottom: 35px !important;
}

.rh-featured .rh-featured__header {
	margin-top: 0 !important;
	margin-bottom: 16px !important;
	padding: 0 !important;
}

.rh-featured .rh-featured__header .rh-section__title {
	margin: 0 auto !important;
	padding: 0 !important;
}

/* Product grid starts immediately after heading */
.rh-featured .rh-product-grid {
	margin-top: 0 !important;
	padding-top: 0 !important;
}


/* MOBILE */
@media (max-width: 782px) {

	.rh-categories {
		padding-top: 20px !important;
		padding-bottom: 5px !important;
	}

	.rh-categories .rh-section__title {
		margin-bottom: 12px !important;
	}

	.rh-featured {
		padding-top: 8px !important;
		padding-bottom: 25px !important;
	}

	.rh-featured .rh-featured__header {
		margin-bottom: 13px !important;
	}
}
/* =========================================================
   TRUST BAR — BLACK PREMIUM STYLE
   ========================================================= */

/* Trust bar title */
.rh-usp .rh-section__title {
	color: #000 !important;
	text-align: center !important;
	margin-bottom: 25px !important;
}

/* Trust bar grid */
.rh-usp .rh-usp__grid {
	gap: 16px !important;
}

/* All 4 trust boxes */
.rh-usp .rh-usp__item {
	background: #fff !important;

	border: 1px solid #000 !important;
	border-radius: 0 !important;

	box-shadow: none !important;

	padding: 22px 18px !important;

	text-align: center !important;
}

/* Box headings */
.rh-usp .rh-usp__item h3 {
	color: #000 !important;
	font-weight: 700 !important;
}

/* Box text */
.rh-usp .rh-usp__item p {
	color: #000 !important;
}

/* Icons */
.rh-usp .rh-usp__item svg,
.rh-usp .rh-usp__item i {
	color: #000 !important;
	fill: #000 !important;
}

/* Mobile */
@media (max-width: 782px) {

	.rh-usp .rh-usp__grid {
		gap: 10px !important;
	}

	.rh-usp .rh-usp__item {
		padding: 18px 12px !important;
	}
}
/* =========================================================
   TRUST BAR — PREMIUM ICONS
   ========================================================= */

/* Keep original icon structure clean */
.rh-usp .rh-usp__item svg,
.rh-usp .rh-usp__item i {
	color: #000 !important;
	fill: none !important;
	stroke: #000 !important;

	width: 34px !important;
	height: 34px !important;

	margin: 0 auto 12px !important;

	display: block !important;
}

/* If icons use SVG paths */
.rh-usp .rh-usp__item svg path,
.rh-usp .rh-usp__item svg line,
.rh-usp .rh-usp__item svg circle,
.rh-usp .rh-usp__item svg rect,
.rh-usp .rh-usp__item svg polyline,
.rh-usp .rh-usp__item svg polygon {
	fill: none !important;
	stroke: #000 !important;
	stroke-width: 1.6 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

/* Don't turn icon symbols into circles/boxes */
.rh-usp .rh-usp__item .icon,
.rh-usp .rh-usp__item .usp-icon {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* Premium subtle hover */
.rh-usp .rh-usp__item:hover svg,
.rh-usp .rh-usp__item:hover i {
	transform: translateY(-2px) !important;
	transition: transform .2s ease !important;
}
/* =========================================================
   HOMEPAGE INFORMATION / EDITORIAL BOX
   ========================================================= */

.rh-editorial {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.rh-editorial__box {
	width: 100% !important;

	background: #fff !important;

	border: 1px solid #111 !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;

	padding: 42px 55px !important;

	text-align: center !important;
}

/* Heading */
.rh-editorial__title {
	margin: 0 0 16px !important;
	padding: 0 !important;

	color: #000 !important;

	font-family: var(--rh-font-heading) !important;
	font-size: 1.65rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;

	text-align: center !important;
}

/* Text */
.rh-editorial__text {
	max-width: 900px !important;

	margin: 0 auto !important;
	padding: 0 !important;

	color: #222 !important;

	font-family: var(--rh-font-body) !important;
	font-size: .98rem !important;
	font-weight: 400 !important;
	line-height: 1.75 !important;

	text-align: center !important;
}

.rh-editorial__text p {
	margin: 0 0 10px !important;
}

.rh-editorial__text p:last-child {
	margin-bottom: 0 !important;
}


/* MOBILE */
@media (max-width: 782px) {

	.rh-editorial {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.rh-editorial__box {
		padding: 28px 20px !important;
	}

	.rh-editorial__title {
		font-size: 1.3rem !important;
		margin-bottom: 12px !important;
	}

	.rh-editorial__text {
		font-size: .9rem !important;
		line-height: 1.65 !important;
	}
}
/* =========================================================
   HOMEPAGE INFORMATION BOX — SCROLLABLE TEXT
   ========================================================= */

.rh-editorial__box {
	max-height: 430px !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;

	scroll-behavior: smooth !important;
}

/* Stylish scrollbar */
.rh-editorial__box::-webkit-scrollbar {
	width: 6px !important;
}

.rh-editorial__box::-webkit-scrollbar-track {
	background: #f1f1f1 !important;
	border-radius: 10px !important;
}

.rh-editorial__box::-webkit-scrollbar-thumb {
	background: #111 !important;
	border-radius: 10px !important;
}

.rh-editorial__box::-webkit-scrollbar-thumb:hover {
	background: #c62828 !important;
}

/* Firefox */
.rh-editorial__box {
	scrollbar-width: thin !important;
	scrollbar-color: #111 #f1f1f1 !important;
}


/* Links inside information text */
.rh-editorial__text a {
	color: #c62828 !important;
	font-weight: 600 !important;
	text-decoration: underline !important;
	text-underline-offset: 3px !important;
}

.rh-editorial__text a:hover {
	color: #111 !important;
}


/* MOBILE */
@media (max-width: 782px) {

	.rh-editorial__box {
		max-height: 350px !important;
		padding: 28px 20px !important;
	}
}
/* =========================================================
   INFORMATION BOX — COMPACT & BETTER SPACING
   ========================================================= */

.rh-editorial {
	padding-top: 22px !important;
	padding-bottom: 22px !important;
}

.rh-editorial__box {
	width: 100% !important;

	/* Smaller overall height */
	max-height: 300px !important;

	/* Proper spacing around content */
	padding: 28px 38px !important;

	overflow-y: auto !important;
	overflow-x: hidden !important;

	box-sizing: border-box !important;
}

/* Heading */
.rh-editorial__title {
	margin: 0 0 12px !important;
	padding: 0 !important;

	text-align: center !important;
}

/* Text — use much more of the box width */
.rh-editorial__text {
	width: 100% !important;
	max-width: none !important;

	margin: 0 !important;
	padding: 0 !important;

	text-align: center !important;

	line-height: 1.65 !important;
}

/* Paragraph spacing */
.rh-editorial__text p {
	margin: 0 0 8px !important;
}

.rh-editorial__text p:last-child {
	margin-bottom: 0 !important;
}


/* Stylish scrollbar */
.rh-editorial__box::-webkit-scrollbar {
	width: 5px !important;
}

.rh-editorial__box::-webkit-scrollbar-track {
	background: #eeeeee !important;
	border-radius: 10px !important;
}

.rh-editorial__box::-webkit-scrollbar-thumb {
	background: #111 !important;
	border-radius: 10px !important;
}

.rh-editorial__box::-webkit-scrollbar-thumb:hover {
	background: #c62828 !important;
}

.rh-editorial__box {
	scrollbar-width: thin !important;
	scrollbar-color: #111 #eeeeee !important;
}


/* MOBILE */
@media (max-width: 782px) {

	.rh-editorial {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}

	.rh-editorial__box {
		max-height: 260px !important;
		padding: 22px 20px !important;
	}

	.rh-editorial__title {
		margin-bottom: 10px !important;
	}

	.rh-editorial__text {
		line-height: 1.6 !important;
	}
}
/* =========================================================
CUSTOMER REVIEWS — PREMIUM HORIZONTAL REVIEW CAROUSEL
========================================================= */

.rh-testimonials {
padding-top: 35px !important;
padding-bottom: 45px !important;
}

/* Heading */
.rh-testimonials .rh-section__title {
width: 100% !important;
margin: 0 0 25px !important;
padding: 0 !important;
text-align: center !important;
color: #000 !important;
}

/* Horizontal viewport */
.rh-testimonials__viewport {
width: 100% !important;
overflow-x: auto !important;
overflow-y: hidden !important;
padding: 5px 2px 15px !important;

```
scroll-behavior: smooth !important;
scroll-snap-type: x mandatory !important;

-webkit-overflow-scrolling: touch !important;

scrollbar-width: thin !important;
scrollbar-color: #111 #eeeeee !important;
```

}

/* Chrome / Edge scrollbar */
.rh-testimonials__viewport::-webkit-scrollbar {
height: 5px !important;
}

.rh-testimonials__viewport::-webkit-scrollbar-track {
background: #eeeeee !important;
border-radius: 10px !important;
}

.rh-testimonials__viewport::-webkit-scrollbar-thumb {
background: #111 !important;
border-radius: 10px !important;
}

.rh-testimonials__viewport::-webkit-scrollbar-thumb:hover {
background: #c62828 !important;
}

/* Horizontal track */
.rh-testimonials__track {
display: flex !important;
flex-wrap: nowrap !important;
gap: 18px !important;

```
width: max-content !important;
align-items: stretch !important;
```

}

/* Individual review */
.rh-testimonials .rh-testimonial {
flex: 0 0 calc((100vw - 120px) / 4) !important;

```
min-width: 260px !important;
max-width: 340px !important;

margin: 0 !important;
padding: 25px 22px !important;

background: #fff !important;

border: 1px solid #111 !important;
border-radius: 0 !important;

box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06) !important;

display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;

scroll-snap-align: start !important;

box-sizing: border-box !important;

transition:
	transform .2s ease,
	box-shadow .2s ease !important;
```

}

/* Hover */
.rh-testimonials .rh-testimonial:hover {
transform: translateY(-3px) !important;
box-shadow: 0 7px 18px rgba(0, 0, 0, 0.10) !important;
}

/* Stars */
.rh-testimonial__stars {
margin: 0 0 15px !important;

```
color: #c62828 !important;

font-size: 17px !important;
letter-spacing: 2px !important;
line-height: 1 !important;
```

}

/* Review text */
.rh-testimonial__quote {
margin: 0 0 22px !important;
padding: 0 !important;

```
color: #222 !important;

font-family: var(--rh-font-body) !important;
font-size: .95rem !important;
font-weight: 400 !important;
line-height: 1.7 !important;

text-align: left !important;
```

}

/* Customer name */
.rh-testimonial__author {
display: flex !important;
align-items: center !important;
gap: 9px !important;

```
margin: 0 !important;
padding: 0 !important;
```

}

.rh-testimonial__author-line {
width: 22px !important;
height: 1px !important;

```
background: #111 !important;

flex-shrink: 0 !important;
```

}

.rh-testimonial__author cite {
margin: 0 !important;
padding: 0 !important;

```
color: #000 !important;

font-size: .82rem !important;
font-style: normal !important;
font-weight: 700 !important;
letter-spacing: .04em !important;
text-transform: uppercase !important;
```

}

/* Desktop — 4 cards */
@media (min-width: 1200px) {
.rh-testimonials .rh-testimonial {
flex-basis: 270px !important;
}
}

/* Laptop — 3 cards */
@media (max-width: 1199px) and (min-width: 783px) {
.rh-testimonials .rh-testimonial {
flex-basis: 300px !important;
}
}

/* Tablet */
@media (max-width: 782px) {

```
.rh-testimonials {
	padding-top: 25px !important;
	padding-bottom: 30px !important;
}

.rh-testimonials .rh-section__title {
	margin-bottom: 18px !important;
}

.rh-testimonials__viewport {
	padding-bottom: 13px !important;
}

.rh-testimonials__track {
	gap: 12px !important;
}

.rh-testimonials .rh-testimonial {
	flex: 0 0 78vw !important;
	min-width: 0 !important;
	max-width: none !important;

	padding: 21px 18px !important;
}

.rh-testimonial__quote {
	font-size: .9rem !important;
	line-height: 1.6 !important;
}
```

}

/* Small phones */
@media (max-width: 480px) {

```
.rh-testimonials .rh-testimonial {
	flex-basis: 84vw !important;
}

.rh-testimonial__stars {
	font-size: 15px !important;
}

.rh-testimonial__quote {
	font-size: .86rem !important;
}
