

  .slider-wrap {
  	font-family: 'DM Sans', sans-serif;
  	position: relative;
  	width: 100%;
  	overflow: hidden;
  	min-height: 580px;
  	display: flex;
  	flex-direction: column;
  	background: #0d1117
  }

  .slides-container {
  	display: flex;
  	transition: transform 0.65s cubic-bezier(.77, 0, .18, 1);
  	will-change: transform;
  	flex: 1
  }

  .slide {
  	min-width: 100%;
  	position: relative;
  	display: flex;
  	align-items: center;
  	padding: 3rem 2.5rem 2.5rem;
  	gap: 2rem;
  	overflow: hidden;
  	min-height: 580px
  }

  .slide-bg {
  	position: absolute;
  	inset: 0;
  	background-size: cover;
  	background-position: center;
  	background-repeat: no-repeat;
  	z-index: 0;
  	transition: transform 8s ease;
  }

  .slide[data-n="0"] .slide-bg {
  	background-image:url('../images/banner1.jpg')
  }

  .slide[data-n="1"] .slide-bg {
  	background-image:url('../images/banner3.jpg')
  }

  .slide[data-n="2"] .slide-bg {
  	background-image:url('../images/banner2.jpg')
  }

  .slide-overlay {
  	position: absolute;
  	inset: 0;
  	z-index: 1;
  	background: linear-gradient(105deg,
  			rgba(0, 0, 0, 0.82) 0%,
  			rgba(0, 0, 0, 0.65) 45%,
  			rgba(0, 0, 0, 0.28) 100%);
  }

  .slide-content {
  	position: relative;
	padding-left: 30px;
  	z-index: 2;
  	flex: 1;
  	max-width: 600px
  }

  .badge-row {
  	display: flex;
  	align-items: center;
  	gap: 8px;
  	margin-bottom: 1.2rem
  }

  .badge-fire {
  	background: #e84545;
  	color: #fff;
  	font-size: 11px;
  	font-weight: 500;
  	padding: 4px 12px;
  	border-radius: 20px;
  	letter-spacing: 0.08em;
  	text-transform: uppercase
  }

  .badge-sub {
  	color: rgba(255, 255, 255, 0.55);
  	font-size: 12px;
  	letter-spacing: 0.05em
  }

  .slide-headline {
  	font-family: 'Playfair Display', serif;
  	line-height: 1;
  	margin-bottom: 1rem
  }

  .slide-headline .line1 {
  	font-size: clamp(2.8rem, 6vw, 4.2rem);
  	color: #f5a623;
  	display: block;
  	font-weight: 900
  }

  .slide-headline .line2 {
  	font-size: clamp(2.8rem, 6vw, 4.2rem);
  	color: #fff;
  	display: block;
  	font-weight: 700
  }

  .slide-headline .line3 {
  	font-size: clamp(2.8rem, 6vw, 4.2rem);
  	color: #f5a623;
  	display: block;
  	font-weight: 900
  }

  .slide-desc {
  	font-size: 14px;
  	color: rgba(255, 255, 255, 0.82);
  	line-height: 1.75;
  	margin-bottom: 1.2rem;
  	max-width: 480px;
  	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5)
  }

  .perks-row {
  	display: flex;
  	flex-wrap: wrap;
  	gap: 8px;
  	margin-bottom: 1.5rem
  }

  .perk {
  	background: rgba(245, 166, 35, 0.12);
  	border: 1px solid rgba(245, 166, 35, 0.35);
  	color: #f5a623;
  	font-size: 12px;
  	font-weight: 500;
  	padding: 5px 12px;
  	border-radius: 20px
  }

  .cta-row {
  	display: flex;
  	gap: 12px;
  	flex-wrap: wrap
  }

  .btn-call {
  	background: #f5a623;
  	color: #0d1117;
  	font-family: 'DM Sans', sans-serif;
  	font-size: 14px;
  	font-weight: 500;
  	padding: 11px 24px;
  	border-radius: 8px;
  	text-decoration: none;
  	border: none;
  	cursor: pointer;
  	transition: opacity 0.2s;
  	display: inline-block
  }

  .btn-call:hover {
  	opacity: 0.88
  }

  .btn-email {
  	background: rgba(255, 255, 255, 0.08);
  	backdrop-filter: blur(6px);
  	color: #fff;
  	font-family: 'DM Sans', sans-serif;
  	font-size: 14px;
  	font-weight: 500;
  	padding: 10px 24px;
  	border-radius: 8px;
  	text-decoration: none;
  	border: 1.5px solid rgba(255, 255, 255, 0.35);
  	cursor: pointer;
  	transition: border-color 0.2s, background 0.2s;
  	display: inline-block
  }

  .btn-email:hover {
  	border-color: rgba(255, 255, 255, 0.7);
  	background: rgba(255, 255, 255, 0.14)
  }

  .slide-card {
  	position: relative;
  	z-index: 2;
  	flex-shrink: 0;
  	background: rgba(0, 0, 0, 0.45);
  	backdrop-filter: blur(16px);
  	border: 1px solid rgba(255, 255, 255, 0.15);
  	border-radius: 16px;
  	padding: 1.5rem 1.75rem;
  	min-width: 220px;
  	max-width: 240px;
  	align-self: end;
	margin-left: auto;
	text-align: center;
  }

  .card-pin-icon {
  	width: 32px;
  	height: 32px;
  	border-radius: 8px;
  	background: rgba(245, 166, 35, 0.15);
  	display: flex;
  	align-items: center;
  	justify-content: center;
	margin: auto;
  	margin-bottom: 12px
  }

  .card-store {
  	font-size: 13px;
  	font-weight: 500;
  	color: #fff;
  	margin-bottom: 10px
  }

  .card-addr {
  	font-size: 12px;
  	color: rgba(255, 255, 255, 0.6);
  	line-height: 1.65;
  	margin-bottom: 10px
  }

  .card-phone {
  	font-size: 13px;
  	color: #f5a623;
  	font-weight: 500
  }

  .nav-btn {
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 10;
  	background: rgba(0, 0, 0, 0.35);
  	backdrop-filter: blur(8px);
  	border: 1px solid rgba(255, 255, 255, 0.18);
  	color: #fff;
  	width: 42px;
  	height: 42px;
  	border-radius: 50%;
  	cursor: pointer;
  	font-size: 16px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	transition: background 0.2s
  }

  .nav-btn:hover {
  	background: rgba(0, 0, 0, 0.6)
  }

  .nav-prev {
  	left: 16px
  }

  .nav-next {
  	right: 16px
  }

.slider-dots {
  position: absolute;   /* change from relative */
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 0;
  background: none;     /* remove the rgba background */
}

  .dot {
  	width: 8px;
  	height: 8px;
  	border-radius: 50%;
  	background: rgba(255, 255, 255, 0.3);
  	border: none;
  	cursor: pointer;
  	transition: all 0.3s;
  	padding: 0
  }

  .dot.active {
  	background: #f5a623;
  	width: 22px;
  	border-radius: 4px
  }

  @media(max-width:640px) {
  	.slide {
  		flex-direction: column;
  		padding: 2rem 1.25rem 1.5rem;
  		align-items: center
  	}

  	.slide-card {
  		max-width: 100%;
  		width: 100%;
  		align-self: stretch;
		margin-bottom: 12px;
		text-align: center;

  	}

  	.slide-headline .line1,
  	.slide-headline .line2,
  	.slide-headline .line3 {
  		font-size: 2.4rem
  	}
  }