/* ==========================================================================
   FRONT PAGE REVAMP
   ========================================================================== */


/* ==========================================================================
   GLOBAL
   ========================================================================== */
.cd-hero-carousel,
.cd-hero-carousel *:not(svg):not(path),
.cd-top-picks,
.cd-top-picks *:not(svg):not(path),
.cd-best-sellers,
.cd-best-sellers *:not(svg):not(path),
.cd-section,
.cd-section *:not(svg):not(path),
.cd-section--reviews,
.cd-section--reviews *:not(svg):not(path),
.cd-section--styles,
.cd-section--styles *:not(svg):not(path),
.cd-products-grid,
.cd-products-grid *:not(svg):not(path) {
	font-family: "Inter", Arial, sans-serif !important;
}
.cd-main {
	overflow: hidden;
}

.cd-container {
	width: min(1840px, calc(100% - 75px));
	margin: 0 auto;
}

.cd-section-label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.55;
}


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

.cd-hero-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f5eee8;
}

.cd-hero-carousel__track {
	position: relative;
	width: 100%;
	aspect-ratio: 21 / 7;
}

.cd-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.cd-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.cd-hero-slide__link {
	display: block;
	width: 100%;
	height: 100%;
}

.cd-hero-slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

.cd-hero-slide__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* Hero arrows */

.cd-hero-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--cd-plum);
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 8px 25px rgba(49, 27, 38, 0.10);
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.cd-hero-carousel__arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.05);
}

.cd-hero-carousel__arrow--prev {
	left: 24px;
}

.cd-hero-carousel__arrow--next {
	right: 24px;
}


/* Hero dots */

.cd-hero-carousel__dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	z-index: 6;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.cd-hero-carousel__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition:
		width 0.25s ease,
		background 0.25s ease;
}

.cd-hero-carousel__dot.is-active {
	width: 26px;
	border-radius: 999px;
	background: var(--cd-plum);
}


/* ==========================================================================
   TOP PICKS
   ========================================================================== */

.cd-top-picks {
	padding: 40px 0;
	background: linear-gradient(180deg, #fbf6f8 0%, #f5eef1 100%);
}

.cd-top-picks__heading h2 {
	color: #311B26;
}

.cd-pick-card {
	box-shadow: 0 10px 26px rgba(49, 27, 38, 0.07);
}

.cd-top-picks__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.cd-top-picks__heading h2,
.cd-section-heading h2 {
	margin: 0;
	font-size: clamp(36px, 4vw, 54px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.cd-top-picks__heading p {
	max-width: 390px;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	opacity: 0.6;
}


.cd-top-picks__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}


.cd-pick-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 410px;
	overflow: hidden;
	border-radius: 24px;
	background: #f4eee9;
	color: #171717;
	text-decoration: none;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.cd-pick-card:hover {
	color: #171717;
	transform: translateY(-7px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.cd-pick-card__image {
	position: relative;
	flex: 1;
	min-height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 25px; */
	overflow: hidden;
}

.cd-pick-card__image::after {
	content: "";
	position: absolute;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
}

.cd-pick-card__image img {
	position: relative;
	z-index: 2;
	height: 230px;
	object-fit: contain;
	transition: transform 0.4s ease;
    border-radius: 14px;
}

.cd-pick-card:hover .cd-pick-card__image img {
	transform: scale(1.08) rotate(1deg);
}


.cd-pick-card__content {
	position: relative;
	padding: 22px;
	background: #311B26;
}

.cd-pick-card__content > span {
	display: block;
	margin-bottom: 6px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.7;
}

.cd-pick-card__content h3 {
	margin: 0;
	color: #fff;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.cd-pick-card__arrow {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	color: var(--cd-plum);
}


/* ==========================================================================
   BEST SELLERS
   ========================================================================== */

.cd-best-sellers {
	padding: 40px 0;
	background: linear-gradient(180deg, #fbf6f8 0%, #f5eef1 100%);
}

.cd-best-sellers .cd-section-heading h2 {
	color: #311B26;
}

.cd-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 45px;
}

.cd-section-heading p {
	max-width: 390px;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	opacity: 0.6;
}


/* Product grid */

.cd-products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}


/* Product card */

.cd-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(49, 27, 38, 0.07);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.cd-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* Product image */

.cd-product-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f3eee9;
}

.cd-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.cd-product-card:hover .cd-product-card__image img {
	transform: scale(1.03);
}


.cd-product-card__tag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--cd-plum);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}


/* Product content */

.cd-product-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 2px;
	padding: 20px;
}

.cd-product-card__category {
	margin-bottom: 7px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.45;
}

.cd-product-card__title {
	min-height: 25px;
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: -0.02em;
}


/* Rating */

.cd-product-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 18px;
	font-weight: 400;
	white-space: nowrap;
}

.cd-product-card__stars {
	font-size: 14px;
}

.cd-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}
/* Price */

.cd-product-card__price {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--cd-ink, #171717);
	transition: opacity 150ms ease;
}

.cd-product-card__price.is-updating {
	opacity: 0.45;
}

.cd-product-card__price-current {
	font-size: 20px;
	font-weight: 750;
	letter-spacing: -0.02em;
}

.cd-product-card__price ins {
	text-decoration: none;
}

.cd-product-card__price del {
	margin-right: 6px;
	opacity: 0.45;
	font-size: 0.8em;
	font-weight: 500;
}


/* Options (weight, flavour, or any future variation attribute —
   each renders as its own column here, side by side while there's
   room, wrapping to full width on narrow cards) */

.cd-product-card__options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
	gap: 10px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(23, 23, 23, 0.07);
}

.cd-product-card__option {
	min-width: 0;
}

.cd-product-card__option label,
.cd-product-card__weight label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	opacity: 0.5;
}

.cd-variation-select,
.cd-weight-select {
	width: 100%;
	height: 42px;
	padding: 0 30px 0 12px;
	border: 1px solid rgba(23, 23, 23, 0.14);
	border-radius: 10px;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23311B26' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 11px center;
	appearance: none;
	-webkit-appearance: none;
	font-size: 13px;
	font-weight: 600;
	color: var(--cd-ink, #171717);
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cd-variation-select:hover,
.cd-weight-select:hover {
	border-color: var(--cd-plum, #311B26);
}

.cd-variation-select:focus,
.cd-weight-select:focus,
.cd-variation-select:focus-visible,
.cd-weight-select:focus-visible {
	outline: none;
	border-color: var(--cd-plum, #311B26);
	box-shadow: 0 0 0 3px rgba(49, 27, 38, 0.14);
}

/* Legacy single-weight wrapper kept working for the homepage's
   current static markup — same visual treatment as the new grid. */
.cd-product-card__weight {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(23, 23, 23, 0.07);
}


/* Add cart */

.cd-add-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	min-height: 45px;
	margin-top: 14px;
	border: 0;
	border-radius: 11px;
	background: var(--cd-plum);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.cd-add-cart:hover,
.cd-add-cart:focus-visible {
	background: var(--cd-plum-dark);
	transform: translateY(-1px);
	outline: none;
}

.cd-add-cart:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}

.cd-add-cart.is-added {
	background: #4d684c;
}


/* Hidden products */

.cd-product-card--hidden {
	display: none;
}

.cd-product-card--visible {
	display: flex;
	animation: cdProductReveal 0.4s ease both;
}

@keyframes cdProductReveal {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* Load more */

.cd-load-more-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.cd-load-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 23px;
	border: 1px solid rgba(49, 27, 38, 0.18);
	border-radius: 999px;
	background: #fff;
	color: var(--cd-plum);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.cd-load-more:hover {
	background: var(--cd-plum);
	color: #fff;
}


/* ==========================================================================
   EXISTING STYLE SECTION
   ========================================================================== */

.cd-section {
	padding: 40px 0;
}


/* ==========================================================================
   REVIEWS
   ========================================================================== */

.cd-section--reviews {
	background: linear-gradient(180deg, #fbf6f8 0%, #f5eef1 100%);
}

.cd-section--reviews .cd-section-heading h2 {
	color: #311B26;
}

.cd-review {
	padding: 28px;
	border-radius: 18px;
	background: #311B26;
}

.cd-review p {
	margin: 0 0 22px;
	color: #fff;
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.85;
}

.cd-review h3 {
	margin: 0;
	color: #fff;
	font-size: 16px;
}


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

@media (max-width: 1100px) {

	.cd-container {
		width: min(100% - 40px, 960px);
	}




}


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

@media (max-width: 700px) {

	.cd-container {
		width: calc(100% - 32px);
	}


	/* Hero — taller aspect ratio on mobile since the client's mobile
	   banner image is portrait-oriented, unlike the wide desktop one. */

	.cd-hero-carousel__track {
		aspect-ratio: 6 / 7;
	}

	.cd-hero-carousel__arrow {
		top: 50%;
		bottom: auto;
		width: 40px;
		height: 40px;
		transform: translateY(-50%);
	}

	.cd-hero-carousel__arrow:hover {
		transform: translateY(-50%) scale(1.05);
	}

	.cd-hero-carousel__arrow--prev {
		left: 14px;
	}

	.cd-hero-carousel__arrow--next {
		right: 14px;
	}

	.cd-hero-carousel__dots {
		bottom: 18px;
	}


	/* Top picks */

	.cd-top-picks,
	.cd-best-sellers,
	.cd-section {
		padding: 65px 0;
	}

	.cd-top-picks__heading,
	.cd-section-heading {
		display: block;
		margin-bottom: 28px;
	}

	.cd-top-picks__heading p,
	.cd-section-heading p {
		margin-top: 15px;
		font-size: 14px;
	}



	.cd-pick-card {
		min-height: 280px;
		border-radius: 17px;
	}

	.cd-pick-card__image {
		min-height: 175px;
		padding: 12px;
	}

	.cd-pick-card__image img {
		height: 165px;
	}

	.cd-pick-card__image::after {
		width: 130px;
		height: 130px;
	}

	.cd-pick-card__content {
		padding: 15px;
	}

	.cd-pick-card__content h3 {
		font-size: 16px;
	}

	.cd-pick-card__arrow {
		right: 12px;
		bottom: 14px;
		width: 32px;
		height: 32px;
	}


	/* Products */

	.cd-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.cd-product-card {
		border-radius: 15px;
	}

	/* .cd-product-card__image {
		height: 185px;
		padding: 10px;
	} */

	.cd-product-card__tag {
		top: 8px;
		left: 8px;
		padding: 5px 7px;
		font-size: 8px;
	}

	.cd-product-card__content {
		padding: 14px;
	}

	.cd-product-card__category {
		font-size: 8px;
	}

	.cd-product-card__title {
		min-height: 25px;
		font-size: 15px;
	}

	.cd-product-card__price {
		margin-top: 9px;
	}

	.cd-product-card__price-current {
		font-size: 17px;
	}

	.cd-product-card__weight,
	.cd-product-card__options {
		margin-top: 12px;
		padding-top: 10px;
	}

	.cd-product-card__options {
		grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
		gap: 8px;
	}

	.cd-product-card__weight label,
	.cd-product-card__option label {
		font-size: 9px;
	}

	.cd-weight-select,
	.cd-variation-select {
		height: 38px;
		padding-right: 26px;
		font-size: 11px;
	}

	.cd-add-cart {
		min-height: 40px;
		margin-top: 9px;
		font-size: 11px;
	}


}


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

@media (max-width: 430px) {

	.cd-top-picks__grid,
	.cd-products-grid {
		gap: 9px;
	}

	/* .cd-product-card__image {
		height: 160px;
        padding:8px;
	} */

	.cd-product-card__content {
		padding: 11px;
	}

	.cd-product-card__title {
		font-size: 14px;
	}

	.cd-product-card__price-current {
		font-size: 16px;
	}

	.cd-weight-select {
		padding-left: 8px;
		padding-right: 22px;
	}

	.cd-add-cart svg {
		display: none;
	}

}



/* ======================================================================
   RESPONSIVE GRID
   ====================================================================== */

/* Medium — 3 columns */
@media (max-width: 1200px) {

	.cd-top-picks__grid,
	.cd-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}


/* Small — 2 columns */
@media (max-width: 900px) {

	.cd-top-picks__grid,
	.cd-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* Extra Small / Mobile — 1 column */
@media (max-width: 600px) {

	.cd-top-picks__grid,
	.cd-products-grid {
		grid-template-columns: 1fr;
	}

}


/* ======================================================================
   CHOOSE YOUR STYLE
   ====================================================================== */

.cd-section--styles {
	background: linear-gradient(180deg, #fbf6f8 0%, #f5eef1 100%);
	overflow: hidden;
}

.cd-section--styles .cd-section-heading h2 {
	color: #311B26;
}


/* ----------------------------------------------------------------------
   Carousel wrapper
   ---------------------------------------------------------------------- */

.cd-style-carousel {
	position: relative;
	width: 100%;
}


/* ----------------------------------------------------------------------
   Style track
   ---------------------------------------------------------------------- */

.cd-style-grid {
	display: grid;
	grid-auto-flow: column;

	/* 4 cards on desktop */
	grid-auto-columns: calc((100% - 60px) / 4);

	gap: 20px;

	width: 100%;
	margin: 0;

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

	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;

	scrollbar-width: none;
	-ms-overflow-style: none;

	padding: 4px 2px 10px;
}

.cd-style-grid::-webkit-scrollbar {
	display: none;
}


/* ----------------------------------------------------------------------
   Style card
   ---------------------------------------------------------------------- */

.cd-style-card {
	display: flex;
	flex-direction: column;

	min-width: 0;

	overflow: hidden;

	border-radius: 20px;

	background: #f5f0eb;
	box-shadow: 0 10px 26px rgba(49, 27, 38, 0.07);

	scroll-snap-align: start;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.cd-style-card:hover {
	transform: translateY(-5px);

	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* ----------------------------------------------------------------------
   Image container
   ---------------------------------------------------------------------- */

.cd-style-card__image {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;

	/*
	 * Fixed visual area.
	 * The image itself is NEVER cropped.
	 */
	aspect-ratio: 1 / 1;

	/* padding: 18px; */

	overflow: hidden;

	background: #f5f0eb;
}


/*
 * IMPORTANT:
 *
 * width + height are both limited to the container.
 * object-fit: contain means the COMPLETE uploaded image remains visible.
 */

.cd-style-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: center;

	transition: transform 0.4s ease;
}

.cd-style-card:hover .cd-style-card__image img {
	transform: scale(1.04);
}


/* ----------------------------------------------------------------------
   Card title
   ---------------------------------------------------------------------- */

.cd-style-card h3 {
	margin: 0;

	padding: 18px 20px;

	background: #311B26;
	color: #fff;

	font-size: 20px;
	font-weight: 700;

	line-height: 1.2;

	letter-spacing: -0.02em;
}


/* ----------------------------------------------------------------------
   Arrows
   ---------------------------------------------------------------------- */

.cd-style-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 46px;
	height: 46px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #fff;
	color: var(--cd-plum);

	cursor: pointer;

	transform: translateY(-50%);

	box-shadow: 0 8px 25px rgba(49, 27, 38, 0.10);

	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		opacity 0.2s ease;
}

.cd-style-carousel__arrow:hover {
	background: var(--cd-plum);
	color: #fff;

	transform: translateY(-50%) scale(1.05);
}

.cd-style-carousel__arrow:disabled {
	opacity: 0.3;

	cursor: default;
	pointer-events: none;
}

.cd-style-carousel__arrow--prev {
	left: -23px;
}

.cd-style-carousel__arrow--next {
	right: -23px;
}


/* ----------------------------------------------------------------------
   Dots
   ---------------------------------------------------------------------- */

.cd-style-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 7px;

	margin-top: 28px;
}

.cd-style-carousel__dot {
	width: 7px;
	height: 7px;

	padding: 0;

	border: 0;
	border-radius: 999px;

	background: rgba(0, 0, 0, 0.18);

	cursor: pointer;

	transition:
		width 0.25s ease,
		background 0.25s ease;
}

.cd-style-carousel__dot.is-active {
	width: 24px;

	background: var(--cd-plum);
}


/* ======================================================================
   CHOOSE YOUR STYLE — RESPONSIVE
   ====================================================================== */


/* ----------------------------------------------------------------------
   Medium
   3 cards
   ---------------------------------------------------------------------- */

@media (max-width: 1100px) {

	.cd-style-grid {
		grid-auto-columns: calc((100% - 40px) / 3);
	}

	.cd-style-carousel__arrow--prev {
		left: -12px;
	}

	.cd-style-carousel__arrow--next {
		right: -12px;
	}

}


/* ----------------------------------------------------------------------
   Small
   2 cards
   ---------------------------------------------------------------------- */

@media (max-width: 700px) {

	.cd-style-grid {
		grid-auto-columns: calc((100% - 12px) / 2);
		gap: 12px;

		padding-left: 0;
		padding-right: 0;
	}

	.cd-style-card {
		border-radius: 17px;
	}

	.cd-style-card h3 {
		padding: 14px 15px;

		font-size: 16px;
	}

	.cd-style-carousel__arrow {
		width: 38px;
		height: 38px;
	}

	.cd-style-carousel__arrow--prev {
		left: 8px;
	}

	.cd-style-carousel__arrow--next {
		right: 8px;
	}

	.cd-style-carousel__dots {
		margin-top: 22px;
	}

}


/* ----------------------------------------------------------------------
   Extra small / Mobile
   1 card
   ---------------------------------------------------------------------- */

@media (max-width: 430px) {

	.cd-style-grid {
		grid-auto-columns: 100%;
		gap: 10px;
	}

	.cd-style-card h3 {
		padding: 14px;

		font-size: 15px;
	}

	.cd-style-carousel__arrow {
		width: 34px;
		height: 34px;
	}

}