.shop-beans-section {
  background-color: #EE2E3C;
  /* Your requested Red */
  color: white;
  font-family: 'Courier Prime', monospace;
  padding: 250px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

/* Left Column Styling */
.shop-heading {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.1;
}

.shop-subheading {
  font-size: 24px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shop-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 70%;
  font-family: "Courier Prime", monospace;
  letter-spacing: 10%;
}

.shop-btn {
  display: inline-block;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 30px;
  padding: 15px 30px;
  background: #000;

  text-decoration: none;
  width: max-content;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: 0.3s ease-in-out;
}

.shop-btn:hover {
  background: white;
  color: #EE2E3C;
}

/* Right Column (Car Image) Styling */
.shop-image-wrapper {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-frame {
  width: 100%;
  padding: 10px;
}

.car-img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 4;
  position: relative;
}

.car-tag-top,
.car-tag-bottom {
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 10px 0;
  z-index: 999;
  position: absolute;
  font-family: "Sedgwick Ave Display", cursive;
  font-size: 60px;
  line-height: 50px;
}

.car-tag-top {
  top: 30%;
  left: -5%;
  transform: translateY(-50%);
  z-index: 1;
}

.car-tag-bottom {
  bottom: 10%;
  left: 35%;
  z-index: 9;
}

/* Responsive adjustments */

.shop-beans-section {
  overflow: hidden;
  /* Prevents the car from showing before it enters */
}

/* Initial state for the Car Image Wrapper */
.shop-image-wrapper {
  opacity: 0;
  right: -100px;
  /* Start further right */
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  /* Professional "Ease Out" */
}

/* Initial state for the Text Content */
.shop-text-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  transition-delay: 0.5s;
  /* Wait for car to start moving */
}

/* --- ANIMATED STATES (Triggered by JS) --- */
.shop-beans-section.is-active .shop-image-wrapper {
  opacity: 1;
  right: -20px;
  /* Final position from your original CSS */
}

.shop-beans-section.is-active .shop-text-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .shop-container {

    text-align: center;
  }

  .shop-description {
    margin: 0 auto 40px auto;
  }

  .car-tag-top,
  .car-tag-bottom {
    align-self: center;
  }
}

/* --- RESPONSIVE SHOP SECTION --- */

@media (max-width: 992px) {
  .shop-beans-section {
    padding: 100px 0 50px 0;
    /* Reduced padding for mobile */
    text-align: center;
    display: block;
    /* Break the grid/absolute flow */
  }

  .car-frame {
    width: 100%;
    padding: 0px;
    right: 0;
    /* Override the absolute positioning for mobile */
  }

  .car-img {
    width: 60%;
    /* Make it "bleed" slightly off edges for style */
    margin-left: auto;
  }

  .shop-container {
    display: block;
    width: 100%;
    padding: 0 20px;
  }

  .shop-text-content {
    max-width: 100%;
    margin-bottom: 50px;
    text-align: left;
    /* Space before the car starts */
  }

  .shop-description {
    max-width: 100%;
    margin: 0 auto 30px;
    letter-spacing: 0;
    /* Less aggressive for mobile readability */
  }

  .shop-btn {
    margin: 0 auto;
  }

  /* Reposition Image for Mobile Stacking */
  .shop-image-wrapper {
    position: relative;
    /* Change from absolute */
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    /* Still used for JS animation */
    padding-bottom: 60px;
    /* Space for the bottom tag */
  }

  /* Adjust the Graffiti Tags for Mobile */
  .car-tag-top {
    font-size: 45px;
    line-height: 40px;
    top: 10%;
    left: 50%;
    text-align: left;
    z-index: 99;
    transform: rotate(-5deg) translateX(-50%);
    /* Slight tilt for vibe */
  }

  .car-tag-bottom {
    font-size: 45px;
        line-height: 40px;
        bottom: 15%;
        right: 10%;
        left: auto;
        text-align: right;
        transform: rotate(5deg);
        z-index: 99;
  }

  /* Initial state for mobile animation */
  .shop-image-wrapper {
    transform: translateY(50px);
  }

  /* Animated state for mobile */
  .shop-beans-section.is-active .shop-image-wrapper {
    transform: translateY(0);
    opacity: 1;
    right: 0;
    /* Override the -20px from desktop */
  }
}

@media (max-width: 576px) {
  .shop-heading {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }

  .shop-beans-section {
    padding: 80px 0 20px 0;
    /* Reduced padding for mobile */
    text-align: left;
    display: block;
    /* Break the grid/absolute flow */
  }

  .car-tag-top,
  .car-tag-bottom {
    font-size: 38px;
    /* Slightly smaller for narrow phones */
  }

  .car-tag-top {
    font-size: 45px;
    line-height: 40px;
    top: 10%;
    left: 45%;
    text-align: left;
    z-index: 4;
    transform: rotate(-5deg) translateX(-60%);
  }

  .car-img {
    width: 80%;
    /* Make it "bleed" slightly off edges for style */
    margin-left: auto;
  }
}