.breakfast-pots-spin {
  background: #fff;
  padding: 100px 20px;
  padding-bottom: 300px;
  /* padding-top:0; */
  overflow: hidden;
  position: relative;
  margin: 0;
}

.spin-wrapper {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.spin-circle {
  position: relative;
  width: 500px;
  height: 800px;
}

.orbit-img {
  position: absolute;
  width: 280px !important;
  height: 280px !important;
  object-fit: cover;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



.spin-item {
  position: absolute;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.spin-item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.spin-item:nth-child(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.spin-item:nth-child(3) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .spin-circle {
    width: 300px;
    height: 300px;
  }

  .spin-item {
    width: 130px;
    height: 130px;
  }

  .bar-1 { left: 10%; }
  .bar-2 { right: 10%; }
}
 