.hero-hybrid {
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  color: #fff;
}

/* Top: Lifestyle Hero */
.hero-hybrid__top {
  position: relative;
  min-height: clamp(100px, 30vh, 200px);
  overflow: hidden;
}
.hero-hybrid__top picture,
.hero-hybrid__top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-hybrid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.65));
}
.hero-hybrid__content {
  position: relative;
  z-index: 1;
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(8px, 4vw, 10px);
  text-align: left;
}
.hero-hybrid__logo {
  width:20%;
  height:20%;
  margin-top:10px;
  margin-bottom: 1rem;
}
.hero-hybrid h1 {
  font-size: clamp(28px, 3.2vw, 56px);
  margin: 0 0 .4em;
}
.hero-hybrid p {
  font-size: clamp(16px, 1.4vw, 20px);
  margin: 0 0 1em;
  opacity: .95;
}
.hero-hybrid__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn--primary {
  background: #e63946;
  color: #fff;
}
.btn--secondary {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
}

/* Bottom: Product Tiles */
.hero-hybrid__bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: #ddd;
}
.product-tile {
  background: #f8f5f0;
  color: #222;
  text-align: center;
  padding: 16px;
}
.product-tile img {
  max-width: 100%;
  height: auto;
  margin-bottom: .5rem;
}
.product-tile h3 {
  font-size: 1rem;
  margin: .25rem 0;
}
.product-list {
  color: white;
  text-align: center;
  padding: 16px;
  position: relative;
}
.product-list img {
  width: 40px;
  height: 40px;
  margin-bottom: .5rem;
  position: relative;
}
.product-list h3 {
  font-size: 1rem;
  margin: .25rem 0;
  color: white;
}
.tile-link {
  display: inline-block;
  margin-top: .25rem;
  font-weight: 600;
  color: #e63946;
  text-decoration: none;
}
.tile-link:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .hero-hybrid__content {
    text-align: center;
  }
}

.hero-lifestyle picture img {
  transition: opacity 0.8s ease-in-out;
}

.hero-lifestyle picture img {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.hero-lifestyle img.is-fading {
  opacity: 0;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.25em 0.5em;
  cursor: pointer;
  z-index: 2;
}
.hero-nav--prev { left: 10px; }
.hero-nav--next { right: 10px; }
.hero-nav:hover,
.hero-nav:focus {
  background: rgba(0,0,0,0.6);
}

.nearest-store-banner {
  background: #e63946;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.nearest-store-banner__content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nearest-store-banner__icon {
  font-size: 1.2rem;
}

.nearest-store-banner__link {
  color: #fff;
  font-weight: 600;
  margin-left: 0.5rem;
  text-decoration: underline;
}

.nearest-store-banner__link:hover {
  text-decoration: none;
}

.nav-link-adrs {
	padding-right: .5rem;
	padding-left: .5rem;
	font-size: 1.25em;
	color: azure;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
	display:block;
	padding: .5rem 1rem;
	text-decoration: none;
	box-sizing: border-box;
	width:20%;
}

.nav-link-adrs:hover{
	color: gold;
}

.nav-link-menu {
	padding-right: .5rem;
	padding-left: .5rem;
	font-size: 1.25em;
	color: azure;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
	display:content;
	padding: .5rem 1rem;
	text-decoration: none;
	box-sizing: border-box;
	width:20%;
}

.nav-link-menu:hover{
	color: gold;
}

.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slidex img {
  width: 110px;
  height: 110px;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-btn:focus {
  outline: 2px solid yellow;
}

.menu-button {
	display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 1px;
  cursor: pointer;
}

.menu-button-icon {
  width: 40px;
  height: 40px;
}


.menu-button img {
    max-width: 40px;
	margin-left:20px;
}

.menu-button-label {
  font-size: 14px;
  color: white;
  margin-left:20px;
}

.menu-button-label:hover {
    color: gold;
}

/* Container */
.image-boxs {
  --gap: 12px;
  --radius: 12px;
  --hover-scale: 1.02;
  --focus-ring: 2px solid #0a66c2;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
}

/* Grid */
.image-grids {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin: 0;
  padding: 0;
  width:120px;
}

/* Tiles */
.image-grids a {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
  outline: none;
  width:110px;
  height:110px;
}

.image-grids a:focus-visible {
  box-shadow: 0 0 0 4px rgba(10,102,194,0.25);
}

.image-grids a:hover {
  transform: scale(var(--hover-scale));
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* Maintain square aspect ratio */
.image-grids img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Responsiveness */
@media (max-width: 560px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}