.store-section {
  padding: 4rem 3rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffffff 0%, #8c3bfc 100%);
}

.store-content {
  flex: 1;
  text-align: left;
  z-index: 2;
  position: relative;
}

.store-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c0c0c;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.subtitle {
  color: #101010e6;
  max-width: 80%;
  margin-bottom: 2rem;
  font-weight: 400;
}

.app-buttons {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.app-button {
  height: 56px;
  transition: transform 0.5s ease;
  border-radius: 12px;
  overflow: hidden;
}

.app-button:hover {
  transform: scale(1.02);
}

.app-button img {
  height: 100%;
  width: auto;
  display: block;
}

.phone-mockups {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.phone {
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.phone.phone-1 {
  transform: rotate(-5deg) translateY(-20px);
}

.phone.phone-2 {
  transform: rotate(8deg) translateY(10px);
}

@media (max-width: 1024px) {
  .store-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .store-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .store-title {
    font-size: 2.8rem;
    margin: 0 auto;
    text-align: center;
    max-width: 80%;
  }
  .subtitle {
    margin: 0 auto;
    text-align: center;
    max-width: 60%;
  }

  .app-buttons {
    justify-content: center;
  }

  .phone-mockups {
    gap: 1rem;
  }

  .phone {
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .store-title {
    max-width: none;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .subtitle {
    max-width: none;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .phone-mockups {
    flex-direction: column;
    gap: 1rem;
  }
  .phone {
    max-width: 180px;
  }
  .phone.phone-2 {
    transform: none;
  }
  .phone.phone-1 {
    display: none;
  }
}
