body {
  margin: 0;
  font-family: "Inria Sans", sans-serif;
}

/* HERO */

/* === HERO Section === */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  height: 80vh;
}

/* === Background Video === */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ fills entire container */
  object-position: center; /* ✅ centers the focal point */
  z-index: 1;
}

/* === Overlay Content === */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* ✅ subtle dark shadow */

  padding: 40px 24px;
  box-sizing: border-box;
  pointer-events: none;
}

/*.hero-overlay {
    align-items: flex-start;
    text-align: left;
    padding: 6px 19px 384px 38px;
}*/

.hero-sub {
  font-size: 18px;
  margin-bottom: 2px;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 3px;
  margin-top: 0;
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.hero-btn {
  margin-top: 40px;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: auto;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.01); /* subtle overlay */
  z-index: 1;
}

/* === Button === */
.hero-btn {
  background: #121212;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #000;
}

.hero {
  display: flex;
  flex-direction: column;
}

/* PROMO STRIP */
.promo-strip {
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.promo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 10s linear infinite;
}

.promo-item {
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.4px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PRODUCT */
.product-carousel {
  background: #fff;
  padding-top: 20px;
}

.product-image.hover {
  display: none;
}

.add-to-cart.over-image {
  display: none;
}

.product-container {
}

.carousel-frame {
  overflow: hidden; /* NEW: clips overflowing product-slider */
}

/* === Product Slider Layout === */
.product-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 10px;
  flex-wrap: nowrap;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: clamp(280px, 33.33%, 400px); /* min, ideal, max */
  scroll-snap-align: center;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.product-image {
  width: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: -7px;
  left: -5px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 11px 10px;
  border-radius: 4px;
  z-index: 2;
  margin: 10px 8px;
}

.wishlist-btn {
  position: absolute;
  top: 5px;
  right: 2px;
  background: none;
  border: none;
  z-index: 2;
}
.wishlist-btn img {
  width: 26px;
  height: 27px;
}

.product-info {
  padding: 20px 21px 0 16px;
  text-align: left;
}

.product-name {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.product-inspired {
  font-size: 12px;
  font-weight: 400;
  color: #444;
  text-transform: uppercase;
  margin: 4px 0;
}
.product-notes {
  font-size: 14px;
  font-weight: 400;
  color: #121212;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price-section {
  margin-bottom: 12px;
}

.current-prices .price {
  color: #ec1c1c;
  font-weight: bold;
  margin-right: 6px;
  font-size: 16px;
}
.original-prices .original {
  color: #9b9b9b;
  text-decoration: line-through;
  margin-right: 6px;
  font-size: 16px;
}

.add-to-cart {
  background: #000;
  color: #fff;
  margin-top: 8px;
  padding: 14px 0;
  width: 100%;
  border: none;
  border-radius: 36px;
  font-size: 14.267px;
  line-height: 11.208px;
  letter-spacing: 0.431px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

/* Arrows: fixed inside visible frame */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #121212;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15); /* optional: subtle depth */
  transition: background 0.2s;
}

/* Place the arrows just *inside* the edges of the product slider */
.carousel-arrow.prev {
  left: 22px; /* was -18px */
}

.carousel-arrow.next {
  right: 22px; /* was -18px */
}

.carousel-arrow:hover {
  background: #f5f5f5;
}

.carousel-arrow img {
  width: 16px;
  height: 16px;
}

/* Section: Motivational CTA */
.build-set {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.build-image {
  width: 100%;
  height: auto;
  display: block;
}

.build-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #000;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* Shared style for each text block */
.bg-bubble {
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-block;
}

/* Label */
.build-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16.8px;
  margin: 0;
}

/* Title */
.build-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

/* CTA Button */
.build-button {
  background: none;
  color: #121212;
  border: 1px solid #121212;
  padding: 10px 20px;
  border-radius: 36px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
}

/* === Promo Carousel General === */
.promo-carousel {
  background: #fff;
  padding-top: 0;
  padding-bottom: 37px;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
}

.promo-slider {
  display: flex;
  gap: 4px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 0 10px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
}

.promo-slider::-webkit-scrollbar {
  display: none;
}

/* === Promo Card === */
/* === Promo Card Base === */
.promo-card {
  flex: 0 0 auto;
  width: clamp(230px, 25%, 600px); /* Minimum, ideal, maximum width */
  max-width: 100%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.offer-image-bg {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* === Text Overlay === */
.offer-text.top-center {
  position: absolute;
  top: -1px;
  left: 20%;
  transform: translateX(-50%);
  background: rgba(240, 240, 240, 0.85);
  padding: 2px 0;
  border-radius: 6px;
  text-align: center;
}

.offer-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #121212;
}

.offer-discount {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  color: #ff0000;
}

/* === Arrows === */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #121212;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.carousel-arrow.prev {
  left: 22px;
}
.carousel-arrow.next {
  right: 22px;
}

.carousel-arrow:hover {
  background: #f5f5f5;
}

.carousel-arrow img {
  width: 16px;
  height: 16px;
}

/* Section: Motivational CTA */
.cta-block {
  text-align: center;
  padding: 40px 16px;
  background: #fff;
}

.cta-heading {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  color: #121212;
}

.cta-subtext {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #444;
}

.cta-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 36px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Section: Build Your Set (overlay) */
.build-set {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.build-image {
  width: 100%;
  height: auto;
  display: block;
}

.build-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%; /* full height to center button */
  padding: 20px;
  color: #000;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* space between text and button */
}

/* Center the text group at top-center */
.build-text-group {
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  margin-top: 20px;
}

/* Label */
.build-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

/* Title */
.build-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

/* Button centered in middle of image */
.build-button {
  background: none;
  color: #121212;
  border: 1px solid #121212;
  padding: 10px 20px;
  border-radius: 36px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: center;
  margin-bottom: 57px;
}

/* === Video Carousel === */
.video-carousel {
  padding: 30px 16px;
  background: #fff;
  text-align: center;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
}

.video-slider {
  display: flex;
  flex-wrap: nowrap; /* ❗ Required to prevent stacking */
  overflow-x: auto;
  gap: 8px;
  padding: 0 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
}

.video-slider::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 auto;
  width: clamp(230px, 25%, 600px); /* ✅ your requested logic */
  scroll-snap-align: center;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  background: #000;
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.video-play-btn img {
  width: 48px;
  height: 48px;
}

/* Caption */
.video-caption {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-align: center;
  z-index: 2;
}

/* Arrows (your preferred style) */
.video-arrow {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-arrow.prev {
  left: 10px;
}

.video-arrow.next {
  right: 10px;
}

.video-arrow img {
  width: 16px;
  height: 16px;
}

/* === Our World (Base / Mobile) === */
.our-world {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 70px;
}

.world-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.our-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #000;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.our-text-group {
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  align-self: center;
}

.our-label {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  text-align: left;
}

.our-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

.our-button {
  padding: 10px 24px;
  border: 1px solid #121212;
  background: rgba(255, 255, 255, 0.85);
  color: #121212;
  font-weight: 600;
  font-size: 12px;
  border-radius: 36px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  margin: 220px auto 0 auto;
}

/* Instagram Grid */
.social-grid .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.social-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 576px) {
  /* Hero */
  .hero-overlay {
    padding: 80px 48px;
  }

  .hero-sub {
    font-size: 20px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-desc {
    font-size: 20px;
  }

  .hero-btn {
    font-size: 17px;
    margin-top: 60px;
  }

  /* === PROMO STRIP === */
  .promo-item {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.4px;
  }

  /* === PROMO CARDS === */
  .promo-wrapper {
    display: flex;
    flex-direction: column;
  }

  .promo-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .promo-card {
    flex: 0 0 auto;
    width: clamp(280px, 33.333%, 400px);
    scroll-snap-align: center;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .offer-label {
    font-size: 12px;
  }

  .offer-discount {
    font-size: 20px;
  }

  .offer-text.top-center {
    top: -1px;
    left: 58px;
    transform: translateX(-50%);
    padding: 5px 6px;
  }

  /* === BUILD YOUR SET === */
  .build-set {
    margin-top: 80px;
    background: #fff;
  }

  .build-set .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .build-image {
    width: 50%;
    height: 300px;
    object-fit: cover;
  }

  .build-overlay {
    position: static !important;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 24px;
  }

  .build-text-group {
    background: rgba(255, 255, 255, 0.85);
    padding: 14px 16px;
    border-radius: 6px;
    text-align: center;
    align-self: center;
    margin-top: 20px;
  }

  .build-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .build-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
  }

  .build-button {
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #121212;
    border-radius: 36px;
    background: none;
    color: #121212;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    margin: 20px auto 0;
  }

  /* === OUR WORLD === */
  .our-world {
    margin-top: 80px;
    background: #fff;
  }

  .our-world .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .world-image {
    width: 50%;
    height: 300px;
    object-fit: cover;
  }

  .our-overlay {
    position: static !important;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 24px;
    color: #121212;
  }

  .our-text-group {
    background: rgba(255, 255, 255, 0.85);
    padding: 14px 16px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
    align-self: center;
  }

  .our-button {
    margin: 20px auto 0 auto;
  }
}

@media (min-width: 959px) {
  /* === Hero Section === */
  .hero {
    position: relative;
    width: 100%;
    height: calc(95vh - 80px);
    margin: 0 0 0 0; /* top, right, bottom, left */
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* ✅ Avoid 100vw to prevent scrollbar overflow */
    height: 100%;
    object-fit: cover;
    max-width: 100%; /* ✅ Keeps within container limits */
    box-sizing: border-box;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 64px; /* top, right, bottom, left */
    max-width: 1440px; /* ✅ Controls width like a container */
    margin: 0 auto;
    box-sizing: border-box;
    pointer-events: none;
  }

  .hero-sub {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
  }

  .hero-title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero-btn {
    font-size: 18px;
    padding: 16px 32px;
    background: #121212;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    pointer-events: auto;
    transition: background 0.3s ease;
    margin-top: 80px;
  }

  .hero-btn:hover {
    background: #000;
  }

  .hero-video {
    height: 100vh;
  }

  /* === Product Carousel Section === */
  .product-carousel {
    padding-top: 12px;
    background: #fff;
  }

  .product-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  /* === Carousel Frame & Arrows === */
  .carousel-frame {
    overflow: hidden;
    position: relative;
    padding: 0 8px;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    background: #fff;
    border: 1px solid #121212;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
    transform: translateY(-50%);
  }

  .carousel-arrow.prev {
    left: 12px;
    transform: translateY(-50%) translateX(+24px); /* slight nudge in */
  }

  .carousel-arrow.next {
    right: 12px;
    transform: translateY(-50%) translateX(-24px);
  }

  .carousel-arrow:hover {
    background: #f5f5f5;
  }

  .carousel-arrow img {
    width: 16px;
    height: 16px;
  }

  /* === Product Slider === */
  .product-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0;
  }

  .product-slider::-webkit-scrollbar {
    display: none;
  }

  /* === Product Card === */
  .product-card {
    flex: 0 0 calc((100% - 3 * 8px) / 4);
    max-width: calc((100% - 3 * 8px) / 4);
    scroll-snap-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: none;
  }

  /* === Product Image Wrapper with Hover Swap === */
  .product-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
  }

  .product-image.default {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
  }

  .product-image.hover {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  /* Only when hovering on the image wrapper */
  .product-image-wrapper:hover .product-image.hover {
    opacity: 1;
  }

  .product-image-wrapper:hover .product-image.default {
    opacity: 0;
  }

  /* === Badge & Wishlist === */
  .badge {
    position: absolute;
    top: -7px;
    left: -5px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 10px 10px;
    border-radius: 4px;
    z-index: 2;
    margin: 10px 8px;
  }

  .wishlist-btn {
    position: absolute;
    top: 5px;
    right: 2px;
    background: none;
    border: none;
    z-index: 2;
  }

  .wishlist-btn img {
    width: 24px;
    height: 24px;
  }

  /* === Add to Cart Over Image === */
  .add-to-cart.over-image {
    display: block;
    position: absolute;
    bottom: 12px; /* ⬅️ move it slightly up */
    left: 12px; /* ⬅️ give spacing from left */
    right: 12px; /* ⬅️ give spacing from right */
    width: auto; /* ⬅️ allow full width with spacing */
    background: #666;
    color: #fff;
    border: none;
    padding: 14px 20px; /* ⬅️ more vertical & horizontal padding */
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease;
    border-radius: 30px; /* optional: rounded corners */
  }

  .product-image-wrapper:hover .add-to-cart.over-image {
    opacity: 1;
    pointer-events: auto;
  }

  .add-to-cart.over-image:hover {
    background: #000;
  }

  /* === Product Info === */
  .product-info {
    padding: 12px 0 0 0;
    text-align: left;
  }

  .product-name {
    font-size: 17px; /* +1px */
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
  }

  .product-inspired,
  .product-notes {
    font-size: 14px; /* +1px */
    font-weight: 400;
    color: #444;
    margin-bottom: 6px;
    text-transform: uppercase;
  }

  .price-section {
    margin-bottom: 12px;
  }

  .current-prices .price {
    color: #ec1c1c;
    font-weight: bold;
    margin-right: 6px;
    font-size: 16px; /* +1px */
  }

  .original-prices .original {
    color: #9b9b9b;
    text-decoration: line-through;
    margin-right: 6px;
    font-size: 15px; /* +1px */
  }

  .product-info .add-to-cart {
    display: none;
  }

  .social-grid .grid-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
