/**
 * Deliteful Cafe – Section Widgets
 * Shared black / cream / gold styling. Everything scoped under .dsw and
 * driven by CSS variables so Elementor's Style tab can re-skin it.
 */

.dsw {
	--dsw-gold: #B8862B;
	--dsw-gold-soft: rgba(184, 134, 43, 0.55);
	--dsw-ink: #1B2A26;
	--dsw-text: #1B2A26;
	--dsw-muted: #7C8A85;
	--dsw-cream: #FBF8F1;
	--dsw-dark: #14100B;
	--dsw-white: #FFFFFF;

	--dsw-font-head: "Playfair Display", Georgia, "Times New Roman", serif;
	--dsw-font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
	--dsw-font-script: "Great Vibes", cursive;

	font-family: var(--dsw-font-body);
	color: var(--dsw-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

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

.dsw h2,
.dsw h3,
.dsw h4,
.dsw p {
	margin: 0;
	padding: 0;
}

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

/* -------------------------------------------------------------------------
   Shared: kicker (little gold dash + uppercase label)
   ------------------------------------------------------------------------- */

.dsw-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--dsw-gold);
}

.dsw-kicker i {
	width: 30px;
	height: 2px;
	background: var(--dsw-gold);
	flex: none;
}

.dsw-kicker-center {
	justify-content: center;
}

.dsw-kicker-center i {
	order: -1;
}

/* Centered kicker gets a dash on both sides via a trailing pseudo */
.dsw-kicker-center::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--dsw-gold);
}

.dsw-title {
	font-family: var(--dsw-font-head);
	font-weight: 700;
	line-height: 1.12;
	color: var(--dsw-ink);
	letter-spacing: 0.01em;
}

.dsw-lead {
	color: var(--dsw-muted);
	font-weight: 300;
}

/* Shared gold button */
.dsw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--dsw-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--dsw-white);
	background: var(--dsw-gold);
	border: 1.5px solid var(--dsw-gold);
	border-radius: 4px;
	padding: 16px 32px;
	cursor: pointer;
	transition: filter 0.25s ease, transform 0.2s ease, background 0.25s ease, color 0.25s ease;
}

.dsw-btn:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	color: var(--dsw-white);
}

.dsw-btn-ghost {
	background: transparent;
	color: var(--dsw-ink);
	border-color: transparent;
	padding-left: 6px;
	padding-right: 6px;
}

.dsw-btn-ghost:hover {
	color: var(--dsw-gold);
	filter: none;
	transform: none;
}

/* Social row (shared by About) */
.dsw-social {
	display: inline-flex;
	align-items: center;
	gap: 20px;
}

.dsw-social a {
	color: var(--dsw-ink);
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-flex;
}

.dsw-social a:hover {
	color: var(--dsw-gold);
	transform: translateY(-2px);
}

.dsw-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* =========================================================================
   1. About Us  (image with play button + text)
   ========================================================================= */

.dsw-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 70px);
	align-items: center;
}

.dsw-about-media {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--dsw-dark);
}

.dsw-about-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsw-about-media.dsw-noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(90% 90% at 50% 30%, rgba(184, 134, 43, 0.15), transparent 60%),
		var(--dsw-dark);
}

.dsw-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--dsw-gold);
	color: var(--dsw-white);
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, filter 0.25s ease;
	box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.5);
}

.dsw-play::before {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid var(--dsw-gold-soft);
	opacity: 0;
	animation: dsw-ripple 2.4s ease-out infinite;
}

@keyframes dsw-ripple {
	0%   { transform: scale(0.85); opacity: 0.7; }
	100% { transform: scale(1.35); opacity: 0; }
}

.dsw-play:hover {
	transform: scale(1.06);
	filter: brightness(1.05);
}

.dsw-play svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
	margin-left: 3px;
}

.dsw-about-body .dsw-title {
	font-size: clamp(30px, 4vw, 46px);
	margin: 16px 0 0;
}

.dsw-about-body .dsw-lead {
	margin: 20px 0 0;
	font-size: 16px;
}

.dsw-about-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-top: 28px;
}

/* Lightbox for the video */
.dsw-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(8, 6, 3, 0.85);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.dsw-lightbox.is-on {
	opacity: 1;
	pointer-events: auto;
}

.dsw-lightbox-inner {
	position: relative;
	width: min(900px, 100%);
	aspect-ratio: 16 / 9;
}

.dsw-lightbox iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 8px;
}

.dsw-lightbox-close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

/* =========================================================================
   2. Working Hours  (image panel + hours card)
   ========================================================================= */

.dsw-hours {
	position: relative;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	align-items: stretch;
	border-radius: 6px;
	overflow: hidden;
	min-height: 380px;
}

.dsw-hours-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dsw-hours-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsw-hours-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 12, 8, 0.86), rgba(15, 12, 8, 0.55));
}

.dsw-hours.dsw-noimg .dsw-hours-bg {
	background: var(--dsw-dark);
}

.dsw-hours-intro {
	position: relative;
	z-index: 1;
	padding: clamp(30px, 5vw, 60px);
	color: var(--dsw-white);
	align-self: center;
}

.dsw-hours-intro .dsw-kicker {
	color: var(--dsw-gold);
}

.dsw-hours-intro .dsw-title {
	color: #fff;
	font-size: clamp(32px, 4.5vw, 52px);
	margin: 16px 0 0;
}

.dsw-hours-intro .dsw-lead {
	color: rgba(255, 255, 255, 0.78);
	margin: 16px 0 0;
	max-width: 380px;
}

.dsw-hours-actions {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.dsw-hours-actions .dsw-btn-ghost {
	color: #fff;
}

.dsw-hours-actions .dsw-btn-ghost:hover {
	color: var(--dsw-gold);
}

.dsw-hours-card {
	position: relative;
	z-index: 1;
	margin: clamp(18px, 3vw, 34px);
	background: var(--dsw-white);
	border-radius: 4px;
	padding: clamp(26px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
	text-align: center;
}

.dsw-hours-block .dsw-hours-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dsw-ink);
}

.dsw-hours-time {
	font-family: var(--dsw-font-head);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: var(--dsw-ink);
	line-height: 1.5;
	margin-top: 6px;
}

.dsw-hours-time .sep {
	color: var(--dsw-gold);
	margin: 0 4px;
}

.dsw-hours-divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
}

/* =========================================================================
   3. Features  (centered heading + 3 icon columns)
   ========================================================================= */

.dsw-features {
	text-align: center;
}

.dsw-features-head {
	max-width: 640px;
	margin: 0 auto;
}

.dsw-features-head .dsw-title {
	font-size: clamp(30px, 4.2vw, 48px);
	margin: 12px 0 0;
}

.dsw-features-head .dsw-lead {
	margin: 14px 0 0;
	font-size: 15.5px;
}

.dsw-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 4vw, 56px);
	margin-top: clamp(36px, 5vw, 60px);
}

.dsw-feature {
	text-align: center;
}

.dsw-feature-ic {
	width: 62px;
	height: 62px;
	margin: 0 auto 22px;
	color: var(--dsw-ink);
}

.dsw-feature-ic svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dsw-feature .dsw-feature-title {
	font-family: var(--dsw-font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--dsw-ink);
}

.dsw-feature .dsw-feature-text {
	color: var(--dsw-muted);
	font-size: 14.5px;
	font-weight: 300;
	margin-top: 12px;
	line-height: 1.6;
}

/* =========================================================================
   4. Newsletter  (dark image band + email form)
   ========================================================================= */

.dsw-news {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	text-align: center;
	padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 60px);
	color: #fff;
}

.dsw-news-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dsw-news-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsw-news-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(15, 12, 9, 0.8);
}

.dsw-news.dsw-noimg .dsw-news-bg {
	background: var(--dsw-dark);
}

.dsw-news-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 auto;
}

.dsw-news .dsw-kicker {
	color: var(--dsw-gold);
}

.dsw-news .dsw-title {
	color: #fff;
	font-size: clamp(30px, 5vw, 54px);
	margin: 14px 0 0;
}

.dsw-news .dsw-lead {
	color: rgba(255, 255, 255, 0.75);
	margin: 14px 0 0;
}

.dsw-news-form {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 30px;
	flex-wrap: wrap;
}

.dsw-news-form input[type="email"] {
	flex: 1;
	min-width: 220px;
	max-width: 360px;
	height: 54px;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: var(--dsw-ink);
	font-family: var(--dsw-font-body);
	font-size: 15px;
	padding: 0 18px;
	outline: none;
}

.dsw-news-form input[type="email"]::placeholder {
	color: #9a958c;
}

.dsw-news-form .dsw-btn {
	height: 54px;
}

.dsw-news-msg {
	margin-top: 16px;
	font-size: 14px;
	min-height: 20px;
	color: var(--dsw-gold);
}

.dsw-news-msg.is-error {
	color: #ffb4a2;
}

/* =========================================================================
   5. Testimonials  (3 quote cards + slider dots/arrows)
   ========================================================================= */

.dsw-tst {
	text-align: center;
}

.dsw-tst-head {
	max-width: 640px;
	margin: 0 auto;
}

.dsw-tst-head .dsw-title {
	font-size: clamp(30px, 4.2vw, 48px);
	margin: 12px 0 0;
}

.dsw-tst-head .dsw-lead {
	margin: 14px 0 0;
}

.dsw-tst-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-top: clamp(34px, 5vw, 56px);
	text-align: left;
}

.dsw-tst-card {
	position: relative;
	border: 1px dashed rgba(0, 0, 0, 0.16);
	border-radius: 6px;
	padding: 34px 30px 26px;
	background: transparent;
	transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.dsw-tst-card.is-featured {
	background: #fff;
	border-style: solid;
	border-color: transparent;
	box-shadow: 0 26px 60px -30px rgba(20, 26, 22, 0.45);
	transform: translateY(-6px);
}

.dsw-tst-card .dsw-quote-mark {
	position: absolute;
	top: -20px;
	right: 26px;
	font-family: var(--dsw-font-head);
	font-size: 60px;
	line-height: 1;
	color: var(--dsw-gold);
	font-weight: 700;
}

.dsw-tst-card .dsw-tst-title {
	font-family: var(--dsw-font-head);
	font-size: 21px;
	font-weight: 700;
	color: var(--dsw-ink);
}

.dsw-tst-text {
	color: var(--dsw-muted);
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.7;
	margin-top: 14px;
}

.dsw-tst-foot {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px dashed rgba(0, 0, 0, 0.14);
}

.dsw-tst-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	flex: none;
	background: var(--dsw-cream);
	border: 1px solid rgba(184, 134, 43, 0.35);
}

.dsw-tst-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dsw-tst-name {
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.02em;
	color: var(--dsw-ink);
	flex: 1;
}

.dsw-tst-date {
	font-size: 11.5px;
	color: var(--dsw-muted);
	background: rgba(0, 0, 0, 0.05);
	border-radius: 999px;
	padding: 5px 12px;
}

.dsw-tst-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: clamp(30px, 4vw, 48px);
	flex-wrap: wrap;
}

.dsw-tst-dots {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.dsw-tst-dots i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.18);
	transition: background 0.25s ease, width 0.25s ease;
}

.dsw-tst-dots i.on {
	background: var(--dsw-gold);
	width: 22px;
	border-radius: 999px;
}

.dsw-tst-arrows {
	display: inline-flex;
	gap: 10px;
}

.dsw-tst-arrows button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--dsw-gold);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.dsw-tst-arrows button:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
}

.dsw-tst-arrows svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1024px) {

	.dsw-features-grid,
	.dsw-tst-track {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {

	.dsw-about,
	.dsw-hours,
	.dsw-features-grid,
	.dsw-tst-track {
		grid-template-columns: 1fr;
	}

	.dsw-about-media {
		aspect-ratio: 4 / 3;
	}

	.dsw-hours-card {
		margin: 0;
		border-radius: 0;
	}

	.dsw-hours-intro {
		text-align: left;
	}

	.dsw-tst-card {
		/* On phones the slider shows one card at a time */
		display: none;
	}

	.dsw-tst-card.is-active {
		display: block;
	}

	.dsw-tst-nav {
		justify-content: center;
	}

	.dsw-news-form input[type="email"] {
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {

	.dsw *,
	.dsw *::before,
	.dsw *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* =========================================================================
   REFINEMENTS v1.1 — Features & Testimonials polish to match reference
   ========================================================================= */

/* ---- Features: bigger icons, more air, confident spacing ---- */
.dsw-features {
	padding: clamp(10px, 2vw, 24px) 0;
}

.dsw-features-head .dsw-title {
	font-size: clamp(32px, 4.5vw, 50px);
	margin-top: 14px;
}

.dsw-features-head .dsw-lead {
	margin-top: 16px;
	font-size: 16px;
}

.dsw-features-grid {
	margin-top: clamp(48px, 6vw, 72px);
	gap: clamp(32px, 5vw, 64px);
}

.dsw-feature-ic {
	width: 78px;
	height: 78px;
	margin-bottom: 26px;
	stroke-width: 1.2;
}

.dsw-feature-ic svg {
	stroke-width: 1.2;
}

.dsw-feature .dsw-feature-title {
	font-size: 24px;
	letter-spacing: 0.01em;
}

.dsw-feature .dsw-feature-text {
	font-size: 15px;
	margin-top: 14px;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

/* ---- Testimonials: taller airy cards, bold mark, clean nav ---- */
.dsw-tst-head .dsw-title {
	font-size: clamp(32px, 4.5vw, 50px);
}

.dsw-tst-track {
	margin-top: clamp(44px, 6vw, 68px);
	gap: 30px;
	align-items: stretch;
}

.dsw-tst-card {
	padding: 44px 38px 32px;
	border-color: rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
}

.dsw-tst-card.is-featured {
	box-shadow: 0 34px 70px -34px rgba(20, 26, 22, 0.5);
	transform: translateY(-10px);
}

.dsw-tst-card .dsw-quote-mark {
	top: -6px;
	right: 34px;
	font-size: 92px;
	line-height: 0.6;
}

.dsw-tst-card .dsw-tst-title {
	font-size: 23px;
	margin-top: 8px;
}

.dsw-tst-text {
	font-size: 15px;
	line-height: 1.75;
	margin-top: 16px;
	flex: 1;
}

.dsw-tst-foot {
	margin-top: 28px;
	padding-top: 22px;
}

.dsw-tst-avatar {
	width: 46px;
	height: 46px;
}

.dsw-tst-nav {
	margin-top: clamp(36px, 5vw, 56px);
}

/* When cards have little text they still shouldn't collapse */
.dsw-tst-card {
	min-height: 300px;
}

@media (max-width: 767px) {

	.dsw-tst-card {
		min-height: 0;
		padding: 34px 28px 26px;
	}

	.dsw-feature-ic {
		width: 68px;
		height: 68px;
	}
}

/* =========================================================================
   REFINEMENTS v1.2 — visible arrows + mobile polish
   ========================================================================= */

/* Arrow buttons: solid, shadowed, clearly clickable on any background */
.dsw-tst-arrows button {
	width: 48px;
	height: 48px;
	background: var(--dsw-gold);
	color: #fff;
	border: 1.5px solid var(--dsw-gold);
	box-shadow: 0 10px 24px -10px rgba(184, 134, 43, 0.7);
}

.dsw-tst-arrows button svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2.4;
}

.dsw-tst-arrows button:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px -10px rgba(184, 134, 43, 0.85);
}

.dsw-tst-arrows button:active {
	transform: translateY(0);
}

.dsw-tst-arrows button:focus-visible {
	outline: 2px solid var(--dsw-gold);
	outline-offset: 3px;
}

/* Give the nav row a label so arrows have context (optional gold hint line) */
.dsw-tst-dots i {
	background: rgba(0, 0, 0, 0.16);
}

/* ---- Mobile: everything comfortable and thumb-friendly ---- */
@media (max-width: 767px) {

	/* Testimonials: one card, big and centered, clear controls below */
	.dsw-tst-track {
		margin-top: 30px;
	}

	.dsw-tst-card.is-active {
		transform: none;
		box-shadow: 0 22px 50px -28px rgba(20, 26, 22, 0.4);
		border-style: solid;
		border-color: rgba(184, 134, 43, 0.25);
	}

	.dsw-tst-nav {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.dsw-tst-nav .dsw-btn {
		order: 3;
		width: 100%;
		max-width: 320px;
	}

	.dsw-tst-dots {
		order: 1;
	}

	.dsw-tst-arrows {
		order: 2;
		gap: 16px;
	}

	.dsw-tst-arrows button {
		width: 52px;
		height: 52px;
	}

	/* About: image first, text below, comfortable */
	.dsw-about-actions {
		gap: 20px;
	}

	.dsw-about-actions .dsw-btn {
		width: 100%;
		max-width: 280px;
	}

	.dsw-about-actions .dsw-social {
		width: 100%;
		justify-content: center;
	}

	/* Hours: card sits below the intro, full width, still elegant */
	.dsw-hours {
		min-height: 0;
	}

	.dsw-hours-intro {
		padding: 34px 24px;
	}

	.dsw-hours-actions {
		gap: 18px;
	}

	.dsw-hours-actions .dsw-btn {
		width: auto;
	}

	/* Newsletter: stacked form, full-width inputs */
	.dsw-news-form {
		flex-direction: column;
		align-items: stretch;
		max-width: 340px;
		margin-left: auto;
		margin-right: auto;
	}

	.dsw-news-form input[type="email"],
	.dsw-news-form .dsw-btn {
		width: 100%;
		max-width: none;
	}

	/* Features: single column, generous spacing */
	.dsw-features-grid {
		gap: 40px;
	}
}

/* =========================================================================
   REFINEMENTS v1.3 — force arrow shape & icons past theme overrides
   ========================================================================= */

/* Themes often set button width:100% / min-width / line-height and hide SVGs.
   Lock the arrow buttons to perfect circles with visible icons. */
.dsw .dsw-tst-arrows {
	display: inline-flex !important;
	flex: none !important;
	gap: 12px !important;
	width: auto !important;
}

.dsw .dsw-tst-arrows button {
	all: unset;
	box-sizing: border-box !important;
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	max-width: 48px !important;
	flex: 0 0 48px !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 50% !important;
	background: var(--dsw-gold) !important;
	border: 1.5px solid var(--dsw-gold) !important;
	color: #fff !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 0 !important;
	box-shadow: 0 10px 24px -10px rgba(184, 134, 43, 0.7) !important;
	transition: filter 0.2s ease, transform 0.2s ease !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.dsw .dsw-tst-arrows button:hover {
	filter: brightness(1.08) !important;
	transform: translateY(-2px) !important;
}

.dsw .dsw-tst-arrows button:focus-visible {
	outline: 2px solid var(--dsw-gold) !important;
	outline-offset: 3px !important;
}

/* Make sure the arrow glyph is drawn (themes sometimes zero-out SVGs) */
.dsw .dsw-tst-arrows button svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2.4 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.dsw .dsw-tst-arrows button svg path {
	fill: none !important;
	stroke: currentColor !important;
}

@media (max-width: 767px) {

	.dsw .dsw-tst-arrows button {
		width: 52px !important;
		height: 52px !important;
		min-width: 52px !important;
		max-width: 52px !important;
		flex: 0 0 52px !important;
	}
}
