* {
  margin: 0;
  padding: 0;

}



.welcome {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  overflow: hidden;
  height: 40px;
  font-size: 20px;
}

.welcome-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}


.navbar {
  margin: 0px;
  height: 60px;
}

/* navbar logo */

.img-design-weight {
  max-width: 110px;
  width: 100%;
  height: auto;
  padding: 5px 5px;
}


@media (max-width: 576px) {
  .img-design-weight {
    max-width: 110px;
  }
}



/* navbar content */
.navbar{
position: sticky;
top:40px;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.nav-flex-input {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serifs;
  color: #480000;
  font-weight: normal;
  font-size: 20px;

}

.text-color {
  color: #480000 !important;

}

.gap-stylee {
  gap: 50px;
}

.gap-login-stylee {

  gap: 20px;
}


.bi-bag-fill {
  text-decoration: none;
  display: flex;

}

.li {
  list-style: none;
}



/* underline and animation, submenue */
.dropdown-hover:hover+.dropdown-menu {
  display: block !important;
}

.nav-item:hover .dropdown-menu {
  display: block !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serifs;

}

.dropdown-menu a {
  float: left;
}

.nav-link-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dropdown-trigger {
  border: none;
  background: transparent;
  color: #480000;
  padding: 0 0 0 0.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-dropdown-trigger i {
  font-size: 0.8rem;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #480000;
  text-decoration: none;
}

/*  underline */
.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 5px;
  font-size: 5px;
  left: 0;
  background-color: #480000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

/* Animation */
.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}





/* NAVBAR STYLE WRAP */



/* hero section*/

.header-text {
  position: absolute;
  width: auto;
  left: 100px;
  top: 90%;
  transform: translateY(-50%);
  padding: 20px;
  color: #480000;
  background-color: rgba(255, 255, 255, 0.5);
}




@font-face {
  font-family: inter;
  src: url(fonts/inter.ttf);

}

@font-face {
  font-family: 'playfair-display';
  src: url(fonts/playfair.ttf);

}

@font-face {
  font-family: helvetica;
  src: url(fonts/helvetica.otf);

}




.text-design {
  font-family: 'playfair-display', serif;
  font-size: 90px;
  opacity: 1;
  padding: 10px;
}

.p-design {
  font-family: helvetica, cursive;
  font-size: 20px;
  opacity: 1;
  padding: 10px;
}

.hero-btn-design {
  font-family: 'playfair-display', serif;
  font-weight: bold;
  font-size: 25px;
  opacity: 1;
  border: 2px solid #480000;
  color: #480000;
  padding: 10px;
}


/* media query */
@media (max-width: 768px) {
  .header-text {
    position: static !important;
    width: 300px !important;
    top: 300px;
    left: 10px;
  }

  .text-design {
    font-size: 16px;
    padding: 2px;
  }

  .p-design {
    font-size: 10px;
    padding: 2px;
  }

  .hero-btn-design {
    font-size: 10px;
    padding: 2px;
  }
}

@media (max-width: 991px) {
  .header-text {
    position: static !important;
    width: 500px !important;
    top: 300px !important;
    left: 10px !important;
  }

  .text-design {
    font-size: 38px;
    padding: 2px;
  }

  .p-design {
    font-size: 16px;
    padding: 2px;
  }

  .hero-btn-design {
    font-size: 16px;
    padding: 2px;
  }
}




/* hero-two-section  */





.hero-two-section {
  height: 1600px;
  padding: 0px !important;

}

.hero-two-text {
  font-family: 'playfair-display', serif;
  color: #480000;
  padding-top: 70px;
  margin-top: 150px;
  font-size:42px;
font-weight:600;
letter-spacing:1px;
}

.hero-two-p {
  font-family: helvetica;
 font-size:16px;
  color: #480000;
  /* padding-top: 70px; */

}

.img-card {

  font-family: inter;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  padding-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.card {
  display: flex;
  position: relative;
  width: 600px;
  height: 700px;
  transition: transform 1s;
}

.card:hover {
  transform: scale(1.05, 1.05);
}



.card-cover {
  display: flex;
  position: absolute;
  top: 0;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  color: white;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: opacity 1s;
}

.card:hover .card-cover {
  opacity: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.card-image {
  width: 100%;
  height: 100%;
  background-color: #1A1A1A;
  object-fit: cover;
}

.card-body {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  color: white;
  opacity: 0;
  transition: opacity 1s;
  padding: 0 1rem;
  box-sizing: border-box;
}

.card:hover .card-body {
  opacity: 1
}

.card-image a {
  cursor: pointer;
}



/* footer */

.footer {
  height: 500px;
  background-color: #480000;
  padding: 0px !important;
}

.footer-text {
  font-family: 'playfair-display', serif;
  font-size: 25px;
  padding: 30px 0px;
  font-style: normal;
}

.footer-subtext {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  padding: 10px 0px;
}

.footer-form-h {
  font-family: 'playfair-display', serif;
  font-size: 25px;
}

.footer-form-p-other {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 10px 0px;
}

.email-form-fill {
  background-color: #480000;
  color: white;
  border: none;
  width: 55%;
  border-bottom: 1px solid white;
  outline: none;
}

.email-checked-fill {
  background-color: c;
  border: none;
  outline: 1px solid white;
}








/* FAQ */
.head-design{
  font-family: inter, sans-serif; 
    color: #480000;
}

.text-style-faq {
  background-color: #fff8ee;
  font-family: Arial, Helvetica, sans-serif; 
 font-size: 20px;
}


.style-bg {
  background-color: #fff8ee;
  color: #480000;
}

.accordion-item{
  margin: 0px 30px;
    border: 1px solid #480000 !important;
}
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;

}


.accordion-button:focus,.accordion-button:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}





/* FAQ */


/* homepage refresh */

.navbar .container-fluid {
  background: #ffffff !important;
  backdrop-filter: blur(12px);
}

.navbar .nav-link,
.navbar .navbar-brand,
.navbar .bi-bag-fill {
  color: #480000 !important;
}

#mainNavbar {
  flex-grow: 1;
}

.hero-shell {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  min-height: 88vh;
  object-fit: cover;
  display: block;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(72, 0, 0, 0.65) 0%, rgba(72, 0, 0, 0.18) 45%, rgba(72, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 248, 238, 0.05) 0%, rgba(255, 248, 238, 0.2) 100%);
} */

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.header-text {
  position: relative;
  top: 120px;
  left: 50px;
  transform: none;
  max-width: 640px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.21);
  border: 1px solid rgba(72, 0, 0, 0.1);
  box-shadow: 0 24px 60px rgba(72, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.hero-kicker,.section-label,.collection-tag,.product-category {
  font-family: inter, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a53d2f;
}

.text-design {
  line-height: 0.95;
  color: #480000;
}

.p-design {
  max-width: 540px;
  line-height: 1.7;
}

.hero-btn-design,
.hero-btn-secondary,
.newsletter-btn {
  border-radius: 999px;
  padding: 12px 26px;
  transition: all 0.25s ease;
}

.hero-btn-design:hover,
.newsletter-btn:hover {
  background-color: #480000;
  color: #fff8ee;
}

.hero-btn-secondary {
  border: 1px solid rgba(72, 0, 0, 0.25);
  color: #480000;
  background: transparent;
  font-family: inter, sans-serif;
}

.hero-btn-secondary:hover {
  background: rgba(72, 0, 0, 0.08);
  color: #480000;
}

.video-slider-section {
  padding: 96px 0;
  background: #ffffff;
}

.street-banner-section {
  width: 100%;
  background: #efefef;
  padding-top: 0;
  display: block;
}

.street-banner-row {
  display: grid;
  grid-template-columns: 5fr 2fr 5fr;
  width: 100%;
  min-height: 860px;
}

.street-banner-image-col {
  background: #e7e7e7;
  overflow: hidden;
  display: flex;
  min-width: 0;
}

.street-banner-image {
  width: 100%;
  height: 100%;
  min-height: 860px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.street-banner-image-right {
  width: 100%;
  max-width: none;
  margin-left: auto;
  transform: none;
  object-position: right center;
}

.street-banner-content-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  background: #f4f1eb;
}

.street-banner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 28px;
}

.street-banner-box-main {
  background: #ffffff;
}

.street-banner-box-main h2 {
  font-family: 'playfair-display', serif;
  font-size: clamp(2.2rem, 3.1vw, 3.5rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #111111;
  margin: 0;
}

.street-banner-box-sub {
  gap: 18px;
}

.street-banner-box-sub p {
  margin: 0;
  max-width: 280px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #a53d2f;
  text-align: center;
}

.street-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: #a53d2f;
  color: #ffffff;
  border: 1px solid #a53d2f;
  text-decoration: none;
  font-family: inter, sans-serif;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(165, 61, 47, 0.24);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.street-banner-btn:hover {
  background: #8f3125;
  border-color: #8f3125;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(143, 49, 37, 0.28);
}

.product-strip-section {
  display: block;
  padding: 150px  24px;
  background: #837070;
}

.product-strip-section .container-fluid {
  max-width: 1600px;
  margin: 0 auto;
}

.product-strip-slider {
  position: relative;
}

.product-strip-viewport {
  width: 100%;
  overflow: visible;
}

.product-strip-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 260px));
  justify-content: center;
  gap: 16px;
}

.product-strip-card {
  border-radius: 24px;
  overflow: hidden;
  background: #f6efe7;
  box-shadow: 0 18px 36px rgba(72, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.product-strip-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.product-strip-info {
  background: #ffffff;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-strip-info h3 {
  font-family: inter, sans-serif;
  font-size: 1.2rem;
  color: #480000;
  margin: 0;
}

.product-strip-info p {
  font-family: inter, sans-serif;
  font-size: 0.98rem;
  color: rgba(72, 0, 0, 0.8);
  margin: 0;
}

.product-strip-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-strip-heart {
  border: none;
  background: transparent;
  color: #a53d2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-strip-heart:hover {
  background: transparent;
  color: #8f3125;
  transform: translateY(-1px);
}

.product-strip-heart i {
  font-size: 1rem;
  line-height: 1;
}

.product-strip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-strip-btn {
  width: fit-content;
  margin-top: 16px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(72, 0, 0, 0.18);
  background: #ffffff;
  color: #480000;
  text-decoration: none;
  font-family: inter, sans-serif;
  font-size: 0.70rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-strip-actions .product-strip-btn {
  margin-top: 8px;
}

.product-strip-btn:hover {
  background: #a53d2f;
  border-color: #a53d2f;
  color: #fff8ee;
  transform: translateY(-1px);
}

.product-strip-btn-secondary {
  background: #a53d2f;
  border-color: #a53d2f;
  color: #fff8ee;
}

.product-strip-btn-secondary:hover {
  background: #8f3125;
  border-color: #8f3125;
  color: #fff8ee;
}

.video-slider-header {
  max-width: 760px;
  margin: 0 auto 40px;
}

.video-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.video-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 36px;
}

.video-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.7s ease;
  will-change: transform;
}

.video-slide {
  min-width: calc((100% - 72px) / 5);
  position: relative;
  opacity: 0.82;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video-slide.is-active {
  opacity: 1;
  transform: translateY(-4px);
}

.video-slide-media {
  width: 100%;
  height: 62vh;
  min-height: 420px;
  max-height: 680px;
  object-fit: cover;
  display: block;
  background: #1A1A1A;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.video-slider-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(72, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #480000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(72, 0, 0, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.video-slider-arrow:hover {
  background: #480000;
  color: #fff8ee;
  transform: translateY(-2px);
}

.trust-band,
.homepage-section {
  padding-top: 96px;
  padding-bottom: 24px;
}

.trust-card,
.product-card,
.editorial-block,
.stat-card {
  background: #fffdf8;
  border: 1px solid rgba(72, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(72, 0, 0, 0.08);
}

.trust-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
}

.trust-card i {
  font-size: 1.75rem;
  color: #a53d2f;
}

.trust-card h3,
.product-info h3 {
  font-family: 'playfair-display', serif;
  color: #480000;
  margin: 18px 0 10px;
}

.trust-card p,
.product-copy,
.product-meta,
.section-copy,
.editorial-points p,
.stat-card p {
  font-family: helvetica, Arial, sans-serif;
  color: rgba(72, 0, 0, 0.82);
}

.hero-two-section {
  height: auto;
  padding-bottom: 24px !important;
}

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  padding-top: 56px;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.collection-grid > div {
  display: flex;
  justify-content: center;
  flex: 0 0 360px;
  max-width: 360px;
  padding-left: 12px;
  padding-right: 12px;
}

.collection-card {
  position: relative;
  display: block;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(72, 0, 0, 0.14);
}

.hero-two-section .container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.hero-two-section .row {
  justify-content: center;
}

.collection-card .card-image {
  transition: transform 0.6s ease;
}

.collection-card:hover .card-image {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(72, 0, 0, 0.08) 0%, rgba(72, 0, 0, 0.78) 100%);
  color: #fff8ee;
}

.collection-card-overlay h3 {
  font-family: 'playfair-display', serif;
  font-size: 2.5rem;
  margin: 0;
}

.collection-card-overlay p,
.collection-link {
  font-family: helvetica, Arial, sans-serif;
  margin: 0;
  color: #fff8ee;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-title {
  font-family: 'playfair-display', serif;
  color: #480000;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 16px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.product-media {
  position: relative;
  height: 320px;
}

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

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 248, 238, 0.92);
  color: #480000;
  font-family: inter, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 12px;
  border-radius: 999px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.6rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  font-weight: 700;
}

.product-meta a {
  color: #a53d2f;
  text-decoration: none;
}

.editorial-block {
  padding: 42px;
  border-radius: 30px;
}

.editorial-points {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.editorial-points strong {
  display: block;
  font-family: 'playfair-display', serif;
  font-size: 1.6rem;
  color: #a53d2f;
  margin-bottom: 4px;
}

.feature-image-wrap {
  height: 100%;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(72, 0, 0, 0.12);
}

.feature-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.stats-strip {
  padding: 96px 0;
}

.stat-card {
  border-radius: 24px;
  padding: 28px 16px;
  height: 100%;
}

.stat-card h3 {
  font-family: 'playfair-display', serif;
  color: #480000;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 8px;
}

.footer {
  height: auto;
  margin-top: 96px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-checkbox-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: helvetica, Arial, sans-serif;
  color: #fff8ee;
}

.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 248, 238, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-checkbox-container input:checked + .checkmark::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff8ee;
}

.email-form-fill {
  width: 100%;
  max-width: 420px;
  padding: 12px 0;
}

.newsletter-btn {
  width: fit-content;
  background: #fff8ee;
  color: #480000;
  border: 1px solid #fff8ee;
  font-family: inter, sans-serif;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .navbar {
    height: auto;
  }

  #mainNavbar {
    padding: 16px 0 6px;
  }

  .gap-stylee {
    gap: 12px;
  }

  .nav-flex-input {
    font-size: 18px;
  }

  .hero-shell,
  .hero-image {
    min-height: 72vh;
  }

  .header-text {
    width: 100% !important;
    max-width: 100%;
    padding: 24px;
  }

  .video-slider {
    gap: 12px;
  }

  .street-banner-row {
    grid-template-columns: 5fr 2fr 5fr;
    min-height: 700px;
  }

  .street-banner-image {
    min-height: 700px;
  }

  .street-banner-box-main h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  }

  .product-strip-card {
    min-width: 0;
  }

  .product-strip-track {
    grid-template-columns: repeat(3, minmax(0, 245px));
  }

  .video-slider-track {
    gap: 14px;
  }

  .video-slide {
    min-width: calc((100% - 28px) / 3);
  }

  .video-slide-media {
    height: 54vh;
    min-height: 360px;
  }

  .collection-card {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .welcome {
    font-size: 16px;
  }

  .hero-content {
    position: absolute;
    align-items: flex-end;
    padding-bottom: 24px;
  }

  .text-design {
    font-size: 2.9rem;
    padding: 0;
  }

  .p-design {
    font-size: 1rem;
    padding: 0;
  }

  .hero-btn-design,
  .hero-btn-secondary {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .street-banner-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .street-banner-content-col {
    grid-template-rows: auto auto;
  }

  .street-banner-image {
    min-height: 380px;
  }

  .street-banner-box {
    min-height: 280px;
  }

  .street-banner-box-main h2 {
    font-size: 2.5rem;
  }

  .video-slider-section {
    padding: 72px 0;
  }

  .product-strip-section {
    padding: 56px 16px 8px;
  }

  .product-strip-track {
    grid-template-columns: repeat(2, minmax(0, 245px));
  }

  .product-strip-image {
    height: 260px;
  }

  .video-slider {
    gap: 10px;
  }

  .video-slider-track {
    gap: 12px;
  }

  .video-slide {
    min-width: calc((100% - 12px) / 2);
  }

  .video-slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .video-slide-media {
    height: 50vh;
    min-height: 320px;
    border-radius: 24px;
  }

  .trust-band,
  .homepage-section,
  .stats-strip {
    padding-top: 72px;
  }

  .hero-two-text {
    margin-top: 0;
    padding-top: 0;
  }

  .collection-grid {
    padding-top: 32px;
  }

  .collection-card,
  .product-media,
  .feature-image-wrap,
  .feature-image {
    min-height: 360px;
    height: 360px;
  }

  .editorial-block {
    padding: 28px;
  }
}
